/* ==========================================================================
   GULLIVER ÉTTEREM · PIZZÉRIA - design system
   Palette/type fuse: Verdetei (rustic-elegant rhythm) + Pinza (bold display)
   + Cheesecake Factory (warm, food-forward discipline)
   ========================================================================== */

/* ----- Tokens ----------------------------------------------------------- */
:root {
  /* brand colours (sampled from the crest + warm-wood interior) */
  --cream:        #FAF6EE;
  --cream-2:      #F2E9D8;
  --sand:         #E7D8BC;
  --espresso:     #1E140F;
  --espresso-2:   #2A1B12;
  --wood:         #3A2417;
  --gold:         #C49A4A;
  --gold-soft:    #D9B86A;
  --gold-deep:    #A57C30;
  --paprika:      #9E3B2E;
  --paprika-deep: #7C2B20;
  --sage:         #6E7355;
  --ink:          #2A211B;
  --ink-soft:     #5A4B3E;
  --line:         rgba(42,33,27,.14);
  --line-light:   rgba(250,246,238,.16);

  /* surfaces */
  --bg:           var(--cream);
  --bg-dark:      var(--espresso);

  /* type */
  --serif:  "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --display:"Bebas Neue", Impact, var(--sans);

  /* scale */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 14px;
  --radius-lg: 24px;

  /* motion */
  --ease: cubic-bezier(.6,.04,.12,.96);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --shadow:   0 18px 50px -24px rgba(30,20,15,.55);
  --shadow-lg:0 40px 90px -40px rgba(30,20,15,.7);

  --nav-h: 76px;
}

/* ----- Reset ------------------------------------------------------------ */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--sans);
  font-size: clamp(16px, 1.05vw, 17.5px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg,video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ----- Typography ------------------------------------------------------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.08; color: var(--ink); }
.h-xl { font-size: clamp(2.1rem, 5vw, 4.4rem); letter-spacing: -.01em; }
.h-lg { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.3rem); }
p { color: var(--ink-soft); }
strong { color: var(--ink); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .7em;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.is-center::after { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-soft); }

/* ----- Layout ----------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 10vw, 140px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.section-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 64px); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head .h-lg { margin-top: .35em; }
.section-head p { margin-top: 1em; }

.dark { background: var(--bg-dark); color: var(--cream); }
.dark h1,.dark h2,.dark h3,.dark h4 { color: var(--cream); }
.dark p { color: rgba(250,246,238,.72); }
.dark .eyebrow { color: var(--gold-soft); }

/* ----- Buttons ---------------------------------------------------------- */
.btn {
  --bg: var(--gold); --fg: var(--espresso);
  display: inline-flex; align-items: center; gap: .6em;
  padding: .95em 1.7em; border-radius: 100px;
  font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  background: var(--bg); color: var(--fg);
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), color .4s var(--ease);
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--espresso); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(165,124,48,.8); color: var(--cream); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn--ghost { --bg: transparent; --fg: currentColor; box-shadow: inset 0 0 0 1.5px currentColor; }
.btn--ghost::after { background: var(--gold); }
.btn--ghost:hover { color: var(--espresso); box-shadow: inset 0 0 0 1.5px var(--gold); }
.btn--paprika { --bg: var(--paprika); --fg: #fff; }
.btn--paprika::after { background: var(--paprika-deep); }
.btn--paprika:hover { color: #fff; }
.btn .ico { width: 1.1em; height: 1.1em; }
.btn--lg { padding: 1.1em 2.1em; font-size: 1.02rem; }

/* circular badge CTA (Pinza-style) */
.badge-cta {
  --s: 132px;
  width: var(--s); height: var(--s); border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  background: var(--gold); color: var(--espresso);
  font-family: var(--display); font-size: 1.15rem; letter-spacing: .08em; line-height: 1;
  box-shadow: var(--shadow); transition: transform .5s var(--ease-out);
}
.badge-cta span { display: block; }
.badge-cta:hover { transform: scale(1.08) rotate(-4deg); }

/* ----- Top bar / nav ---------------------------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), height .4s var(--ease);
}
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 46px; width: auto; transition: height .4s var(--ease); filter: drop-shadow(0 3px 8px rgba(0,0,0,.3)); }
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links a {
  font-weight: 500; font-size: .96rem; color: var(--cream); position: relative; padding: 6px 0;
  letter-spacing: .01em; opacity: .92;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .4s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__right { display: flex; align-items: center; gap: 16px; }

/* scrolled state */
.nav.is-scrolled { background: rgba(28,19,14,.92); backdrop-filter: blur(10px); height: 64px;
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.7); }
.nav.is-scrolled .nav__brand img { height: 38px; }
/* on light pages (no hero) */
.nav.on-light:not(.is-scrolled) { background: rgba(28,19,14,.92); backdrop-filter: blur(8px); }

/* language switch */
.lang { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--line-light);
  border-radius: 100px; padding: 3px; }
.lang button { font-size: .72rem; font-weight: 700; letter-spacing: .06em; color: rgba(250,246,238,.7);
  padding: 5px 9px; border-radius: 100px; text-transform: uppercase; transition: .3s var(--ease); }
.lang button.is-active { background: var(--gold); color: var(--espresso); }
.lang button:hover { color: var(--cream); }
.lang button.is-active:hover { color: var(--espresso); }

/* hamburger */
.burger { display: none; width: 42px; height: 42px; position: relative; z-index: 70; }
.burger span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--cream);
  transition: .4s var(--ease); }
.burger span:nth-child(1){ top: 15px; } .burger span:nth-child(2){ top: 21px; } .burger span:nth-child(3){ top: 27px; }
.is-open .burger span:nth-child(1){ top: 21px; transform: rotate(45deg); }
.is-open .burger span:nth-child(2){ opacity: 0; }
.is-open .burger span:nth-child(3){ top: 21px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 65; background: var(--espresso);
  display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: var(--gutter);
  transform: translateY(-100%); transition: transform .6s var(--ease); visibility: hidden; }
.is-open .drawer { transform: translateY(0); visibility: visible; }
.drawer a { font-family: var(--serif); font-size: clamp(1.8rem,7vw,2.8rem); color: var(--cream);
  padding: 8px 0; opacity: 0; transform: translateY(18px); }
.is-open .drawer a { animation: drawerIn .6s var(--ease-out) forwards; }
.is-open .drawer a:nth-child(1){animation-delay:.12s}.is-open .drawer a:nth-child(2){animation-delay:.18s}
.is-open .drawer a:nth-child(3){animation-delay:.24s}.is-open .drawer a:nth-child(4){animation-delay:.30s}
.is-open .drawer a:nth-child(5){animation-delay:.36s}.is-open .drawer a:nth-child(6){animation-delay:.42s}
@keyframes drawerIn { to { opacity: 1; transform: none; } }
.drawer__foot { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.drawer__foot .lang { align-self: flex-start; }

/* ----- Hero ------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center;
  overflow: hidden; color: var(--cream); }
.hero__bg { position: absolute; inset: -12% 0; z-index: 0; }
.hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s var(--ease); }
.hero__bg img.is-active { opacity: 1; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(20,13,9,.78) 0%, rgba(20,13,9,.45) 45%, rgba(20,13,9,.25) 100%),
    linear-gradient(to top, rgba(20,13,9,.85) 0%, rgba(20,13,9,0) 55%); }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__eyebrow { color: var(--gold-soft); }
.hero h1 { color: var(--cream); margin: .25em 0 .35em; max-width: 16ch;
  text-shadow: 0 6px 40px rgba(0,0,0,.45); }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero__lead { max-width: 52ch; color: rgba(250,246,238,.85); font-size: clamp(.98rem,1.25vw,1.12rem); }
.hero__cta { margin-top: 2.2em; display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; z-index: 3; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(250,246,238,.7);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; }
.hero__scroll .mouse { width: 24px; height: 38px; border: 1.5px solid rgba(250,246,238,.5); border-radius: 14px;
  position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px;
  border-radius: 3px; background: var(--gold-soft); transform: translateX(-50%); animation: wheel 1.8s infinite; }
@keyframes wheel { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,12px)} }

/* hero dot indicators */
.hero__dots { position: absolute; right: var(--gutter); bottom: 30px; z-index: 3; display: flex; gap: 9px; }
.hero__dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(250,246,238,.35); transition: .3s; }
.hero__dots button.is-active { background: var(--gold); transform: scale(1.25); }

/* ----- Inner page header ------------------------------------------------ */
.page-hero { position: relative; min-height: 58vh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--cream); padding: calc(var(--nav-h) + 30px) 0 clamp(34px,6vw,68px); }
.page-hero__bg { position: absolute; inset: -12% 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(20,13,9,.9) 0%, rgba(20,13,9,.35) 70%, rgba(20,13,9,.55) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); margin-top: .2em; text-shadow: 0 6px 40px rgba(0,0,0,.4); }
.page-hero p { color: rgba(250,246,238,.85); max-width: 56ch; margin-top: .6em; font-size: clamp(1.02rem,1.5vw,1.2rem); }

/* ----- Marquee (Pinza scroll-scrub) ------------------------------------ */
.marquee { padding-block: clamp(28px, 5vw, 64px); overflow: hidden; background: var(--espresso);
  border-block: 1px solid var(--line-light); }
.marquee__track { display: flex; gap: .5em; width: max-content; will-change: transform; }
.marquee__track span { font-family: var(--display); font-size: clamp(3rem, 11vw, 9rem); line-height: .9;
  color: transparent; -webkit-text-stroke: 1.4px rgba(217,184,106,.55); text-stroke: 1.4px rgba(217,184,106,.55);
  letter-spacing: .02em; white-space: nowrap; text-transform: uppercase; }
.marquee__track span em { font-style: normal; color: var(--gold); -webkit-text-stroke: 0; }

/* ----- Story / split ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 80px); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media .frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.split__media .frame img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media .frame--wide img { aspect-ratio: 4/3; }
.split__badge { position: absolute; z-index: 2; background: var(--cream); color: var(--ink);
  border-radius: var(--radius); padding: 18px 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 2px; }
.split__badge .num { font-family: var(--serif); font-size: 2.4rem; color: var(--gold-deep); line-height: 1; }
.split__badge .lbl { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }
.split__badge.bl { left: -22px; bottom: -22px; }
.split__media .deco { position: absolute; inset: auto -26px -26px auto; width: 60%; height: 60%; z-index: -1;
  border: 1.5px solid var(--gold); border-radius: var(--radius-lg); opacity: .5; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,34px); margin-top: 48px; }
.feature { padding-top: 26px; border-top: 1px solid var(--line); }
.dark .feature { border-color: var(--line-light); }
.feature .ico { width: 30px; height: 30px; color: var(--gold-deep); margin-bottom: 14px; }
.dark .feature .ico { color: var(--gold-soft); }
.feature h3 { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.feature p { font-size: .94rem; }

/* count-up stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--gold); line-height: 1; }
.stat .lbl { margin-top: 8px; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(250,246,238,.65); }

/* ----- Menu ------------------------------------------------------------- */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(28px,4vw,52px); }
.menu-tabs button { padding: .6em 1.2em; border-radius: 100px; font-weight: 600; font-size: .9rem;
  color: var(--ink-soft); border: 1px solid var(--line); transition: .35s var(--ease); }
.menu-tabs button:hover { color: var(--ink); border-color: var(--gold); }
.menu-tabs button.is-active { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }

.menu-cols { columns: 2; column-gap: clamp(34px,5vw,72px); }
.menu-group { break-inside: avoid; margin-bottom: 40px; }
.menu-group > h3 { font-size: 1.5rem; display: flex; align-items: baseline; gap: 12px; margin-bottom: 18px; }
.menu-group > h3::before { content: ""; width: 22px; height: 2px; background: var(--gold); }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 6px; padding: 9px 0;
  border-bottom: 1px dashed var(--line); }
.menu-item__main { min-width: 0; }
.menu-item__name { font-weight: 600; color: var(--ink); }
.menu-item__name .tag { font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--paprika); border: 1px solid currentColor; border-radius: 4px; padding: 1px 5px; margin-left: 8px;
  vertical-align: middle; }
.menu-item__desc { font-size: .86rem; color: var(--ink-soft); margin-top: 2px; }
.menu-item__price { font-family: var(--serif); font-weight: 600; color: var(--gold-deep); white-space: nowrap; font-size: 1.02rem; }
.menu-note { margin-top: 8px; font-size: .92rem; }

/* menu highlight (home) - tab w/ bg crossfade */
/* Photo and menu panel sit side by side, so the food is fully visible
   (instead of the text panel covering it). Stacks on narrow screens. */
.menu-feature { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px;
  display: grid; grid-template-columns: 1.05fr .95fr; box-shadow: var(--shadow-lg); background: #1a120d; }
.menu-feature__bg { position: relative; min-height: 260px; overflow: hidden; }
.menu-feature__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s var(--ease), transform 8s var(--ease); transform: scale(1.06); }
.menu-feature__bg img.is-active { opacity: 1; transform: scale(1); }
/* soft seam where the photo meets the menu panel */
.menu-feature__bg::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, transparent 72%, rgba(26,18,13,.5)); }
.menu-feature__body { position: relative; z-index: 2; color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(26px,3.2vw,48px);
  background: linear-gradient(155deg, #241710, #1a120d); }
.menu-feature__body h3 { color: var(--cream); }
.menu-feature__body .eyebrow { color: var(--gold-soft); }
.menu-feature__body .menu-item { border-bottom-color: rgba(250,246,238,.16); }
.menu-feature__body .menu-item__name { color: var(--cream); }
.menu-feature__body .menu-item__price { color: var(--gold-soft); }
@media (max-width: 860px) {
  .menu-feature { grid-template-columns: 1fr; min-height: 0; }
  .menu-feature__bg { min-height: 300px; }
  .menu-feature__bg::after { background: linear-gradient(to bottom, transparent 74%, rgba(26,18,13,.55)); }
}

/* ----- Dish cards / carousel ------------------------------------------- */
.dish-rail { display: grid; grid-auto-flow: column; grid-auto-columns: clamp(230px, 26vw, 300px);
  gap: clamp(16px,2vw,26px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 18px;
  scrollbar-width: thin; }
.dish-rail::-webkit-scrollbar { height: 6px; }
.dish-rail::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }
.dish-card { scroll-snap-align: start; background: var(--cream); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); }
.dish-card__img { overflow: hidden; aspect-ratio: 1; }
.dish-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dish-card:hover .dish-card__img img { transform: scale(1.07); }
.dish-card__body { padding: 16px 18px 20px; }
.dish-card__body h4 { font-size: 1.08rem; }
.dish-card__body .cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }

/* ----- Gallery ---------------------------------------------------------- */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.gallery-filter button { padding: .5em 1.1em; border-radius: 100px; font-weight: 600; font-size: .86rem;
  color: var(--ink-soft); border: 1px solid var(--line); transition: .3s var(--ease); }
.gallery-filter button.is-active, .gallery-filter button:hover { background: var(--espresso); color: var(--cream); border-color: var(--espresso); }
.masonry { columns: 3; column-gap: 16px; }
.masonry__item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius); overflow: hidden;
  position: relative; cursor: zoom-in; box-shadow: var(--shadow); background: var(--sand); }
.masonry__item img { width: 100%; transition: transform .9s var(--ease), filter .5s; }
.masonry__item::after { content: ""; position: absolute; inset: 0; background: rgba(20,13,9,.0); transition: .4s; }
.masonry__item:hover img { transform: scale(1.06); }
.masonry__item:hover::after { background: rgba(20,13,9,.18); }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; background: rgba(15,10,7,.95); display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 4vw; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 82vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__cap { color: var(--cream); font-family: var(--serif, serif); font-size: clamp(1rem, 2.4vw, 1.4rem);
  text-align: center; max-width: 88vw; letter-spacing: .01em; }
.lightbox__close, .lightbox__nav { position: absolute; color: var(--cream); width: 54px; height: 54px;
  display: grid; place-content: center; border: 1px solid var(--line-light); border-radius: 50%; transition: .3s; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--espresso); }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ----- Events cards ----------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.4vw,28px); }
.ecard { background: var(--cream); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column; }
.dark .ecard { background: var(--espresso-2); }
.ecard__img { aspect-ratio: 3/2; overflow: hidden; }
.ecard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ecard:hover .ecard__img img { transform: scale(1.06); }
.ecard__body { padding: 24px 26px 28px; }
.ecard__body h3 { font-size: 1.3rem; margin-bottom: 8px; }

/* ----- Contact ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(28px,4vw,56px); align-items: stretch; }
.contact-card { background: var(--cream); border-radius: var(--radius-lg); padding: clamp(26px,3.5vw,44px); box-shadow: var(--shadow); }
.dark .contact-card { background: var(--espresso-2); }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.dark .info-row { border-color: var(--line-light); }
.info-row:last-of-type { border-bottom: 0; }
.info-row .ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%; display: grid; place-content: center;
  background: var(--cream-2); color: var(--gold-deep); }
.dark .info-row .ico { background: rgba(217,184,106,.12); color: var(--gold-soft); }
.info-row h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 3px; }
.dark .info-row h4 { color: rgba(250,246,238,.6); }
.info-row a, .info-row p { color: var(--ink); font-weight: 500; }
.dark .info-row a, .dark .info-row p { color: var(--cream); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; min-height: 380px; box-shadow: var(--shadow); position: relative; background: var(--sand); }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(.9) contrast(1.02); }
.hours-list { display: grid; gap: 4px; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: .95rem; }
.dark .hours-list li { border-color: var(--line-light); }
.hours-list .day { color: var(--ink-soft); } .dark .hours-list .day { color: rgba(250,246,238,.7); }
.hours-list .open { color: var(--ink); font-weight: 600; } .dark .hours-list .open { color: var(--cream); }

/* ----- CTA band --------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; text-align: center; color: var(--cream); }
.cta-band__bg { position: absolute; inset: -15% 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(20,13,9,.72); z-index: 1; }
.cta-band .container { position: relative; z-index: 2; }

/* ----- Footer ----------------------------------------------------------- */
.footer { background: #150D09; color: rgba(250,246,238,.7); padding-block: clamp(54px,7vw,86px) 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,56px); }
.footer img.logo { height: 64px; margin-bottom: 18px; }
.footer h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-soft); margin-bottom: 16px; }
.footer a:hover { color: var(--gold-soft); }
.footer ul { display: grid; gap: 10px; font-size: .94rem; }
.footer__social { display: flex; gap: 12px; margin-top: 18px; }
.footer__social a { width: 42px; height: 42px; border: 1px solid var(--line-light); border-radius: 50%;
  display: grid; place-content: center; transition: .35s var(--ease); }
.footer__social a:hover { background: var(--gold); color: var(--espresso); border-color: var(--gold); transform: translateY(-3px); }
.footer__bar { margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--line-light);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .82rem; }

/* ----- Loader ----------------------------------------------------------- */
.loader { position: fixed; inset: 0; z-index: 200; background: var(--espresso); display: grid; place-content: center;
  gap: 22px; justify-items: center; transition: opacity .7s var(--ease), visibility .7s; }
.loader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader img { height: 96px; opacity: .96; animation: floaty 3s var(--ease) infinite; }
@keyframes floaty { 50% { transform: translateY(-8px); } }
.loader__bar { width: 180px; height: 2px; background: var(--line-light); overflow: hidden; border-radius: 2px; }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--gold); transition: width .3s linear; }

/* ----- Back to top ------------------------------------------------------ */
.to-top { position: fixed; right: clamp(16px,3vw,30px); bottom: clamp(16px,3vw,30px); z-index: 55;
  width: 48px; height: 48px; border-radius: 50%; background: var(--espresso); color: var(--cream);
  display: grid; place-content: center; box-shadow: var(--shadow); opacity: 0; visibility: hidden;
  transform: translateY(12px); transition: .4s var(--ease); }
.to-top.is-vis { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--espresso); transform: translateY(-3px); }

/* ----- Reveal animations ------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.1s}.reveal[data-d="2"]{transition-delay:.2s}
.reveal[data-d="3"]{transition-delay:.3s}.reveal[data-d="4"]{transition-delay:.4s}.reveal[data-d="5"]{transition-delay:.5s}
/* clip the INNER media (not the observed box, so IntersectionObserver still sees its size) */
.reveal-img > img, .reveal-img > iframe { clip-path: inset(0 100% 0 0); transition: clip-path 1.1s var(--ease); }
.reveal-img.is-in > img, .reveal-img.is-in > iframe { clip-path: inset(0 0 0 0); }

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

/* ----- Responsive ------------------------------------------------------- */
@media (max-width: 980px) {
  .nav__links, .nav__right .lang, .nav__right .btn { display: none; }
  .burger { display: block; }
  .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-cols { columns: 1; }
  .masonry { columns: 2; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 36px 16px; }
}
@media (max-width: 560px) {
  .masonry { columns: 1; }
  .hero h1 { max-width: none; }
  .split__badge.bl { left: 12px; bottom: -16px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ----- Reduced motion --------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; }
  .reveal-img > img, .reveal-img > iframe { clip-path: none !important; }
  .hero__bg { inset: 0; }
}
