/* =========================================================
   Ambra: design tokens
   ========================================================= */
:root {
	--c-cream: #F6F1E9;
	--c-cream-2: #EFE7DA;
	--c-ink: #1C1A17;
	--c-ink-2: #2A2723;
	--c-amber: #B9771E;        /* buttons, icons, accents (white text on it passes AA large / ~3.6:1) */
	--c-amber-2: #E0A44A;      /* highlights on dark backgrounds only */
	--c-amber-text: #8F5A16;   /* amber used as text on cream (>= 4.5:1) */
	--c-amber-hover: #A66817;
	--c-olive: #5A604F;        /* secondary text on cream (>= 5:1) */
	--c-card: #FFFDF9;
	--c-field: #F3EDE3;

	--font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--font-body: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

	--radius: 28px;
	--radius-sm: 20px;
	--radius-pill: 999px;

	--shadow-soft: 0 24px 60px -30px rgb(28 26 23 / .35);
	--shadow-lift: 0 34px 80px -28px rgb(28 26 23 / .45);
	--shadow-amber: 0 18px 40px -18px rgb(200 134 43 / .7);

	--ease: cubic-bezier(.22, 1, .36, 1);
	--ease-io: cubic-bezier(.65, 0, .35, 1);

	--container: 1200px;
	--gutter: 20px;
	--header-h: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 24px); }

body {
	margin: 0;
	background: var(--c-cream);
	color: var(--c-ink);
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }

section[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

:focus-visible { outline: 3px solid var(--c-amber); outline-offset: 3px; border-radius: 6px; }

.skip-link {
	position: absolute; left: 16px; top: -100px; z-index: 100;
	padding: 10px 16px; background: var(--c-ink); color: #fff; border-radius: var(--radius-pill);
}
.skip-link:focus { top: 16px; }

.container {
	width: 100%;
	max-width: var(--container);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.container--narrow { max-width: 760px; }

.section { padding-block: clamp(72px, 10vw, 128px); }
.section__head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__head .lead { margin-top: 18px; }
.section__head--light { color: var(--c-cream); }

/* Type */
.eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	margin-bottom: 18px;
	font-size: .8125rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
	color: var(--c-amber-text);
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: currentColor; border-radius: 2px; opacity: .8; }
.section__head .eyebrow::before { display: none; }
.eyebrow--light { color: rgb(255 255 255 / .85); }
.eyebrow--amber { color: var(--c-amber-2); }

.h2 {
	font-family: var(--font-display);
	font-weight: 300;
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	line-height: 1.08;
	letter-spacing: -.01em;
	text-wrap: balance;
}
.h2 em { font-style: italic; color: var(--c-amber); }

.lead { color: var(--c-olive); font-size: 1.0625rem; }

/* Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 16px 30px;
	border-radius: var(--radius-pill);
	font-weight: 600; font-size: .95rem; letter-spacing: .01em;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease), background-color .4s, color .4s;
	will-change: transform;
}
.btn svg { width: 18px; height: 18px; transition: transform .5s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(0); }
.btn--amber { background: var(--c-amber); color: #fff; box-shadow: var(--shadow-amber); }
.btn--amber:hover { background: var(--c-amber-hover); }
.btn--dark { background: var(--c-ink); color: var(--c-cream); box-shadow: var(--shadow-soft); }
.btn--dark:hover { background: var(--c-ink-2); }
.btn--ghost { background: rgb(255 255 255 / .12); color: #fff; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgb(255 255 255 / .22); }
.btn--sm { padding: 11px 22px; font-size: .875rem; }

/* Cards */
.card {
	background: var(--c-card);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

/* =========================================================
   Scroll reveal + motion
   ========================================================= */
/* Hidden states only apply once <html class="js"> is set (inline script in <head>),
   so a page without JS renders fully. --i is zeroed by JS after reveal so hover
   transitions on the same element are not delayed. */
.js [data-reveal] {
	opacity: 0;
	transform: translateY(28px);
	filter: blur(6px);
	transition:
		opacity .9s var(--ease),
		transform .9s var(--ease),
		filter .9s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }

.reveal-title > span { display: block; }
.js .reveal-title > span {
	clip-path: inset(0 0 100% 0);
	transform: translateY(20%);
	transition: clip-path 1.1s var(--ease), transform 1.1s var(--ease);
}
.js .reveal-title.is-visible > span { clip-path: inset(0 0 -12% 0); transform: none; }

[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.js [data-reveal], .js .reveal-title > span {
		opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; transition: none !important;
	}
	.hero__media img, .hero__scroll span, .about__badge, .hero__pagination .swiper-pagination-bullet-active::after, .menu__panel.is-entering .dish {
		animation: none !important;
	}
	[data-hero-anim], .mobile-nav, .mobile-nav__link, .mobile-nav__cta, .mobile-nav__meta {
		opacity: 1 !important; transform: none !important; transition: none !important;
	}
	.btn, .dish, .post-card, .gallery__inner img, .info-card, .review { transition: none !important; }
}

@media print {
	.js [data-reveal], .js .reveal-title > span { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; }
	.site-header, .mobile-nav, .hero__scroll, .hero__controls { display: none !important; }
	.hero { height: auto; min-height: 0; }
}

/* =========================================================
   Header
   ========================================================= */
.admin-bar .site-header { inset-block-start: 48px; }
.site-header {
	position: fixed; inset: 16px 0 auto 0; z-index: 50;
	display: flex; justify-content: center;
	padding-inline: var(--gutter);
	pointer-events: none;
}
.site-header__pill {
	pointer-events: auto;
	display: flex; align-items: center; gap: 28px;
	width: 100%; max-width: var(--container);
	padding: 10px 12px 10px 22px;
	border-radius: var(--radius-pill);
	color: #fff;
	transition: background-color .6s var(--ease), box-shadow .6s var(--ease), color .6s var(--ease), padding .6s var(--ease), max-width .6s var(--ease);
}
.site-header.is-scrolled .site-header__pill {
	max-width: 1040px;
	background: rgb(255 253 249 / .78);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	backdrop-filter: blur(18px) saturate(1.4);
	color: var(--c-ink);
	box-shadow: var(--shadow-soft);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.55rem; font-weight: 500; letter-spacing: .01em; }
.brand__mark {
	width: 12px; height: 12px; border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--c-amber-2), var(--c-amber));
	box-shadow: 0 0 0 4px rgb(200 134 43 / .18);
}

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav__link {
	position: relative; padding: 10px 14px; font-weight: 500; font-size: .95rem; opacity: .9;
	transition: opacity .3s;
}
.nav__link::after {
	content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
	background: var(--c-amber); border-radius: 2px;
	transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link.is-current { opacity: 1; }
.nav__link.is-current::after { transform: scaleX(1); }

.site-header__cta { flex-shrink: 0; }

/* Language switcher */
.lang { display: inline-flex; gap: 2px; padding: 3px; border-radius: var(--radius-pill); background: rgb(255 255 255 / .12); font-size: .78rem; font-weight: 600; letter-spacing: .06em; }
.site-header.is-scrolled .lang, body:not(.home):not(.ambra-elementor-page) .lang { background: rgb(28 26 23 / .06); }
.lang__link { padding: 6px 10px; border-radius: var(--radius-pill); opacity: .75; transition: background-color .3s, opacity .3s; }
.lang__link:hover { opacity: 1; }
.lang__link.is-current { background: var(--c-amber); color: #fff; opacity: 1; }
.lang--mobile { margin-top: 16px; font-size: 1rem; letter-spacing: .02em; background: rgb(28 26 23 / .06); opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i, 0) * 70ms + 120ms); }
.mobile-nav.is-open .lang--mobile { opacity: 1; transform: none; }
.lang--mobile .lang__link { padding: 10px 18px; }

/* Two-class selectors on purpose: Elementor's kit styles every <button>
   (.elementor-kit-N button) and would otherwise restyle these controls. */
.site-header .nav-toggle {
	display: none; flex-direction: column; justify-content: center; gap: 5px;
	width: 44px; height: 44px; margin-left: auto; padding: 10px; border: 0; border-radius: 50%;
	background: rgb(255 255 255 / .12); color: inherit; box-shadow: none; font-size: 0; line-height: 0;
}
.site-header.is-scrolled .nav-toggle { background: rgb(28 26 23 / .06); }

/* While the mobile overlay is open the header sits on cream, so switch to ink. */
body.no-scroll .site-header__pill { color: var(--c-ink); background: transparent; box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none; }
body.no-scroll .nav-toggle { background: rgb(28 26 23 / .06); }
body.no-scroll .site-header { z-index: 60; }
.site-header .nav-toggle span { display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-nav {
	position: fixed; inset: 0; z-index: 40;
	display: flex; align-items: center; justify-content: center;
	background: var(--c-cream);
	opacity: 0; transition: opacity .5s var(--ease);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; }
.mobile-nav__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.mobile-nav__link, .mobile-nav__cta, .mobile-nav__meta {
	opacity: 0; transform: translateY(18px);
	transition: opacity .6s var(--ease), transform .6s var(--ease);
	transition-delay: calc(var(--i, 0) * 70ms + 120ms);
}
.mobile-nav.is-open .mobile-nav__link, .mobile-nav.is-open .mobile-nav__cta, .mobile-nav.is-open .mobile-nav__meta { opacity: 1; transform: none; }
.mobile-nav__link { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; padding: 6px 12px; }
.mobile-nav__link:hover { color: var(--c-amber); }
.mobile-nav__cta { margin-top: 18px; }
.mobile-nav__meta { margin-top: 22px; color: var(--c-olive); font-size: .95rem; }

@media (max-width: 899px) {
	.nav, .site-header__cta, .site-header .lang { display: none; }
	.site-header .nav-toggle { display: flex; }
	.site-header { inset: 12px 0 auto 0; }
	.admin-bar .site-header { inset-block-start: 58px; }
	.site-header__pill { padding: 8px 8px 8px 18px; }
	.site-header.is-scrolled .site-header__pill { background: rgb(255 253 249 / .9); }
}

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; height: 100svh; min-height: 640px; max-height: 1100px; background: var(--c-ink); }
.hero-swiper, .hero__slide { height: 100%; }
.hero__slide { position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img {
	width: 100%; height: 100%; object-fit: cover;
	transform-origin: center;
	animation: kenburns 9s var(--ease-io) both;
	animation-play-state: paused;
}
.swiper-slide-active .hero__media img { animation-play-state: running; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }

.hero__overlay {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgb(28 26 23 / .5) 0%, rgb(28 26 23 / .3) 40%, rgb(28 26 23 / .62) 100%);
}
/* Short cream fade so the floating info cards sit on the page background.
   Lives inside the swiper's stacking context, under its pagination (z-index 10). */
.hero-swiper::after {
	content: ''; position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
	height: 150px; pointer-events: none;
	background: linear-gradient(180deg, rgb(246 241 233 / 0), var(--c-cream) 92%);
}
.hero__content {
	position: relative; z-index: 2;
	display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
	height: 100%;
	padding-top: 80px; padding-bottom: 160px;
	color: #fff;
}
.hero__title {
	font-family: var(--font-display); font-weight: 300;
	font-size: clamp(2.7rem, 6.4vw, 5.6rem); line-height: 1.02; letter-spacing: -.015em;
	max-width: 14ch;
	text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--c-amber-2); }
.hero__text { max-width: 46ch; margin-top: 22px; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.55; color: rgb(255 255 255 / .86); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* Staggered entrance per slide */
[data-hero-anim] {
	opacity: 0; transform: translateY(30px);
	transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.swiper-slide-active [data-hero-anim] { opacity: 1; transform: none; }
.swiper-slide-active [data-hero-anim]:nth-child(1) { transition-delay: .25s; }
.swiper-slide-active [data-hero-anim]:nth-child(2) { transition-delay: .4s; }
.swiper-slide-active [data-hero-anim]:nth-child(3) { transition-delay: .55s; }
.swiper-slide-active [data-hero-anim]:nth-child(4) { transition-delay: .7s; }

/* Without JS: show first slide as a static hero */
.hero-swiper:not(.swiper-initialized) .swiper-slide:not(:first-child) { display: none; }
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child [data-hero-anim] { opacity: 1; transform: none; }
.hero-swiper:not(.swiper-initialized) .swiper-slide:first-child .hero__media img { animation-play-state: running; }

/* Controls: progress pills + pause toggle */
.hero__controls {
	position: absolute; left: 50%; bottom: 112px; transform: translateX(-50%);
	display: flex; align-items: center; gap: 18px;
	z-index: 10;
}
.hero__pagination.swiper-pagination {
	position: static; transform: none;
	display: flex; gap: 10px; width: auto;
}
.hero .hero__pause {
	display: grid; place-items: center; width: 36px; height: 36px; padding: 0; border: 0; border-radius: 50%;
	background: rgb(255 255 255 / .14); color: #fff; box-shadow: none; font-size: 0; line-height: 0;
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	transition: background-color .3s;
}
.hero__pause:hover { background: rgb(255 255 255 / .26); }
.hero__pause svg { width: 16px; height: 16px; }
.hero__play-icon { display: none; }
.hero-swiper.is-paused .hero__play-icon { display: block; }
.hero-swiper.is-paused .hero__pause-icon { display: none; }
.hero-swiper.is-paused .swiper-pagination-bullet-active::after { animation-play-state: paused; }
.hero__pagination .swiper-pagination-bullet {
	position: relative; width: 44px; height: 3px; margin: 0 !important;
	border-radius: 3px; background: rgb(255 255 255 / .35); opacity: 1;
	overflow: hidden; transition: width .5s var(--ease);
}
.hero__pagination .swiper-pagination-bullet::after {
	content: ''; position: absolute; inset: 0; width: 0; background: var(--c-amber-2); border-radius: 3px;
}
.hero__pagination .swiper-pagination-bullet-active { width: 72px; }
/* 6s autoplay delay + 1.4s crossfade */
.hero__pagination .swiper-pagination-bullet-active::after { animation: fill 7.4s linear forwards; }
@keyframes fill { to { width: 100%; } }

/* Scroll cue */
.hero__scroll {
	position: absolute; right: clamp(20px, 4vw, 56px); bottom: 118px; z-index: 3;
	width: 1px; height: 56px; background: rgb(255 255 255 / .3);
}
.hero__scroll span {
	position: absolute; left: -2px; top: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--c-amber-2);
	animation: cue 2.2s var(--ease-io) infinite;
}
@keyframes cue { 0% { transform: translateY(0); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(52px); opacity: 0; } }

@media (max-width: 899px) {
	.hero { min-height: 600px; }
	.hero__content { padding-bottom: 140px; justify-content: flex-end; }
	.hero__controls { left: var(--gutter); transform: none; bottom: 92px; }
	.hero__pagination .swiper-pagination-bullet { width: 32px; }
	.hero__pagination .swiper-pagination-bullet-active { width: 56px; }
	.hero__scroll { display: none; }
}

/* =========================================================
   Info bar
   ========================================================= */
.info-bar { position: relative; z-index: 3; }
.info-bar__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
	margin-top: -84px;
}
/* Cards that are themselves [data-reveal] must keep the reveal properties in their
   transition list, otherwise this shorthand cancels the fade and stagger. */
.info-card {
	display: flex; gap: 18px; align-items: flex-start;
	padding: 26px 26px 26px 24px;
	transition: opacity .9s var(--ease), filter .9s var(--ease), transform .7s var(--ease), box-shadow .7s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}
.info-card--link:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.info-card__icon {
	flex-shrink: 0; display: grid; place-items: center;
	width: 52px; height: 52px; border-radius: 50%;
	background: linear-gradient(135deg, var(--c-amber-2), var(--c-amber)); color: #fff;
	box-shadow: var(--shadow-amber);
}
.info-card__icon svg { width: 22px; height: 22px; }
.info-card__title { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; line-height: 1.2; margin-bottom: 6px; }
.info-card__text { color: var(--c-olive); font-size: .95rem; line-height: 1.55; }
.info-card__hint { font-size: .85rem; color: var(--c-amber-text); font-weight: 500; }

@media (max-width: 899px) {
	.info-bar__grid { grid-template-columns: 1fr; gap: 14px; margin-top: -56px; }
}

/* =========================================================
   About
   ========================================================= */
.about__grid {
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about__media { position: relative; padding-bottom: 60px; padding-right: 40px; }
.about__img { overflow: hidden; box-shadow: var(--shadow-soft); }
.about__img img { width: 100%; height: 100%; object-fit: cover; }
.about__img--main { aspect-ratio: 4 / 5; border-radius: 28px 28px 140px 28px; }
.about__img--float {
	position: absolute; right: 0; bottom: 0; width: 48%; aspect-ratio: 4 / 5;
	border-radius: 140px 28px 28px 28px; box-shadow: var(--shadow-lift);
}
.about__badge {
	position: absolute; left: -18px; top: 8%;
	width: 112px; height: 112px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--c-amber); color: #fff;
	font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
	box-shadow: var(--shadow-amber);
	transform: rotate(-8deg);
	animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: rotate(-8deg) translateY(0); } 50% { transform: rotate(-8deg) translateY(-10px); } }

.about__body .lead { margin-top: 20px; }
.about__body .h2 { margin-top: 4px; }

.stats { display: grid; grid-template-columns: repeat(3, auto); justify-content: start; gap: clamp(24px, 4vw, 48px); margin-top: 44px; }
.stat__value { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1; color: var(--c-ink); font-variant-numeric: tabular-nums; }
.stat__label { display: block; margin-top: 8px; font-size: .85rem; color: var(--c-olive); letter-spacing: .02em; }

@media (max-width: 899px) {
	.about__grid { grid-template-columns: 1fr; gap: 48px; }
	.about__media { padding-right: 0; padding-bottom: 48px; max-width: 520px; }
	.about__img--float { width: 52%; right: -8px; }
	.about__badge { display: none; }
	.stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
	.about__img--float { width: 55%; right: 0; }
}

/* =========================================================
   Menu
   ========================================================= */
.menu { background: var(--c-cream-2); border-radius: 56px 56px 0 0; }

.tabs {
	display: inline-flex; gap: 6px; padding: 6px;
	margin: 0 auto 40px; border-radius: var(--radius-pill);
	background: rgb(28 26 23 / .05);
}
.tabs-wrap { text-align: center; }
.tabs .tab {
	padding: 12px 24px; border: 0; border-radius: var(--radius-pill); white-space: nowrap; background: transparent; box-shadow: none;
	font-family: var(--font-body); font-weight: 600; font-size: .95rem; line-height: 1.2; color: var(--c-olive);
	transition: background-color .4s, color .4s, box-shadow .5s var(--ease), transform .5s var(--ease);
}
.tabs .tab:hover { color: var(--c-ink); }
.tabs .tab.is-active { background: var(--c-card); color: var(--c-ink); box-shadow: var(--shadow-soft); }

.menu .tabs { display: flex; justify-content: center; width: max-content; }

.menu__panel[hidden] { display: none; }
.menu__panel.is-entering .dish { animation: panelIn .6s var(--ease) both; animation-delay: calc(var(--i, 0) * 80ms); }
@keyframes panelIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.menu__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dish {
	display: flex; flex-direction: column;
	background: var(--c-card); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: opacity .9s var(--ease), filter .9s var(--ease), transform .7s var(--ease), box-shadow .7s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}
.dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.dish__media { aspect-ratio: 4 / 3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__body { padding: 22px 24px 26px; }
.dish__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.dish__name { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; line-height: 1.25; }
.dish__price {
	flex-shrink: 0; padding: 6px 12px; border-radius: var(--radius-pill);
	background: rgb(200 134 43 / .12); color: var(--c-amber-text); font-weight: 600; font-size: .9rem;
	white-space: nowrap;
}
.dish__desc { margin-top: 10px; color: var(--c-olive); font-size: .95rem; line-height: 1.55; }

.menu__cta { text-align: center; margin-top: 48px; }

@media (max-width: 899px) {
	.menu { border-radius: 36px 36px 0 0; }
	.menu__grid { grid-template-columns: 1fr; gap: 18px; max-width: 520px; margin-inline: auto; }
	.menu .tabs { width: 100%; max-width: 520px; overflow-x: auto; scrollbar-width: none; }
	.menu .tabs::-webkit-scrollbar { display: none; }
	.tabs .tab { flex: 1 0 auto; padding: 12px 14px; font-size: .9rem; }
}
@media (min-width: 600px) and (max-width: 899px) {
	.menu__grid { grid-template-columns: 1fr 1fr; max-width: none; }
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery { background: var(--c-cream-2); }
.gallery__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; gap: 18px;
}
.gallery__item { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-soft); }
/* Slightly oversized so the parallax offset never exposes the edges. */
.gallery__inner { position: absolute; inset: -6%; }
.gallery__inner img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery__item:hover .gallery__inner img { transform: scale(1.08); }
.gallery__caption {
	position: absolute; left: 16px; bottom: 16px;
	padding: 8px 14px; border-radius: var(--radius-pill);
	background: rgb(255 253 249 / .85); color: var(--c-ink);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	font-size: .85rem; font-weight: 500;
	transform: translateY(14px); opacity: 0;
	transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.gallery__item:hover .gallery__caption { transform: none; opacity: 1; }

/* 4 columns x 3 rows, fully filled:
   1 1 2 3
   1 1 4 5
   6 6 4 5 */
.gallery__item--1 { grid-column: span 2; grid-row: span 2; }
.gallery__item--4 { grid-row: span 2; }
.gallery__item--5 { grid-row: span 2; }
.gallery__item--6 { grid-column: span 2; }

@media (max-width: 899px) {
	.gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: 12px; }
	.gallery__item--1 { grid-column: span 2; grid-row: span 1; }
	.gallery__item--4, .gallery__item--5 { grid-row: span 1; }
	.gallery__item--6 { grid-column: span 2; }
	.gallery__caption { opacity: 1; transform: none; }
}

/* =========================================================
   Reviews (dark band)
   ========================================================= */
.reviews {
	position: relative; overflow: hidden;
	background: var(--c-ink); color: var(--c-cream);
}
.reviews::before {
	content: ''; position: absolute; left: 50%; top: -20%;
	width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgb(200 134 43 / .28), transparent 60%);
	filter: blur(40px);
	pointer-events: none;
}
.reviews .container { position: relative; }
.reviews-swiper { padding-bottom: 56px; overflow: visible; }
.reviews-swiper .swiper-slide { height: auto; }
.review {
	display: flex; flex-direction: column; height: 100%;
	padding: 34px 32px 30px; border-radius: var(--radius);
	background: rgb(255 253 249 / .06);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	transition: background-color .5s, transform .6s var(--ease);
}
.review:hover { background: rgb(255 253 249 / .1); transform: translateY(-6px); }
.review__stars { display: flex; gap: 3px; }
.review__stars svg { width: 18px; height: 18px; color: rgb(255 255 255 / .18); }
.review__stars .is-on svg { color: var(--c-amber-2); }
.review__text {
	flex: 1; margin-top: 20px;
	font-family: var(--font-display); font-style: italic; font-weight: 300;
	font-size: 1.25rem; line-height: 1.5; color: rgb(246 241 233 / .92);
}
.review__meta { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.review__avatar {
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	background: linear-gradient(135deg, var(--c-amber-2), var(--c-amber)); color: #fff;
	font-family: var(--font-display); font-size: 1.15rem;
}
.review__name { display: block; font-size: .95rem; }
.review__role { display: block; font-size: .85rem; color: rgb(246 241 233 / .6); }

.reviews__pagination.swiper-pagination { bottom: 0; }
.reviews__pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: rgb(246 241 233 / .35); opacity: 1; transition: width .4s var(--ease), background-color .3s; border-radius: 4px; }
.reviews__pagination .swiper-pagination-bullet-active { width: 28px; background: var(--c-amber-2); }

/* =========================================================
   Reservation
   ========================================================= */
.reservation__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.reservation__form-col .lead { margin-top: 18px; }
.reservation__form-col .h2 { margin-top: 4px; }

.form { margin-top: 32px; padding: 32px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; position: relative; }
.field__label { font-size: .85rem; font-weight: 600; letter-spacing: .02em; color: var(--c-ink); }
.field__input {
	width: 100%; padding: 15px 18px; border: 0; border-radius: 16px;
	background: var(--c-field); color: var(--c-ink); font: inherit; font-size: 1rem;
	transition: box-shadow .35s var(--ease), background-color .3s;
	appearance: none; -webkit-appearance: none;
}
select.field__input {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E7461' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 16px center; background-size: 18px;
	padding-right: 44px;
}
textarea.field__input { resize: vertical; min-height: 96px; }
.field__input:focus { outline: none; box-shadow: 0 0 0 3px rgb(200 134 43 / .35); background-color: #fff; }
.field__input::placeholder { color: rgb(110 116 97 / .7); }
.field__error { display: none; font-size: .82rem; color: #B4482B; }
.is-invalid .field__error { display: block; }
.is-invalid .field__input { box-shadow: 0 0 0 3px rgb(180 72 43 / .35); }

.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.check { display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; align-items: start; margin: 6px 0 22px; }
.check input {
	width: 20px; height: 20px; margin: 2px 0 0; appearance: none; -webkit-appearance: none;
	border-radius: 6px; background: var(--c-field); cursor: pointer;
	transition: background-color .3s, box-shadow .3s;
}
.check input:checked { background: var(--c-amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E") center/14px no-repeat; }
.check label { font-size: .92rem; color: var(--c-olive); cursor: pointer; }
.check .field__error { grid-column: 2; }
.check.is-invalid input { box-shadow: 0 0 0 3px rgb(180 72 43 / .35); }

.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form .btn { border: 0; font-family: var(--font-body); line-height: 1.2; }
.form__alt { font-size: .92rem; color: var(--c-olive); }
.form__alt:hover { color: var(--c-amber); }

.form__status { margin-top: 24px; padding: 16px 20px; border-radius: 16px; font-weight: 500; }
.form__status.is-ok { background: rgb(110 116 97 / .14); color: #3F4A33; }
.form__status.is-error { background: rgb(180 72 43 / .12); color: #8E3A22; }

.map { height: 100%; min-height: 440px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--c-cream-2); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 440px; border: 0; filter: saturate(.8) contrast(1.02); }
.reservation__details { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; padding: 0 8px; color: var(--c-olive); font-size: .95rem; }
.reservation__details-title { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--c-ink); margin-bottom: 8px; }
.hours li { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; }
.hours li span:last-child { color: var(--c-ink); font-weight: 500; }

@media (max-width: 899px) {
	.reservation__grid { grid-template-columns: 1fr; }
	.form { padding: 24px 20px; }
	.form__row { grid-template-columns: 1fr; gap: 0; }
	.map, .map iframe { min-height: 320px; }
	.reservation__details { grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer { position: relative; overflow: hidden; background: var(--c-ink); color: rgb(246 241 233 / .72); padding-top: clamp(64px, 8vw, 104px); }
.site-footer__word {
	position: absolute; left: 50%; bottom: -.22em; transform: translateX(-50%);
	font-family: var(--font-display); font-weight: 500; font-size: clamp(6rem, 20vw, 17rem); line-height: 1;
	color: rgb(246 241 233 / .045); pointer-events: none; user-select: none; white-space: nowrap;
}
.site-footer__grid { position: relative; display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.2fr; gap: 40px; }
.brand--footer { color: var(--c-cream); }
.site-footer__desc { margin-top: 18px; max-width: 38ch; font-size: .95rem; line-height: 1.65; }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials__link {
	display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
	background: rgb(246 241 233 / .08); color: var(--c-cream);
	transition: background-color .3s, transform .5s var(--ease);
}
.socials__link:hover { background: var(--c-amber); transform: translateY(-3px); }
.socials__link svg { width: 18px; height: 18px; }
.site-footer__title { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--c-cream); margin-bottom: 16px; }
.site-footer__list li { padding: 5px 0; font-size: .95rem; }
.site-footer__list a { transition: color .3s; }
.site-footer__list a:hover { color: var(--c-amber-2); }
.site-footer__list--hours li { display: flex; justify-content: space-between; gap: 12px; }
.site-footer__list--hours span:last-child { color: var(--c-cream); }
.site-footer__bottom {
	position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
	margin-top: clamp(48px, 6vw, 80px); padding-block: 26px 30px;
	font-size: .85rem; color: rgb(246 241 233 / .5);
}
.site-footer__bottom::before { content: ''; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px; background: rgb(246 241 233 / .1); }

@media (max-width: 899px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
	.site-footer__col--brand { grid-column: span 2; }
}
@media (max-width: 520px) {
	.site-footer__grid { grid-template-columns: 1fr; }
	.site-footer__col--brand { grid-column: span 1; }
}

/* =========================================================
   Blog: post cards (front page "Novosti" + archives)
   ========================================================= */
.blog { background: var(--c-cream-2); border-radius: 56px 56px 0 0; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card {
	display: flex; flex-direction: column;
	background: var(--c-card); border-radius: var(--radius); overflow: hidden;
	box-shadow: var(--shadow-soft);
	transition: opacity .9s var(--ease), filter .9s var(--ease), transform .7s var(--ease), box-shadow .7s var(--ease);
	transition-delay: calc(var(--i, 0) * 90ms);
}
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-cream-2); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__placeholder {
	display: grid; place-items: center; width: 100%; height: 100%;
	background: radial-gradient(circle at 30% 20%, rgb(224 164 74 / .35), transparent 55%), linear-gradient(160deg, var(--c-cream-2), #E4D9C6);
}
.post-card__placeholder span { font-family: var(--font-display); font-style: italic; font-size: 4rem; color: var(--c-amber); opacity: .8; }
.post-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 26px; }
.post-card__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; font-size: .82rem; color: var(--c-olive); }
.post-card__cat { padding: 4px 10px; border-radius: var(--radius-pill); background: rgb(200 134 43 / .12); color: var(--c-amber-text); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .72rem; }
.post-card__title { margin-top: 12px; font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; line-height: 1.25; }
.post-card__title a:hover { color: var(--c-amber); }
.post-card__excerpt { margin-top: 10px; color: var(--c-olive); font-size: .95rem; line-height: 1.55; flex: 1; }
.post-card__more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-weight: 600; font-size: .9rem; color: var(--c-ink); }
.post-card__more svg { width: 16px; height: 16px; transition: transform .5s var(--ease); }
.post-card__more:hover { color: var(--c-amber); }
.post-card__more:hover svg { transform: translateX(4px); }

@media (max-width: 899px) {
	.blog { border-radius: 36px 36px 0 0; }
	.post-grid { grid-template-columns: 1fr; gap: 18px; max-width: 520px; margin-inline: auto; }
}
@media (min-width: 600px) and (max-width: 899px) {
	.post-grid { grid-template-columns: 1fr 1fr; max-width: none; }
}

/* =========================================================
   Single post / page (index.php)
   ========================================================= */
body:not(.home) .site-header__pill { color: var(--c-ink); }
.entry { padding-top: calc(var(--header-h) + 72px); padding-bottom: clamp(72px, 10vw, 128px); }
.entry__back { display: inline-block; margin-bottom: 28px; font-size: .9rem; color: var(--c-olive); }
.entry__back:hover { color: var(--c-amber); }
.entry__meta { margin-bottom: 16px; }
.entry__title { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.06; letter-spacing: -.01em; text-wrap: balance; }
.entry__media { margin-top: 40px; }
.entry__media img { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.entry__content { margin-top: 40px; font-size: 1.1rem; line-height: 1.75; }
.entry__content > * + * { margin-top: 1.2em; }
.entry__content h2, .entry__content h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; margin-top: 1.8em; }
.entry__content h2 { font-size: 1.9rem; }
.entry__content h3 { font-size: 1.45rem; }
.entry__content a { color: var(--c-amber); text-decoration: underline; text-underline-offset: 3px; }
.entry__content img { border-radius: var(--radius-sm); }
.entry__content ul, .entry__content ol { padding-left: 1.4em; }
.entry__content ul { list-style: disc; }
.entry__content ol { list-style: decimal; }
.entry__content blockquote { padding-left: 1.2em; border-left: 3px solid var(--c-amber); font-family: var(--font-display); font-style: italic; font-size: 1.25rem; color: var(--c-olive); }
.entry__content figcaption { font-size: .85rem; color: var(--c-olive); margin-top: .5em; }
.entry__content .alignwide, .entry__content .alignfull { margin-inline: 0; max-width: 100%; }

.archive { padding-top: calc(var(--header-h) + 72px); min-height: 70vh; }
.archive__nav { margin-top: 48px; text-align: center; }
.archive__nav .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.archive__nav .page-numbers { display: inline-flex; align-items: center; min-height: 40px; padding: 8px 16px; border-radius: var(--radius-pill); background: var(--c-card); box-shadow: var(--shadow-soft); font-weight: 500; font-size: .9rem; }
.archive__nav .page-numbers.current { background: var(--c-amber); color: #fff; }
.archive__empty { text-align: center; }
.archive__empty a { color: var(--c-amber); text-decoration: underline; }
