/* ============================================================
   Vedas — faithful rebuild
   Reconstructed from the live Webflow build: real fonts (Satoshi +
   TT Ramillas Variable), real assets, fluid 1vw em-based type.
   --biege #d8cbb8 · --dark #2c2c2c · --primary #d49653
   ============================================================ */

/* ---------------- Fonts ---------------- */
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'TT Ramillas Variable';
  src: url('fonts/TTRamillasVariable.ttf') format('truetype');
  font-weight: 100 900; font-style: normal; font-display: swap;
}

/* ---------------- Tokens ---------------- */
:root {
  --biege: #d8cbb8;
  --dark: #2c2c2c;
  --primary: #d49653;
  --greige: #bfb4a3;
  --obsidian: #292622;
  --serif: 'TT Ramillas Variable', Georgia, serif;
  --sans: 'Satoshi', Arial, sans-serif;
  --pad: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::-webkit-scrollbar { display: none; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--biege);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 1vw;              /* fluid em base, mirrors the live build */
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 300; }

/* Live site renders every serif display heading in uppercase */
.h1-hero, .h2, .h2-biege, .h3 { text-transform: uppercase; }

/* ---------------- Reusable type ---------------- */
.serif { font-family: var(--serif); font-weight: 300; }

.caption {                       /* .caption_heading */
  color: var(--biege);
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.caption.dark { color: var(--dark); }

.base-p {                        /* .base_p */
  color: var(--biege);
  font-size: 0.9em;
  line-height: 1.4;
}
.base-p.dark { color: var(--dark); }

/* ---------------- Buttons ---------------- */
/* Real markup: <a class="button"><div class="button_box"><div>label</div></div></a> */
.button {
  display: inline-block;
  border: 1px solid var(--biege);
  border-radius: 3px;
  padding: 4px;
  font-size: 0.9em;
  font-weight: 500;
  transition: padding .45s cubic-bezier(.25,.46,.45,.94), transform .45s cubic-bezier(.25,.46,.45,.94);
}
.button.dark { border-color: var(--dark); }
.button:hover { padding: 6px; transform: scale(1.02); }
.button-box {
  background-color: var(--biege);
  color: var(--dark);
  border-radius: 3px;
  padding: 16px 42px;
  text-align: center;
}
.button-box.dark { background-color: var(--dark); color: var(--biege); }
.button.block { display: block; }
.button.block .button-box { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  transition: background-color .4s ease, padding .4s ease, backdrop-filter .4s ease;
}
.nav.scrolled {
  background-color: rgba(41,38,34,.9);
  backdrop-filter: blur(8px);
  padding: 14px var(--pad);
}
.nav-left { display: flex; align-items: center; gap: 2.6em; }
.nav-logo { display: flex; align-items: center; color: var(--biege); }
.nav-logo img { width: 2.9em; height: auto; }
.nav-logo .crest { width: 3.1em; height: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 1.9em; list-style: none; }
.nav-links a {
  display: flex; align-items: center; gap: 5px;
  color: var(--biege); font-size: 0.9em; font-weight: 500;
  opacity: .92; transition: opacity .25s ease;
}
.nav-act span { font-size: 0.9em; }
.nav-links a:hover { opacity: 1; }
.nav-links .chev { width: .7em; opacity: .8; }

.nav-right { display: flex; align-items: center; gap: 1.1em; }
.nav-act { display: flex; align-items: center; gap: .7em; color: var(--biege); font-size: .95em; }
.nav-sq {
  width: 2.6em; height: 2.6em; border-radius: 3px;
  background-color: var(--primary);
  display: grid; place-items: center;
}
.nav-sq img { width: 1.25em; height: 1.25em; object-fit: contain; }
.nav-div { width: 1px; height: 1.8em; background: rgba(216,203,184,.35); }
.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(41,38,34,.72) 0%, rgba(44,44,44,.32) 38%, rgba(41,38,34,.55) 78%, rgba(41,38,34,.85) 100%);
}
.hero-wrap {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  height: 100%; width: 100%;
  padding: 7em var(--pad) 7em;
}
.hero-headline { display: flex; flex-direction: column; gap: .12em; align-items: center; width: 100%; }
.h1-hero { font-family: var(--serif); font-weight: 300; color: var(--biege); text-align: center; font-size: 7.5em; line-height: .9; letter-spacing: -0.035em; white-space: nowrap; }
/* centered headline with overlines pinned to the content edges */
.flex-heading {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 100%;
}
.flex-heading .cap-left, .flex-heading .cap-right {
  position: absolute; top: 50%; transform: translateY(-50%); opacity: .9;
}
.flex-heading .caption { white-space: nowrap; }
.flex-heading .cap-left { left: 0; text-align: left; }
.flex-heading .cap-right { right: 0; text-align: right; }

/* not enough room to flank the headline on narrow screens — stack overlines below */
@media (max-width: 1000px) {
  .flex-heading { flex-direction: column; gap: .5em; margin-top: .4em; }
  .flex-heading .cap-left, .flex-heading .cap-right { position: static; transform: none; text-align: center; }
  .flex-heading .h1-hero { order: -1; }
}

.hero-bottom {
  position: absolute; left: var(--pad); right: var(--pad); bottom: 32px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
}
.hero-bottom .p-box { max-width: 34ch; }
.hero-bottom .base-p { font-size: 0.95em; line-height: 1.5; }

/* ---------------- Rating card (review_box) ---------------- */
.review-box {
  background-color: var(--biege);
  border-radius: 2px;
  width: 23em;
  overflow: hidden;
}
.review-wrap { width: 100%; padding-bottom: 12px; }
.flex-review {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(44,44,44,.15);
  padding: 10px 16px 13px;
}
.stars-flex { display: flex; gap: 1px; }
.star-icon { width: 24px; height: 24px; padding: 4px; }
.star-icon img { width: 100%; height: 100%; object-fit: contain; }
.google-icon { width: 24px; height: 24px; }
.number-txt { display: flex; align-items: center; gap: 6px; padding: 13px 16px 0; }
.big-number { color: var(--dark); font-size: 2.9em; font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.small-number { color: var(--dark); opacity: .65; font-size: 1em; align-self: flex-start; padding-top: .4em; }
.txt-review { display: flex; flex-direction: column; gap: 4px; margin-left: auto; text-align: right; }
.title-review { color: var(--dark); font-size: 0.9em; font-weight: 700; }
.base-caption { color: var(--dark); opacity: .65; font-size: 0.8em; }

/* ============================================================
   VIDEO / SPIRIT SECTION
   ============================================================ */
.video-section { position: relative; width: 100vw; height: 100vh; overflow: hidden; }
.video-bg { position: absolute; inset: 0; z-index: 1; }
.video-bg img { width: 100%; height: 100%; object-fit: cover; }
.video-ov { position: absolute; inset: 0; z-index: 2; background: rgba(41,38,34,.55); }
.video-wrap {
  position: relative; z-index: 3; height: 100%;
  display: flex; align-items: center;
  padding: 0 var(--pad);
}
.video-content { max-width: 40ch; }
.h2-biege { color: var(--biege); font-size: 4.5em; line-height: .85; letter-spacing: -.03em; margin-bottom: 8px; }
.video-content .base-p { margin-top: 18px; max-width: 34ch; }
.video-content .button-s { margin-top: 24px; }

/* ============================================================
   FEATURED MENU
   ============================================================ */
.featured-menu { width: 100vw; background: var(--biege); }
.sides { display: grid; grid-template-columns: 1fr 1fr; }
.left-side { display: flex; flex-direction: column; }
.heading-featured {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 24px 20px 28px;
}
.h3 { color: var(--dark); font-size: 3.5em; font-weight: 300; line-height: .9; letter-spacing: -.02em; }
.icon-plates { width: 32px; height: 32px; }
.icon-plates img { width: 100%; height: 100%; object-fit: contain; }

.menu-list { display: flex; flex-direction: column; }
.menu-item { border-top: 1px solid var(--dark); padding: 12px 20px; }
.menu-item:last-child { border-bottom: 1px solid var(--dark); }
.menu-line { display: flex; flex-direction: column; }
.name-pr { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.name-txt { color: var(--dark); font-size: 0.9em; font-weight: 700; }
.price-txt { color: var(--dark); font-size: 0.9em; font-weight: 700; }
.name-desc { margin-top: 10px; }
.desc-menu { color: var(--dark); opacity: .65; font-size: 0.9em; line-height: 1.5; max-width: 54ch; }
.bottom-button { padding: 16px 20px 0; }

.right-side { display: flex; flex-direction: column; }
.wrapper-side { display: flex; flex-direction: column; height: 100%; }
.heading-side { padding: 24px 42px; }
.heading-side .base-p { margin-top: 18px; max-width: 40ch; }
.heading-side .btn-row { margin-top: 24px; }
.image-box { flex: 1; min-height: 22em; overflow: hidden; }
.image-box img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CATERING
   ============================================================ */
.catering { width: 100vw; background-color: var(--greige); overflow: hidden; }
.catering-head { padding: 92px var(--pad) 40px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.h2 { color: var(--dark); font-size: 4.8em; font-weight: 300; line-height: .85; letter-spacing: -.03em; text-align: center; }
.flex-headline { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.catering-head .base-p { margin-top: 18px; max-width: 60ch; text-align: center; }

.cat-slider {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr);
  gap: 1px; background: var(--dark);
  border-top: 1px solid var(--dark);
}
.cat-slide { background: var(--obsidian); position: relative; overflow: hidden; }
.cat-img { width: 100%; height: 34em; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-txt { padding: 28px 24px 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.title-catering { color: var(--biege); font-family: var(--serif); font-weight: 300; font-size: 1.5em; letter-spacing: -.035em; }
.desc-catering { color: var(--biege); opacity: .85; font-size: 0.9em; line-height: 1.3; max-width: 46ch; }

/* ============================================================
   DRINKS
   ============================================================ */
.drinks { width: 100vw; background: var(--biege); }
.drinks .sides { grid-template-columns: 1fr 1fr; }
.drinks-left { background: var(--biege); display: flex; flex-direction: column; }
.drinks-head { padding: 92px 42px 24px; }
.drinks-head .h3 { letter-spacing: -.02em; }
.drinks-head .base-p { margin-top: 18px; max-width: 42ch; }
.drinks-head .btn-row { margin-top: 24px; }
.drinks-list { padding: 0 0 6px; }
.drink-item { border-top: 1px solid var(--dark); padding: 12px 20px; }
.drink-item:last-child { border-bottom: 1px solid var(--dark); }
.drink-item .desc-menu { opacity: .65; }
.drinks-right { display: flex; flex-direction: column; gap: 6px; padding: 6px 6px 6px 0; }
.image-drinks { width: 100%; height: 27em; overflow: hidden; }
.image-drinks img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   GIFT CARD
   ============================================================ */
.gift-card { position: relative; width: 100vw; min-height: 100vh; background: var(--biege); overflow: hidden; display: flex; flex-direction: column; justify-content: center; }
.gift-inner { padding: 92px var(--pad); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.gift-card .h2 { font-size: 5em; line-height: .9; }
.gift-cap { display: flex; flex-direction: column; align-items: center; gap: 22px; max-width: 52ch; }
.gift-cap .base-p { max-width: 46ch; }
.gift-bottom { margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gift-bottom .caption { color: var(--dark); }
.gc-visual {
  margin-top: 28px; width: 26em; max-width: 90vw; aspect-ratio: 16/10; border-radius: 8px;
  background: linear-gradient(135deg, var(--dark), var(--obsidian));
  border: 1px solid rgba(44,44,44,.25);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px -30px rgba(41,38,34,.55);
  position: relative;
}
.gc-visual::before {
  content: ''; position: absolute; inset: 0; border-radius: 8px;
  background: url('img/catering.avif') center/cover; opacity: .5;
}
.gc-visual span {
  position: relative; z-index: 1; color: var(--biege);
  font-family: var(--serif); font-weight: 300; font-size: 1.6em; letter-spacing: .12em; text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { width: 100vw; background: var(--biege); overflow: hidden; padding-top: 92px; }
.testi-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding: 0 var(--pad) 48px; }
.review-box.testi { border: 1px solid rgba(44,44,44,.2); margin-left: 0; }

.marquee { width: 100%; overflow: hidden; padding-bottom: 92px; }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 60s linear infinite; padding: 0 10px; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.testi-card {
  flex: 0 0 31em; width: 31em; height: 31em;
  border: 1px solid rgba(44,44,44,.2); border-radius: 3px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding-bottom: 20px; overflow: hidden; background: var(--biege);
}
.testi-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(44,44,44,.2); padding: 12px 20px; }
.stars-testi { display: flex; gap: 3px; align-items: center; }
.star-review { width: 1em; height: 1em; padding: 2px; }
.star-review img { width: 100%; height: 100%; object-fit: contain; }
.txt-platform { color: var(--dark); opacity: .65; font-size: 0.8em; font-weight: 500; letter-spacing: .01em; }
.testi-txt { padding: 20px 20px 0; margin-bottom: auto; }
.testimonial-p { color: var(--dark); font-family: var(--serif); font-weight: 300; font-size: 1.8em; line-height: 1.2; }
.author-box { padding: 0 20px; }
.author-title { color: var(--dark); opacity: .65; font-size: 0.9em; }
.author-name { color: var(--dark); font-size: 0.9em; font-weight: 700; margin-top: 2px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { width: 100vw; background-color: var(--obsidian); }
.wrapper-footer { padding: 62px var(--pad) 20px; }
.content-line { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start; }
.title-footer { color: var(--biege); text-transform: uppercase; font-size: 0.9em; letter-spacing: .02em; }
.txt-footer { color: var(--biege); font-size: 0.9em; line-height: 1.4; transition: color .4s ease; }
a.txt-footer:hover, .footer-link:hover .txt-footer, .txt-footer a:hover { color: var(--primary); }

.address-hours { display: flex; }
.flexbox-box { display: flex; gap: 56px; width: 100%; justify-content: space-between; }
.address-box .addresses-box { display: flex; flex-direction: column; gap: 18px; margin-top: 16px; }
.addresses-box > div { display: flex; flex-direction: column; gap: 3px; }
.right-footer-box { margin-left: auto; }
.right-footer-box .title-footer { margin-bottom: 6px; }
.middle-logo { width: 52px; height: 44px; color: var(--primary); display: grid; place-items: center; }
.middle-logo img { width: 100%; height: 100%; object-fit: contain; }
.middle-logo .crest { width: 100%; height: 100%; display: block; }

.footer-flex { gap: 56px; }
.phones-footer { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.phones-footer > div { display: flex; flex-direction: column; gap: 3px; }
.email-us { margin-top: 16px; display: inline-block; }

.links-footer { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 16px; margin-top: 62px; }
.links-col .title-links { margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 3px; margin-top: 4px; }

.footer-txt-lg { margin-top: 232px; padding-bottom: 8px; }
.txt-lg { color: var(--primary); text-align: center; text-transform: uppercase; font-family: var(--sans); font-size: 13.8em; font-weight: 500; line-height: .8; letter-spacing: -.016em; }

.last-line { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; flex-wrap: wrap; }
.last-line .txt-footer { opacity: .8; }
.spec-art-link { text-decoration: underline; }

/* ============================================================
   RESPONSIVE  (mirrors Webflow breakpoints by scaling the em base)
   ============================================================ */
@media (max-width: 991px) {
  body { font-size: 1.7vw; }
  .nav-links { display: none; }
  .h1-hero, .flex-heading .h1-hero { font-size: 7em; }
}
@media (max-width: 767px) {
  body { font-size: 2.6vw; }
  :root { --pad: 20px; }
  .sides, .drinks .sides { grid-template-columns: 1fr; }
  .content-line { grid-template-columns: 1fr; gap: 28px; }
  .flexbox-box, .footer-flex { flex-direction: column; gap: 24px; }
  .links-footer { grid-template-columns: 1fr 1fr; }
  .cat-slider { grid-auto-flow: column; grid-auto-columns: 80%; overflow-x: auto; scroll-snap-type: x mandatory; }
  .cat-slide { scroll-snap-align: start; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .review-box { width: 100%; max-width: 23em; }
  .testi-top { flex-direction: column; align-items: flex-start; }
  .h2-biege { font-size: 5em; }
  .txt-lg { font-size: 11em; }
  .footer-txt-lg { margin-top: 120px; }
  .image-box { min-height: 18em; }
}
@media (max-width: 479px) {
  body { font-size: 3.8vw; }
  .h1-hero, .flex-heading .h1-hero { font-size: 6em; }
  .flex-heading { grid-template-columns: 1fr; gap: 6px; }
  .flex-heading .cap-left, .flex-heading .cap-right { text-align: center; }
  .links-footer { grid-template-columns: 1fr; }
  .empty-col { display: none; }
  .txt-lg { font-size: 8em; }
  .testi-card { flex-basis: 80vw; width: 80vw; height: 28em; }
}

/* ============================================================
   ANIMATIONS, OVERLAYS & PARALLAX (added pass)
   ============================================================ */

/* Dark gradient scrims — deepened for the candlelit, dim-lit look */
.hero-overlay {
  background: linear-gradient(180deg, rgba(16,16,16,.92) 0%, rgba(16,16,16,.55) 38%, rgba(16,16,16,.62) 70%, rgba(16,16,16,.94) 100%);
}
.video-ov {
  background: linear-gradient(180deg, rgba(16,16,16,.9) 0%, rgba(16,16,16,.6) 45%, rgba(16,16,16,.88) 100%);
}

/* dark gradient above section images */
.image-box, .image-drinks, .cat-img { position: relative; }
.image-box::after, .image-drinks::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,16,16,.45) 0%, rgba(16,16,16,.08) 30%, rgba(16,16,16,.08) 58%, rgba(16,16,16,.55) 100%);
}
.cat-img::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(16,16,16,.5) 0%, rgba(16,16,16,.1) 32%, rgba(16,16,16,.28) 66%, rgba(41,38,34,.95) 100%);
}

/* images sit in overflow-hidden frames so they can scale on scroll */
.hero-bg img, .image-box img, .image-drinks img, .cat-img img, .video-bg img { will-change: transform; }

/* ---- letter-split reveal primitives ---- */
.split-char { display: inline-block; will-change: transform, opacity; }
.split-word { display: inline-block; white-space: nowrap; }

/* pre-hide animated targets only when JS is active (no flash, graceful no-JS) */
html.js .anim-pre { opacity: 0; }
html.js .hero-wrap .h1-hero,
html.js .hero-bottom { opacity: 0; }

/* reduced motion: show everything, no transforms */
@media (prefers-reduced-motion: reduce) {
  html.js .anim-pre,
  html.js .hero-wrap .h1-hero,
  html.js .hero-bottom { opacity: 1 !important; }
  .split-char { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   DESIGN-MATCH PASS 2  (from full-page PDF reference)
   ============================================================ */

/* Signature Plates — left column sits on the copper/ember accent */
.featured-menu .left-side { background: var(--primary); }
.featured-menu .right-side { background: var(--biege); }
.featured-menu .menu-item { border-top-color: rgba(44,44,44,.55); }
.featured-menu .menu-item:last-child { border-bottom-color: rgba(44,44,44,.55); }
.featured-menu .desc-menu { opacity: .72; }

/* Gift card — fanned spread of e-cards */
.gift-flank {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 5vw, 80px); width: 100%; margin-top: 36px;
}
.gift-flank__l, .gift-flank__r { flex: 0 0 auto; max-width: 16ch; }
.gift-flank__r { text-align: right; }
.gc-fan { position: relative; width: 22em; height: 17em; flex: 0 0 auto; }
.gc-card {
  position: absolute; left: 50%; top: 52%;
  width: 9.6em; height: 13em; margin: -6.5em 0 0 -4.8em;
  border-radius: 9px; padding: 14px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 22px 45px -22px rgba(41,38,34,.65);
  border: 1px solid rgba(255,255,255,.06);
  transform-origin: 50% 130%;
  will-change: transform;
}
.gc-card--1 { background: #2c2c2c; color: var(--biege); }
.gc-card--2 { background: #8b8f7c; color: #1f1d19; }   /* sage */
.gc-card--3 { background: var(--greige); color: #2c2c2c; }
.gc-card--4 { background: var(--primary); color: #2c2c2c; }
.gc-card--5 { background: var(--smoke, #dfdad5); color: #2c2c2c; }
.gc-mono { font-family: var(--serif); font-weight: 300; font-size: 1.5em; line-height: 1; opacity: .92; }
.gc-tag { font-size: .55em; letter-spacing: .24em; text-transform: uppercase; opacity: .7; }
/* fanned resting transforms (overridden by GSAP fan-in when JS runs) */
.gc-card--1 { transform: rotate(-24deg) translateY(8px); }
.gc-card--2 { transform: rotate(-12deg) translateY(-6px); }
.gc-card--3 { transform: rotate(0deg)  translateY(-14px); z-index: 3; }
.gc-card--4 { transform: rotate(12deg) translateY(-6px); }
.gc-card--5 { transform: rotate(24deg) translateY(8px); }

/* Review prompt under the testimonials marquee */
.review-prompt { text-align: center; padding: 0 var(--pad) 92px; }
.review-prompt__lead { opacity: .6; line-height: 1.5; margin: 0 auto; }
.review-prompt__link {
  display: inline-block; margin-top: 12px;
  font-size: .95em; font-weight: 500; color: var(--dark);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: var(--primary);
}

/* ============================================================
   ANIMATION POLISH — modern & royal
   ============================================================ */

/* gold shine sweep across buttons on hover */
.button-box { position: relative; overflow: hidden; }
.button-box::after {
  content: ''; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%; transform: skewX(-18deg); pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(216,203,184,.45) 50%, transparent 100%);
}
.button-box.dark::after { background: linear-gradient(105deg, transparent 0%, rgba(212,150,83,.5) 50%, transparent 100%); }
.button:hover .button-box::after { animation: btnShine .85s cubic-bezier(.25,.46,.45,.94); }
@keyframes btnShine { from { left: -130%; } to { left: 160%; } }

/* nav link underline grow */
.nav-links a { position: relative; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 100%;
  background: var(--primary); transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.nav-links a:hover::after { transform: scaleX(1); }

/* image wipe-reveal frame */
.image-box, .image-drinks, .cat-img { will-change: clip-path; }

/* catering slide subtle lift on hover */
.cat-slide { transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.cat-slide:hover { transform: translateY(-6px); }

/* nav entrance */
html.js .nav { opacity: 0; }

@media (max-width: 767px) {
  .gift-flank { flex-direction: column; gap: 24px; }
  .gift-flank__l, .gift-flank__r { text-align: center; }
}

/* ============================================================
   MOBILE NAV + REFINED RESPONSIVE  (added pass)
   ============================================================ */

/* hamburger button (hidden on desktop) */
.nav-burger {
  display: none;
  position: relative; z-index: 1600;
  width: 44px; height: 44px; padding: 11px;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; justify-content: space-between;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--biege); border-radius: 2px;
  transition: transform .35s ease, opacity .25s ease;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* full-screen mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1400;
  background: rgba(20,18,16,.98);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; justify-content: center; gap: 30px;
  padding: 96px 28px 44px;
  opacity: 0; visibility: hidden; transform: translateY(-10px);
  transition: opacity .4s ease, transform .4s ease, visibility .4s;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu__links a {
  font-family: var(--serif); font-weight: 300; text-transform: uppercase;
  font-size: clamp(30px, 9vw, 44px); line-height: 1.16; letter-spacing: -.02em; color: var(--biege);
  transition: color .25s ease;
}
.mobile-menu__links a:active { color: var(--primary); }
.mobile-menu__actions { display: flex; flex-direction: column; gap: 12px; max-width: 340px; }
.mobile-menu__meta { font-size: 13px; line-height: 1.5; color: var(--biege); opacity: .6; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__meta a { color: var(--primary); }

/* show burger / hide desktop nav cluster on tablet & down */
@media (max-width: 991px) {
  .nav-burger { display: flex; }
  .nav-right { display: none; }
  /* hero headline: scale to viewport and allow wrap so it never clips */
  .h1-hero, .flex-heading .h1-hero { font-size: 10vw; white-space: normal; }
}
@media (max-width: 767px) {
  .h1-hero, .flex-heading .h1-hero { font-size: 11vw; line-height: .94; }
  .hero-wrap { padding: 6em var(--pad) 5.5em; }
}
@media (max-width: 479px) {
  .h1-hero, .flex-heading .h1-hero { font-size: 12.5vw; }
  /* long words like "EXPERIENCE" overflow at 5em — scale to viewport instead */
  .h2-biege { font-size: 12vw; }
}

/* lock background scroll when the mobile menu is open */
body.menu-open { overflow: hidden; }
