/*
Theme Name: Trattoria del Festival
Theme URI: https://trattoriadelfestival.com
Description: Tema personalizzato per la Trattoria del Festival di Spoleto, basato su Astra.
Author: Key-Seven
Template: astra
Version: 2.1.5
Text Domain: trattoria-del-festival
*/

:root {
	--tdf-ink: #1a1612;
	--tdf-ink-soft: #2e2820;
	--tdf-cream: #faf6f0;
	--tdf-sand: #ede6d9;
	--tdf-gold: #c4a052;
	--tdf-gold-light: #e8d5a3;
	--tdf-wine: #5c3d2e;
	--tdf-olive: #6b7355;
	--tdf-white: #ffffff;
	--tdf-shadow: 0 24px 60px rgba(26, 22, 18, 0.14);
	--tdf-radius: 18px;
	--tdf-radius-sm: 10px;
	--tdf-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--tdf-max: 1240px;
	--tdf-header-h: 88px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--tdf-cream);
	color: var(--tdf-ink);
	font-family: "Outfit", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

::selection {
	background: rgba(196, 160, 82, 0.35);
	color: var(--tdf-ink);
}

body.tdf-body {
	padding-top: var(--tdf-header-h);
}

/* ── Header ── */
.tdf-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	height: var(--tdf-header-h);
	background: rgba(26, 22, 18, 0.82);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(196, 160, 82, 0.18);
	transition: background 0.35s var(--tdf-ease), box-shadow 0.35s var(--tdf-ease);
}

.tdf-site-header.is-scrolled {
	background: rgba(26, 22, 18, 0.96);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.tdf-header-inner {
	max-width: var(--tdf-max);
	margin: 0 auto;
	height: 100%;
	padding: 0 2rem;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
}

.tdf-logo {
	text-decoration: none;
	color: var(--tdf-white);
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.tdf-logo-eyebrow {
	font-family: "Italiana", Georgia, serif;
	font-size: 0.65rem;
	letter-spacing: 0.35em;
	text-transform: uppercase;
	color: var(--tdf-gold-light);
	opacity: 0.85;
}

.tdf-logo-title {
	font-family: "Italiana", Georgia, serif;
	font-size: 1.35rem;
	color: var(--tdf-white);
	letter-spacing: 0.04em;
}

.tdf-logo-city {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 0.8rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.12em;
}

.tdf-nav {
	justify-self: center;
}

.tdf-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.tdf-nav a {
	display: block;
	padding: 0.55rem 1.1rem;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
	border-radius: 999px;
	transition: color 0.25s ease, background 0.25s ease;
}

.tdf-nav a:hover,
.tdf-nav .current-menu-item a,
.tdf-nav .current_page_item a {
	color: var(--tdf-white);
	background: rgba(196, 160, 82, 0.18);
}

.tdf-header-cta {
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.tdf-header-phone {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	letter-spacing: 0.04em;
	transition: color 0.2s ease;
}

.tdf-header-phone:hover {
	color: var(--tdf-gold-light);
}

.tdf-burger {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid rgba(196, 160, 82, 0.35);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.tdf-burger span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--tdf-gold-light);
	border-radius: 2px;
	transition: transform 0.3s var(--tdf-ease), opacity 0.3s ease;
}

.tdf-burger.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.tdf-burger.is-open span:nth-child(2) {
	opacity: 0;
}

.tdf-burger.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.tdf-mobile-nav {
	display: none;
	background: rgba(26, 22, 18, 0.98);
	border-top: 1px solid rgba(196, 160, 82, 0.15);
	padding: 1rem 1.5rem 1.5rem;
}

.tdf-mobile-nav.is-open {
	display: block;
}

.tdf-mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tdf-mobile-nav a {
	display: block;
	padding: 0.85rem 0;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	transition: color 0.2s ease;
}

.tdf-mobile-nav a:hover,
.tdf-mobile-nav .current-menu-item a {
	color: var(--tdf-gold-light);
}

.tdf-mobile-nav__phone {
	display: inline-block;
	margin-top: 1rem;
	font-size: 1rem;
	color: var(--tdf-gold-light);
	text-decoration: none;
	letter-spacing: 0.06em;
}

.tdf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	transition: transform 0.25s var(--tdf-ease), box-shadow 0.25s var(--tdf-ease), background 0.25s ease;
}

.tdf-btn--gold {
	background: linear-gradient(135deg, var(--tdf-gold) 0%, #a8843a 100%);
	color: var(--tdf-ink);
	box-shadow: 0 8px 24px rgba(196, 160, 82, 0.35);
}

.tdf-btn--gold:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(196, 160, 82, 0.45);
	color: var(--tdf-ink);
}

.tdf-btn--outline {
	background: transparent;
	color: var(--tdf-white);
	border: 1px solid rgba(255, 255, 255, 0.35);
}

.tdf-btn--outline:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--tdf-white);
}

/* ── Page wrapper ── */
.tdf-page {
	overflow: hidden;
}

.tdf-section {
	padding: clamp(4rem, 8vw, 7rem) 2rem;
}

.tdf-section--cream {
	background: var(--tdf-cream);
	background-image: radial-gradient(rgba(196, 160, 82, 0.06) 1px, transparent 1px);
	background-size: 24px 24px;
}

.tdf-section--sand {
	background: var(--tdf-sand);
	background-image: radial-gradient(rgba(26, 22, 18, 0.04) 1px, transparent 1px);
	background-size: 20px 20px;
}

.tdf-section--dark {
	background: linear-gradient(160deg, var(--tdf-ink) 0%, var(--tdf-ink-soft) 100%);
	color: var(--tdf-cream);
}

.tdf-container {
	max-width: var(--tdf-max);
	margin: 0 auto;
}

.tdf-eyebrow {
	display: inline-block;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--tdf-gold);
	margin-bottom: 1rem;
}

.tdf-section--dark .tdf-eyebrow {
	color: var(--tdf-gold-light);
}

.tdf-heading {
	font-family: "Italiana", Georgia, serif;
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: 0.02em;
	margin: 0 0 1.25rem;
	color: var(--tdf-ink);
}

.tdf-section--dark .tdf-heading {
	color: var(--tdf-cream);
}

.tdf-lead {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(1.25rem, 2.5vw, 1.65rem);
	line-height: 1.65;
	color: rgba(26, 22, 18, 0.72);
	max-width: 680px;
	margin: 0 auto;
}

.tdf-section--dark .tdf-lead {
	color: rgba(250, 246, 240, 0.78);
}

.tdf-text-center {
	text-align: center;
}

.tdf-divider {
	width: 64px;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--tdf-gold), transparent);
	margin: 1.5rem auto 2rem;
}

.tdf-intro-grid .tdf-divider {
	margin-left: 0;
	margin-right: auto;
	background: linear-gradient(90deg, var(--tdf-gold), transparent);
}

/* ── Hero ── */
.tdf-hero {
	position: relative;
	min-height: calc(100vh - var(--tdf-header-h));
	min-height: calc(100dvh - var(--tdf-header-h));
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	overflow: hidden;
}

.tdf-hero:not(.tdf-hero--single)::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(
		108deg,
		transparent 49.6%,
		rgba(26, 22, 18, 0.5) 49.8%,
		rgba(196, 160, 82, 0.35) 50%,
		rgba(26, 22, 18, 0.5) 50.2%,
		transparent 50.4%
	);
}

.tdf-hero--single {
	grid-template-columns: 1fr;
}

.tdf-hero__panel,
.tdf-hero__bg {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	height: 100%;
	align-self: stretch;
}

.tdf-hero__panel > img,
.tdf-hero__bg > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: scale(1.02);
	transition: transform 8s var(--tdf-ease);
}

.tdf-hero:hover .tdf-hero__panel > img,
.tdf-hero:hover .tdf-hero__bg > img {
	transform: scale(1.06);
}

.tdf-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to top,
		rgba(26, 22, 18, 0.75) 0%,
		rgba(26, 22, 18, 0.15) 50%,
		rgba(26, 22, 18, 0.35) 100%
	);
}

.tdf-hero__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: clamp(2rem, 5vw, 4rem);
	z-index: 5;
}

.tdf-hero__content--center {
	justify-content: center;
	align-items: center;
	text-align: center;
	background: linear-gradient(
		135deg,
		rgba(26, 22, 18, 0.55) 0%,
		rgba(26, 22, 18, 0.25) 100%
	);
}

.entry-content .tdf-hero h1.tdf-hero__title,
.tdf-hero__title {
	font-family: "Italiana", Georgia, serif !important;
	font-size: clamp(2.8rem, 7vw, 5rem) !important;
	color: var(--tdf-white) !important;
	line-height: 1.05 !important;
	margin: 0 0 0.75rem !important;
	letter-spacing: 0.03em;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.entry-content .tdf-hero .tdf-hero__subtitle,
.tdf-hero__subtitle {
	font-family: "Cormorant Garamond", Georgia, serif !important;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
	font-style: italic;
	color: var(--tdf-gold-light) !important;
	margin: 0 0 1.5rem !important;
	max-width: 520px;
}

.tdf-hero__content--center .tdf-hero__subtitle {
	margin-left: auto;
	margin-right: auto;
}

.tdf-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.tdf-hero__content--center .tdf-hero__actions {
	justify-content: center;
}

/* ── Stats ── */
.tdf-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: -3rem;
	position: relative;
	z-index: 3;
	padding: 0 2rem;
}

.tdf-stat {
	background: var(--tdf-white);
	border-radius: var(--tdf-radius);
	padding: 2rem 1.5rem;
	text-align: center;
	box-shadow: var(--tdf-shadow);
	border: 1px solid rgba(196, 160, 82, 0.12);
	position: relative;
	overflow: hidden;
	transition: transform 0.35s var(--tdf-ease), box-shadow 0.35s var(--tdf-ease);
}

.tdf-stat::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--tdf-gold), var(--tdf-gold-light));
}

.tdf-stat:hover {
	transform: translateY(-4px);
	box-shadow: 0 32px 64px rgba(26, 22, 18, 0.16);
}

.tdf-stat__number {
	font-family: "Italiana", Georgia, serif;
	font-size: 2.5rem;
	color: var(--tdf-gold);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.tdf-stat__label {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--tdf-ink-soft);
}

/* ── Intro block ── */
.tdf-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.tdf-intro-grid__image {
	position: relative;
	border-radius: var(--tdf-radius);
	overflow: hidden;
	box-shadow: var(--tdf-shadow);
}

.tdf-intro-grid__image img {
	width: 100%;
	height: 480px;
	object-fit: cover;
	display: block;
}

.tdf-intro-grid__image::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px solid rgba(196, 160, 82, 0.3);
	border-radius: var(--tdf-radius);
	margin: 12px;
	pointer-events: none;
}

.tdf-body-text {
	font-size: 1.05rem;
	line-height: 1.85;
	color: rgba(26, 22, 18, 0.68);
}

.tdf-body-text p {
	margin: 0 0 1.25rem;
}

/* ── Gallery ── */
.tdf-gallery {
	display: grid;
	gap: 1rem;
}

.tdf-gallery--4 {
	grid-template-columns: repeat(4, 1fr);
}

.tdf-gallery--bento {
	grid-template-columns: repeat(12, 1fr);
	grid-auto-rows: 180px;
}

.tdf-gallery__item {
	position: relative;
	overflow: hidden;
	border-radius: var(--tdf-radius-sm);
	box-shadow: 0 8px 24px rgba(26, 22, 18, 0.1);
}

.tdf-gallery__item::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 22, 18, 0.45) 0%, transparent 55%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.tdf-gallery__item:hover::after {
	opacity: 1;
}

.tdf-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s var(--tdf-ease);
}

.tdf-gallery__item:hover img {
	transform: scale(1.08);
}

.tdf-gallery__item--span-6 { grid-column: span 6; grid-row: span 2; }
.tdf-gallery__item--span-4 { grid-column: span 4; }
.tdf-gallery__item--span-3 { grid-column: span 3; }
.tdf-gallery__item--span-8 { grid-column: span 8; grid-row: span 2; }

.tdf-gallery--4 .tdf-gallery__item {
	aspect-ratio: 4/5;
}

/* ── Menu cards ── */
.tdf-menu-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-top: 3rem;
}

.tdf-menu-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(196, 160, 82, 0.3);
	border-radius: var(--tdf-radius);
	padding: 2.5rem;
	backdrop-filter: blur(8px);
	transition: transform 0.35s var(--tdf-ease), border-color 0.35s ease;
}

.tdf-menu-card:hover {
	transform: translateY(-3px);
	border-color: rgba(196, 160, 82, 0.5);
}

.tdf-menu-card__title,
.tdf-section--dark .tdf-menu-card h3.tdf-menu-card__title,
.entry-content .tdf-menu-card h3.tdf-menu-card__title {
	font-family: "Italiana", Georgia, serif;
	font-size: 1.55rem;
	color: var(--tdf-gold-light) !important;
	margin: 0 0 1.75rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(196, 160, 82, 0.35);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.tdf-menu-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tdf-menu-card li {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
	padding: 0.65rem 0;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.15rem;
	color: rgba(250, 246, 240, 0.88);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tdf-menu-card li::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--tdf-gold);
	flex-shrink: 0;
	margin-top: 0.35rem;
}

/* ── CTA banner ── */
.tdf-cta {
	text-align: center;
	padding: 3rem;
	background: linear-gradient(135deg, var(--tdf-wine) 0%, var(--tdf-ink-soft) 100%);
	border-radius: var(--tdf-radius);
	color: var(--tdf-cream);
	margin-top: 3rem;
}

.tdf-cta p {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.35rem;
	margin: 0 0 1.5rem;
	line-height: 1.6;
}

/* ── Location ── */
.tdf-location {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: stretch;
}

.tdf-location__left {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 100%;
}

.tdf-map {
	border-radius: var(--tdf-radius);
	overflow: hidden;
	box-shadow: var(--tdf-shadow);
	border: 1px solid rgba(196, 160, 82, 0.15);
	flex: 1;
	min-height: 360px;
}

.tdf-map iframe {
	width: 100%;
	height: 100%;
	min-height: 360px;
	border: 0;
	display: block;
}

.tdf-map-photo {
	border-radius: var(--tdf-radius);
	overflow: hidden;
	box-shadow: var(--tdf-shadow);
	border: 1px solid rgba(196, 160, 82, 0.15);
	height: 220px;
	flex-shrink: 0;
}

.tdf-map-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.tdf-contact-card {
	background: var(--tdf-white);
	border-radius: var(--tdf-radius);
	padding: 2.5rem;
	box-shadow: var(--tdf-shadow);
}

.tdf-contact-item {
	display: flex;
	gap: 1rem;
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--tdf-sand);
}

.tdf-contact-item:last-child {
	border-bottom: none;
}

.tdf-contact-item__icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--tdf-sand);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
	color: var(--tdf-gold);
}

.tdf-contact-item__icon svg {
	width: 20px;
	height: 20px;
	stroke: currentColor;
	fill: none;
}

.tdf-contact-item__label {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tdf-gold);
	margin-bottom: 0.25rem;
}

.tdf-contact-item__value {
	font-size: 1rem;
	color: var(--tdf-ink);
	line-height: 1.5;
}

.tdf-contact-item__value a {
	color: var(--tdf-ink);
	text-decoration: none;
	border-bottom: 1px solid var(--tdf-gold);
	transition: color 0.2s ease;
}

.tdf-contact-item__value a:hover {
	color: var(--tdf-gold);
}

.tdf-landmarks {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.5rem;
}

.tdf-landmark {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 0.45rem 0.9rem;
	background: var(--tdf-sand);
	border-radius: 999px;
	color: var(--tdf-ink-soft);
}

/* ── Footer ── */
.tdf-footer {
	background: var(--tdf-ink);
	color: rgba(255, 255, 255, 0.65);
	padding: 4rem 2rem 2rem;
}

.tdf-footer-grid {
	max-width: var(--tdf-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tdf-footer-brand .tdf-logo-title {
	font-size: 1.6rem;
}

.tdf-footer-brand p {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 1.1rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.45);
	margin: 0.75rem 0 0;
	line-height: 1.6;
}

.tdf-footer h4 {
	font-family: "Italiana", Georgia, serif;
	font-size: 1rem;
	color: var(--tdf-gold-light);
	margin: 0 0 1.25rem;
	letter-spacing: 0.08em;
}

.tdf-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tdf-footer li {
	margin-bottom: 0.65rem;
}

.tdf-footer a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	font-size: 0.92rem;
	transition: color 0.2s ease;
}

.tdf-footer a:hover {
	color: var(--tdf-gold-light);
}

.tdf-footer-bottom {
	max-width: var(--tdf-max);
	margin: 2rem auto 0;
	text-align: center;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.04em;
}

/* ── Animations ── */
.tdf-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.8s var(--tdf-ease), transform 0.8s var(--tdf-ease);
}

.tdf-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.tdf-reveal--delay-1 { transition-delay: 0.1s; }
.tdf-reveal--delay-2 { transition-delay: 0.2s; }
.tdf-reveal--delay-3 { transition-delay: 0.3s; }

/* Mobile call bar */
.tdf-call-bar {
	display: none;
	position: fixed;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9998;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.5rem;
	background: linear-gradient(135deg, var(--tdf-gold) 0%, #a8843a 100%);
	color: var(--tdf-ink);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	border-radius: 999px;
	box-shadow: 0 12px 32px rgba(196, 160, 82, 0.45);
}

.tdf-call-bar__icon {
	font-size: 1.1rem;
}

/* ── Astra overrides ── */
.ast-primary-header-bar,
.site-header-primary-section-left,
.site-header-primary-section-right,
.ast-footer-overlay,
.site-footer,
.site-below-footer-wrap,
.ast-small-footer,
.ast-footer-copyright,
.footer-sml-layout-1,
.footer-sml-layout-2,
#ast-scroll-top,
.entry-header,
.ast-single-post-order,
.ast-archive-description,
.ast-page-builder-template .site-content > .ast-container,
.site-header,
.ast-mobile-header-wrap,
.ast-breadcrumbs-wrapper,
nav.site-navigation {
	display: none !important;
}

.site-content .ast-container,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post {
	max-width: 100%;
	padding: 0;
	margin: 0;
	background: transparent;
}

.ast-separate-container {
	background: transparent;
	padding: 0;
}

#primary,
.content-area.primary,
.site-main {
	margin: 0 !important;
	padding: 0 !important;
}

.entry-content {
	margin: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
	.tdf-header-inner {
		grid-template-columns: 1fr auto;
	}

	.tdf-nav--desktop {
		display: none;
	}

	.tdf-burger {
		display: flex;
	}

	.tdf-header-phone {
		display: none;
	}

	.tdf-call-bar {
		display: inline-flex;
	}

	body.tdf-body {
		padding-bottom: 5rem;
	}

	.tdf-hero {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.tdf-hero__panel {
		min-height: 320px;
	}

	.tdf-hero:not(.tdf-hero--single)::after {
		display: none;
	}

	.tdf-stats {
		grid-template-columns: 1fr;
		margin-top: 2rem;
	}

	.tdf-intro-grid,
	.tdf-location,
	.tdf-menu-grid,
	.tdf-footer-grid {
		grid-template-columns: 1fr;
	}

	.tdf-map {
		min-height: 300px;
	}

	.tdf-map iframe {
		min-height: 300px;
	}

	.tdf-map-photo {
		height: 200px;
	}

	.tdf-gallery--4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.tdf-gallery--bento {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 160px;
	}

	.tdf-gallery__item--span-6,
	.tdf-gallery__item--span-8,
	.tdf-gallery__item--span-4,
	.tdf-gallery__item--span-3 {
		grid-column: span 1;
		grid-row: span 1;
	}
}

@media (max-width: 600px) {
	.tdf-header-inner {
		padding: 0 1rem;
	}

	.tdf-section {
		padding: 3rem 1.25rem;
	}

	.tdf-gallery--4 {
		grid-template-columns: 1fr;
	}

	.tdf-hero__actions {
		flex-direction: column;
		width: 100%;
	}

	.tdf-hero__actions .tdf-btn {
		width: 100%;
	}
}
