/* =========================================================================
   MySpace Holiday Inn — Rebuilt Website
   Design tokens, layout, and all 10 sections.
   ========================================================================= */

:root {
  /* Greens */
  --green-950: #11211a;
  --green-900: #16271d;
  --green-850: #1a3326;
  --green-800: #1f3a2b;
  --green-700: #2a4a37;
  --green-line: rgba(198, 161, 91, 0.28);

  /* Gold / brass */
  --gold: #c6a15b;
  --gold-soft: #cdab6b;
  --gold-light: #ddc596;
  --gold-deep: #a9874a;

  /* Cream / paper */
  --cream: #f4ede1;
  --cream-2: #efe7d8;
  --cream-3: #e8dfcd;
  --paper-line: rgba(60, 50, 35, 0.14);

  /* Ink / text */
  --ink: #2b2a24;
  --ink-soft: #4a463d;
  --muted: #635d4e;            /* darkened for WCAG AA on cream */
  --muted-light: rgba(244, 237, 225, 0.72);
  --cream-on-dark: #efe7d6;
  --gold-ink: #6f5526;         /* AA-passing gold for text (eyebrows, links) on cream */

  /* Effects */
  --shadow-card: 0 24px 50px -28px rgba(20, 30, 22, 0.45);
  --shadow-soft: 0 16px 40px -24px rgba(20, 30, 22, 0.35);
  --radius: 18px;
  --radius-lg: 26px;
  --maxw: 1240px;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --serif-2: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --script: "Pinyon Script", "Segoe Script", cursive;
}

/* ------------------------------------------------------------------ Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 64px); }

/* Shared typographic helpers */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-ink);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow--light { color: var(--gold-light); }

.display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.display em { font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  border-radius: 999px;
  padding: 15px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn svg { width: 17px; height: 17px; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { background: linear-gradient(135deg, #d4b673, var(--gold) 60%, var(--gold-deep)); color: #20180a; box-shadow: 0 16px 30px -16px rgba(166, 135, 74, .8); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -16px rgba(166, 135, 74, .95); }
.btn--ghost-dark { background: rgba(20, 32, 24, .35); color: var(--cream-on-dark); border: 1px solid rgba(221, 197, 150, .45); backdrop-filter: blur(4px); }
.btn--ghost-dark:hover { background: rgba(20, 32, 24, .55); transform: translateY(-2px); }
.btn--outline-dark { background: rgba(244,237,225,.92); color: var(--green-900); border: 1px solid rgba(255,255,255,.6); }
.btn--outline-dark:hover { transform: translateY(-2px); background:#fff; }

.linklike {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  width: max-content;
  transition: gap .25s ease, color .25s ease;
}
.linklike svg { width: 16px; height: 16px; }
.linklike:hover { gap: 16px; }
.linklike--light { color: var(--gold-light); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* Accessibility: skip link */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--green-900); color: var(--cream-on-dark);
  padding: 10px 18px; border-radius: 0 0 10px 10px; text-decoration: none;
  font-size: 14px; transition: top .2s ease;
}
.skip-link:focus { top: 0; outline: 2px solid var(--gold); outline-offset: 2px; }

/* Accessibility: visible focus rings for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Accessibility: respect reduced-motion preferences */
@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 { opacity: 1; transform: none; }
}

/* ====================================================================== */
/*  BRAND WORDMARK                                                         */
/* ====================================================================== */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__sprig { width: 34px; height: auto; filter: drop-shadow(0 1px 1px rgba(0,0,0,.2)); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: .01em; }
.brand__name em { font-style: normal; color: var(--gold); }
.brand__sub { font-size: 9.5px; letter-spacing: .42em; text-transform: uppercase; margin-top: 5px; opacity: .85; }
.brand--light .brand__name { color: var(--cream-on-dark); }
.brand--light .brand__sub { color: var(--gold-light); }
.brand--dark .brand__name { color: var(--green-900); }
.brand--dark .brand__name em { color: var(--gold-deep); }
.brand--dark .brand__sub { color: var(--ink-soft); }

/* ====================================================================== */
/*  NAVBAR                                                                 */
/* ====================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 22px 0;
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.nav__inner {
  display: grid;
  grid-template-columns: minmax(245px, 300px) minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(24px, 3.2vw, 58px);
  max-width: none;
  padding-inline: clamp(34px, 5.5vw, 92px);
}
.nav__links { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 1.6vw, 28px); min-width: 0; }
.nav__links a {
  font-size: 14px; letter-spacing: .04em; color: var(--cream-on-dark);
  position: relative; padding: 6px 0; opacity: .9; transition: opacity .2s ease;
  white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold-light); transition: width .3s ease;
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { display: inline-flex; justify-self: end; min-width: 220px; justify-content: center; white-space: nowrap; }
.nav.scrolled {
  background: rgba(18, 33, 24, .82);
  backdrop-filter: blur(14px) saturate(1.1);
  padding: 14px 0;
  box-shadow: 0 12px 30px -20px rgba(0,0,0,.7);
  border-bottom: 1px solid rgba(221, 197, 150, .14);
}
.nav__burger { display: none; background: none; border: none; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--cream-on-dark); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ====================================================================== */
/*  01 — HERO                                                              */
/* ====================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding: 128px 0 38px;
  background: var(--green-900);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,28,20,.84) 0%, rgba(15,28,20,.6) 34%, rgba(15,28,20,.18) 60%, rgba(15,28,20,.05) 100%),
    linear-gradient(0deg, rgba(13,24,17,.62), rgba(13,24,17,0) 40%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding-inline: clamp(34px, 5.5vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__content { max-width: 600px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream-on-dark);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
}
.hero h1 em { font-style: italic; color: #f1e7d2; display: inline-block; }
.hero__sprig-divider { width: 24px; opacity: .85; margin: 2px 0 16px; transform: rotate(90deg); }
.hero p.lead {
  color: var(--muted-light);
  font-size: clamp(14px, 1.1vw, 15.5px);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 0 28px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Booking bar */
.booking {
  position: relative; z-index: 2;
  margin-top: auto;
  background: rgba(17, 31, 22, .62);
  border: 1px solid rgba(221, 197, 150, .26);
  border-radius: 18px;
  backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
  padding: 14px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 6px;
  align-items: stretch;
}
.booking__field { display: flex; align-items: center; gap: 12px; padding: 12px 18px; border-radius: 12px; transition: background .2s ease; position: relative; }
.booking__field + .booking__field::before {
  content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: rgba(221,197,150,.2);
}
.booking__field:hover { background: rgba(221, 197, 150, .07); }
.booking__field svg { width: 20px; height: 20px; color: var(--gold-light); flex: none; }
.booking__field label { display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }
.booking__field select,
.booking__field input {
  appearance: none; -webkit-appearance: none;
  background: transparent; border: none; color: var(--cream-on-dark);
  font-family: var(--sans); font-size: 14px; font-weight: 400; padding: 0; width: 100%;
  outline: none;
}
.booking__field input::-webkit-calendar-picker-indicator { filter: invert(.85) sepia(.4) saturate(3) hue-rotate(5deg); cursor: pointer; }
.booking__field select option { color: #20180a; }
.booking__field--select::after {
  content: ""; width: 8px; height: 8px; border-right: 1.5px solid var(--gold-light); border-bottom: 1.5px solid var(--gold-light);
  transform: rotate(45deg); margin-left: auto; flex: none;
}
.booking__submit { display: flex; }
.booking__submit .btn { width: 100%; justify-content: center; }
.hero__tagline {
  position: absolute; left: 0; right: 0; bottom: 6px; margin: 0; z-index: 2;
  color: var(--gold-light); font-size: 12.5px; letter-spacing: .22em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.hero__tagline::before, .hero__tagline::after {
  content: ""; height: 1px; width: clamp(24px, 6vw, 66px); flex: none;
}
.hero__tagline::before { background: linear-gradient(90deg, transparent, rgba(221, 197, 150, .75)); }
.hero__tagline::after { background: linear-gradient(90deg, rgba(221, 197, 150, .75), transparent); }
.hero__tagline span { white-space: nowrap; }

/* ====================================================================== */
/*  Shared section scaffolding                                            */
/* ====================================================================== */
.section { position: relative; padding: clamp(72px, 9vw, 130px) 0; overflow: hidden; }
.section--cream {
  background-color: var(--cream);
  background-image: url("00-common/textures/texture-cream-paper-botanical.png");
  background-size: cover; background-position: center;
}
.section--cream::before {
  content: ""; position: absolute; inset: 0; background: rgba(244, 237, 225, .8); pointer-events: none;
}
.section--cream > * { position: relative; z-index: 1; }
.section--dark {
  background-color: var(--green-900);
  background-image: url("00-common/textures/texture-dark-green-botanical.png");
  background-size: cover; background-position: center;
  color: var(--cream-on-dark);
}
.section--dark::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,28,21,.84), rgba(16,28,21,.9)); pointer-events: none;
}
.section--dark > * { position: relative; z-index: 1; }

/* Decorative corner leaves (cream sections) */
.leaf-corner { position: absolute; z-index: 0; opacity: .55; pointer-events: none; }
.leaf-corner--tr { top: -20px; right: -30px; width: 240px; transform: rotate(8deg); }
.leaf-corner--bl { bottom: -30px; left: -40px; width: 260px; transform: rotate(180deg); opacity: .4; }

/* Split header (text column + content) */
.split { display: grid; grid-template-columns: minmax(250px, 330px) 1fr; gap: clamp(32px, 4vw, 56px); align-items: center; }
.split__intro p.copy { color: var(--muted); font-size: 16px; line-height: 1.75; margin: 0 0 26px; max-width: 330px; }

/* ====================================================================== */
/*  02 — DESTINATIONS                                                      */
/* ====================================================================== */
.dest__head .display { font-size: clamp(40px, 5vw, 66px); margin-bottom: 22px; }
.dest__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dest-card {
  position: relative; background: #fbf7ee; border-radius: var(--radius-lg);
  padding: 14px 14px 24px; box-shadow: var(--shadow-card);
  border: 1px solid rgba(60,50,35,.06);
  transition: transform .4s ease, box-shadow .4s ease;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -28px rgba(20,30,22,.5); }
.dest-card__media { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1/1.08; }
.dest-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.dest-card:hover .dest-card__media img { transform: scale(1.06); }
.dest-card__emblem {
  position: absolute; top: 12px; right: 12px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(16,28,21,.82); border: 1px solid rgba(221,197,150,.55);
  display: grid; place-items: center; backdrop-filter: blur(3px);
}
.dest-card__emblem img { width: 22px; height: 22px; }
.dest-card__body { padding: 20px 6px 0; }
.dest-card__name { font-family: var(--serif); font-size: 25px; font-weight: 500; margin: 0 0 11px; color: var(--ink); }
.dest-card__rule { width: 42px; height: 1px; background: var(--gold); margin-bottom: 13px; }
.dest-card__desc { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }
.dest-card__link { position: absolute; inset: 0; border-radius: var(--radius-lg); }

/* ====================================================================== */
/*  03 — EXPERIENCE VALUES                                                 */
/* ====================================================================== */
.values { text-align: center; }
.values .wrap { position: relative; z-index: 1; }
.values__corner { position: absolute; top: 50%; transform: translateY(-50%); z-index: 0; opacity: .42; pointer-events: none; }
.values__corner img { height: auto; width: clamp(150px, 20vw, 300px); object-fit: contain; }
.values__corner--l { left: -30px; }
.values__corner--r { right: -30px; }
.values__title { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--gold-light); font-size: clamp(30px, 4vw, 46px); margin: 0 0 14px; }
.values__divider { width: 120px; margin: 0 auto 56px; opacity: .8; }
.values__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; max-width: 1080px; margin: 0 auto; }
.value {
  display: flex; flex-direction: column; align-items: center; padding: 0 6px;
  position: relative;
}
.value + .value::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px;
  background: linear-gradient(rgba(221,197,150,0), rgba(221,197,150,.3), rgba(221,197,150,0));
}
.value__icon {
  width: 54px; height: 54px; margin-bottom: 16px; display: grid; place-items: center;
}
.value__icon svg { width: 36px; height: 36px; color: var(--gold-light); stroke-width: 1.3; }
.value__name { font-family: var(--serif); font-size: 17px; font-weight: 500; letter-spacing: .01em; color: #f0e7d3; margin: 0 0 9px; white-space: nowrap; }
.value__desc { font-size: 12.5px; line-height: 1.6; color: rgba(221,197,150,.6); margin: 0; max-width: 160px; }

/* ====================================================================== */
/*  04 — FEATURED STAYS                                                    */
/* ====================================================================== */
.stays__head { margin-bottom: 0; }
.stays__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stay-card {
  position: relative;
  background: #fbf7ee; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid rgba(60,50,35,.06);
  display: flex; flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
}
.stay-card__link { position: absolute; inset: 0; z-index: 3; border-radius: var(--radius); }
.stay-card:hover { transform: translateY(-8px); box-shadow: 0 34px 60px -28px rgba(20,30,22,.5); }
.stay-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.stay-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.stay-card:hover .stay-card__media img { transform: scale(1.06); }
.stay-card__save {
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); border: none; display: grid; place-items: center; color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.stay-card__save svg { width: 17px; height: 17px; }
.stay-card__save:hover, .stay-card__save.saved { background: var(--green-900); color: var(--gold-light); }
.stay-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.stay-card__name { font-family: var(--serif); font-size: 20px; font-weight: 500; margin: 0 0 7px; }
.stay-card__loc { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-deep); font-size: 12.5px; margin-bottom: 12px; }
.stay-card__loc svg { width: 13px; height: 13px; }
.stay-card__desc { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin: 0 0 18px; }
.stay-card__foot { margin-top: auto; padding-top: 15px; border-top: 1px solid var(--paper-line); display: flex; align-items: baseline; }
.stay-card__price { font-size: 13px; color: var(--muted); white-space: nowrap; }
.stay-card__price b { font-family: var(--serif); font-size: 21px; color: var(--ink); font-weight: 600; margin-right: 2px; }

/* ====================================================================== */
/*  05 — CURATED EXPERIENCES MOSAIC                                        */
/* ====================================================================== */
.mosaic { display: flex; flex-direction: column; gap: 16px; }
.mosaic__top { display: grid; grid-template-columns: 1.32fr 1fr; gap: 16px; }
.mosaic__bottom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mosaic__top .exp-card { height: clamp(230px, 23.5vw, 286px); }
.mosaic__bottom .exp-card { height: clamp(188px, 18.5vw, 224px); }
.exp-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s ease;
}
.exp-card:hover { transform: translateY(-6px); }
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.exp-card:hover img { transform: scale(1.07); }
.exp-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,24,17,.92) 0%, rgba(13,24,17,.45) 38%, rgba(13,24,17,.05) 70%);
}
.exp-card__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 24px; }
.exp-card__icon { width: 26px; height: 26px; color: var(--gold-light); margin-bottom: 10px; }
.exp-card__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: #f2ead8; margin: 0 0 6px; }
.mosaic__bottom .exp-card__title { font-size: 17px; white-space: nowrap; }
.exp-card__desc { font-size: 12.5px; line-height: 1.5; color: rgba(221,197,150,.82); margin: 0; max-width: 240px; }

/* ====================================================================== */
/*  06 — STORY PAPER COLLAGE                                               */
/* ====================================================================== */
.story {
  position: relative;
  padding: 0;
  min-height: clamp(650px, 47vw, 760px);
  display: grid;
  grid-template-columns: minmax(430px, .84fr) minmax(560px, 1.16fr);
  background: #14271d;
  overflow: hidden;
}
.story__left {
  position: relative; z-index: 2; padding: clamp(58px, 7vw, 104px) clamp(30px, 5vw, 76px) clamp(58px, 7vw, 100px);
  background: #14271d url("06-story/images/bg-story-dark-panel.png") no-repeat center / cover;
  color: var(--cream-on-dark);
  display: flex; flex-direction: column; justify-content: center;
}
.story__left::before {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(circle at 82% 58%, rgba(198,161,91,.13), transparent 34%),
    linear-gradient(110deg, rgba(12,24,18,.58) 8%, rgba(16,28,21,.44) 74%, rgba(16,28,21,.25));
}
.story__left::after {
  content:""; position:absolute; right: -1px; top:0; bottom:0; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(221,197,150,.2) 20%, rgba(221,197,150,.2) 80%, transparent);
}
.story__left > * { position: relative; z-index: 1; }
.story__brand { margin-bottom: clamp(34px, 4vw, 54px); }
.story__left .display { color: var(--cream-on-dark); font-size: clamp(38px, 3.65vw, 61px); margin-bottom: 26px; max-width: 620px; }
.story__left p.copy { color: rgba(244,237,225,.74); line-height: 1.84; font-size: clamp(15px, 1.05vw, 17px); margin: 0 0 34px; max-width: 540px; }
.story__left .linklike {
  width: max-content;
  padding-bottom: 9px;
  color: var(--gold-light);
  border-bottom-color: rgba(221,197,150,.78);
  letter-spacing: .16em;
}
.story__left .linklike svg { width: 18px; height: 18px; }

.story__right {
  position: relative; overflow: hidden;
  background:
    linear-gradient(90deg, rgba(231,218,190,.06), rgba(244,237,225,.35) 38%, rgba(241,230,208,.14)),
    url("06-story/images/bg-story-paper-collage.png") no-repeat left center / cover,
    url("06-story/images/bg-cream-paper-botanical.png") no-repeat center / cover;
}
.story__right::before {
  content:"";
  position:absolute;
  left:-18px;
  top:-5%;
  bottom:-5%;
  z-index: 1;
  width: 46px;
  background:
    linear-gradient(90deg, rgba(42,33,18,.2), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.28), rgba(255,255,255,0));
  filter: blur(.2px);
  pointer-events: none;
}
.story__right::after {
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;
  background:
    radial-gradient(circle at 74% 11%, rgba(198,161,91,.1), transparent 16%),
    radial-gradient(circle at 38% 68%, rgba(100,81,42,.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(188,164,118,.08));
  pointer-events: none;
}
.collage { position: absolute; inset: 0; z-index: 3; }
.photo {
  position: absolute;
  background: #fffdf7;
  padding: clamp(10px, .85vw, 14px) clamp(10px, .85vw, 14px) clamp(30px, 2.15vw, 42px);
  border-radius: 3px;
  box-shadow:
    0 32px 55px -22px rgba(28,24,16,.58),
    0 9px 18px -11px rgba(28,24,16,.38),
    inset 0 0 0 1px rgba(114,92,50,.08);
  transition: transform .4s ease, box-shadow .4s ease;
}
.photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border-radius: 1px; }
.photo::after { /* tape */
  content: ""; position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  width: clamp(78px, 7vw, 104px); height: clamp(24px, 2vw, 31px);
  background: linear-gradient(90deg, rgba(183,159,104,.38), rgba(225,207,158,.58), rgba(183,159,104,.35));
  border-left: 1px dashed rgba(150,130,90,.24); border-right: 1px dashed rgba(150,130,90,.24);
  box-shadow: 0 3px 6px rgba(0,0,0,.07);
  backdrop-filter: blur(1px);
}
.photo--1 { width: min(48%, 520px); top: 8%; left: 32%; transform: rotate(3.2deg); z-index: 4; }
.photo--1 img { aspect-ratio: 1.2 / 1; object-position: 45% center; }
.photo--2 { width: min(42%, 450px); top: 43%; left: 12%; transform: rotate(-7deg); z-index: 6; }
.photo--2 img { aspect-ratio: 1.45 / 1; object-position: center; }
.photo--3 { width: min(42%, 455px); top: 48%; left: 49%; transform: rotate(4.5deg); z-index: 5; }
.photo--3 img { aspect-ratio: 1.32 / 1; object-position: 58% center; }
.photo--2::after { left: 34%; transform: rotate(-8deg); }
.photo--3::after { left: 62%; transform: rotate(6deg); }
.photo:hover {
  z-index: 9;
  box-shadow: 0 38px 70px -24px rgba(28,24,16,.64), 0 12px 22px -12px rgba(28,24,16,.42);
}
.photo--1:hover { transform: rotate(3.2deg) scale(1.018); }
.photo--2:hover { transform: rotate(-7deg) scale(1.018); }
.photo--3:hover { transform: rotate(4.5deg) scale(1.018); }

.story__note {
  position: absolute; top: 12%; right: 5.5%; z-index: 2; transform: rotate(-6deg);
  font-family: var(--script); font-size: clamp(30px, 3vw, 44px); line-height: 1.1; color: rgba(74,61,38,.78); text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.story__pin {
  position: absolute; top: 5.5%; right: 12%; z-index: 7; width: 28px; height: 28px; border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #ecd49a, #b8954f 52%, #886634);
  box-shadow: 0 7px 11px -3px rgba(0,0,0,.5), inset 0 -2px 3px rgba(0,0,0,.3), inset 0 2px 2px rgba(255,255,255,.45);
}
.story__seal {
  position: absolute; bottom: 8%; left: 31%; z-index: 8; width: clamp(88px, 9.5vw, 132px); height: auto;
  filter: drop-shadow(0 14px 20px rgba(64,48,20,.36)); transform: rotate(-6deg);
}
.story__leaf-mark {
  position: absolute;
  z-index: 2;
  display: block;
  width: 92px;
  height: 72px;
  opacity: .18;
  background: url("00-common/decor/leaf-sprig-gold.png") no-repeat center / contain;
  filter: sepia(1) saturate(1.4) hue-rotate(356deg);
  pointer-events: none;
}
.story__leaf-mark--center { top: 25%; left: 18%; transform: rotate(22deg); }
.story__leaf-mark--side { right: 4%; bottom: 14%; transform: rotate(-18deg) scale(1.15); opacity: .14; }

/* ====================================================================== */
/*  07 — GALLERY MASONRY                                                   */
/* ====================================================================== */
.gallery-section {
  display: grid;
  gap: clamp(26px, 3.2vw, 40px);
}
/* Filter pills */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery__pill {
  font-family: var(--sans, inherit);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--ink);
  background: #fbf7ee;
  border: 1px solid rgba(60,50,35,.16);
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.gallery__pill:hover { border-color: var(--gold); transform: translateY(-1px); }
.gallery__pill.is-active {
  background: var(--green-900);
  color: var(--cream-on-dark);
  border-color: var(--green-900);
}
.gallery__pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Load more */
.gallery__more { display: flex; justify-content: center; }
.gallery__more[hidden] { display: none; }
#galleryMore {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-900); color: var(--cream-on-dark);
  border: 1px solid var(--green-900); border-radius: 999px;
  padding: 13px 30px; font-family: var(--sans); font-size: 14px; letter-spacing: .04em;
  cursor: pointer; transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
#galleryMore:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
#galleryMore:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
#galleryMore svg { width: 16px; height: 16px; transition: transform .3s ease; }
#galleryMore:hover svg { transform: translateY(2px); }
.gphoto[hidden] { display: none; }
.gallery__head {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.gallery__head p.copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto 18px;
}
.gallery__head .linklike {
  justify-content: center;
}
.gallery__divider {
  width: 120px;
  opacity: .6;
  margin: 6px auto 18px;
  filter: invert(.5) sepia(1) saturate(2) hue-rotate(5deg);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.gphoto {
  position: relative;
  aspect-ratio: 4 / 3;            /* every tile identical → even spacing */
  border-radius: 14px;
  overflow: hidden;
  background: #0f2219;
  border: 1px solid rgba(183,132,43,.22);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
.gphoto:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.gphoto:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.gphoto img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s ease;
}
.gphoto:hover img { transform: scale(1.07); }
/* hover veil + magnify hint */
.gphoto::after {
  content:""; position:absolute; inset:0; z-index:1;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.14) 0 20px, rgba(255,255,255,0) 21px) no-repeat,
    linear-gradient(0deg, rgba(13,24,17,.35) 0%, rgba(13,24,17,0) 45%);
  opacity: 0; transition: opacity .45s ease; pointer-events:none;
}
.gphoto:hover::after, .gphoto:focus-visible::after { opacity: 1; }
.gphoto::before {
  content:""; position:absolute; z-index:2; top:50%; left:50%; width:20px; height:20px;
  transform: translate(-50%,-50%) scale(.6); opacity:0; pointer-events:none;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f4ede1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E");
  transition: opacity .45s ease, transform .45s ease;
}
.gphoto:hover::before, .gphoto:focus-visible::before { opacity:.95; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(9,16,12,.94); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__stage {
  margin: 0; max-width: min(1100px, 92vw); max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.lightbox__img {
  max-width: 100%; max-height: 80vh; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 30px 80px rgba(0,0,0,.6);
  border: 1px solid rgba(221,197,150,.25);
  transform: scale(.96); transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__caption {
  color: var(--cream-on-dark); font-family: var(--serif); font-size: 17px;
  letter-spacing: .04em; text-align: center;
}
.lightbox__close, .lightbox__nav {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(16,28,21,.7); color: var(--cream-on-dark);
  border: 1px solid rgba(221,197,150,.4); border-radius: 999px; cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: #142019; transform: scale(1.06); }
.lightbox__close { top: clamp(16px,3vw,28px); right: clamp(16px,3vw,28px); width: 46px; height: 46px; }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav svg { width: 24px; height: 24px; }
.lightbox__nav--prev { left: clamp(10px,2.5vw,32px); }
.lightbox__nav--next { right: clamp(10px,2.5vw,32px); }
body.lightbox-open { overflow: hidden; }

/* ====================================================================== */
/*  08 — TESTIMONIALS                                                      */
/* ====================================================================== */
.testi { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: clamp(34px, 5vw, 64px); align-items: center; }
.testi__intro .display { font-size: clamp(34px, 4vw, 52px); margin-bottom: 20px; }
.testi__intro p.copy { color: var(--muted); line-height: 1.7; margin: 0 0 30px; max-width: 300px; }
.testi__stats { display: flex; gap: 20px; }
.testi__stat { background: #fbf7ee; border: 1px solid rgba(60,50,35,.08); border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-soft); }
.testi__stat b { font-family: var(--serif); font-size: 30px; color: var(--ink); display: block; line-height: 1; }
.testi__stat .stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin: 6px 0 4px; }
.testi__stat span.lbl { font-size: 11px; color: var(--muted); letter-spacing: .04em; }

.testi__viewport { overflow: hidden; }
.testi__track { display: flex; gap: 22px; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.tcard {
  position: relative; overflow: hidden;
  background: #fbf7ee; border: 1px solid rgba(60,50,35,.07); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow-card); flex: 0 0 calc((100% - 44px) / 3);
  display: flex; flex-direction: column;
}
.tcard::after {
  content: ""; position: absolute; top: -6px; right: -8px; width: 84px; height: 84px; z-index: 0;
  background: url("00-common/decor/leaf-sprig-gold.png") no-repeat center / contain;
  opacity: .14; transform: rotate(18deg); pointer-events: none;
}
.tcard > * { position: relative; z-index: 1; }
.tcard__quote { font-family: var(--serif); font-size: 50px; color: var(--gold); line-height: .8; height: 30px; }
.tcard__text { font-family: var(--serif-2); font-size: 19px; line-height: 1.5; color: var(--ink-soft); margin: 14px 0 20px; flex: 1; }
.tcard__foot { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--paper-line); }
.tcard__avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-light); }
.tcard__who b { display: block; font-family: var(--serif); font-size: 16px; color: var(--ink); }
.tcard__who span { font-size: 12px; color: var(--muted); }
.tcard__stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-top: 5px; }
.testi__nav { display: flex; gap: 12px; margin-top: 34px; align-items: center; }
.testi__btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(60,50,35,.2);
  background: transparent; color: var(--ink); display: grid; place-items: center; transition: .25s ease;
}
.testi__btn:hover { background: var(--green-900); color: var(--gold-light); border-color: var(--green-900); }
.testi__btn svg { width: 18px; height: 18px; }
.testi__dots { display: flex; gap: 8px; margin-left: 8px; }
.testi__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(60,50,35,.22); border: none; transition: .25s; }
.testi__dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* ====================================================================== */
/*  09 — FINAL CTA                                                         */
/* ====================================================================== */
.cta { position: relative; min-height: 600px; display: flex; align-items: center; overflow: hidden; background: var(--green-950); padding: clamp(70px,8vw,110px) 0; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(13,22,16,.96) 0%, rgba(13,22,16,.8) 38%, rgba(13,22,16,.25) 64%, rgba(13,22,16,.1) 100%);
}
.cta__inner { position: relative; z-index: 2; width: 100%; }
.cta__content { max-width: 560px; }
.cta__brand { margin-bottom: 34px; }
.cta h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(40px, 5.5vw, 70px); line-height: 1.02; color: var(--cream-on-dark); margin: 0 0 8px; }
.cta h2 span { color: var(--gold-light); font-style: italic; }
.cta__rule { width: 70px; height: 1px; background: var(--gold); margin: 18px 0 22px; }
.cta p.copy { color: var(--muted-light); line-height: 1.7; font-size: 16px; margin: 0 0 12px; max-width: 430px; }
.cta__book { margin: 26px 0 40px; font-size: 16px; padding: 18px 34px; }
.cta__benefits { display: flex; gap: 18px; flex-wrap: wrap; }
.benefit { display: flex; align-items: flex-start; gap: 11px; flex: 1 1 0; min-width: 150px; max-width: 175px; }
.benefit__icon { width: 42px; height: 42px; flex: none; border-radius: 12px; border: 1px solid rgba(221,197,150,.4); display: grid; place-items: center; background: rgba(20,32,24,.45); }
.benefit__icon svg { width: 20px; height: 20px; color: var(--gold-light); }
.benefit b { display: block; font-size: 13.5px; color: #f0e7d3; margin-bottom: 3px; }
.benefit span { font-size: 11.5px; color: rgba(221,197,150,.66); line-height: 1.45; }
.cta__badge {
  position: absolute; right: clamp(20px, 4vw, 60px); bottom: clamp(20px, 4vw, 50px); z-index: 3;
  width: 132px; height: 132px; border-radius: 16px;
  background: rgba(13,22,16,.7); border: 1px solid rgba(221,197,150,.5); backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  box-shadow: 0 24px 44px -22px rgba(0,0,0,.7);
}
.cta__badge .laurel { color: var(--gold-light); font-size: 13px; letter-spacing: 2px; }
.cta__badge b { font-family: var(--serif); font-size: 34px; color: #f2ead8; line-height: 1; margin: 4px 0; }
.cta__badge span { font-size: 10px; color: rgba(221,197,150,.8); letter-spacing: .04em; }

/* ====================================================================== */
/*  10 — FOOTER                                                            */
/* ====================================================================== */
.footer {
  position: relative; color: var(--cream-on-dark);
  background-color: var(--green-950);
  background-image: url("10-footer/images/footer-bg-dark-green-texture.png");
  background-size: cover; background-position: center;
  padding: clamp(60px, 7vw, 96px) 0 0;
}
.footer::before { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(13,24,17,.9), rgba(11,20,15,.95)); }
.footer > * { position: relative; z-index: 1; }
.footer__top { display: grid; grid-template-columns: 1.5fr repeat(4, 0.9fr) 1.4fr; gap: 32px; padding-bottom: 56px; }
.footer__about { max-width: 270px; }
.footer__about .brand { margin-bottom: 22px; }
.footer__about p { color: var(--muted-light); font-size: 14px; line-height: 1.7; margin: 0 0 24px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(221,197,150,.3);
  display: grid; place-items: center; color: var(--gold-light); transition: .25s ease;
}
.footer__social a:hover { background: var(--gold); color: var(--green-950); border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h4 { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #f0e7d3; margin: 0 0 10px; }
.footer__col .colrule {
  position: relative; width: 58px; height: 14px; margin-bottom: 18px;
  background: url("00-common/decor/leaf-sprig-gold.png") no-repeat left center / auto 14px;
}
.footer__col .colrule::after {
  content: ""; position: absolute; left: 22px; right: 0; top: 50%; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(198,161,91,0));
}
.footer__col li { margin-bottom: 12px; }
.footer__col a { color: rgba(221,197,150,.72); font-size: 14px; transition: color .2s ease, padding-left .2s ease; }
.footer__col a:hover { color: var(--gold-light); padding-left: 4px; }
.footer__news h4 { font-family: var(--serif); font-size: 18px; color: #f0e7d3; margin: 0 0 8px; }
.footer__news p { color: var(--muted-light); font-size: 13.5px; line-height: 1.6; margin: 0 0 18px; max-width: 240px; }
.footer__form { display: flex; background: rgba(20,32,24,.6); border: 1px solid rgba(221,197,150,.3); border-radius: 999px; padding: 5px 5px 5px 18px; max-width: 280px; }
.footer__form input { flex: 1; background: transparent; border: none; outline: none; color: var(--cream-on-dark); font-family: var(--sans); font-size: 13.5px; }
.footer__form input::placeholder { color: rgba(221,197,150,.5); }
.footer__form button { width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--gold); color: var(--green-950); display: grid; place-items: center; flex: none; transition: .25s; }
.footer__form button:hover { background: var(--gold-light); }
.footer__form button svg { width: 16px; height: 16px; }
.footer__fineprint { font-size: 11px; color: rgba(221,197,150,.45); margin-top: 12px; max-width: 340px; line-height: 1.55; overflow-wrap: anywhere; }
.footer__bottom {
  border-top: 1px solid rgba(221,197,150,.15); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  font-size: 12.5px; color: rgba(221,197,150,.6); flex-wrap: wrap;
}
.footer__bottom .heart { color: var(--gold); }
.footer__leaf { width: 24px; height: auto; opacity: .5; flex: none; }

/* ====================================================================== */
/*  11/12 — RESTAURANT + CATERING PAGES                                    */
/* ====================================================================== */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-950);
  padding: 128px 0 38px;
}
.page-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(13,24,17,.82) 0%, rgba(13,24,17,.56) 36%, rgba(13,24,17,.16) 62%, rgba(13,24,17,.04) 100%),
    linear-gradient(0deg, rgba(13,24,17,.54), transparent 42%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding-inline: clamp(34px, 5.5vw, 92px);
}
.page-hero__copy { max-width: 620px; color: var(--cream-on-dark); transform: translateY(-28px); }
.page-hero__brand { margin-bottom: 24px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.07;
  font-weight: 500;
  letter-spacing: -.015em;
  margin: 0 0 16px;
}
.page-hero h1 em { color: var(--gold-light); font-style: normal; }
.page-hero p:not(.eyebrow) {
  max-width: 450px;
  color: rgba(244,237,225,.86);
  font-size: clamp(14px, 1.1vw, 15.5px);
  line-height: 1.65;
  margin: 0 0 28px;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.section-head {
  text-align: center;
  margin: 0 auto clamp(26px, 4vw, 46px);
}
.section-head .display { font-size: clamp(32px, 4.2vw, 54px); }
.feature-split {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.feature-split__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1.38 / 1;
}
.feature-split__image img,
.menu-tile img,
.dish-card img,
.setting-card img,
.occasion-card img,
.moments-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-split__copy .display { font-size: clamp(30px, 3.4vw, 46px); margin-bottom: 18px; }
.feature-split__copy .copy { color: var(--ink-soft); font-size: 15px; line-height: 1.72; max-width: 560px; margin: 0 0 28px; }
.mini-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.mini-values div {
  border-left: 1px solid rgba(198,161,91,.35);
  padding-left: 16px;
}
.mini-values span {
  display: block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-900);
  font-weight: 600;
  margin-bottom: 8px;
}
.mini-values p { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--muted); }

.dark-strip {
  position: relative;
  padding: clamp(30px, 4.8vw, 52px) 0;
  color: var(--cream-on-dark);
  background-color: var(--green-950);
  background-image: url("00-common/textures/texture-dark-green-botanical.png");
  background-size: cover;
  overflow: hidden;
}
.dark-strip::before { content: ""; position: absolute; inset: 0; background: rgba(13,24,17,.82); }
.dark-strip > * { position: relative; z-index: 1; }
.strip-title {
  text-align: center;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 28px;
}
.icon-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.icon-row div {
  min-height: 78px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.2;
  color: var(--gold-light);
  border-left: 1px solid rgba(221,197,150,.26);
}
.icon-row div:first-child { border-left: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.menu-tile {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  background: var(--green-900);
}
.menu-tile img {
  position: absolute;
  inset: 0;
  transition: transform .8s ease;
}
.menu-tile:hover img { transform: scale(1.08); }
.menu-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(13,24,17,.96), rgba(13,24,17,0));
}
.menu-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  padding: 18px 12px;
  text-align: center;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.18;
  color: var(--gold-light);
}

.dish-grid,
.setting-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.dish-card,
.setting-card,
.occasion-card {
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.45);
  border-radius: 14px;
  background: rgba(18,33,24,.86);
  color: var(--cream-on-dark);
  box-shadow: var(--shadow-soft);
  transition: transform .35s ease, box-shadow .35s ease;
}
.dish-card:hover,
.setting-card:hover,
.occasion-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 34px 56px -32px rgba(13,24,17,.8);
}
.dish-card img { height: 160px; }
.dish-card h3,
.setting-card h3,
.occasion-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  margin: 14px 16px 7px;
  color: var(--gold-light);
}
.dish-card p,
.setting-card p,
.occasion-card p {
  margin: 0 16px 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(244,237,225,.75);
}
.section--cream .setting-card,
.section--cream .occasion-card {
  background: #fbf7ee;
  color: var(--ink);
}
.section--cream .setting-card h3,
.section--cream .occasion-card h3 { color: var(--green-900); }
.section--cream .setting-card p,
.section--cream .occasion-card p { color: var(--muted); }
.setting-card img { height: 170px; }

.booking-panel,
.event-form-section {
  position: relative;
  padding: clamp(48px, 6vw, 76px) 0;
  background-color: var(--green-950);
  background-image: url("00-common/textures/texture-dark-green-botanical.png");
  background-size: cover;
}
.reserve-card,
.event-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(221,197,150,.55);
  border-radius: 18px;
  background: rgba(16,28,21,.7);
  color: var(--cream-on-dark);
  box-shadow: 0 28px 58px -34px rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
}
.reserve-card__head { grid-column: 1 / -1; text-align: center; margin-bottom: 2px; }
.reserve-card__head .display { color: var(--cream-on-dark); font-size: clamp(30px, 3vw, 42px); }
.reserve-card label,
.event-form input,
.event-form select,
.event-form textarea {
  font-size: 12px;
  color: rgba(244,237,225,.85);
}
.reserve-card input,
.reserve-card select,
.event-form input,
.event-form select,
.event-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(221,197,150,.35);
  border-radius: 7px;
  background: rgba(244,237,225,.04);
  color: var(--cream-on-dark);
  padding: 13px 14px;
  font-family: var(--sans);
  outline: none;
}
.reserve-card input::placeholder,
.event-form input::placeholder,
.event-form textarea::placeholder { color: rgba(221,197,150,.52); }
.reserve-card .wide { grid-column: span 2; }
.reserve-card .btn { justify-content: center; min-width: 170px; }

.bottom-cta {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--cream-on-dark);
  background: var(--green-950);
}
.bottom-cta > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .75;
}
.bottom-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,24,17,.82), rgba(13,24,17,.45));
}
.bottom-cta__content { position: relative; z-index: 1; }
.bottom-cta h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  font-weight: 500;
  margin: 0 0 20px;
}
.bottom-cta h2 span { color: var(--gold-light); }
.bottom-cta p { margin: -6px auto 22px; max-width: 560px; color: rgba(244,237,225,.86); line-height: 1.7; }

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.occasion-card img { height: 210px; }
.occasion-card { text-align: center; }
.flavour-grid .menu-tile { min-height: 210px; }

.moments-strip {
  display: grid;
  grid-template-columns: minmax(170px, 260px) repeat(5, 1fr);
  background: var(--green-950);
  color: var(--cream-on-dark);
}
.moments-strip__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px clamp(18px, 2vw, 34px);
  background: var(--green-900);
}
.moments-strip__label h2 {
  font-family: var(--serif);
  color: var(--gold-light);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.moments-strip__label p { margin: 0; line-height: 1.5; }
.moments-strip img { min-height: 210px; }

.process { padding-top: clamp(54px, 6vw, 82px); padding-bottom: clamp(54px, 6vw, 82px); }
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.process-step {
  position: relative;
  padding: 24px;
  border-top: 1px solid rgba(198,161,91,.36);
}
.process-step b {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 22px;
}
.process-step h3 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.process-step p { margin: 0; color: var(--muted); line-height: 1.55; font-size: 13px; }

.event-form-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}
.event-form-copy { color: var(--cream-on-dark); }
.event-form-copy h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.02;
  margin: 0 0 16px;
}
.event-form-copy h2 span { color: var(--gold-light); }
.event-form-copy p { line-height: 1.7; color: rgba(244,237,225,.76); }
.event-form-copy li {
  color: var(--gold-light);
  margin: 11px 0;
  font-size: 14px;
}
.event-form {
  grid-template-columns: repeat(2, 1fr);
}
.event-form textarea { min-height: 112px; resize: vertical; grid-row: span 2; }
.event-form .btn { grid-column: 1 / -1; justify-self: center; min-width: 220px; justify-content: center; text-transform: uppercase; }
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  text-align: center;
  color: rgba(244,237,225,.82);
  font-size: 13px;
  line-height: 1.5;
}
.form-status.is-success { color: var(--gold-light); }
.form-status.is-error { color: #f2b8a8; }
.js-resend-form button[disabled] {
  opacity: .72;
  cursor: wait;
}

/* ====================================================================== */
/*  15 — CONTACT PAGE                                                      */
/* ====================================================================== */
.contact-hero .page-hero__image {
  object-position: center;
}
.contact-hero::before {
  background:
    linear-gradient(100deg, rgba(13,24,17,.9) 0%, rgba(13,24,17,.64) 38%, rgba(13,24,17,.2) 68%, rgba(13,24,17,.08) 100%),
    linear-gradient(0deg, rgba(13,24,17,.62), transparent 48%);
}
.contact-overview {
  overflow: hidden;
}
.contact-overview__grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}
.contact-overview__copy .display {
  font-size: clamp(34px, 4.4vw, 58px);
  margin-bottom: 18px;
}
.contact-overview__copy .copy {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.72;
  margin: 0 0 28px;
}
.contact-methods {
  display: grid;
  gap: 12px;
  max-width: 520px;
}
.contact-method {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(198,161,91,.3);
  border-radius: 14px;
  background: rgba(255,252,244,.7);
  color: var(--green-950);
  box-shadow: 0 24px 52px -42px rgba(74,61,38,.42);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.contact-method:hover {
  transform: translateY(-2px);
  border-color: rgba(198,161,91,.54);
  background: rgba(255,252,244,.9);
}
.contact-method span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(198,161,91,.78);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle at 35% 20%, #0e3a2b, var(--green-950));
}
.contact-method svg {
  width: 22px;
  height: 22px;
}
.contact-method strong {
  align-self: end;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}
.contact-method small {
  align-self: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.contact-media {
  position: relative;
  min-height: 520px;
}
.contact-media figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.48);
  border-radius: 18px;
  background: var(--green-950);
  box-shadow: 0 32px 66px -44px rgba(40,31,18,.7);
}
.contact-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-media__main {
  position: absolute;
  inset: 24px 0 26px 84px;
}
.contact-media__small {
  position: absolute;
  width: clamp(180px, 22vw, 285px);
}
.contact-media__small--top {
  top: 0;
  left: 0;
  height: 190px;
}
.contact-media__small--bottom {
  right: 22px;
  bottom: 0;
  height: 210px;
}
.contact-form-section {
  background-image:
    linear-gradient(0deg, rgba(6,28,21,.86), rgba(6,28,21,.86)),
    url("07-gallery/images/gallery-property-detail-01.webp");
  background-position: center;
  background-size: cover;
}
.contact-form-grid {
  grid-template-columns: minmax(270px, 380px) 1fr;
}
.contact-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form label {
  display: block;
  font-size: 12px;
  color: rgba(244,237,225,.85);
}
.contact-form__wide {
  grid-column: 1 / -1;
}
.contact-form textarea {
  min-height: 126px;
  resize: vertical;
}
.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 220px;
  justify-content: center;
  text-transform: uppercase;
}
.contact-location__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-location__card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(198,161,91,.3);
  border-radius: 16px;
  background: rgba(255,252,244,.78);
  box-shadow: 0 26px 54px -42px rgba(74,61,38,.42);
}
.contact-location__card span {
  color: var(--gold-deep);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.contact-location__card h3 {
  margin: 12px 0 10px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}
.contact-location__card p {
  max-width: 520px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.contact-location__details {
  padding-top: 14px;
  border-top: 1px solid rgba(198,161,91,.24);
  overflow-wrap: anywhere;
}
.contact-bottom-cta::after {
  background: linear-gradient(90deg, rgba(13,24,17,.88), rgba(13,24,17,.48) 54%, rgba(13,24,17,.24));
}

/* ====================================================================== */
/*  13 — CAREERS PAGE                                                      */
/* ====================================================================== */
.careers-hero .page-hero__image { object-position: center; }
.careers-hero .page-hero__copy { max-width: 650px; }
.careers-hero h1 em { color: var(--gold-light); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.benefit-card {
  min-height: 190px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(198,161,91,.38);
  border-radius: 13px;
  background: rgba(255,252,244,.58);
  box-shadow: 0 24px 50px -36px rgba(74,61,38,.35);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198,161,91,.7);
  box-shadow: 0 32px 56px -34px rgba(74,61,38,.42);
}
.benefit-card .card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 17px;
  color: var(--green-700);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.careers-positions .section-head .display { color: var(--cream-on-dark); }
.job-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}
.job-card {
  min-height: 205px;
  padding: 26px;
  border: 1px solid rgba(221,197,150,.42);
  border-radius: 12px;
  background: rgba(18,33,24,.62);
  color: var(--cream-on-dark);
  box-shadow: 0 30px 56px -40px rgba(0,0,0,.8);
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}
.job-card:hover {
  transform: translateY(-5px);
  background: rgba(28,50,36,.78);
  border-color: rgba(221,197,150,.78);
}
.job-card .card-icon {
  display: block;
  width: 39px;
  height: 39px;
  color: var(--gold-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px;
}
.job-card h3 {
  max-width: 220px;
  margin: 0 0 13px;
  color: #f5ecdb;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.12;
}
.job-card p {
  margin: 0 0 16px;
  color: rgba(244,237,225,.74);
  font-size: 13px;
  line-height: 1.62;
}
.job-card a {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 13px;
}
.job-card b { font-weight: 400; margin-left: 8px; }

.careers-process { padding-top: clamp(58px, 7vw, 92px); padding-bottom: clamp(58px, 7vw, 92px); }
.career-process-row .process-step {
  padding-left: 0;
  padding-right: 26px;
}

.careers-apply { border-top: 1px solid rgba(198,161,91,.24); }
.apply-grid {
  display: grid;
  grid-template-columns: minmax(250px, 330px) 1fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}
.career-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.career-form input,
.career-form select,
.career-form textarea,
.upload-box {
  width: 100%;
  border: 1px solid rgba(198,161,91,.28);
  border-radius: 7px;
  background: rgba(255,252,244,.68);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
}
.career-form input::placeholder,
.career-form textarea::placeholder { color: rgba(74,61,38,.58); }
.career-form textarea {
  min-height: 106px;
  resize: vertical;
  grid-column: 1 / -1;
}
.upload-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: rgba(74,61,38,.78);
}
.upload-box input { display: none; }
.career-form .btn {
  grid-column: 1 / -1;
  justify-content: center;
  background: var(--green-950);
  color: var(--cream-on-dark);
  border-color: rgba(221,197,150,.2);
}
.career-form .btn:hover { background: var(--green-900); }

.careers-bottom-cta { min-height: 380px; text-align: left; }
.careers-bottom-cta .bottom-cta__content { max-width: 620px; margin-inline: 0 auto; }
.careers-bottom-cta::after {
  background:
    linear-gradient(90deg, rgba(13,24,17,.92) 0%, rgba(13,24,17,.72) 42%, rgba(13,24,17,.2) 72%, rgba(13,24,17,.08) 100%),
    linear-gradient(0deg, rgba(13,24,17,.62), transparent 55%);
}

/* ====================================================================== */
/*  14 — ABOUT PAGE                                                        */
/* ====================================================================== */
.about-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream-on-dark);
  background: var(--green-950);
}
.about-hero__image,
.about-final-cta__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4,22,16,.96) 0%, rgba(5,25,18,.88) 35%, rgba(5,25,18,.34) 67%, rgba(5,25,18,.08) 100%),
    linear-gradient(0deg, rgba(5,18,14,.4), transparent 48%);
}
.about-hero__frame {
  position: absolute;
  inset: clamp(18px, 2vw, 32px);
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(198,161,91,.56);
  box-shadow: inset 0 0 0 1px rgba(244,237,225,.04);
  opacity: .82;
}
.about-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.about-hero__copy {
  max-width: 620px;
  padding-top: 52px;
}
.about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 26px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.about-kicker::after {
  content: "";
  width: clamp(130px, 17vw, 280px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.about-hero h1 {
  margin: 0;
  color: #f5ecdb;
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -.015em;
  text-shadow: 0 14px 34px rgba(0,0,0,.35);
}
.about-hero p:not(.about-kicker) {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(244,237,225,.88);
  font-family: var(--sans);
  font-size: clamp(14px, 1.1vw, 15.5px);
  line-height: 1.72;
}
.about-hero p b { color: var(--gold-light); font-weight: 600; }
.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.about-hero__actions .btn,
.about-final-cta .btn {
  border-radius: 999px;
  padding: 15px 26px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: .04em;
}

.about-leaf {
  position: absolute;
  z-index: 2;
  width: clamp(120px, 17vw, 260px);
  height: auto;
  opacity: .62;
  pointer-events: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18));
}
.about-leaf--hero-tl { top: 22px; left: 22px; transform: rotate(-8deg); }
.about-leaf--hero-bl { bottom: 30px; left: 22px; transform: rotate(190deg); }
.about-leaf--hero-br { right: 16px; bottom: 28px; transform: rotate(10deg) scaleX(-1); }
.about-leaf--paper-l { left: -60px; top: 38px; transform: rotate(-14deg); opacity: .32; filter: none; }
.about-leaf--paper-r { right: -54px; top: 36px; transform: rotate(18deg) scaleX(-1); opacity: .32; filter: none; }
.about-leaf--dark-l { left: -44px; top: 18%; transform: rotate(-20deg); opacity: .55; }
.about-leaf--dark-r { right: -40px; top: 7%; transform: rotate(18deg) scaleX(-1); opacity: .55; }
.about-leaf--cta-l { left: -34px; bottom: 30px; transform: rotate(190deg); opacity: .7; }
.about-leaf--cta-r { right: 4px; top: 34px; transform: rotate(22deg) scaleX(-1); opacity: .7; }

.about-paper,
.about-dark {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) 0;
}
.about-paper {
  background-color: var(--cream);
  background-image: url("00-common/textures/texture-cream-paper-botanical.png");
  background-size: cover;
}
#home-away {
  background-image: url("00-common/textures/texture-cream-paper-botanical.png");
}
.about-amenities {
  background-image: url("00-common/textures/texture-cream-paper-botanical.png");
}
.about-packages {
  background-image: url("00-common/textures/texture-cream-paper-botanical.png");
}
.about-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,251,241,.28), rgba(244,237,225,.38));
}
.about-dark {
  color: var(--cream-on-dark);
  background-color: var(--green-950);
  background-image: url("00-common/textures/texture-dark-green-botanical.png");
  background-size: cover;
}
.about-founder {
  background-image:
    linear-gradient(90deg, rgba(7,29,22,.88), rgba(7,29,22,.82)),
    url("14-about/images/about-real-property-wide-2.webp");
}
.about-destinations {
  background-image:
    linear-gradient(0deg, rgba(7,29,22,.9), rgba(7,29,22,.86)),
    url("14-about/images/about-real-munnar-wide.jpg");
}
.about-experiences {
  background-image:
    linear-gradient(0deg, rgba(7,29,22,.9), rgba(7,29,22,.86)),
    url("14-about/images/about-real-property-wide-1.webp");
}
.about-dark::before,
.about-founder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(198,161,91,.11), transparent 34%),
    rgba(6,30,22,.86);
}
.about-paper > :not(.about-leaf),
.about-dark > :not(.about-leaf),
.about-founder > :not(.about-leaf) {
  position: relative;
  z-index: 1;
}

.about-section-head {
  max-width: 860px;
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}
.about-section-head img {
  width: 112px;
  margin: 0 auto 16px;
  opacity: .75;
  filter: sepia(1) saturate(1.6);
}
.about-section-head h2 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.08;
}
.about-section-head p {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.72;
}
.about-section-head--dark h2 {
  color: #f4ead8;
}
.about-section-head--dark h2 span {
  color: var(--gold);
}
.about-section-head--dark p {
  max-width: 760px;
  color: rgba(244,237,225,.83);
}
.about-rule {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(330px, 66%);
  margin: 18px auto 0;
  color: var(--gold);
}
.about-rule::before,
.about-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}
.about-rule::after { background: linear-gradient(90deg, currentColor, transparent); }
.about-rule span {
  width: 7px;
  height: 7px;
  margin: 0 16px;
  transform: rotate(45deg);
  background: currentColor;
}
.about-rule--left {
  justify-content: flex-start;
  width: 360px;
  max-width: 70%;
  margin: 28px 0 0;
}
.about-rule--left::before { display: none; }

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 28px);
  max-width: 1120px;
  margin: 0 auto;
}
.about-belief-card,
.about-amenity-card {
  position: relative;
  min-height: 250px;
  padding: 28px 26px 26px;
  text-align: center;
  border: 1px solid rgba(198,161,91,.32);
  border-radius: var(--radius);
  background: rgba(255,252,244,.7);
  box-shadow: 0 26px 58px -42px rgba(74,61,38,.36);
}
.about-belief-card h3,
.about-amenity-card h3 {
  margin: 18px auto 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 500;
  line-height: 1.12;
}
.about-belief-card p,
.about-amenity-card p,
.about-package-card p {
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
}
.about-card-rule {
  width: 144px;
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,.72), transparent);
}
.about-card-rule::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: -3px auto 0;
  transform: rotate(45deg);
  background: var(--gold);
}

.about-icon {
  display: inline-grid;
  place-items: center;
  color: var(--gold);
}
.about-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-icon--round {
  width: 76px;
  height: 76px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #0e3a2b, var(--green-950));
  box-shadow: 0 12px 28px -20px rgba(0,0,0,.5);
}
.about-icon--over {
  width: 76px;
  height: 76px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 20%, #0d3a2b, var(--green-950));
  box-shadow: 0 10px 22px -16px rgba(0,0,0,.7);
}

.about-founder {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 96px) 0;
  color: var(--cream-on-dark);
  background-color: var(--green-950);
  background-size: cover;
  background-position: center;
}
.about-founder__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}
.about-founder__portrait {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(198,161,91,.72);
  border-radius: 22px;
  box-shadow: 0 34px 66px -40px rgba(0,0,0,.8);
  background: rgba(16,28,21,.72);
}
.about-founder__portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.about-founder__portrait figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px 22px;
  text-align: center;
  color: var(--green-950);
  background: linear-gradient(135deg, #d4b673, var(--gold-light) 52%, var(--gold-deep));
}
.about-founder__portrait b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.about-founder__portrait span {
  display: block;
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(17px, 1.7vw, 22px);
  font-style: italic;
}
.about-founder__copy h2 {
  max-width: 720px;
  margin: 0 0 20px;
  color: #f5ecdb;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  line-height: 1.1;
}
.about-founder__copy p {
  max-width: 680px;
  margin: 0 0 16px;
  color: rgba(244,237,225,.85);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.76;
}
.about-founder blockquote {
  position: relative;
  margin: 28px 0 0;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(198,161,91,.72);
  border-radius: var(--radius);
  color: var(--gold-light);
}
.about-founder blockquote p {
  max-width: 650px;
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 26px);
  font-style: italic;
  line-height: 1.35;
}
.about-founder blockquote p::before,
.about-founder blockquote p::after {
  color: var(--gold);
  font-size: 42px;
  line-height: 0;
}
.about-founder blockquote p::before { content: "“ "; }
.about-founder blockquote p::after { content: " ”"; }
.about-founder cite {
  display: block;
  margin-top: 22px;
  color: #f4ead8;
  font-family: var(--script);
  font-size: clamp(28px, 3vw, 38px);
  font-style: normal;
  line-height: 1;
}
.about-founder cite span {
  display: block;
  margin-top: 8px;
  font-family: var(--serif-2);
  font-size: 17px;
  color: rgba(244,237,225,.86);
}
.about-founder__seal {
  position: absolute;
  right: 4%;
  top: 24%;
  display: grid;
  place-items: center;
  width: 110px;
  height: 110px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(8,31,23,.58);
  text-align: center;
}
.about-founder__seal span {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.about-founder__seal b {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.about-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.about-dest-card,
.about-experience-card {
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.72);
  border-radius: 20px;
  background: rgba(8,37,28,.72);
  box-shadow: 0 30px 60px -42px rgba(0,0,0,.75);
}
.about-dest-card > img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}
.about-dest-card__body {
  position: relative;
  min-height: 190px;
  padding: 48px 28px 26px;
  text-align: center;
}
.about-dest-card .about-icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.about-dest-card h3,
.about-experience-card h3 {
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 500;
}
.about-dest-card p {
  margin: 18px auto 0;
  color: rgba(244,237,225,.86);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
}

.about-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.about-amenity-card {
  min-height: 240px;
  border-radius: 16px;
  padding: 24px 22px;
}
.about-amenity-card .about-icon--round {
  width: 70px;
  height: 70px;
}
.about-amenity-card .about-icon svg {
  width: 31px;
  height: 31px;
}
.about-amenity-card h3 {
  font-size: clamp(19px, 1.65vw, 24px);
}
.about-amenity-card p {
  font-size: 13.5px;
}

.about-experience-row,
.about-package-row {
  display: grid;
  gap: 16px;
}
.about-experience-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.about-experience-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
}
.about-experience-card img {
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
}
.about-experience-card .about-icon {
  align-self: center;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.about-experience-card h3 {
  padding: 18px 14px 26px;
  text-align: center;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.12;
}

.about-package-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.about-package-card {
  overflow: hidden;
  border: 1px solid rgba(198,161,91,.28);
  border-radius: 16px;
  background: rgba(255,252,244,.72);
  box-shadow: 0 26px 54px -38px rgba(74,61,38,.42);
  text-align: center;
}
.about-package-card img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}
.about-package-card .about-icon {
  margin-top: -38px;
  position: relative;
  z-index: 2;
}
.about-package-card h3 {
  margin: 16px 16px 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 24px);
  font-weight: 500;
  line-height: 1.14;
}
.about-package-card p {
  padding: 0 20px 24px;
  font-size: 13.5px;
}

.about-final-cta {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream-on-dark);
  background: var(--green-950);
}
.about-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,22,18,.92) 0%, rgba(7,22,18,.72) 38%, rgba(7,22,18,.18) 72%, rgba(7,22,18,.02) 100%),
    linear-gradient(0deg, rgba(7,22,18,.38), transparent 55%);
}
.about-final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(198,161,91,.42);
  margin: clamp(16px, 2vw, 30px);
  opacity: .8;
}
.about-final-cta__inner {
  position: relative;
  z-index: 3;
  width: 100%;
}
.about-final-cta__copy {
  max-width: 610px;
}
.about-final-cta h2 {
  margin: 18px 0 22px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(44px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.015em;
}
.about-final-cta h2 em {
  color: #f5ecdb;
  font-style: italic;
  font-size: .56em;
}
.about-final-cta p {
  max-width: 470px;
  color: rgba(244,237,225,.9);
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  margin: 0 0 28px;
}

/* ====================================================================== */
/*  RESPONSIVE                                                             */
/* ====================================================================== */
@media (max-width: 1080px) {
  .booking { grid-template-columns: 1fr 1fr; }
  .booking__submit { grid-column: 1 / -1; }
  .booking__field + .booking__field::before { display: none; }
  .values__grid { grid-template-columns: repeat(3, 1fr); row-gap: 38px; }
  .value:nth-child(3)::before, .value + .value::before { display: none; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .occasion-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .job-grid { grid-template-columns: repeat(3, 1fr); }
  .about-amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .about-experience-row { grid-template-columns: repeat(3, 1fr); }
  .about-package-row { grid-template-columns: repeat(3, 1fr); }
  .dish-grid,
  .setting-grid,
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .icon-row { grid-template-columns: repeat(3, 1fr); row-gap: 22px; }
  .icon-row div:nth-child(4) { border-left: 0; }
  .reserve-card { grid-template-columns: repeat(2, 1fr); }
  .reserve-card .wide { grid-column: span 2; }
  .reserve-card .btn { grid-column: 1 / -1; justify-self: center; }
  .footer__top { grid-template-columns: repeat(4, 1fr); }
  .footer__about, .footer__news { grid-column: span 4; max-width: none; }
  .footer__news p, .footer__form, .footer__fineprint { max-width: 360px; }
}
@media (max-width: 1120px) {
  .nav__inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-inline: clamp(22px, 5vw, 48px);
  }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .nav.mobile-open { background: rgba(16,28,21,.98); backdrop-filter: blur(16px); box-shadow: 0 24px 50px -24px rgba(0,0,0,.7); }
  .nav.mobile-open .nav__inner { flex-wrap: wrap; row-gap: 4px; }
  .nav.mobile-open .nav__links {
    display: flex; flex-direction: column; order: 4; width: 100%;
    padding: 20px 0 6px; gap: 16px; align-items: flex-start;
    border-top: 1px solid rgba(221,197,150,.16); margin-top: 14px;
  }
  .nav.mobile-open .nav__links a { font-size: 17px; }
  .nav.mobile-open .nav__cta { display: inline-flex; order: 5; margin: 6px 0 10px; }
  /* Gallery: 3 columns on smaller laptops/tablets */
  .gallery__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .dest__cards, .stays__cards { grid-template-columns: 1fr 1fr; }
  .about-founder__grid,
  .about-belief-grid,
  .about-dest-grid,
  .contact-overview__grid,
  .contact-form-grid { grid-template-columns: 1fr; }
  .about-founder__seal { display: none; }
  .about-founder__portrait { max-width: 520px; margin: 0 auto; }
  .contact-media {
    min-height: 440px;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
  .mosaic__top { grid-template-columns: 1fr 1fr; }
  .mosaic__bottom { grid-template-columns: 1fr 1fr; }
  .mosaic__bottom .exp-card:last-child { grid-column: 1 / -1; }
  .mosaic__top .exp-card, .mosaic__bottom .exp-card { height: clamp(200px, 34vw, 260px); }
  .story { grid-template-columns: 1fr; }
  .story__right { min-height: 520px; }
  .feature-split,
  .event-form-grid,
  .apply-grid { grid-template-columns: 1fr; }
  .feature-split__image { max-width: 680px; }
  .restaurant-hero::after { display: none; }
  .page-hero::before {
    background: linear-gradient(90deg, rgba(13,24,17,.96) 0%, rgba(13,24,17,.78) 48%, rgba(13,24,17,.28) 100%),
      linear-gradient(0deg, rgba(13,24,17,.5), transparent 50%);
  }
  .moments-strip { grid-template-columns: 1fr 1fr; }
  .moments-strip__label { grid-column: 1 / -1; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .testi { grid-template-columns: 1fr; }
  .tcard { flex: 0 0 calc((100% - 22px) / 2); }
}
/* Sticky mobile booking bar (shown on phones only) */
.mobile-book { display: none; }
@media (max-width: 720px) {
  .mobile-book {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 150;
    padding: 15px 20px; border-radius: 999px;
    font-family: var(--sans); font-size: 15px; letter-spacing: .03em; font-weight: 500;
    text-decoration: none; color: #20180a;
    background: linear-gradient(135deg, #d4b673, var(--gold) 60%, var(--gold-deep));
    box-shadow: 0 12px 30px -8px rgba(20,30,22,.6);
  }
  .mobile-book svg { width: 18px; height: 18px; }
  body { padding-bottom: 78px; }   /* room so the bar never covers content */
}

@media (max-width: 620px) {
  .hero { padding-top: 120px; }
  .about-hero {
    min-height: auto;
    padding: 128px 0 68px;
  }
  .about-hero__copy { padding-top: 0; }
  .about-hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .about-hero p:not(.about-kicker),
  .about-section-head p,
  .about-founder__copy p,
  .about-dest-card p,
  .about-final-cta p { font-size: 14.5px; }
  .about-kicker { font-size: 11px; gap: 12px; letter-spacing: .26em; }
  .about-kicker::after { width: 86px; }
  .about-hero__actions,
  .about-final-cta .btn { width: 100%; }
  .about-hero__actions .btn,
  .about-final-cta .btn { justify-content: center; }
  .about-leaf { opacity: .24; }
  .about-paper,
  .about-dark,
  .about-founder { padding: 58px 0; }
  .about-section-head h2,
  .about-founder__copy h2 { font-size: clamp(32px, 10vw, 42px); }
  .about-belief-grid,
  .about-amenity-grid,
  .about-experience-row,
  .about-package-row,
  .contact-form,
  .contact-location__grid { grid-template-columns: 1fr; }
  .contact-media {
    min-height: 0;
    display: grid;
    gap: 14px;
  }
  .contact-media__main,
  .contact-media__small,
  .contact-media__small--top,
  .contact-media__small--bottom {
    position: static;
    width: 100%;
    height: auto;
  }
  .contact-media figure img {
    height: auto;
    aspect-ratio: 1.5 / 1;
  }
  .contact-form__wide,
  .contact-form .btn { grid-column: auto; }
  .about-experience-card { min-height: 0; }
  .about-final-cta {
    min-height: auto;
    padding: 76px 0;
  }
  .about-final-cta h2 { font-size: clamp(42px, 12vw, 58px); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__tagline {
    left: 22px;
    right: 22px;
    bottom: 14px;
    gap: 8px;
    font-size: 10px;
    letter-spacing: .16em;
    line-height: 1.45;
    text-align: center;
  }
  .hero__tagline::before,
  .hero__tagline::after { display: none; }
  .hero__tagline span { white-space: normal; }
  .booking { grid-template-columns: 1fr; }
  .page-hero { min-height: auto; padding: 112px 0 58px; }
  .page-hero__copy { transform: none; }
  .page-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .page-hero__actions { flex-direction: column; align-items: stretch; }
  .page-hero__actions .btn { justify-content: center; }
  .mini-values,
  .menu-grid,
  .occasion-grid,
  .benefit-grid,
  .job-grid,
  .dish-grid,
  .setting-grid,
  .process-row,
  .icon-row,
  .reserve-card,
  .event-form,
  .career-form { grid-template-columns: 1fr; }
  .icon-row div,
  .icon-row div:nth-child(4) { border-left: 0; border-top: 1px solid rgba(221,197,150,.22); }
  .icon-row div:first-child { border-top: 0; }
  .reserve-card .wide,
  .event-form textarea,
  .career-form textarea,
  .career-form .btn { grid-column: auto; grid-row: auto; }
  .moments-strip { grid-template-columns: 1fr; }
  .moments-strip img { min-height: 230px; }
  .dest__cards, .stays__cards { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }  /* keep 2-up on phones */
  .lightbox__nav { width: 42px; height: 42px; }
  .mosaic__top, .mosaic__bottom { grid-template-columns: 1fr; }
  .mosaic__top .exp-card, .mosaic__bottom .exp-card { height: 240px; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .tcard { flex: 0 0 100%; }
  .testi__stats { flex-wrap: wrap; }
  .cta__badge { position: static; margin: 30px auto 0; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about, .footer__news { grid-column: span 2; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
