/* Fonts are loaded as <link> stylesheets in each page's <head> (see the two Google Fonts
   <link rel="stylesheet"> entries) — imported here was render-blocking. DM Sans is used at
   weights 400/500/600/700 (300 was dropped), Great Vibes as-is, Playfair 400-700 + italic 400. */

/* ── TOKENS ───────────────────────────────────────────── */
:root {
  --green: #03291d;
  --green2: #061c16;
  --band-green: #042a1e;
  --gold: #c99538;
  --gold2: #e0b45d;
  --cream: #f7f3ed;
  --ink: #121715;
  --line: #d9d0c2;
  --white: #fff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.14);
  --radius: 8px;
  --radius-lg: 14px;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
  --transition: .3s var(--ease);
}

/* ── RESET ────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background-color: var(--cream);
  background-image: url("assets/backgroundimg9.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
  background-attachment: scroll;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-restart {
  background-image: url("assets/backgroundimg9.webp");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: repeat-y;
}

/* ── SKIP LINK (accessibility + SEO) ──────────────────── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--green);
  color: var(--gold2);
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top .25s var(--ease);
}
.skip-link:focus-visible {
  top: 0;
  outline: 2px solid var(--gold2);
  outline-offset: -2px;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* ── UTILITIES ────────────────────────────────────────── */
.container { width: min(1180px, 92%); margin: auto; }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

/* staggered card children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease-out), transform .55s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: .05s; }
.stagger.visible > *:nth-child(2) { transition-delay: .12s; }
.stagger.visible > *:nth-child(3) { transition-delay: .19s; }
.stagger.visible > *:nth-child(4) { transition-delay: .26s; }
.stagger.visible > *:nth-child(5) { transition-delay: .33s; }
.stagger.visible > *:nth-child(6) { transition-delay: .40s; }
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── TOPBAR ───────────────────────────────────────────── */
.topbar {
  height: 76px;
  background: rgba(2,16,13,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 4%;
  position: absolute;
  z-index: 100;
  top: 0; left: 0; right: 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .4s var(--ease);
}
.topbar.scrolled {
  background: rgba(2,16,13,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}

.logo {
  font-family: "Playfair Display", serif;
  color: var(--gold2);
  font-size: 18px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.logo:hover { color: #f0c96a; }
.logo-img {
  height: 90px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}
.logo small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  letter-spacing: .22em;
  margin-top: 4px;
  text-align: center;
}

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: auto;
  font-size: 14px;
}
.nav a {
  opacity: .82;
  padding: 28px 14px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), opacity var(--transition), border-color var(--transition);
}
.nav a:hover,
.nav a.active {
  color: var(--gold2);
  opacity: 1;
  border-color: var(--gold);
}

/* ── CTA BUTTONS ──────────────────────────────────────── */
.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  color: #fff;
  border: 0;
  padding: 15px 30px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 2px 12px rgba(201,149,56,.25);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,149,56,.35);
}
.cta:hover::before { opacity: 1; }
.cta:active { transform: translateY(0); }

.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 500;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.outline:hover {
  border-color: var(--gold2);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  /* Height scales with viewport so the retreat overlap never covers hero buttons */
  min-height: clamp(680px, 72vh, 820px);
  position: relative;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  /* Solid dark base behind the slideshow so no cream/grey flash shows
     between the header and hero while the background images load */
  background: #061c16;
}
/* GPU-accelerated parallax slideshow layer */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
}
.hero-slide {
  position: absolute;
  left: 0;
  right: 0;
  top: -18%;
  bottom: -18%;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 1.3s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.35) 50%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, transparent 60%, rgba(0,0,0,.30) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 90px auto 0 6%;
  padding-right: 24px;
}
.hero-content .eyebrow {
  font-size: 14px;
  letter-spacing: .25em;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.0;
  max-width: 680px;
  font-weight: 500;
}
.hero h1 span {
  color: var(--gold2);
  font-style: italic;
}
.hero p {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  margin: 20px 0 0;
  opacity: .88;
}
.hero .actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

/* ── EYEBROW ──────────────────────────────────────────── */
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 12px;
  font-weight: 600;
}
.green-headline { color: var(--green); }

/* ── HEADINGS ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin: 0;
}

/* ── STATS BAR ────────────────────────────────────────── */
.stats {
  background: var(--green);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 14px 4%;
  gap: 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 30px rgba(3,41,29,.25);
}
.stat {
  text-align: center;
  border-right: 1px solid rgba(201,149,56,.25);
  padding: 6px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.stat:hover {
  transform: translateY(-3px);
}
.stat:last-child { border-right: none; }
.stat:first-child .stat-icon {
  width: 30px;
  height: 30px;
}
.stat-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  opacity: .92;
  transition: opacity var(--transition), transform var(--transition);
}
.stat:hover .stat-icon {
  opacity: 1;
  transform: scale(1.1);
}
.stat strong {
  display: block;
  color: var(--gold2);
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2px;
}
/* Numeric stat values render smaller than words in Playfair Display —
   bump them up + use lining numerals so heights look uniform */
.stat strong.num {
  font-size: 20px;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: .02em;
}
.stat span {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .10em;
  text-transform: uppercase;
}

/* ── CONVENTION STATS (image icons, 8-col) ──────────── */
.convention-stats {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.convention-stats .stat {
  justify-content: flex-start;
  align-items: center;
}
.convention-stats .stat > span { font-size: 10.5px; }
.stat-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-bottom: 5px;
  font-size: 0;
  letter-spacing: normal;
  text-transform: none;
  color: inherit;
  line-height: 0;
}
.stat-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: .92;
  filter: sepia(1) saturate(2) brightness(1.1) hue-rotate(-5deg);
  transition: opacity var(--transition), transform var(--transition);
}
.stat:hover .stat-img {
  opacity: 1;
  transform: scale(1.1);
}

/* ── SECTIONS ─────────────────────────────────────────── */
.section { padding: 52px 0; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}

.photo {
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  position: relative;
  will-change: transform;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
/* Floating soft shadow that appears behind the image on hover */
.photo::after {
  content: '';
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: -18px;
  height: 34px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0,0,0,.55), rgba(0,0,0,.18) 60%, transparent 90%);
  filter: blur(10px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.photo:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,.32);
}
.photo:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform .6s var(--ease);
}
.photo:hover img {
  transform: scale(1.04);
}

/* Retreat section sits fully below the hero (no overlap) */
#retreat {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding-top: 16px;
}
#retreat .container {
  width: min(1180px, 96%);
}
@media (min-width: 1300px) {
  #retreat .container {
    margin-left: calc((100% - 1180px) / 2 - 40px);
    margin-right: auto;
  }
}
/* Soft color glow behind the retreat image (no white card) */
#retreat .photo {
  box-shadow: none;
}
#retreat .photo::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 10%;
  top: 4%;
  bottom: -14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,180,93,.55) 0%, rgba(224,180,93,.2) 55%, transparent 74%);
  filter: blur(38px);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
/* Bottom ground shadow appears when the image lifts (no white card) */
#retreat .photo::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 10%;
  bottom: -16px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0,0,0,.5), rgba(0,0,0,.18) 60%, transparent 90%);
  filter: blur(12px);
  opacity: 0;
  transform: translateY(14px) scale(.9);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
#retreat .photo img {
  position: relative;
  z-index: 1;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
/* Hover matches the farmhouse image hover: image lifts up and casts a bottom shadow */
#retreat .photo:hover img {
  transform: translateY(-16px) scale(1.02);
  box-shadow: none;
}
#retreat .photo:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#retreat .photo:hover::before {
  opacity: 1;
  transform: scale(1.12);
}
#retreat .photo:hover {
  transform: none;
  box-shadow: none;
}

/* White card behind the convention hall image */
#convention .photo {
  box-shadow: none;
}
/* Soft gold glow behind the convention hall image (no white card) */
#convention .photo::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 10%;
  top: 4%;
  bottom: -14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,180,93,.55) 0%, rgba(224,180,93,.2) 55%, transparent 74%);
  filter: blur(38px);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
#convention .photo::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 10%;
  bottom: -16px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0,0,0,.5), rgba(0,0,0,.18) 60%, transparent 90%);
  filter: blur(12px);
  opacity: 0;
  transform: translateY(14px) scale(.9);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
#convention .photo img {
  position: relative;
  z-index: 1;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
/* Hover: image lifts up and casts a bottom shadow */
#convention .photo:hover img {
  transform: translateY(-16px) scale(1.02);
  box-shadow: none;
}
#convention .photo:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#convention .photo:hover::before {
  opacity: 1;
  transform: scale(1.12);
}
#convention .photo:hover {
  transform: none;
  box-shadow: none;
}

/* Soft gold glow behind the farmhouse image (no white card) */
#farmhouse .photo {
  box-shadow: none;
}
/* Soft gold glow behind the farmhouse image (no white card) */
#farmhouse .photo::before {
  content: '';
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 10%;
  top: 4%;
  bottom: -14%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(224,180,93,.55) 0%, rgba(224,180,93,.2) 55%, transparent 74%);
  filter: blur(38px);
  opacity: 0;
  transform: scale(.9);
  transition: opacity .5s var(--ease), transform .6s var(--ease);
}
#farmhouse .photo::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 10%;
  right: 10%;
  bottom: -16px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0,0,0,.5), rgba(0,0,0,.18) 60%, transparent 90%);
  filter: blur(12px);
  opacity: 0;
  transform: translateY(14px) scale(.9);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
#farmhouse .photo img {
  position: relative;
  z-index: 1;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
/* Hover: image lifts up and casts a bottom shadow */
#farmhouse .photo:hover img {
  transform: translateY(-16px) scale(1.02);
  box-shadow: none;
}
#farmhouse .photo:hover::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#farmhouse .photo:hover::before {
  opacity: 1;
  transform: scale(1.12);
}
#farmhouse .photo:hover {
  transform: none;
  box-shadow: none;
}

.split h2 {
  font-size: 42px;
  line-height: 1.12;
  margin: 14px 0 22px;
}
.split p {
  line-height: 1.75;
  color: #4d504d;
  font-size: 15.5px;
}
/* Tagline: base style (gold highlight applied only in mobile block below) */
.tagline {
  font-weight: 600;
  letter-spacing: .02em;
}
/* gold-hl: empty on desktop; color applied only inside mobile media query */
.gold-hl {}

/* #farmhouse desktop: photo is inside the text div — inner grid keeps text-left/photo-right */
#farmhouse .split > div {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.56fr 0.44fr;
  gap: 40px;
  align-items: center;
}
#farmhouse .split .eyebrow   { grid-column: 1; margin-bottom: 0; }
#farmhouse .split h2         { grid-column: 1; margin-top: 2px; margin-bottom: 4px; line-height: 1.2; }
#farmhouse .split > div > p  { grid-column: 1; margin: 0; line-height: 1.6; }
#farmhouse .split .gold-link { grid-column: 1; }
#farmhouse .split .photo     { grid-column: 2; grid-row: 1 / span 5; }
/* Farmhouse mobile-only copy block — hidden on desktop */
.farmhouse-mobile-copy { display: none; }

/* #convention desktop: photo is inside the text div — inner grid keeps image-left/text-right */
#convention .split > div {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.44fr 0.56fr;
  gap: 40px;
  align-items: center;
}
#convention .split .photo     { grid-column: 1; grid-row: 1 / span 5; }
#convention .split .eyebrow   { grid-column: 2; margin-bottom: 0; }
#convention .split h2         { grid-column: 2; margin-top: 2px; margin-bottom: 4px; line-height: 1.2; }
#convention .split > div > p  { grid-column: 2; margin: 0; line-height: 1.6; }
#convention .split .gold-link { grid-column: 2; }

.gold-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition), transform var(--transition);
}
.gold-link:hover {
  color: #b8862e;
  border-bottom-color: var(--gold2);
  transform: translateX(4px);
}

/* ── CENTER SECTION ───────────────────────────────────── */
.center { text-align: center; }
.center h2 {
  font-size: 44px;
  margin: 10px 0 32px;
  line-height: 1.12;
}

/* ── CELEBRATION BENTO GRID ──────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: 190px 190px 190px;
  grid-template-areas:
    "wed wed wed wed corp corp corp bday bday bday"
    "wed wed wed wed inti inti inti brand brand brand"
    "wed wed wed wed week week week week week week";
  gap: 16px;
  margin-top: 46px;
  text-align: left;
}
.bento-tile {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: var(--green2);
}
.bento-weddings { grid-area: wed; }
.bento-corp { grid-area: corp; }
.bento-corp img { object-position: 50% 35%; }
.bento-bday { grid-area: bday; }
.bento-inti { grid-area: inti; }
.bento-brand { grid-area: brand; }
.bento-week { grid-area: week; }
.bento-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
}
.bento-tile:hover > img {
  transform: scale(1.07);
  filter: brightness(.9);
}
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 10, 9, .86) 0%, rgba(8, 10, 9, .38) 36%, transparent 58%);
}
.bento-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 20px 22px;
  text-align: left;
}
.bento-copy h3 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
}
.bento-weddings .bento-copy h3 { font-size: 34px; }
.bento-copy p {
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}
.bento-explore {
  display: inline-block;
  margin-top: 13px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
}

@media (max-width: 900px) {
  /* Vertically-tiled backdrop — the landscape image stacks end-to-end,
     covering the whole page with no gaps down to the footer. */
  body {
    background-image: none;
    position: relative;
  }
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background: #fff;
  }
  .bg-restart {
    background: transparent;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
    grid-template-areas:
      "wed wed"
      "corp bday"
      "inti brand"
      "week week";
  }
  .bento-tile { min-height: 220px; }
  .bento-weddings { min-height: 280px; }
}

@media (max-width: 560px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "wed"
      "corp"
      "bday"
      "inti"
      "brand"
      "week";
    gap: 14px;
    margin-top: 36px;
  }
  .bento-tile { min-height: 0; aspect-ratio: 4 / 3; }
  .bento-weddings { aspect-ratio: 4 / 3; min-height: 0; }
  .bento-copy { padding: 16px 18px; }
  .bento-copy h3 { font-size: 23px; }
  .bento-weddings .bento-copy h3 { font-size: 27px; }
}

/* ── FEATURE ──────────────────────────────────────────── */
.feature {
  background: var(--green);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 420px) 1fr;
  min-height: 340px;
  overflow: hidden;
}
.feature-copy {
  padding: 55px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature h2 {
  font-size: 42px;
  margin: 10px 0 16px;
}
.feature p {
  font-size: 16px;
  line-height: 1.65;
  opacity: .88;
  margin-bottom: 16px;
}
.feature ul {
  padding-left: 0;
  list-style: none;
  line-height: 2;
  font-size: 13.5px;
  opacity: .85;
}
.feature ul li::before {
  content: '✦';
  color: var(--gold2);
  margin-right: 10px;
  font-size: 9px;
}
.feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.feature:hover > img {
  transform: scale(1.03);
}

/* ── AMENITIES ────────────────────────────────────────── */
.amenities {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.amenity {
  padding: 26px 8px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-size: 12px;
  transition: background var(--transition);
}
.amenity:last-child { border: 0; }
.amenity:hover { background: rgba(201,149,56,.04); }
.amenity b {
  display: block;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}

/* ── MOMENTS ──────────────────────────────────────────── */
.moments {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.moments img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.moments img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ── PAST CELEBRATIONS (two-row grid + testimonial) ────── */
.past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.past-grid img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.past-grid img:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.past-quote {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.past-quote .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 14px;
}
.past-quote p {
  font-size: 13px;
  line-height: 1.6;
  color: #4d504d;
  margin: 0;
}
.past-quote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 12.5px;
  color: var(--green);
  letter-spacing: .04em;
}
/* Testimonial slide-show inside the past-grid cell */
.past-quote.past-slider {
  position: relative;
  overflow: visible;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.past-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(201,149,56,.55);
  background: rgba(255,255,255,.9);
  color: var(--gold);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
}
.past-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.past-prev { left: -13px; }
.past-next { right: -13px; }
.past-slides {
  position: relative;
  flex: 1;
  min-height: 0;
}
.past-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
  pointer-events: none;
}
.past-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.past-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
  flex-shrink: 0;
}
.past-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(201,149,56,.35);
  cursor: pointer;
  transition: all .3s ease;
}
.past-dots .dot.active {
  width: 18px;
  border-radius: 99px;
  background: var(--gold);
}

/* ── PAST CELEBRATIONS (video carousel) ────────────────── */
.celeb-past {
  background: transparent;
  padding: 24px 0 14px;
  border-top: 1px solid rgba(224,180,93,.35);
}
.celeb-past-panel {
  background: transparent;
  padding: 36px 0 40px;
}

.cp-head {
  position: relative;
  text-align: center;
  padding: 0 4%;
  margin-bottom: 14px;
}
.cp-head .eyebrow {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  letter-spacing: .3em;
  color: #8a7f6b;
}
.cp-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  color: #1c2620;
  margin: 14px 0 0;
}
.cp-viewall {
  position: absolute;
  top: 6px;
  right: 4%;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  color: #5c5241;
  transition: color .3s ease;
  white-space: nowrap;
}
.cp-viewall:hover { color: var(--gold); }

.cp-carousel {
  position: relative;
  width: 100%;
  padding: 0 clamp(14px, 2.5vw, 40px);
  box-sizing: border-box;
  /* Compact reel sizing — 6 cards visible on desktop, ~180–220px each */
  --cp-cards: 6;
  --cp-gap: 14px;
}
.cp-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--cp-cards) - 1) * var(--cp-gap)) / var(--cp-cards));
  gap: var(--cp-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px;
}
.cp-track::-webkit-scrollbar { display: none; }
.cp-track > * { scroll-snap-align: start; }

.cp-card { min-width: 0; }

.cp-video {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0f1a13;
  box-shadow: 0 14px 34px rgba(12,25,18,.16);
}
.cp-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cp-mute {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(4,16,12,.5);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  transition: background .3s ease, opacity .3s ease;
}
.cp-mute:hover { background: rgba(4,16,12,.75); }
.cp-card .cp-mute { opacity: 0; }
.cp-card:hover .cp-mute,
.cp-card:focus-within .cp-mute { opacity: 1; }

.cp-caption {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
  color: #2b2116;
  text-align: center;
  margin-top: 12px;
  line-height: 1.45;
}

.cp-arrow {
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #e0d6c2;
  background: #fff;
  color: #03301f;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(12,25,18,.14);
  cursor: pointer;
  z-index: 3;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.cp-arrow:hover {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 26px rgba(12,25,18,.28);
  transform: translateY(-50%) scale(1.06);
}
.cp-arrow:active { transform: translateY(-50%) scale(.94); }
.cp-prev { left: -6px; }
.cp-next { right: -6px; }

.cp-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.cp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(201,149,56,.35);
  cursor: pointer;
  transition: all .3s ease;
}
.cp-dot.active {
  width: 24px;
  border-radius: 99px;
  background: var(--gold);
}

@media (min-width: 1400px) {
  .cp-carousel { --cp-cards: 7; }
}

@media (min-width: 1700px) {
  .cp-carousel { --cp-cards: 8; }
}

@media (max-width: 900px) {
  .celeb-past-panel { padding: 30px 0 34px; }
  .cp-carousel { --cp-cards: 3; --cp-gap: 12px; }
  .cp-arrow { top: 44%; width: 40px; height: 40px; }
}

@media (max-width: 700px) {
  .cp-carousel { --cp-cards: 2; --cp-gap: 12px; }
  .cp-head h2 { font-size: 28px; }
  .cp-head { margin-bottom: 12px; }
  .cp-viewall { position: static; text-align: right; margin-top: 12px; }
}

@media (max-width: 560px) {
  .celeb-past { padding: 14px 0 16px; }
  .celeb-past-panel { padding: 26px 0 30px; }
  /* ~2 reels visible with a clear peek of the next, cards ~140–160px */
  .cp-carousel { --cp-cards: 2.3; --cp-gap: 10px; }
  .cp-arrow { display: none; }
  .cp-dots { display: flex; }
  .cp-caption { font-size: 12.5px; }
}

/* ── TESTIMONIALS (green band mosaic) ────────────────── */
.testi-band {
  position: relative;
  overflow: hidden;
  background: transparent;
  padding: 24px 0 48px;
  color: var(--ink);
}
.testi-wrap { position: relative; z-index: 1; }

/* Header */
.testi-head { position: relative; text-align: center; }
.testi-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.testi-eline { width: 46px; height: 1px; background: rgba(224, 180, 93, .85); }
.testi-eyelabel {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold2);
}
.testi-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 600;
  color: var(--ink);
  margin-top: 16px;
}
.testi-sub {
  margin-top: 10px;
  font-size: 15.5px;
  color: #6b716e;
}
.testi-script {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-family: "Great Vibes", cursive;
  font-size: clamp(24px, 2.6vw, 32px);
  color: var(--ink);
  transform: rotate(-4deg);
}
.testi-script i {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(18, 23, 21, .85);
}

/* Staggered mosaic — full-bleed so edge-cropped cards clip at the
   viewport, not at the narrowed .container */
.testi-fade {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.testi-mosaic {
  --tc-w: 29%;     /* one card ≈ 29% of the row's width */
  --tc-gap: 8.5%;  /* horizontal gap ≈ 8.5% of the row's width */
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.8vw, 36px); /* ~15–20% of a card's height */
  margin-top: 52px;
}
.tc-row {
  display: flex;
  gap: var(--tc-gap);
  align-items: stretch;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
}
.tc-row::-webkit-scrollbar { display: none; }
.tc-row.dragging { cursor: grabbing; }
.tc-row > * { flex-shrink: 0; }
/* Brick offset: Row 2 shifts left relative to Row 1 by (card + gap) / 2,
   so its first card is half-cropped at the left edge and its third card
   ends with right margin. Row 1 starts at a small left margin. */
.tc-row1 .testi-card:first-child { margin-left: calc(var(--tc-gap) / 2); }
.tc-row2 .testi-card:first-child { margin-left: calc(var(--tc-w) / -2); }
.tc-single { justify-content: center; }
.testi-card {
  flex: 0 0 var(--tc-w);
  max-width: var(--tc-w);
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  background: #0e3527;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 24px 28px;
}
.testi-qmark {
  flex: 0 0 auto;
  font-family: "Playfair Display", serif;
  font-size: 46px;
  line-height: .5;
  color: var(--gold2);
}
.testi-vdiv {
  flex: 0 0 auto;
  width: 1.5px;
  align-self: stretch;
  min-height: 90px;
  background: rgba(224, 180, 93, .45);
}
.testi-content { flex: 1; min-width: 0; text-align: left; }
.testi-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.55;
  color: #f3eee2;
}
.testi-name {
  margin-top: 14px;
  font-variant: small-caps;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .18em;
  color: var(--gold2);
}
/* Footer tagline */
.testi-tag { text-align: center; margin-top: 76px; }
.testi-tagrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.testi-tline { width: 72px; height: 1px; background: rgba(224, 180, 93, .7); }
.testi-leaficon { width: 22px; height: 22px; }
.testi-tagline {
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: #6b716e;
}

/* Scroll progress bar */
.testi-progress {
  margin-top: 40px;
  height: 3px;
  background: rgba(18, 23, 21, .14);
  border-radius: 3px;
  overflow: hidden;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.testi-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 3px;
  transition: width .15s ease;
}

@media (max-width: 900px) {
  .testi-band { padding: 20px 0 40px; }
  .testi-script { position: static; margin-top: 20px; transform: rotate(0); }
  .testi-mosaic { margin-top: 44px; }
  .testi-card { padding: 24px 26px; }
  .testi-tag { margin-top: 60px; }
}

@media (max-width: 560px) {
  .testi-band { padding: 16px 0 34px; }
  .testi-eyebrow { gap: 12px; }
  .testi-eline { width: 30px; }
  .testi-sub { font-size: 14.5px; }
  .testi-mosaic { margin-top: 36px; }
  .testi-card { padding: 14px 16px; }
  .testi-qmark { font-size: 40px; }
  .testi-quote { font-size: 15px; }
  .testi-tagline { letter-spacing: .26em; }
  .testi-progress { margin-top: 32px; max-width: 200px; }
}

/* ── MOMENTS GALLERY (photo collage) ───────────────────── */
.moments-band {
  background: transparent;
  padding: 24px 0;
}
.moments-band .eyebrow { color: var(--gold2); }
.moments-band h2 { color: var(--ink); }
.moments-band .gold-link {
  color: var(--gold2);
  border-bottom-color: rgba(224, 180, 93, .4);
}

/* ── PROCESS ──────────────────────────────────────────── */
.process {
  background: var(--green);
  color: #fff;
  padding: 32px 0 34px;
  position: relative;
  border-top: 1px solid rgba(201,149,56,.35);
  border-bottom: 1px solid rgba(201,149,56,.35);
}
.process-inner { text-align: center; }
.process-header { margin-bottom: 22px; }
.process-header .eyebrow {
  color: var(--gold2);
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.process-title {
  color: rgba(255,255,255,.92);
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0 8vw;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
  transition: transform var(--transition);
}
.process-step:hover { transform: translateY(-4px); }
.process-icon {
  width: 52px;
  height: 52px;
}
.process-icon svg { width: 100%; height: 100%; }
.process-num {
  color: var(--gold2);
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  margin-bottom: 4px;
  opacity: .7;
}
.process-step p {
  font-size: 12px;
  line-height: 1.5;
  opacity: .88;
  margin: 0;
}
.process-arrow {
  flex: 1 1 0;
  min-width: 40px;
  position: relative;
  height: 0;
  border-top: 3px solid var(--gold2);
  margin: 0 -2px;
  opacity: .7;
}
.process-arrow::before {
  content: '';
  position: absolute;
  top: -8px; left: -6px;
  border: 7px solid transparent;
  border-right: 10px solid var(--gold2);
}
.process-arrow::after {
  content: '';
  position: absolute;
  top: -8px; right: -6px;
  border: 7px solid transparent;
  border-left: 10px solid var(--gold2);
}
.process-cta {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding-top: 10px;
  margin-left: 40px;
}
.process-btn {
  background: var(--gold);
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  display: inline-block;
  transition: background var(--transition), transform var(--transition);
}
.process-btn:hover {
  background: var(--gold2);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ─────────────────────────────────────── */

/* ── MAP BOX ──────────────────────────────────────────── */
.mapbox {
  background: #e5e1d8;
  border-radius: 10px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b504c;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  border: 1px solid var(--line);
}

/* ── FAQ SECTION ──────────────────────────────────────── */
.faq-section {
  padding: 64px 24px;
  text-align: center;
  background: var(--green);
}
.faq-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  margin-top: 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
}
.faq-sub {
  color: rgba(255,255,255,.6);
  max-width: 580px;
  margin: 14px auto 0;
  font-size: .95rem;
  line-height: 1.6;
}
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: left;
}
.faq-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq-item:hover { border-color: rgba(201,149,56,.4); }
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-size: .98rem;
  font-weight: 600;
  color: var(--cream);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold2);
  flex-shrink: 0;
  transition: transform .3s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  line-height: 1.65;
}
@media (max-width: 640px) {
  .faq-section { padding: 48px 16px; }
  .faq-item summary { font-size: .9rem; padding: 14px 16px; }
  .faq-item p { padding: 0 16px 14px; font-size: .85rem; }
}

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--green);
  color: #fff;
  padding: 44px 0 0;
  margin-top: 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer .logo-img {
  height: 64px;
}
/* Long new brand name: fitted size + alignment so it stays inside its column (desktop) */
@media (min-width: 901px) {
  .footer .logo {
    font-size: 18px;
    white-space: normal;
    align-items: center;
    max-width: 100%;
  }
  .footer .logo small {
    font-size: 8px;
    letter-spacing: .16em;
    margin-top: 3px;
    white-space: nowrap;
  }
}
.footer h4 {
  color: var(--gold2);
  font-size: 13px;
  letter-spacing: .12em;
  margin: 0 0 16px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-align: left;
}
.footer p, .footer a {
  font-size: 13.5px;
  text-align: center;
  line-height: 1.9;
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-links a,
.footer-links span {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
  display: block;
  text-align: left;
}
.footer-links a:hover { color: var(--gold2); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 32px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

/* ── PAGE HERO (gallery / contact) ────────────────────── */
.page-hero {
  height: 440px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding-top: 90px;
  padding-bottom: 60px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 50%, rgba(0,0,0,.12) 100%);
}
.page-hero .inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 92%);
  margin: auto;
  width: 50%;
  margin-left: 0;
  margin-right: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero h1 {
  font-size: 64px;
  text-align: center;
}
.page-hero p {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  max-width: 430px;
  line-height: 1.5;
  text-align: center;
  margin: 15px auto 0;
  opacity: .85;
}

/* ── TABS ─────────────────────────────────────────────── */
.tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 28px 0;
}
.tab {
  padding: 14px 48px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: #835b20;
  font-size: 13px;
  letter-spacing: .06em;
  font-weight: 600;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(201,149,56,.15);
}
.tab.selected {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 16px rgba(3,41,29,.2);
}

/* ── GALLERY SECTION HEADING ──────────────────────────── */
.gallery-section .gallery-sub {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.15;
  color: var(--ink);
  font-weight: 500;
}
.gallery-section .tabs {
  margin-top: 22px;
}

/* ── GALLERY GRID ─────────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 6px;
}
.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  margin: 0 0 6px;
  break-inside: avoid;
}
/* Images keep their real aspect ratio (masonry), capped so a very tall photo
   never dominates the column. object-fit:cover only kicks in at the cap. */
.g-item img,
.g-item video {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease), filter .5s var(--ease);
}
.g-item video {
  min-height: 200px;
}
.g-item:hover img,
.g-item:hover video {
  transform: scale(1.06);
  filter: brightness(.72);
}
/* gradient overlay */
.g-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 45%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.g-item:hover::after {
  opacity: 1;
}
/* caption */
.g-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 18px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
  z-index: 2;
}
.g-item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
/* gold left accent bar on hover */
.g-item::before {
  content: '';
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 0;
  height: 2px;
  background: var(--gold2);
  transition: width .5s var(--ease);
  z-index: 2;
}
.g-item:hover::before {
  width: 40px;
}
/* video play overlay */
.g-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: #1a5a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(255,255,255,.35), 0 8px 24px rgba(0,0,0,.28);
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .35s var(--ease);
  pointer-events: none;
}
.g-item:hover .g-play {
  transform: translate(-50%, -50%) scale(1.08);
}
.g-item.playing .g-play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
}
/* filter transition */
.g-item.hiding {
  opacity: 0;
  transform: scale(.92);
  pointer-events: none;
}
.g-item.hidden {
  display: none;
}
/* glow ring on hover */
.g-item:focus-within,
.g-item:hover {
  box-shadow: 0 0 0 3px rgba(224,180,93,.35);
}

/* ── LIGHTBOX ─────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 92%;
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
  transform: scale(.92);
  transition: transform .5s var(--ease);
  user-select: none;
}
.lightbox.open img {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 22px;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 501;
}
.lightbox-close:hover {
  background: rgba(201,149,56,.2);
  border-color: var(--gold2);
}
.lightbox-caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  letter-spacing: .04em;
  text-align: center;
  z-index: 501;
}
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  z-index: 501;
}
.lb-nav:hover {
  background: rgba(201,149,56,.2);
  border-color: var(--gold2);
  transform: translateY(-50%) scale(1.08);
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-counter {
  position: absolute;
  bottom: 24px; right: 32px;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  letter-spacing: .05em;
  font-family: "DM Sans", sans-serif;
  z-index: 501;
}

/* ── CONTACT PAGE ─────────────────────────────────────── */
.contact-page {
  min-height: 100vh;
  background: #021a13;
  color: #fff;
  position: relative;
  padding: 130px 0 60px;
  background-image: url("assets/hero_section.webp");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
}
.contact-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,22,17,.02) 0%, rgba(1,22,17,.08) 40%, rgba(1,22,17,.18) 100%);
  pointer-events: none;
}
.contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-form-col .form {
  width: 100%;
}
.contact-copy h1 {
  max-width: 560px;
}
.contact-copy > p {
  max-width: 500px;
}
.contact-copy h1 {
  font-size: 60px;
  line-height: 1.05;
  margin: 18px 0;
}
.contact-copy > p {
  font-size: 17px;
  line-height: 1.7;
  opacity: .85;
  margin-bottom: 10px;
}
.contact-card {
  margin-top: 30px;
  background: rgba(1,29,22,.65);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 500px;
  align-self: center;
  width: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color var(--transition);
}
.contact-card:hover {
  border-color: rgba(201,149,56,.3);
}
.contact-line {
  display: flex;
  gap: 15px;
  margin: 14px 0;
  align-items: flex-start;
}
.contact-line span {
  font-size: 18px;
  color: var(--gold2);
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}
.contact-line b {
  color: var(--gold2);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── FORM ─────────────────────────────────────────────── */
.form {
  background: rgba(2,28,22,.82);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field.full { grid-column: 1/-1; }
.field label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .10em;
  font-weight: 500;
  opacity: .8;
}
.field input,
.field select,
.field textarea {
  background: rgba(16,43,36,.7);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold2);
  box-shadow: 0 0 0 3px rgba(224,180,93,.15);
}
.field textarea {
  min-height: 100px;
  resize: none;
}
.form button {
  margin-top: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  border: 0;
  border-radius: 6px;
  padding: 17px 40px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(201,149,56,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,149,56,.35);
}

/* ── MOBILE TOGGLE ────────────────────────────────────── */
.mobile-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid rgba(201,149,56,.5);
  color: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 18px;
  transition: border-color var(--transition), background var(--transition);
}
.mobile-toggle:hover {
  border-color: var(--gold2);
  background: rgba(201,149,56,.1);
}

/* ── MOBILE NAV OVERLAY (premium right drawer) ────────── */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(2,16,13,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s var(--ease), visibility 0s linear .35s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

/* ── Drawer panel (slides from right) ─────────────────── */
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background:
    radial-gradient(120% 60% at 100% 0%, rgba(224,180,93,.14), transparent 55%),
    linear-gradient(165deg, #07301f 0%, var(--green) 45%, #041a12 100%);
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: -30px 0 80px rgba(0,0,0,.5);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  overflow: hidden;
}
.mobile-nav-overlay.open .mobile-nav-panel {
  transform: translateX(0);
}

/* Gold hairline on the leading edge */
.mobile-nav-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold2) 25%, var(--gold2) 75%, transparent);
  opacity: .55;
  pointer-events: none;
}

/* ── Brand header ─────────────────────────────────────── */
.mobile-nav-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 34px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav-logo {
  width: 54px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}
.mobile-nav-brandtext {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 17px;
  letter-spacing: .16em;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
}
.mobile-nav-brandtext small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 8.5px;
  letter-spacing: .32em;
  color: var(--gold2);
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
}

/* ── Close button ─────────────────────────────────────── */
.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--gold2);
  font-size: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.mobile-nav-close:hover {
  border-color: var(--gold2);
  background: rgba(201,149,56,.16);
  transform: rotate(90deg);
}

/* ── Nav links ────────────────────────────────────────── */
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 26px 32px;
  overflow-y: auto;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.82);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  padding: 13px 6px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), padding-left var(--transition);
}
.mobile-nav-num {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold2);
  opacity: .7;
  width: 24px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.mobile-nav-label { flex: 1; }
.mobile-nav-arrow {
  font-size: 20px;
  color: var(--gold2);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.mobile-nav-links a:hover {
  color: #fff;
  padding-left: 12px;
}
.mobile-nav-links a:hover .mobile-nav-num { opacity: 1; }
.mobile-nav-links a:hover .mobile-nav-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── CTA ──────────────────────────────────────────────── */
.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 4px 30px 0;
  background: linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 13px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  box-shadow: 0 12px 30px rgba(201,149,56,.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.mobile-nav-cta span { transition: transform var(--transition); }
.mobile-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(201,149,56,.45);
}
.mobile-nav-cta:hover span { transform: translateX(5px); }

/* ── Contact footer ───────────────────────────────────── */
.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 20px 32px 26px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.16);
}
.mnav-f-row {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,.62);
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  letter-spacing: .02em;
  line-height: 1.5;
  transition: color var(--transition);
}
a.mnav-f-row:hover { color: var(--gold2); }

/* ── GUEST / CONTACT SECTION ──────────────────────────── */
.guest-contact-section {
  background: transparent;
  padding: 8px 24px 36px;
}
.guest-contact-container {
  width: min(1100px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--green);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(201,149,56,.12);
}

.location-info {
  grid-column: 1;
  grid-row: 1;
  padding: 32px 44px 8px;
}
.location-info .eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold2);
}
.location-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.12;
  margin: 6px 0 8px;
  color: rgba(255,255,255,.96);
}
.location-info p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0 0 10px;
}

.location-map {
  grid-column: 1;
  grid-row: 2;
  height: 180px;
  margin: 8px 44px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  position: relative;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  text-decoration: none;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.98);
}
.map-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 14px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(0deg, rgba(3,41,29,.92) 0%, rgba(3,41,29,.3) 28%, rgba(3,41,29,0) 55%);
  transition: background .3s var(--ease);
}
.location-map:hover .map-open {
  background: linear-gradient(0deg, rgba(3,41,29,.96) 0%, rgba(3,41,29,.42) 28%, rgba(3,41,29,0) 55%);
}

.contact-actions {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: var(--green);
  padding: 36px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  position: relative;
}
.contact-actions::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold2), var(--gold));
}
.contact-actions .eyebrow {
  color: var(--gold2);
  font-family: "Playfair Display", serif;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-actions h2 {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.15;
  margin: 2px 0 4px;
  color: rgba(255,255,255,.96);
}
.contact-note {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.68);
  margin: 0 0 10px;
}
.contact-actions .whatsapp-btn,
.contact-actions .call-btn {
  width: 100%;
  height: 50px;
  font-size: 12.5px;
  letter-spacing: .08em;
  border-radius: 10px;
}
.whatsapp-btn,
.call-btn {
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.whatsapp-btn {
  background: #1f9e55;
  color: #fff;
  border: 1px solid #1f9e55;
}
.wa-icon,
.call-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.call-btn {
  background: transparent;
  color: var(--gold2);
  border: 1.5px solid var(--gold2);
}
.call-btn:hover {
  background: rgba(224,180,93,.1);
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-toggle { display: block; }
  .topbar {
    height: 70px;
    position: fixed;
  }
  /* Keep anchored sections clear of the fixed header when navigating to them */
  section[id] { scroll-margin-top: 84px; }
  #retreat {
    margin-top: 24px;
    padding-top: 20px;
  }
  #retreat .photo::before {
    left: -8px;
    bottom: -12px;
  }
  #retreat .photo:hover img {
    transform: translateY(-12px);
  }
    /* Only hide a CTA if it lives in the header — keep hero + modal CTAs visible */
  .topbar .cta { display: none; }

  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { margin-bottom: 8px; }

  .split,
  .contact-wrap { grid-template-columns: 1fr; }

  .guest-contact-container { grid-template-columns: 1fr; gap: 0; }
  .location-info,
  .location-map,
  .contact-actions { grid-column: 1; grid-row: auto; }
  .contact-actions { align-self: stretch; }

  .feature { grid-template-columns: 1fr; }
  .feature-copy { padding: 40px; }
  .feature img { height: 300px; }

  .amenities { grid-template-columns: repeat(4, 1fr); }
  .moments { grid-template-columns: repeat(2, 1fr); }
  .moments img { height: 130px; }
  .past-grid { grid-template-columns: repeat(2, 1fr); }
  .past-grid img { height: 150px; }
  .past-grid .past-quote { height: 150px; }
  .past-grid .past-quote.past-slider { height: 165px; }
  .process-flow { flex-wrap: wrap; gap: 18px; width: auto; margin-left: 0; padding: 0; justify-content: center; }
  .process-arrow { display: none; }
  .process-cta { padding-top: 10px; width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .gallery-grid { columns: 4; }
  .g-item img,
  .g-item video { max-height: 220px; }

  .contact-page {
    background-size: cover;
    background-position: center;
  }
  .contact-page::after {
    background: rgba(2,26,19,.8);
  }
  .contact-copy h1 { font-size: 52px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
}

@media (max-width: 700px) {
  .stats { grid-template-columns: repeat(2, 1fr); padding: 10px 3%; }
  .stat {
    padding: 8px 8px;
    border-bottom: 1px solid rgba(201,149,56,.2);
  }
  .stat:nth-child(2n) { border-right: none; }
  .stat-icon { width: 26px; height: 26px; }

  .guest-contact-container { grid-template-columns: 1fr; gap: 0; }
  .location-info,
  .location-map,
  .contact-actions { grid-column: 1; grid-row: auto; }
  .location-map { height: 220px; }
  .contact-actions { align-self: stretch; }
  .whatsapp-btn,
  .call-btn { width: 100%; }
}

@media (max-width: 560px) {
  .hero { min-height: 680px; }
  .hero h1 { font-size: 42px; }
  .hero-content { margin-top: 75px; }
  .hero .actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
  .hero .actions .cta,
  .hero .actions .outline {
    flex: 1 1 0;
    text-align: center;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 13px;
  }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .center h2 { font-size: 32px; }
  .page-hero h1 { font-size: 42px; }
  .tabs { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .tab { text-align: center; width: auto; padding: 12px 20px; font-size: 13px; white-space: nowrap; }
  .gallery-section .eyebrow,
  .gallery-section h2,
  .gallery-section .gallery-sub { display: none; }
  .gallery-section .tabs { margin: 0 0 20px; }
  .gallery-grid { columns: 3; }
  .g-item img,
  .g-item video { max-height: 150px; }
  .g-item video { min-height: 150px; }
  .lb-nav { width: 42px; height: 42px; font-size: 20px; }
  .lb-prev { left: 12px; }
  .lb-next { right: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .page-hero { height: 380px; padding-bottom: 40px; padding-top: 80px; }
  .page-hero .inner { width: 90%; margin-left: auto; margin-right: auto; }
  .contact-copy h1 { font-size: 40px; }
}

/* ── REDUCED SPACING HELPERS ──────────────────────────── */
#celebrations { padding-top: 76px; padding-bottom: 12px; }
#stay { padding-bottom: 28px; }
#stay + .section { padding-top: 28px; }

/* ── BACK TO TOP ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--gold2);
  border: 1px solid rgba(201,149,56,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background var(--transition);
  cursor: pointer;
  z-index: 90;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #043a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

/* ═══════════════════ PREMIUM BUNDLE ═══════════════════ */

/* ── PRELOADER (curtain opening) ──────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Two drapery panels that split from the middle */
.curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  z-index: 1;
  transform: translateX(0);
  transition: transform 1.15s cubic-bezier(.76, 0, .24, 1);
  will-change: transform;
}
.curtain-left  { left: 0; transform-origin: left center; }
.curtain-right { right: 0; transform-origin: right center; }

/* Opening state: curtains split from the middle (CSS-driven, works on all devices) */
.preloader.curtains-open .curtain-left  { transform: translateX(-105%); }
.preloader.curtains-open .curtain-right { transform: translateX(105%); }

/* Realistic vertical folds (highlight ridge + shadowed valley) */
.curtain {
  background:
    /* subtle sheen across the panel (top-down, identical on both curtains) */
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,0) 45%),
    /* vertical drapery pleats */
    repeating-linear-gradient(90deg,
      #03301f 0px, #03301f 30px,
      #0a3b28 30px, #0a3b28 35px,
      #011b12 35px, #011b12 62px,
      #042c1e 62px, #042c1e 92px);
}
.curtain-left  { box-shadow: inset -12px 0 30px rgba(0,0,0,.42); }
.curtain-right { box-shadow: inset 12px 0 30px rgba(0,0,0,.42); }

/* Gold valance / trim across the top of each curtain */
.curtain::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  opacity: .95;
}

/* Soft shadow where each curtain meets the floor */
.curtain::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  background: linear-gradient(0deg, rgba(0,0,0,.35), transparent);
}

.preloader-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: var(--gold2);
}
.preloader-logo { height: 220px; width: auto; margin-bottom: 2px; }
.preloader-text {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: .18em;
  text-align: center;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
}
.preloader-text small {
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
  letter-spacing: .28em;
  margin-top: 6px;
  opacity: .8;
  text-align: center;
}
.preloader-line {
  display: block;
  width: 190px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold2), transparent);
  transform-origin: left center;
  transform: scaleX(0);
}

/* ── SCROLL PROGRESS BAR ──────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 400;
  pointer-events: none;
}

/* ── CUSTOM CURSOR ────────────────────────────────────── */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  border-radius: 50%;
  z-index: 1500;
  opacity: 0;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold2);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(224,180,93,.7);
  transition: width .25s var(--ease), height .25s var(--ease),
              border-color .25s var(--ease), background-color .25s var(--ease);
}
.cursor-ring.is-hover {
  width: 54px; height: 54px;
  border-color: var(--gold2);
  background: rgba(224,180,93,.08);
}

/* ── HERO KEN BURNS (slow cinematic zoom on each slide) ─ */
.hero-slide { animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns {
  from { scale: 1; }
  to   { scale: 1.16; }
}

/* Second slide: zoomed out somewhat (wider element + lower scale,
   so the image shows more and still fills the hero with no gaps) */
.hero-slide:nth-child(2) {
  left: -18%;
  right: -18%;
  animation-name: kenburns-out;
}
@keyframes kenburns-out {
  from { scale: 0.9; }
  to   { scale: 1.02; }
}

/* ── CHECK AVAILABILITY MODAL ─────────────────────────── */
.feature-avail {
  margin-top: 22px;
  align-self: flex-start;
  background: linear-gradient(135deg, var(--gold) 0%, #b8862e 100%);
  color: #fff;
  border: 0;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 12px rgba(201,149,56,.25);
}
.feature-avail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,149,56,.35);
}

.avail-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.avail-modal.open { opacity: 1; pointer-events: all; }
.avail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,16,13,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.avail-panel {
  position: relative;
  width: min(620px, 94%);
  max-height: 90vh;
  overflow: auto;
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-xl);
  transform: translateY(24px) scale(.97);
  transition: transform .4s var(--ease);
}
.avail-modal.open .avail-panel { transform: translateY(0) scale(1); }
.avail-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: 1px solid rgba(201,149,56,.4);
  color: var(--ink);
  font-size: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2;
}
.avail-close:hover { background: rgba(201,149,56,.1); border-color: var(--gold); }
.avail-head { margin-bottom: 18px; }
.avail-head h2 { font-size: 30px; margin: 8px 0 0; }

.avail-props { display: flex; gap: 10px; margin-bottom: 14px; }
.prop-tab {
  flex: 1;
  padding: 12px;
  border: 1px solid rgba(201,149,56,.35);
  background: transparent;
  border-radius: 8px;
  color: #7a5a1f;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.prop-tab.selected {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Slot selector inside availability modal */
.avail-slot-group { margin: 0 0 14px; }
.avail-slot-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #7a5a1f;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.avail-slots { display: flex; gap: 8px; }
.slot-btn {
  flex: 1;
  padding: 10px 6px;
  border: 1px solid rgba(201,149,56,.35);
  background: transparent;
  border-radius: 8px;
  color: #7a5a1f;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.slot-btn.selected {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.avail-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--ink);
}
.cal-nav {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,149,56,.4);
  background: transparent;
  border-radius: 8px;
  color: #7a5a1f;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.cal-nav:hover:not(:disabled) { background: rgba(201,149,56,.1); }
.cal-nav:disabled { opacity: .3; cursor: default; }

.cal-dows {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 5px;
}
.cal-dows span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  color: #8a877f;
  padding: 4px 0;
  text-transform: uppercase;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}
.cal-empty { visibility: hidden; }
.cal-day {
  aspect-ratio: 1;
  border: 1px solid transparent;
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.cal-slot-tags { display: flex; gap: 2px; line-height: 1; }
.cal-badge {
  font-style: normal;
  font-family: "DM Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  line-height: 1;
  padding: 2px 3px;
  border-radius: 3px;
  color: #fff;
}
.cal-badge.bm { background: var(--gold); }   /* Morning booked */
.cal-badge.be { background: #4a6fa5; }        /* Evening booked */
.cal-day:hover:not(:disabled) {
  background: rgba(201,149,56,.12);
  border-color: var(--gold2);
  transform: translateY(-1px);
}
.cal-day.past { color: #c2beb4; background: #f1ede6; }
.cal-day.booked {
  color: #a59f94;
  background: repeating-linear-gradient(45deg, #eee9e0, #eee9e0 5px, #e6e0d4 5px, #e6e0d4 10px);
}
.cal-day.booked .cal-day-num { text-decoration: line-through; }
.cal-day.selected {
  background: var(--green);
  color: var(--gold2);
  border-color: var(--green);
}
.cal-day:disabled { cursor: not-allowed; }

.avail-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin: 16px 0 12px;
  font-size: 12px;
  color: #555852;
}
.avail-legend i {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: -1px;
}
.legend-avail { background: var(--white); border: 1px solid var(--line); }
.legend-booked { background: repeating-linear-gradient(45deg,#eee9e0,#eee9e0 4px,#e6e0d4 4px,#e6e0d4 8px); }
.legend-selected { background: var(--green); }
.legend-badge { font-size: 8px !important; font-weight: 700; color: #fff; line-height: 12px; text-align: center; width: 14px !important; height: 14px !important; }
.legend-badge.bm { background: var(--gold); }
.legend-badge.be { background: #4a6fa5; }

.avail-summary {
  min-height: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin: 4px 0 16px;
}
.avail-summary.ok { color: #2e7d32; }
.avail-summary.warn { color: #c0392b; }

.avail-book {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 4px;
}

/* ── Prefers reduced motion: tone down animations ─────── */
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
  .preloader { transition: opacity .2s; }
}

/* ── Floating WhatsApp, Instagram & Call buttons (desktop) ── */
.wa-float,
.ig-float,
.call-float {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  z-index: 999;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float {
  bottom: 96px; /* sits above the back-to-top button (28–76px) */
  background: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
}
.ig-float {
  bottom: 160px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 14px rgba(225, 48, 108, .4);
}
.call-float {
  bottom: 224px;
  background: #1e88e5;
  box-shadow: 0 4px 14px rgba(30, 136, 229, .4);
}
.wa-float svg, .ig-float svg, .call-float svg { width: 24px; height: 24px; }
.wa-float:hover, .ig-float:hover, .call-float:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

/* ══════════════════ MOBILE REDESIGN v2 ══════════════════
   Desktop is locked. Every rule below lives inside a mobile
   media query and only affects screens ≤ 900px. */

@media (max-width: 900px) {
  /* Hide custom cursor on touch devices */
  .cursor-dot, .cursor-ring { display: none; }
  /* ── Global rhythm & split sections ── */
  .section { padding: 40px 0; }
  /* Mirror the desktop alternation: Retreat & Convention = image-left/text-right,
     Farmhouse = text-left/image-right. DOM order already encodes it, so restore
     the two columns and drop the forced photo ordering that stacked everything. */
  .split { gap: 28px; grid-template-columns: 0.95fr 1.05fr; }
  .split > * { min-width: 0; }
  .split h2 { font-size: 30px; line-height: 1.18; }
  .split p { font-size: 15px; line-height: 1.7; }
  .split .photo { order: 0; }
  #celebrations { padding-top: 52px; padding-bottom: 8px; }
  /* Bento → horizontal swipe carousel (like past-celebrations), mobile & tablet */
  .bento-grid {
    grid-template-columns: none;
    grid-template-rows: none;
    grid-template-areas: none;
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 34px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4%;
    padding: 2px 4% 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }
  .bento-grid::-webkit-scrollbar { display: none; }
  .bento-grid > .bento-tile {
    flex: 0 0 32%;
    scroll-snap-align: start;
    min-width: 0;
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 16px;
  }
  .moments { gap: 12px; }
  .moments img { border-radius: 14px; }

  /* ── Stats — crisp at tablet widths ── */
  .stats { padding: 12px 3%; }
  .stat { padding: 8px 8px; }
  .stat strong.num { font-size: 22px; }
  .stat-icon { width: 30px; height: 30px; }
  .convention-stats .stat-img-wrap { width: 44px; height: 44px; }
  .convention-stats .stat-img { width: 100%; height: 100%; }
}

@media (max-width: 560px) {
  /* ── Hero: compact & thumb-friendly ── */
  .hero { min-height: min(640px, 92svh); }
  .hero h1 { font-size: clamp(34px, 11vw, 44px); line-height: 1.06; }
  .hero-content { margin-top: 70px; }
  .hero .actions { flex-direction: column; gap: 10px; margin-top: 28px; }
  .hero .actions .cta,
  .hero .actions .outline {
    width: 100%;
    flex: none;
    text-align: center;
    padding: 15px 18px;
    font-size: 13.5px;
    border-radius: 10px;
  }

  /* ── Sections: tighter rhythm, text-then-image ── */
  .section { padding: 34px 0; }
  /* Split sections — text gets most room on phone */
  .split { gap: 14px; grid-template-columns: 0.55fr 1.45fr; }
  .split h2 { font-size: 22px; line-height: 1.15; margin: 10px 0 14px; }
  .split p { font-size: 13px; line-height: 1.6; }
  .split .photo { max-height: 170px; overflow: hidden; }
  .photo { border-radius: 14px; }
  .photo img { border-radius: 14px; }
  .gold-link { font-size: 12px; }
  #celebrations { padding-top: 40px; }

  /* ═══════════════════════════════════════════════════════
     #retreat — mobile-only stacked intro layout
     Overrides the two-column .split grid with a single-
     column stack: eyebrow → heading → image → copy → tagline.
     ═══════════════════════════════════════════════════════ */
  #retreat .split {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    text-align: center;
  }
  #retreat .split > .photo,
  #retreat .split > div {
    order: 0;
    width: 100%;
    min-width: 0;
  }

  /* Eyebrow — muted gold-brown, small-caps, generous spacing */
  #retreat .split .eyebrow {
    font-variant: small-caps;
    font-size: 11.5px;
    letter-spacing: .22em;
    color: #a08650;
    margin-bottom: 14px;
    text-align: center;
  }

  /* Heading — dark base + gold accent on highlighted line */
  #retreat .split h2 {
    font-size: 27px;
    line-height: 1.22;
    color: #1a2e23;
    margin: 0 0 22px;
  }
  #retreat .split h2 .gold-hl {
    display: block;
    color: var(--gold);
  }

  /* Full-width image — portrait ratio, rounded, contained */
  #retreat .split > .photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 26px;
  }
  #retreat .split > .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }

  /* Body copy — dark, opaque, readable on phone */
  #retreat .split > div > p {
    font-size: 15.5px;
    line-height: 1.58;
    color: #2a2f2a;
    margin: 0 0 18px;
  }

  /* Closing tagline — gold accent, visually set apart */
  #retreat .split .tagline {
    color: var(--gold);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .03em;
    margin: 10px 0 0;
  }

  /* ═══════════════════════════════════════════════════════
     #farmhouse — mobile-only stacked intro layout
     Same pattern as #retreat: eyebrow → heading → image → copy.
     ═══════════════════════════════════════════════════════ */
  #farmhouse .split {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    text-align: center;
  }
  #farmhouse .split > div {
    display: block; /* override desktop inner-grid → stack in DOM order */
    width: 100%;
    min-width: 0;
  }
  #farmhouse .split .eyebrow {
    font-variant: small-caps;
    font-size: 11.5px;
    letter-spacing: .22em;
    color: #a08650;
    margin-bottom: 14px;
    text-align: center;
  }
  #farmhouse .split h2 {
    font-size: 27px;
    line-height: 1.22;
    color: #1a2e23;
    margin: 0 0 22px;
  }
  #farmhouse .split h2 .gold-hl {
    display: block;
    color: var(--gold);
  }
  #farmhouse .split .photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: none; /* honor 4/3 ratio (cancel earlier generic cap) */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 26px;
  }
  #farmhouse .split .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }
  /* Original farmhouse paragraphs are desktop-only — hidden on mobile */
  #farmhouse .split > div > p {
    display: none;
    font-size: 15.5px;
    line-height: 1.58;
    color: #2a2f2a;
    margin: 0 0 18px;
  }
  /* Mobile replacement copy */
  .farmhouse-mobile-copy { display: block; }
  .farmhouse-mobile-copy p {
    font-size: 15.5px;
    line-height: 1.58;
    color: #2a2f2a;
    margin: 0 0 18px;
  }
  /* Farmhouse has no tagline — hide the gold-link on mobile (spec: 5 elements only) */
  #farmhouse .split .gold-link { display: none; }

  /* ═══════════════════════════════════════════════════════
     #convention — mobile-only stacked intro layout
     Image first, then eyebrow → heading → copy (image reordered
     to the top, unlike #retreat / #farmhouse).
     ═══════════════════════════════════════════════════════ */
  #convention .split {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    text-align: center;
  }
  #convention .split > div {
    display: block; /* override desktop inner-grid → stack in DOM order */
    width: 100%;
    min-width: 0;
  }
  #convention .split .eyebrow {
    font-variant: small-caps;
    font-size: 11.5px;
    letter-spacing: .22em;
    color: #a08650;
    margin-bottom: 14px;
    text-align: center;
  }
  #convention .split h2 {
    font-size: 26px;
    line-height: 1.24;
    color: #1a2e23;
    margin: 0 0 22px;
  }
  #convention .split h2 .gold-hl {
    display: block;
    color: var(--gold);
  }
  #convention .split .photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: none; /* honor 4/3 ratio (cancel earlier generic cap) */
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 26px;
  }
  #convention .split .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
  }
  #convention .split > div > p {
    font-size: 15.5px;
    line-height: 1.58;
    color: #2a2f2a;
    margin: 0 0 18px;
  }
  /* Convention has no tagline — hide the gold-link on mobile (spec: 5 elements only) */
  #convention .split .gold-link { display: none; }

  /* Subtle pop shadow behind the intro-section images (mobile only) */
  #retreat .split .photo,
  #farmhouse .split .photo,
  #convention .split .photo {
    box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
  }

  /* ── Stats / convention icons ── */
  .stats { padding: 10px 3%; }
  .stat { padding: 10px 6px; border-right: 1px solid rgba(201,149,56,.14); }
  .stat-icon { width: 30px; height: 30px; }
  .stat strong { font-size: 15px; }
  .stat strong.num { font-size: 24px; }
  .convention-stats .stat-img-wrap { width: 46px; height: 46px; }
  .convention-stats .stat span:last-child { font-size: 8.5px; }

  /* ── Bento: phone carousel — 2 full cards + next peek ── */
  .bento-grid {
    display: flex; /* keep flex row from ≤900 block */
    gap: 12px;
    margin-top: 30px;
  }
  .bento-grid > .bento-tile {
    flex: 0 0 45%;
    scroll-snap-align: start;
    min-width: 0;
    aspect-ratio: 4 / 5;
    min-height: 0;
    border-radius: 16px;
  }
  .bento-weddings { aspect-ratio: 4 / 5; min-height: 0; }
  .bento-copy { padding: 18px 20px; }
  .bento-copy h3 { font-size: 24px; }
  .bento-weddings .bento-copy h3 { font-size: 26px; }
  .bento-copy p { font-size: 12.5px; }
  .bento-explore { display: none; } /* hide "Explore →" on celebration cards (mobile) */

  /* ── Video carousel polish ── */
  .cp-caption { font-size: 13px; }
  .cp-dots { gap: 8px; margin-top: 14px; }
  .cp-dot { width: 8px; height: 8px; }
  .cp-dot.active { width: 26px; }

  /* ── Testimonials: readable stacked cards ── */
  .testi-mosaic { --tc-w: 46%; --tc-gap: 9%; gap: 24px; margin-top: 30px; }
  .testi-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 16px;
  }
  .testi-vdiv { display: none; }
  .testi-qmark { font-size: 26px; line-height: 1; }
  .testi-quote { font-size: 15px; line-height: 1.5; }
  .testi-name { margin-top: 10px; }
  /* Remove decorative tag/progress blocks between Testimonials and Moments — keep a minimum gap */
  .testi-tag { display: none; }
  .testi-progress { display: none; }
  .testi-band { padding-bottom: 20px; }
  .moments-band { padding-top: 0; }

  /* ── Moments: editorial collage ── */
  .moments { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .moments img { border-radius: 14px; height: 150px; }
  .moments img:nth-child(1) { grid-column: 1 / -1; height: 210px; }

  /* ── Process: vertical timeline ── */
  .process { padding: 32px 0 38px; }
  .process-flow {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    margin-left: 0;
    padding: 10px 0 0;
    position: relative;
  }
  .process-flow::before {
    content: '';
    position: absolute;
    left: 29px;
    top: 26px;
    bottom: 84px;
    width: 2px;
    background: linear-gradient(180deg, rgba(224,180,93,0), rgba(224,180,93,.55) 12%, rgba(224,180,93,.55) 88%, rgba(224,180,93,0));
    opacity: .6;
  }
  .process-step {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 13px 0;
    flex: none;
    min-width: 0;
  }
  .process-step p { grid-column: 2; grid-row: 2; font-size: 14px; line-height: 1.45; }
  .process-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin-left: 6px;
    width: 48px;
    height: 48px;
    background: var(--green);
    border: 1px solid rgba(224,180,93,.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,.28);
  }
  .process-icon svg { width: 26px; height: 26px; }
  .process-num {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .16em;
  }
  .process-cta { width: 100%; justify-content: center; padding-top: 26px; margin-left: 0; }
  .process-btn { padding: 15px 40px; font-size: 12.5px; }

  /* ── Guest contact ── */
  .guest-contact-section { padding: 32px 16px 48px; }
  .guest-contact-container { gap: 0; border-radius: 18px; }
  .location-info { text-align: center; padding: 32px 24px 8px; }
  .location-info h2 { font-size: 26px; }
  .location-info p { font-size: 14px; }
  .location-map { height: 240px; margin: 8px 20px 24px; border-radius: 14px; }
  /* Zoom the map toward the pin so it's clearly visible and the
     large Google logo / labels are cropped out on mobile */
  .location-map iframe {
    transform: scale(1.7);
    transform-origin: center;
  }
  .contact-actions { padding: 32px 24px; }
  .contact-actions h2 { font-size: 26px; }
  .whatsapp-btn, .call-btn { height: 52px; font-size: 12.5px; }

  /* ── Footer & utility ── */
  /* Two-column footer on mobile */
  .footer { padding: 30px 0 0; }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 20px;
    align-items: start;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; text-align: center; }
  .footer .footer-tagline { display: none !important; }
  /* Mobile footer keeps only EXPLORE + CONTACT — hide the Celebrations column */
  .footer-grid > div:nth-child(3) { display: none; }
  .footer h4 { text-align: left; margin-bottom: 10px; }
  .footer-links { align-items: flex-start; }
  .footer-bottom { margin-top: 16px; padding: 12px 0 14px; }
  .back-to-top { display: none; }
  /* Floating WhatsApp button — mobile only */
  .wa-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 22px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: transform .25s var(--ease);
  }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-float:active { transform: scale(.92); }
  /* Floating Instagram button — mobile only */
  .ig-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 80px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 4px 14px rgba(225, 48, 108, .4);
    z-index: 999;
    transition: transform .25s var(--ease);
  }
  .ig-float svg { width: 22px; height: 22px; }
  .ig-float:active { transform: scale(.92); }
  /* Floating Call button — mobile only */
  .call-float {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 138px;
    right: 18px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e88e5;
    color: #fff;
    box-shadow: 0 4px 14px rgba(30, 136, 229, .4);
    z-index: 999;
    transition: transform .25s var(--ease);
  }
  .call-float svg { width: 22px; height: 22px; }
  .call-float:active { transform: scale(.92); }
  /* Dropdown options: gold background, black text */
  .field select option {
    background: var(--gold);
    color: #000;
  }

  /* ── Availability modal polish ── */
  .avail-panel { padding: 22px 16px; }
  .avail-head h2 { font-size: 24px; }
  .topbar { height: 64px; gap: 12px; }
  /* Responsive brand title — larger on mobile now, still scales fluidly on narrow phones */
  .logo { font-size: clamp(12px, 4vw, 18px); gap: 6px; }
  .logo-img { height: 64px; }
  .logo small { font-size: clamp(5.5px, 1.8vw, 7.5px); letter-spacing: .13em; }
  .mobile-toggle { padding: 7px 11px; font-size: 17px; }
  .footer .logo-img { height: 72px; }
  .footer p { font-size: 12px; }
}

/* ── CALL TO ACTION ───────────────────────────────────── */
.cta-band {
  --cta-ivory: #f7f3ed;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(36px, 5vw, 56px) 24px;
  background:
    linear-gradient(rgba(4, 42, 30, .82) 0%, rgba(3, 41, 29, .66) 55%, rgba(3, 41, 29, .82) 100%),
    url("assets/cta-bg.webp") center / cover no-repeat,
    linear-gradient(135deg, var(--band-green) 0%, var(--green) 100%);
}
.cta-band::before { /* fine-grain linen texture */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}
.cta-band::after { /* faint botanical leaf motif, ivory corner */
  content: '';
  position: absolute;
  top: -26px;
  right: -18px;
  z-index: 0;
  width: clamp(130px, 15vw, 200px);
  height: clamp(130px, 15vw, 200px);
  opacity: .08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' width='120' height='120'%3E%3Cg fill='none' stroke='%23f7f3ed' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M60 12 C 82 30 88 58 72 84 C 62 97 40 100 24 88 C 40 78 46 58 60 40'/%3E%3Cpath d='M60 40 L 60 12'/%3E%3Cpath d='M60 98 C 78 84 84 60 72 40'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  margin: 0 auto;
  max-width: 15ch;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.18;
  color: var(--cta-ivory);
  text-wrap: balance;
}
.cta-sub {
  margin: 18px auto 38px;
  max-width: 48ch;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(15px, 1.7vw, 18px);
  color: #cbd7ce;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--cta-ivory);
  color: var(--green);
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(6, 22, 14, .35);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cta-pill:hover,
.cta-pill:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 36px rgba(6, 22, 14, .48);
  border-color: rgba(224, 180, 93, .7);
  outline: none;
}
.cta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 0 3px rgba(224, 180, 93, .28);
}
@media (max-width: 560px) {
  .cta-band { padding: 36px 18px; }
  .cta-actions { flex-direction: column; gap: 16px; }
  .cta-dot { display: none; }
  .cta-pill { width: min(100%, 320px); }
  /* Brand title — slightly larger on narrow phones, keeps scaling so it doesn't overflow */
  .logo { font-size: clamp(11px, 3.8vw, 17px); }
  .logo-img { height: 58px; }
  .logo small { font-size: clamp(5px, 1.6vw, 7px); letter-spacing: .11em; }
  .footer .logo-img { height: 66px; }
}
