/* ============================================================
   THE SABLEWOOD — Main Stylesheet
   Fonts: Goudy Oldstyle (serif), Adorn Garland (script), Hero (sans)
   ============================================================ */



/* ── FONTS ──────────────────────────────────────────────────── */

@font-face {
  font-family: 'GoudyOldstyle';
  src: url('../fonts/GoudyOldstyle.woff') format('woff'),
       url('../fonts/GoudyOldstyle.ttf')  format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GoudyOldstyle';
  src: url('../fonts/GoudyOldstyle-Italic.woff2') format('woff2'),
       url('../fonts/GoudyOldstyle-Italic.ttf')   format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'GoudyOldstyle';
  src: url('../fonts/GoudyOldstyle-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'AdornGarland';
  src: url('../fonts/AdornGarland.woff2') format('woff2'),
       url('../fonts/AdornGarland.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hero';
  src: url('../fonts/Hero.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Hero';
  src: url('../fonts/Hero-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}


/* ── DESIGN TOKENS ──────────────────────────────────────────── */

:root {
  /* Colors */
  --navy:        #3a506b;
  --navy-dark:   #2c3e52;
  --navy-deeper: #1e2d3d;
  --cream:       #f7f5f0;
  --cream-dark:  #ede9e1;
  --white:       #ffffff;
  --gold:        #b8a87a;
  --gold-light:  #d4c89a;
  --text:        #2a2a2a;
  --text-mid:    #555555;
  --text-muted:  #888888;

  /* Typography */
  --font-serif:    'GoudyOldstyle', 'Garamond', Georgia, serif;
  --font-display:  'GoudyOldstyle', 'Garamond', Georgia, serif;
  --font-script:   'AdornGarland', cursive;
  --font-sans:     'Hero', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-v:   100px;
  --container:   1200px;
  --gutter:      60px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.35s;
}


/* ── RESET ──────────────────────────────────────────────────── */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img, video {
  display: block;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
p { font-family: var(--font-serif); }


/* ── TYPOGRAPHY UTILITIES ───────────────────────────────────── */

.font-serif  { font-family: var(--font-serif); }
.font-script { font-family: var(--font-script); }
.font-sans   { font-family: var(--font-sans); }

/* Standard italic serif section heading */
.section-heading-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  line-height: 1.25;
}

/* Section label — small spaced caps above headings */
.label {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 18px;
}

/* Gold rule ornament */
.ornament-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.ornament-rule::before,
.ornament-rule::after {
  content: '';
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}
.ornament-rule img {
  width: 22px;
  opacity: 0.65;
}


/* ── LAYOUT ─────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-v) 0;
}

.section--cream  { background: var(--cream); }
.section--navy   { background: var(--navy); }
.section--darker { background: var(--navy-dark); }


/* ── TAGLINE BAND ────────────────────────────────────────────── */

.tagline-band {
  background: var(--white);
  text-align: center;
  padding: 72px var(--gutter);
}

.tagline-band-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #7a9ab0;
  line-height: 2.2;
}

.tagline-band .ornament-rule {
  margin-top: 28px;
  margin-bottom: 0;
}

.tagline-band .ornament-rule img {
  width: 52px;
  opacity: 0.5;
}


/* ── PARALLAX INTRO ──────────────────────────────────────────── */

.parallax-intro {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.parallax-intro-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.parallax-intro-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 100px 0;
}

.parallax-card {
  background: var(--white);
  width: 100%;
  padding: 60px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Faint monogram watermark behind card content */
.parallax-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/logo/monogram-dark.png') center / 60% no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.parallax-card-logo {
  width: 320px;
  height: auto;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.parallax-card p {
  font-size: 19px;
  font-style: italic;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.parallax-card .btn {
  position: relative;
  z-index: 1;
}


/* ── STATEMENT BAND ──────────────────────────────────────────── */

.statement-band {
  background: #8fa4b6;
  padding: 80px var(--gutter);
  text-align: center;
}

.statement-band p {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 2;
  max-width: 880px;
  margin: 0 auto;
}


/* ── NAVIGATION ─────────────────────────────────────────────── */

#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: center;
  padding: 40px var(--gutter);
  transition: background var(--dur) var(--ease),
              padding   var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

#site-nav.scrolled,
#site-nav.nav-solid {
  background: var(--navy-dark);
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.18);
}

.nav-left,
.nav-right {
  display: flex;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: center;
}

.nav-left  { justify-content: flex-end;   padding-right: clamp(24px, 3vw, 48px); }
.nav-right { justify-content: flex-start; padding-left:  clamp(24px, 3vw, 48px); }

.nav-left a,
.nav-right a {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  transition: color var(--dur);
  position: relative;
}

.nav-left a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}

.nav-left a:hover,
.nav-right a:hover { color: var(--white); }

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after { transform: scaleX(1); }

.nav-logo {
  text-align: center;
  justify-self: center;
}

.nav-logo img {
  width: 200px;
  height: auto;
  transition: width var(--dur) var(--ease);
  margin: 0 auto;
  display: block;
}

#site-nav.scrolled .nav-logo img,
#site-nav.nav-solid .nav-logo img { width: 120px; }

/* Dropdown */
.has-dropdown {
  position: relative;
}

/* Non-link dropdown trigger — styled identically to nav links */
.nav-dropdown-label {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  cursor: default;
  position: relative;
  display: inline-block;
}

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--navy-dark);
  min-width: 220px;
  padding: 14px 0 8px; /* top padding creates visual gap without a dead zone */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 22px;
  font-size: 14px !important;
  letter-spacing: 0.18em !important;
  white-space: nowrap;
  border-bottom: none !important;
}

.dropdown a::after { display: none !important; }
.dropdown a:hover { background: rgba(255,255,255,0.07); }

/* Mobile hamburger — hidden by default */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform var(--dur), opacity var(--dur);
}


/* ── HERO ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Video — desktop */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Slideshow — mobile fallback & prefers-reduced-motion */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none; /* shown via JS/media query */
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 24s infinite;
}

.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 6s; }
.hero-slide:nth-child(3) { animation-delay: 12s; }
.hero-slide:nth-child(4) { animation-delay: 18s; }

@keyframes slideShow {
  0%   { opacity: 0; transform: scale(1.04); }
  8%   { opacity: 1; transform: scale(1.04); }
  25%  { opacity: 1; transform: scale(1); }
  33%  { opacity: 0; transform: scale(1); }
  100% { opacity: 0; }
}

@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0, 0); }
  100% { transform: scale(1) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 30, 45, 0.20) 0%,
    rgba(20, 30, 45, 0.10) 40%,
    rgba(20, 30, 45, 0.55) 75%,
    rgba(20, 30, 45, 0.72) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute !important;
  bottom: 100px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 48px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  display: block;
}

.hero-headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(25px, 3.6vw, 50px);
  line-height: 1.25;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: heroHeadlineFadeIn 1.2s ease 2.2s forwards;
}

@keyframes heroHeadlineFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Logo splash overlay */
.hero-logo-splash {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  animation: heroLogoArc 4s ease forwards;
}

.hero-logo-splash img {
  width: clamp(220px, 38vw, 560px);
  height: auto;
  filter: drop-shadow(0 2px 24px rgba(0,0,0,0.35));
}

@keyframes heroLogoArc {
  0%   { opacity: 0; }
  18%  { opacity: 1; }
  55%  { opacity: 1; }
  100% { opacity: 0; }
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 15px 42px;
  transition: background var(--dur), border-color var(--dur);
}

.hero-cta:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.9);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-indicator::after {
  content: '';
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.3);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}


/* ── SECTION: INTRO ─────────────────────────────────────────── */

.intro-section {
  padding: 80px 0;
  text-align: center;
}

.intro-section h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.intro-section p {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.85;
  color: var(--text);
  max-width: 720px;
  margin: 0 auto 20px;
}


/* ── SECTION: ELEVATED ──────────────────────────────────────── */

.elevated-section {
  display: grid;
  grid-template-columns: 44fr 56fr;
  align-items: stretch;
  padding: 0 10%;
  background: var(--white);
  position: relative;
}

.elevated-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 60px 24px 60px var(--gutter);
  height: 100%;
}

.elevated-images img {
  width: 80%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.elevated-images img:first-child { flex: 7; }
.elevated-images img:last-child  { flex: 3; }

.elevated-content {
  padding: 60px 56px 60px 28px;
  display: flex;
  flex-direction: column;
}

.elevated-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(31px, 3.44vw, 50px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}

.elevated-subheading {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 20px;
}

.elevated-content p {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 14px;
  font-style: normal;
}

.elevated-content .btn {
  margin-top: auto;
  align-self: center;
}

.btn-steel {
  background: #8fa4b6;
  color: var(--white);
  border: 1px solid #8fa4b6;
}

.btn-steel:hover {
  background: #7a93a6;
  border-color: #7a93a6;
}


/* ── SECTION: KNOWN FOR (VIDEO PARALLAX) ────────────────────── */

.known-for-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* No background — transparent window onto the fixed video */
}

.known-for-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.known-for-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.28) 55%,
    rgba(0,0,0,0.04) 100%);
  z-index: 0;
}

.known-for-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 80px var(--gutter);
  margin-left: 15%;
}

.known-for-section .label {
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.known-for-section h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 36px;
}

.known-for-section p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
}

.known-for-section strong {
  color: var(--white);
  font-weight: 400;
}


/* ── SECTION: SPLIT INTRO ───────────────────────────────────── */

.split-intro {
  display: grid;
  grid-template-columns: 44fr 56fr;
  min-height: 640px;
  margin-bottom: var(--section-v);
}

.split-intro-image {
  overflow: hidden;
}

.split-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.split-intro-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 72px;
  text-align: center;
}

.split-intro-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 44px;
}

.split-intro-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-intro-monogram img {
  width: 160px;
  opacity: 0.07;
}

.split-intro-wordmark {
  height: 110px;
  width: auto;
  position: relative;
}

.split-intro-content p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 22px;
}

.split-intro-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .split-intro {
    grid-template-columns: 1fr;
  }

  .split-intro-image {
    aspect-ratio: 4 / 3;
  }

  .split-intro-content {
    padding: 64px 40px;
  }
}

@media (max-width: 480px) {
  .split-intro-content {
    padding: 48px 24px;
  }

  .split-intro-wordmark {
    height: 80px;
  }
}


/* ── SECTION: GALLERY STRIP ─────────────────────────────────── */

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.gallery-tile:hover img { transform: scale(1.06); }

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 45, 0);
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: background 0.5s var(--ease);
}

.gallery-tile:hover .gallery-tile-overlay {
  background: rgba(20, 30, 45, 0.48);
}

.gallery-tile-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-tile:hover .gallery-tile-label {
  opacity: 1;
  transform: translateY(0);
}


/* ── SECTION: LOCATION SPLIT ───────────────────────────────── */

.location-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--cream);
  min-height: 780px;
}

.location-split-photo {
  overflow: hidden;
  margin: 100px;
}

.location-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.location-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8% 100px 0;
  gap: 0;
}

.location-split-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 50px;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}

.location-split-content p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-split-content p:last-of-type {
  margin-bottom: 40px;
}

.location-split-content .btn {
  align-self: flex-start;
}

@media (max-width: 900px) {
  .location-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .location-split-photo {
    height: 55vw;
    min-height: 280px;
    max-height: 500px;
  }

  .location-split-content {
    padding: 56px var(--gutter);
  }
}


/* ── SECTION: SPACES ────────────────────────────────────────── */

.spaces-section {
  background: var(--white);
  position: relative;
}

.spaces-header {
  text-align: center;
  padding: 48px var(--gutter) 32px;
}

.spaces-header .label {
  font-size: 14px;
  margin-bottom: 0;
}

.spaces-footer {
  text-align: center;
  padding: 40px var(--gutter) var(--section-v);
}


/* ── SECTION: QUOTE BAND ────────────────────────────────────── */

.quote-band {
  padding: 96px var(--gutter);
  text-align: center;
}

.quote-band blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.5;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 20px;
}

.quote-band cite {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}


/* ── SECTION: FEATURES ──────────────────────────────────────── */

.features-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: var(--section-v) 0;
}

.features-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 0;
}

.features-parallax .container {
  position: relative;
  z-index: 1;
}

.features-script-heading {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(52px, 6vw, 90px);
  color: #fff;
  line-height: 1.1;
  margin-top: 8px;
}

.features-parallax .label {
  color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  background: #8fa4b6;
  padding: 40px 36px;
  text-align: center;
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 12px;
  display: block;
}

.feature h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
}

.feature p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}


/* ── SECTION: TEAM INTRO ───────────────────────────────────── */

.team-intro {
  display: grid;
  grid-template-columns: 44fr 56fr;
  align-items: center;
  background: var(--white);
  padding: 80px 5%;
  overflow: hidden;
}

/* Slideshow */
.team-intro-slider {
  position: relative;
  height: clamp(480px, 55vw, 720px);
  overflow: hidden;
}

.team-intro-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.team-intro-slide.active {
  opacity: 1;
}

.team-intro-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Arrow controls */
.team-slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 36px;
  z-index: 3;
}

.team-slider-arrow {
  background: none;
  border: none;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.team-slider-arrow:hover {
  opacity: 1;
}

.team-slider-arrow svg {
  width: 28px;
  height: 28px;
}

/* Overlapping card */
.team-intro-card {
  position: relative;
  z-index: 2;
  margin-left: -80px;
  margin-top: 120px;
  width: 90%;
  background: rgba(247, 245, 240, 0.92);
  padding: 70px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: flex-start;
}

.team-intro-logo {
  width: 260px;
  display: block;
  margin: 0 auto 12px;
}

.team-intro-card p {
  font-size: 17px;
  line-height: 1.85;
  color: #4a5568;
}

.team-intro-card .btn {
  align-self: center;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .team-intro {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .team-intro-slider {
    height: 65vw;
    min-height: 280px;
  }

  .team-intro-card {
    margin-left: 0;
    padding: 48px var(--gutter);
  }
}


/* ── SECTION: QUOTE SPLIT ──────────────────────────────────── */

.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--navy);
}

.quote-split-photo {
  overflow: hidden;
  margin: 80px;
}

.quote-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.quote-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10%;
}

.quote-split-text {
  font-family: var(--font-serif);
  font-size: clamp(36px, 3.6vw, 58px);
  color: #fff;
  line-height: 1.35;
  font-weight: 400;
  margin: 0 0 28px 0;
}

.quote-split-cite {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

@media (max-width: 900px) {
  .quote-split {
    grid-template-columns: 1fr;
  }

  .quote-split-photo {
    height: 60vw;
    min-height: 260px;
  }

  .quote-split-content {
    padding: 56px var(--gutter);
  }
}


/* ── SECTION: PACKAGES ──────────────────────────────────────── */

.packages-section {
  background: var(--cream);
  padding: var(--section-v) 0;
}

.packages-header {
  text-align: center;
  margin-bottom: 64px;
}

/* Package menu — stacked like a tasting menu */
.packages-menu {
  max-width: 640px;
  margin: 0 auto 80px;
}

.package-item {
  text-align: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(58,80,107,0.14);
}

.package-item:first-child {
  border-top: 1px solid rgba(58,80,107,0.14);
}

.package-item-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--navy);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.package-item-details {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(58,80,107,0.55);
  margin-bottom: 6px;
}

.package-item-inclusions {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: rgba(58,80,107,0.5);
  margin-bottom: 10px;
}

.package-item-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0;
}

.packages-menu-cta {
  text-align: center;
  padding-top: 52px;
}

/* Accordion */
.packages-accordion {
  max-width: 860px;
  margin: 0 auto;
}

.packages-accordion .faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.packages-accordion .faq-answer ul li {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  padding: 4px 0 4px 22px;
  position: relative;
}

.packages-accordion .faq-answer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--navy);
  opacity: 0.4;
  top: 5px;
  font-size: 12px;
}

.packages-accordion .faq-answer ul li strong {
  font-family: var(--font-sans, Arial, sans-serif);
  font-weight: 700;
  color: var(--navy);
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .packages-grid {
    grid-template-columns: 1fr;
    border-top: none;
    border-bottom: none;
  }

  .package-card {
    border: none;
    border-top: 1px solid rgba(58,80,107,0.18);
    padding: 44px 24px;
  }

  .package-card:last-child {
    border-bottom: 1px solid rgba(58,80,107,0.18);
  }
}


/* ── SECTION: FILM ──────────────────────────────────────────── */

.film-section {
  text-align: center;
  background: var(--white);
}

.film-section .label {
  font-size: 14px;
  letter-spacing: 0.3em;
  margin-bottom: 44px;
}

.film-wrap {
  max-width: 1060px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  position: relative;
}

.film-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.film-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.film-poster:hover img {
  transform: scale(1.02);
}

.film-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.75) !important;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  backdrop-filter: blur(4px);
}

.film-play-btn svg {
  width: 22px;
  height: 22px;
  margin-left: 4px; /* optical center for play triangle */
}

.film-poster:hover .film-play-btn {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,1) !important;
  transform: translate(-50%, -50%) scale(1.08);
}

.film-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ── COMING SOON ────────────────────────────────────────────── */

.coming-soon-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: var(--section-v) var(--gutter);
}

.coming-soon-inner {
  text-align: center;
  max-width: 600px;
}

.coming-soon-inner h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.2;
  margin: 16px 0 24px;
}

.coming-soon-inner h1 em { font-style: italic; }

.coming-soon-inner p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}


/* ── SECTION: TESTIMONIAL PARALLAX ─────────────────────────── */

.testimonial-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 6%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.testimonial-parallax-card {
  max-width: 500px;
  background: transparent;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-parallax-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 40px;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.06em;
  text-align: center;
}

.testimonial-parallax-stars {
  color: #F0F2F7;
  font-size: 60px;
  letter-spacing: 0.2em;
  text-align: center;
}

.testimonial-parallax-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.testimonial-parallax-btn {
  align-self: center;
  background: var(--cream);
  color: var(--navy);
  border: none;
  margin-top: 4px;
}

.testimonial-parallax-btn:hover {
  background: var(--cream-dark);
}

@media (max-width: 768px) {
  .testimonial-parallax {
    justify-content: center;
    padding: 60px var(--gutter);
  }

  .testimonial-parallax-card {
    max-width: 100%;
    padding: 40px 28px;
  }
}


/* ── SECTION: FEATURED GALLERIES ───────────────────────────── */

.featured-galleries {
  background: var(--cream);
  text-align: center;
}

.featured-galleries-heading {
  font-family: var(--font-script);
  font-size: clamp(42px, 5vw, 72px);
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 48px;
}

.featured-galleries-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(58, 80, 107, 0.3);
  margin-bottom: 52px;
}

.featured-gallery-tile {
  padding: 15px;
  border-right: 1px solid rgba(58, 80, 107, 0.3);
  text-decoration: none;
  transition: opacity 0.25s;
}

.featured-gallery-tile:last-child {
  border-right: none;
}

.featured-gallery-tile:hover {
  opacity: 0.85;
}

.featured-gallery-img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.featured-gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-gallery-tile:hover .featured-gallery-img-wrap img {
  transform: scale(1.03);
}


.featured-gallery-name {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--navy);
  margin-top: 20px;
  letter-spacing: 0.02em;
}

.featured-galleries-btn {
  margin-top: 0;
}

@media (max-width: 768px) {
  .featured-galleries-tiles {
    grid-template-columns: 1fr;
    border-top: none;
  }

  .featured-gallery-tile {
    border-right: none;
    border-top: 1px solid rgba(58, 80, 107, 0.3);
    padding: 28px 0;
  }

  .featured-gallery-img-wrap {
    aspect-ratio: 4 / 3;
  }
}


/* ── SECTION: HOMEPAGE FAQ ──────────────────────────────────── */

.home-faq {
  background: var(--cream);
}

.home-faq-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.04em;
}

.home-faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.home-faq-scroll-link {
  color: var(--navy);
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-faq-scroll-link:hover {
  opacity: 0.7;
}

.home-faq-footer {
  text-align: center;
  margin-top: 48px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-muted);
}

.home-faq-footer a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-faq-footer a:hover {
  opacity: 0.7;
}


/* ── SECTION: CONTACT CTA ───────────────────────────────────── */

.contact-cta {
  text-align: center;
}

.contact-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 52px);
  color: var(--navy);
  margin-bottom: 18px;
  line-height: 1.2;
}

.contact-cta h2 em { font-style: italic; }

.contact-cta p {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 42px;
}

.btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 16px 48px;
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.btn-outline {
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Homepage button overrides (scoped to .page-home) ───────── */
.page-home .btn-navy {
  background: #8fa4b6;
  border-color: #8fa4b6;
}

.page-home .btn-navy:hover {
  background: #7a93a6;
  border-color: #7a93a6;
}

.page-home .btn-outline {
  color: #8fa4b6;
  border-color: #8fa4b6;
}

.page-home .btn-outline:hover {
  background: #8fa4b6;
  color: var(--white);
}

.btn-outline-white {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}


/* ── PRE-FOOTER CTA BAND ────────────────────────────────────── */

.pre-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream-dark);
}

.pre-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 40px;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid rgba(58,80,107,0.12);
  transition: background var(--dur) var(--ease);
}

.pre-footer-col:last-child { border-right: none; }

.pre-footer-col:hover { background: var(--cream); }

.pre-footer-label {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--dur);
}

.pre-footer-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--navy);
  transition: color var(--dur);
}

.pre-footer-col:hover .pre-footer-label,
.pre-footer-col:hover .pre-footer-sub { color: var(--gold); }


/* ── INSTAGRAM STRIP ────────────────────────────────────────── */

.instagram-strip {
  background: var(--cream);
  padding: 56px var(--gutter);
}

.instagram-header {
  text-align: center;
  margin-bottom: 32px;
}

.instagram-handle {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--navy);
  margin-top: 8px;
  text-decoration: none;
  transition: color var(--dur);
}

.instagram-handle:hover { color: var(--gold); }

.instagram-feed-wrap {
  max-width: var(--container);
  margin: 0 auto;
}

.instagram-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.instagram-tile {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.instagram-tile:hover img { transform: scale(1.06); }


/* ── FOOTER ─────────────────────────────────────────────────── */

#site-footer {
  background: var(--navy-deeper);
  color: rgba(255,255,255,0.5);
  padding: 80px var(--gutter) 40px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 100px;
  width: auto;
  margin: 0 auto;
  opacity: 0.85;
}

/* Left col: contact info */
.footer-col h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer-contact-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  padding: 6px 0;
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--dur);
}

.footer-contact-line svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.footer-address { cursor: default; }

a.footer-contact-line:hover { color: rgba(255,255,255,0.9); }

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color var(--dur);
}

.footer-social a:hover { color: var(--gold-light); }

/* Right col: nav grid */
.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}

.footer-nav-col a {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding: 6px 0;
  text-decoration: none;
  transition: color var(--dur);
}

.footer-nav-col a:hover { color: rgba(255,255,255,0.9); }

.footer-nav { text-align: right; }
.footer-nav .footer-nav-grid { justify-items: end; }

.footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.25);
}

.footer-bottom a,
.footer-top-link {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color var(--dur);
  letter-spacing: 0.14em;
}

.footer-bottom a:hover,
.footer-top-link:hover { color: rgba(255,255,255,0.65); }


/* ── MOBILE NAV PANEL ───────────────────────────────────────── */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy-deeper);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 32px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color var(--dur);
}

.mobile-nav a:hover { color: var(--white); }

.mobile-nav-close {
  position: absolute;
  top: 28px; right: 28px;
  color: rgba(255,255,255,0.5);
  font-size: 28px;
  cursor: pointer;
  transition: color var(--dur);
}

.mobile-nav-close:hover { color: var(--white); }


/* ── FADE-IN ON SCROLL ──────────────────────────────────────── */

[data-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

[data-fade].visible {
  opacity: 1;
  transform: translateY(0);
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 1024px) {
  :root {
    --gutter: 40px;
    --section-v: 80px;
  }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --gutter: 24px;
    --section-v: 64px;
  }

  /* Mobile nav: flex, logo centered, hamburger pinned right */
  .nav-left,
  .nav-right { display: none; }

  #site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 16px var(--gutter);
  }

  .nav-logo {
    grid-column: unset;
  }

  .nav-logo img { height: 72px; }
  #site-nav.scrolled .nav-logo img,
  #site-nav.nav-solid .nav-logo img { height: 48px; }

  .nav-hamburger {
    display: flex;
    position: absolute;
    right: var(--gutter);
    top: 50%;
    transform: translateY(-50%);
  }

  /* Hero: hide video, show slides */
  .hero-video { display: none; }
  .hero-slides { display: block; }

  .hero-headline { font-size: clamp(16px, 4vw, 26px); }

  /* Parallax: disable fixed attachment on iOS/mobile */
  .parallax-intro-bg { background-attachment: scroll; }

  /* Known For: fixed video doesn't work on iOS — swap to poster image */
  .known-for-video { display: none; }
  .known-for-section {
    background-image: var(--known-for-poster);
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }
  .parallax-intro-inner {
    grid-template-columns: 1fr;
    width: 90%;
    padding: 80px 0;
  }
  .parallax-card {
    padding: 48px 32px;
  }
  .parallax-card-logo {
    width: 220px;
  }

  /* Gallery strip: 2 columns on tablet */
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip .gallery-tile:last-child { display: none; }

  /* Features: single column */
  .features-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Pre-footer */
  .pre-footer { grid-template-columns: 1fr; }
  .pre-footer-col { border-right: none; border-bottom: 1px solid rgba(58,80,107,0.12); padding: 36px 24px; }
  .pre-footer-col:last-child { border-bottom: none; }

  /* Instagram grid: 3 cols on mobile */
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-tile:nth-child(n+4) { display: none; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .footer-logo { order: -1; }
  .footer-social { justify-content: center; }
  .footer-nav { text-align: center; }
  .footer-nav .footer-nav-grid { justify-items: center; }
  .footer-contact-line { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip .gallery-tile:last-child { display: block; }
  .gallery-tile { aspect-ratio: 4 / 3; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .instagram-tile:nth-child(n+4) { display: block; }
  .instagram-tile:nth-child(n+5) { display: none; }
}

/* Respect reduced motion — always use slides, no animation */
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
  .hero-slides { display: block; }
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-child { opacity: 1; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ══════════════════════════════════════════════════════════════
   EDITORIAL OPENING — post-hero brand statement
   ══════════════════════════════════════════════════════════════ */

.editorial-opening {
  background: var(--white);
  text-align: center;
  padding: 108px var(--gutter) 100px;
}

.editorial-opening .ornament-rule {
  margin-bottom: 32px;
}

.editorial-opening-loc {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 36px;
}

.editorial-opening-headline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 62px);
  color: var(--navy);
  line-height: 1.18;
  max-width: 820px;
  margin: 0 auto 36px;
}

.editorial-opening-body {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto 52px;
  font-style: normal;
}


/* ══════════════════════════════════════════════════════════════
   EDITORIAL SPLIT — tall image left, content right
   ══════════════════════════════════════════════════════════════ */

.editorial-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  min-height: 88vh;
}

.editorial-split-image {
  position: relative;
  overflow: hidden;
}

.editorial-split-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.editorial-split-content {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
}

.editorial-split-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 42px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.editorial-split-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 28px;
}

.editorial-split-content p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.editorial-split-content .btn {
  align-self: flex-start;
  margin-top: 20px;
}


/* ══════════════════════════════════════════════════════════════
   SPACES DRAMATIC — asymmetric showcase grid
   ══════════════════════════════════════════════════════════════ */

.spaces-dramatic-section {
  background: var(--white);
}

.spaces-dramatic-header {
  text-align: center;
  padding: var(--section-v) var(--gutter) 40px;
}

.spaces-dramatic-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--navy);
  line-height: 1.2;
  margin-top: 10px;
}

.spaces-dramatic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 80vh;
  min-height: 580px;
  max-height: 800px;
}

.space-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.space-tile-main {
  grid-row: 1 / 3;
}

.space-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}

.space-tile:hover img {
  transform: scale(1.04);
}

.space-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 22, 34, 0.78) 0%,
    rgba(14, 22, 34, 0.08) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background 0.5s var(--ease);
}

.space-tile:hover .space-tile-overlay {
  background: linear-gradient(
    to top,
    rgba(14, 22, 34, 0.88) 0%,
    rgba(14, 22, 34, 0.22) 55%,
    transparent 100%
  );
}

.space-tile-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--white);
  display: block;
  margin-bottom: 6px;
  line-height: 1.2;
}

.space-tile-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.space-tile:hover .space-tile-desc {
  opacity: 1;
  transform: translateY(0);
}

.spaces-dramatic-footer {
  text-align: center;
  padding: 48px var(--gutter) var(--section-v);
}


/* ══════════════════════════════════════════════════════════════
   PLANNING RESOURCES — 3-card blog/guide section
   ══════════════════════════════════════════════════════════════ */

.resources-section {
  background: var(--cream);
  padding: var(--section-v) 0;
}

.resources-header {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: 56px;
}

.resources-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 42px);
  color: var(--navy);
  margin-top: 10px;
  line-height: 1.2;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.resource-card {
  background: var(--white);
  display: block;
  text-decoration: none;
  padding: 48px 36px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--dur) var(--ease),
              transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}

.resource-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(58, 80, 107, 0.09);
}

.resource-card-category {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.resource-card-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--navy);
  line-height: 1.35;
  display: block;
  margin-bottom: 14px;
}

.resource-card-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  display: block;
  font-style: normal;
  margin-bottom: 28px;
}

.resource-card-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-block;
  transition: color var(--dur);
}

.resource-card-cta::after {
  content: ' →';
}

.resource-card:hover .resource-card-cta {
  color: var(--gold);
}


/* ══════════════════════════════════════════════════════════════
   PRICING SECTION — package cards + accordion
   ══════════════════════════════════════════════════════════════ */

.pricing-section {
  background: var(--white);
  padding: var(--section-v) 0;
}

.pricing-header {
  text-align: center;
  padding: 0 var(--gutter);
  margin-bottom: 64px;
}

.pricing-header h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--navy);
  margin-top: 10px;
  line-height: 1.2;
}

/* Refined rate-sheet table */
.pricing-table {
  max-width: 720px;
  margin: 0 auto 64px;
  padding: 0 var(--gutter);
}

.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(58, 80, 107, 0.12);
}

.pricing-row:first-child {
  border-top: 1px solid rgba(58, 80, 107, 0.12);
}

.pricing-row-left {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pricing-row-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.pricing-row-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(19px, 1.8vw, 23px);
  color: var(--navy);
  line-height: 1.2;
}

.pricing-row-desc {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.pricing-row-right {
  text-align: right;
  flex-shrink: 0;
}

.pricing-row-amount {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(12px, 1.2vw, 16px);
  color: var(--navy);
  display: block;
  line-height: 1;
}

.pricing-row-note {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}


/* Two-column layout: table left, accordion right */
.pricing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 72px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  align-items: start;
}

/* Override table's own max-width/margin since it's now in a column */
.pricing-body .pricing-table {
  max-width: unset;
  margin: 0;
  padding: 0;
}

/* Accordion sits in right column */
.pricing-accordion {
  padding: 0;
}

.pricing-accordion .faq-item {
  border-color: rgba(58, 80, 107, 0.13);
}

.pricing-accordion .faq-question {
  font-size: 15px;
  letter-spacing: 0.22em;
  padding: 24px 0;
}

.pricing-accordion .faq-answer {
  padding-bottom: 32px;
}

.pricing-accordion .faq-answer p {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 14px;
  font-style: normal;
}

.pricing-accordion .faq-answer p:last-child {
  margin-bottom: 0;
}

.pricing-accordion .faq-answer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-accordion .faq-answer ul li {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  padding: 3px 0 3px 22px;
  position: relative;
}

.pricing-accordion .faq-answer ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
  top: 5px;
}

/* Sub-lists for grouped Guest Count items */
.pricing-accordion .faq-answer ul ul {
  margin: 4px 0 4px 16px;
}

.pricing-accordion .faq-answer ul ul li::before {
  content: '·';
  font-size: 16px;
  top: 3px;
  color: var(--text-muted);
}

/* CTA pair below accordion */
.pricing-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 60px;
  padding: 0 var(--gutter);
}


/* ══════════════════════════════════════════════════════════════
   MOBILE — homepage v2 new sections
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .editorial-split-content {
    padding: 64px 48px;
  }
}

@media (max-width: 768px) {
  /* Editorial opening */
  .editorial-opening {
    padding: 72px var(--gutter) 64px;
  }

  /* Editorial split: stack vertically */
  .editorial-split {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .editorial-split-image {
    aspect-ratio: 4 / 3;
    position: relative;
  }
  .editorial-split-image img {
    position: absolute;
  }
  .editorial-split-content {
    padding: 52px var(--gutter);
  }
  .editorial-split-content .btn {
    align-self: center;
  }

  /* Spaces dramatic: stack */
  .spaces-dramatic-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    max-height: unset;
  }
  .space-tile-main {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }
  .space-tile {
    aspect-ratio: 4 / 3;
  }
  /* Show all tile text on mobile (no hover) */
  .space-tile-desc {
    opacity: 1;
    transform: translateY(0);
  }

  /* Resources */
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .resource-card:hover {
    transform: none;
  }

  /* Pricing */
  .pricing-body {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }
  .pricing-row {
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
  }
  .pricing-row-right {
    text-align: left;
  }
  .pricing-actions {
    flex-direction: column;
    align-items: center;
  }
  .pricing-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════════
   TOP BANNER — fixed announcement strip
   ══════════════════════════════════════════════════════════════ */

.top-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  z-index: 1000;
  background: var(--navy-deeper);
  border-bottom: 1px solid rgba(184, 168, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
}

.top-banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-banner p {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  font-style: normal;
}

.top-banner a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color var(--dur);
  letter-spacing: 0.2em;
  font-style: normal;
}

.top-banner a:hover {
  color: var(--white);
}

.top-banner-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.35);
  font-size: 18px;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--dur);
  cursor: pointer;
  border: none;
  background: none;
}

.top-banner-close:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Nav offset when banner is visible */
body.has-banner #site-nav {
  top: 44px;
}


/* ══════════════════════════════════════════════════════════════
   VIDEO STRIP — cinematic full-width divider
   ══════════════════════════════════════════════════════════════ */

.video-strip {
  position: relative;
  height: 52vh;
  min-height: 300px;
  max-height: 560px;
  overflow: hidden;
  /* Poster fallback for reduced-motion / no-video */
  background-size: cover;
  background-position: center;
}

.video-strip-vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-strip-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(14, 22, 34, 0.28) 0%,
    rgba(14, 22, 34, 0.55) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}

.video-strip-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-bottom: 20px;
}

.video-strip-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 3vw, 44px);
  color: var(--white);
  line-height: 1.35;
  max-width: 780px;
  letter-spacing: 0.02em;
}

.video-strip-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 28px auto 0;
}

@media (prefers-reduced-motion: reduce) {
  .video-strip-vid { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   EDITORIAL GALLERIES — 3-tile portrait grid
   ══════════════════════════════════════════════════════════════ */

.gallery-editorial-section {
  background: var(--white);
  padding: var(--section-v) 0;
}

.gallery-editorial-header {
  text-align: center;
  margin-bottom: 56px;
  padding: 0 var(--gutter);
}

.gallery-editorial-header h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy);
  line-height: 1.25;
}

.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 var(--gutter);
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-ed-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.gallery-ed-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.gallery-ed-tile:hover img {
  transform: scale(1.04);
}

.gallery-ed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 22, 34, 0.82) 0%,
    rgba(14, 22, 34, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background 0.5s var(--ease);
}

.gallery-ed-tile:hover .gallery-ed-overlay {
  background: linear-gradient(
    to top,
    rgba(14, 22, 34, 0.88) 0%,
    rgba(14, 22, 34, 0.28) 55%,
    transparent 100%
  );
}

.gallery-ed-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--white);
  line-height: 1.3;
  display: block;
  margin-bottom: 6px;
}

.gallery-ed-names {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  transition: color 0.4s var(--ease);
}

.gallery-ed-tile:hover .gallery-ed-names {
  color: var(--gold-light);
}

.gallery-editorial-footer {
  text-align: center;
  margin-top: 52px;
  padding: 0 var(--gutter);
}

.gallery-ed-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--cream-dark);
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   TOUR CTA — dark, prominent call to action
   ══════════════════════════════════════════════════════════════ */

.tour-cta {
  background: var(--navy-dark);
  padding: 120px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle monogram watermark */
.tour-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/logo/monogram-dark.png') center / 340px no-repeat;
  opacity: 0.04;
  pointer-events: none;
}

.tour-cta .ornament-rule {
  margin-bottom: 32px;
}

.tour-cta .ornament-rule::before,
.tour-cta .ornament-rule::after {
  background: var(--gold);
  opacity: 0.4;
}

.tour-cta .ornament-rule img {
  opacity: 0.45;
  filter: invert(1);
}

.tour-cta .label {
  color: var(--gold-light);
  margin-bottom: 24px;
}

.tour-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(30px, 4.2vw, 58px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 22px;
}

.tour-cta h2 em {
  font-style: italic;
}

.tour-cta p {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.62);
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.8;
  font-style: normal;
}

.tour-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: var(--white);
  color: var(--navy-dark);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
}


/* ══════════════════════════════════════════════════════════════
   HERO ENHANCEMENTS — CTA button + scroll cue
   ══════════════════════════════════════════════════════════════ */

.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: color var(--dur);
}

.hero-scroll-cue:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hero-scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  animation: scrollDrop 2s ease-in-out infinite;
}


/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL SPACER — full-width dark quote block
   ══════════════════════════════════════════════════════════════ */

.testimonial-spacer {
  background: var(--navy);
  padding: 96px var(--gutter);
  text-align: center;
}

.testimonial-spacer blockquote {
  max-width: 760px;
  margin: 0 auto;
}

.testimonial-spacer blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--white);
  line-height: 1.65;
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-spacer cite {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}


/* ══════════════════════════════════════════════════════════════
   MOBILE — new homepage sections
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Top banner: in-flow on mobile (nav is relative) */
  .top-banner {
    position: relative;
    height: auto;
    min-height: 44px;
    padding: 10px 44px 10px 16px;
  }
  body.has-banner #site-nav {
    top: 0;
  }
  .top-banner p {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.14em;
  }

  /* Video strip */
  .video-strip {
    height: 45vh;
    min-height: 240px;
  }

  /* Editorial gallery: 2-col on mobile then 1-col at 480px */
  .gallery-editorial {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-editorial .gallery-ed-tile:last-child {
    display: none;
  }

  /* Tour CTA */
  .tour-cta {
    padding: 80px var(--gutter);
  }
  .tour-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .tour-cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-editorial {
    grid-template-columns: 1fr;
  }
  .gallery-editorial .gallery-ed-tile:last-child {
    display: block;
  }
  .gallery-ed-tile img {
    aspect-ratio: 4 / 3;
  }
}


/* ══════════════════════════════════════════════════════════════
   GALLERIES — shared page header
   ══════════════════════════════════════════════════════════════ */

.galleries-page-header {
  background: #fff;
  text-align: center;
  /* Clear fixed nav: nav-solid = 14px + 60px logo + 14px = 88px + breathing room */
  padding: 120px var(--gutter) 56px;
}

.galleries-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 14px;
}

.galleries-page-subtitle {
  font-family: var(--font-script);
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--text-mid);
  display: block;
  line-height: 1.2;
}


/* ══════════════════════════════════════════════════════════════
   GALLERY INDEX — card grid
   ══════════════════════════════════════════════════════════════ */

.galleries-section {
  background: var(--white);
  padding: 64px 0 var(--section-v);
}

.galleries-section .container {
  max-width: 1440px;
}

.galleries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 32px;
}

/* Shared card — used on index grid AND individual page "more" section */
.gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.gallery-card-image-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 20px;
  background: var(--cream-dark);
}

.gallery-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.gallery-card:hover .gallery-card-image-wrap img {
  transform: scale(1.04);
}

/* Placeholder shown when no cover_id is set */
.gallery-card-placeholder {
  width: 100%;
  height: 100%;
  background: var(--cream-dark);
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  font-weight: 400;
  line-height: 1.6;
  transition: color var(--dur);
}

.gallery-card:hover .gallery-card-title {
  color: var(--gold);
}


/* ── PAGINATION ─────────────────────────────────────────────── */

.galleries-pagination {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(58, 80, 107, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pagination-pages a,
.pagination-pages .pagination-current {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
  transition: color var(--dur);
}

.pagination-pages .pagination-current {
  border-bottom: 1px solid var(--navy);
  padding-bottom: 1px;
}

.pagination-pages a:hover { color: var(--gold); }

.pagination-next {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--dur);
}

.pagination-next::after {
  content: '→';
  font-size: 17px;
  font-family: var(--font-serif);
  font-style: normal;
  letter-spacing: 0;
  transition: transform var(--dur) var(--ease);
}


/* ══════════════════════════════════════════════════════════════
   TAB SWITCHER — reusable component (.sw-)
   Used on: Kind Words (Couples/Parents), Galleries (Seasons)
   ══════════════════════════════════════════════════════════════ */

.sw-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  position: relative;
}

.sw-tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(58, 80, 107, 0.18);
}

.sw-tab {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 14px 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

.sw-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.sw-tab.active {
  color: var(--navy);
}

.sw-tab.active::after {
  transform: scaleX(1);
}

.sw-tab:hover:not(.active) {
  color: var(--navy);
}

.sw-panel {
  display: none;
}

.sw-panel.active {
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   KIND WORDS PAGE — /kind-words
   ══════════════════════════════════════════════════════════════ */

.kw-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
  position: relative;
  z-index: 1;
}

.kw-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.kw-page-intro {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
}

.kw-main {
  background: var(--white);
  padding: 80px var(--gutter) 100px;
}

.kw-main .container {
  max-width: 1440px;
}

.kw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.kw-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--cream);
  min-height: 170px;
  overflow: hidden;
}

.kw-card-photo {
  overflow: hidden;
  position: relative;
}

.kw-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}

.kw-card:hover .kw-card-photo img {
  transform: scale(1.04);
}

.kw-card-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
}

.kw-parents-note {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.kw-names {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}

.kw-amp {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0;
  font-size: 0.8em;
  color: var(--gold);
  margin: 0 4px;
}

.kw-quote::before {
  content: '\201C';
  font-family: Georgia, var(--font-serif);
  font-size: 44px;
  line-height: 0.65;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: 6px;
}

.kw-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.85;
  color: var(--text-mid);
  overflow: hidden;
  max-height: 5.55em;
  transition: max-height 0.45s ease;
  margin: 0;
}

.kw-toggle {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 10px 0 0;
  cursor: pointer;
  display: block;
  text-align: left;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.kw-toggle:hover {
  opacity: 1;
}

/* ── CTA Band ─────────────────────────────────────────────────── */

.kw-cta {
  background: var(--navy);
  text-align: center;
  padding: 100px var(--gutter);
}

.kw-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 52px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 24px 0 16px;
}

.kw-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.6;
}

.kw-cta-btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 18px 52px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.kw-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Light ornament rule for navy backgrounds */
.kw-ornament-light::before,
.kw-ornament-light::after {
  background: rgba(255, 255, 255, 0.3);
}

.kw-ornament-light {
  color: rgba(255, 255, 255, 0.55);
}

/* ── Testimonial Modal ────────────────────────────────────────── */

.kw-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.kw-modal[hidden] {
  display: none;
}

.kw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 28, 36, 0.78);
  cursor: pointer;
}

/* Shared card base — animation only */
.kw-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--cream);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Landscape variant: stacked (photo → names → quote) ─────── */
.kw-modal--landscape .kw-modal-card {
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.kw-modal--landscape .kw-modal-card::-webkit-scrollbar { width: 5px; }
.kw-modal--landscape .kw-modal-card::-webkit-scrollbar-track { background: transparent; }
.kw-modal--landscape .kw-modal-card::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}
.kw-modal--landscape .kw-modal-card::-webkit-scrollbar-thumb:hover { background: var(--navy); }

/* ── Portrait variant: photo left | names + quote right ─────── */
.kw-modal--portrait .kw-modal-card {
  max-width: 900px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 340px 1fr;
  overflow: hidden;
}
.kw-modal--portrait .kw-modal-photo {
  overflow: hidden;
}
.kw-modal--portrait .kw-modal-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.kw-modal--portrait .kw-modal-body {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.kw-modal--portrait .kw-modal-body::-webkit-scrollbar { width: 5px; }
.kw-modal--portrait .kw-modal-body::-webkit-scrollbar-track { background: transparent; }
.kw-modal--portrait .kw-modal-body::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 99px;
}
.kw-modal--portrait .kw-modal-body::-webkit-scrollbar-thumb:hover { background: var(--navy); }

.kw-modal.open .kw-modal-card {
  transform: translateY(0);
  opacity: 1;
}

.kw-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(247, 245, 240, 0.92);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background 0.2s;
}

.kw-modal-close:hover {
  background: var(--white);
}

.kw-modal-photo {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.kw-modal-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.kw-modal-body {
  padding: 28px 36px 36px;
}

.kw-modal-names {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 28px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.1;
}

.kw-modal-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin-bottom: 20px;
}

.kw-modal-quote::before {
  content: '\201C';
  font-family: Georgia, var(--font-serif);
  font-size: 52px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 10px;
}

.kw-modal-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.95;
  color: var(--text-mid);
  margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 900px) {
  .kw-grid { grid-template-columns: 1fr; }
  .kw-card { grid-template-columns: 140px 1fr; }
}

@media (max-width: 768px) {
  .kw-page-header { padding-top: 100px; }
  .kw-main { padding: 60px var(--gutter) 72px; }
  .sw-tab { padding: 12px 24px; letter-spacing: 0.16em; font-size: 12px; }
  .sw-tabs { margin-bottom: 36px; }
  .kw-cta { padding: 72px var(--gutter); }
  .kw-modal { padding: 0; align-items: flex-end; }
  .kw-modal-card {
    max-width: 100%;
    max-height: 92vh;
    border-radius: 12px 12px 0 0;
    transform: translateY(40px);
  }
  /* Collapse portrait to stacked on mobile */
  .kw-modal--portrait .kw-modal-card {
    display: block;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }
  .kw-modal--portrait .kw-modal-photo img {
    height: auto;
    object-fit: unset;
  }
  .kw-modal--portrait .kw-modal-body {
    overflow-y: unset;
  }
  .kw-modal-body { padding: 24px 22px 28px; }
}

@media (max-width: 560px) {
  .kw-page-header { padding-top: 88px; }
  .kw-card { grid-template-columns: 110px 1fr; }
  .kw-card-body { padding: 16px 14px 14px; }
  .kw-main { padding: 48px 24px 64px; }
  .sw-tab { padding: 10px 16px; }
  .kw-cta { padding: 56px 24px; }
}

.pagination-next:hover {
  color: var(--gold);
}

.pagination-next:hover::after {
  transform: translateX(4px);
}


/* ══════════════════════════════════════════════════════════════
   GALLERY SINGLE — hero image
   ══════════════════════════════════════════════════════════════ */

.gallery-hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 45vh;
  min-height: 320px;
  max-height: 480px;
  overflow: hidden;
}

.gallery-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   MEET THE TEAM PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.team-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
}

.team-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 22px;
}

.team-page-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}


/* ── Team Member sections ────────────────────────────────────── */

.team-member-inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}

/* Reverse layout: bio left, photo right */
.team-member--reverse .team-member-inner {
  grid-template-columns: 7fr 5fr;
}

.team-member-photo {
  position: sticky;
  top: 120px; /* stays in view while bio scrolls */
}

.team-member-img-wrap {
  overflow: hidden;
  background: var(--cream-dark);
}

.team-member-img-wrap img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}

.team-member-img-wrap:hover img {
  transform: scale(1.03);
}

.photo-credit {
  display: block;
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: right;
}

/* Centered media/videography credit line */
.media-credit {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
}

/* Left-aligned ornament rule for bio column */
.ornament-rule--left {
  justify-content: flex-start;
  margin-bottom: 14px;
  margin-left: 0;
}

.ornament-rule--left::before {
  display: none;
}

.team-member-name {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 44px);
  letter-spacing: 0.1em;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 28px;
  line-height: 1.1;
}

.team-member-opener {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 22px;
}

.team-member-bio p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.team-pull-quote {
  border-left: 3px solid var(--gold);
  padding: 14px 0 14px 24px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
}


/* ── Photo Ribbon ────────────────────────────────────────────── */

/*
  Desktop layout:
  [ story-2 portrait ] [ story-1 landscape ] [ story-4 portrait ]
  [ story-2 portrait ] [ story-3 landscape ] [ story-4 portrait ]

  Portraits (outer cols) span both rows → show full height with minimal crop.
  Landscapes stack in the center col.
*/
.team-photo-ribbon {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* Container is 60% of viewport, so height is scaled accordingly */
  height: clamp(280px, 26vw, 440px);
  gap: 3px;
  width: 60%;
  margin: 0 auto;
}

/* Explicit placement — only applied desktop-up */
@media (min-width: 861px) {
  .team-ribbon-img:nth-child(1) { grid-column: 2; grid-row: 1; }      /* story-1 landscape, center top */
  .team-ribbon-img:nth-child(2) { grid-column: 1; grid-row: 1 / 3; }  /* story-2 portrait,  left full */
  .team-ribbon-img:nth-child(3) { grid-column: 2; grid-row: 2; }      /* story-3 landscape, center bottom */
  .team-ribbon-img:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }  /* story-4 portrait,  right full */
}

.team-ribbon-img {
  overflow: hidden;
}

.team-ribbon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

/* Portrait photos: bias toward top so faces stay in frame */
.team-ribbon-img--portrait img {
  object-position: center top;
}

.team-ribbon-img:hover img {
  transform: scale(1.03);
}


/* ── From Our Family to Yours ────────────────────────────────── */

.team-family-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.team-family-photo {
  overflow: hidden;
}

.team-family-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.team-family-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.team-family-title em {
  font-style: italic;
}

.team-family-text p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.9;
  color: var(--text-mid);
}


/* ── Get to Know Lisa (Facts) ────────────────────────────────── */

.team-facts-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-facts-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  line-height: 1.2;
}

/*
  Grid layout:
    [ Fact 01 — tall ] [ Fact 02 ] [ Fact 03 ]
    [ Fact 01 — tall ] [ Fact 04 ] [ Fact 05 ]

  Fact 01 spans 2 rows in column 1.
  Facts 02–05 fill a 2×2 block in columns 2–3.
*/
.team-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.team-fact-card {
  background: var(--white);
  padding: 40px 36px;
}

.team-fact-card--featured {
  grid-row: 1 / 3;       /* spans both rows */
  grid-column: 1 / 2;
  background: var(--navy-dark);
  color: var(--white);
}

.team-fact-num {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.team-fact-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.3vw, 19px);
  letter-spacing: 0.12em;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.3;
}

.team-fact-card p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.9;
  color: var(--text-mid);
}

/* Featured card overrides — double class for specificity over general rules above */
.team-fact-card.team-fact-card--featured .team-fact-num {
  color: var(--gold-light);
}

.team-fact-card.team-fact-card--featured .team-fact-title {
  color: var(--white);
}

.team-fact-card.team-fact-card--featured p {
  color: rgba(255, 255, 255, 0.82);
}


/* ── Team CTA Band ───────────────────────────────────────────── */

.team-cta-band {
  background: var(--white);
  text-align: center;
  padding: 80px var(--gutter);
  border-top: 1px solid var(--cream-dark);
}

.team-cta-band p {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 19px);
  font-style: italic;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}


/* ── Mobile nav parent/sub styling ──────────────────────────── */

.mobile-nav-parent {
  font-weight: 700 !important;
  cursor: default;
  opacity: 1 !important;
  color: rgba(255,255,255,0.6) !important; /* dimmed to signal it's not clickable */
  font-size: 11px !important;
  letter-spacing: 0.4em !important;
  margin-top: 8px;
}

.mobile-nav-sub {
  font-size: 13px !important;
  letter-spacing: 0.28em !important;
  padding-left: 28px !important;
  opacity: 0.75;
}

.mobile-nav-sub::before {
  content: '—';
  margin-right: 10px;
  opacity: 0.5;
}


/* ── Meet the Team Responsive ────────────────────────────────── */

@media (max-width: 860px) {

  .team-member-inner,
  .team-member--reverse .team-member-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* On mobile, photo always comes first visually */
  .team-member--reverse .team-member-photo {
    order: -1;
  }

  .team-member-photo {
    position: static;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .team-member-img-wrap img {
    aspect-ratio: 4 / 3;
  }

  .ornament-rule--left {
    justify-content: center;
  }

  .ornament-rule--left::before {
    display: block;
  }

  .team-member-name {
    text-align: center;
  }

  .team-member-bio .label {
    text-align: center;
    display: block;
  }

  /* Photo ribbon: 2×2 on tablet — reset explicit placement, use auto flow */
  .team-photo-ribbon {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    height: auto;
    width: 100%;
  }

  .team-ribbon-img img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .team-ribbon-img--portrait img {
    aspect-ratio: 3 / 4;
  }

  /* Family section: stack */
  .team-family-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-family-text .ornament-rule--left {
    justify-content: center;
  }

  .team-family-text .ornament-rule--left::before {
    display: block;
  }

  .team-family-title {
    text-align: center;
  }

  .team-family-text .label {
    text-align: center;
  }

  /* Facts: stack all to single column */
  .team-facts-grid {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }

  .team-fact-card--featured {
    grid-row: unset;
    grid-column: unset;
  }

}

@media (max-width: 560px) {

  /* Photo ribbon: single column on phones */
  .team-photo-ribbon {
    grid-template-columns: 1fr;
  }

  .team-ribbon-img img {
    aspect-ratio: 4 / 3;
  }

  .team-ribbon-img--portrait img {
    aspect-ratio: 4 / 3; /* normalize to landscape on phone — they're decorative */
  }

}


/* ══════════════════════════════════════════════════════════════
   GALLERY SINGLE — intro / meta
   ══════════════════════════════════════════════════════════════ */

.gallery-intro {
  background: var(--white);
  text-align: center;
  padding: 72px var(--gutter) 64px;
}

.gallery-intro-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #555;
  display: block;
  margin-bottom: 32px;
}

.gallery-intro-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy-deeper);
  margin-bottom: 36px;
  line-height: 1.3;
}

.gallery-intro-desc {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.85;
  color: #333;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.gallery-intro-meta {
  display: flex;
  justify-content: center;
  gap: 72px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(58, 80, 107, 0.12);
}

.gallery-intro-meta-item {
  text-align: center;
}

.gallery-intro-meta-label {
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.gallery-intro-meta-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--navy);
}


/* ══════════════════════════════════════════════════════════════
   GALLERY SINGLE — masonry photo grid
   ══════════════════════════════════════════════════════════════ */

.gallery-masonry-section {
  background: var(--white);
  padding: 0 var(--gutter) var(--section-v);
}

.gallery-masonry-wrap {
  max-width: var(--container);
  margin: 0 auto;
  columns: 3;
  column-gap: 32px;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
  display: block;
  /* Prevent column splits mid-image */
  page-break-inside: avoid;
}

.gallery-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s var(--ease);
}

.gallery-masonry-item:hover img {
  transform: scale(1.04);
}

/* Photographer credit overlay — appears on hover */
.gallery-photo-credit {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(20, 30, 45, 0.62));
  padding: 28px 14px 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
}

.gallery-masonry-item:hover .gallery-photo-credit {
  opacity: 1;
  transform: translateY(0);
}

/* Empty state */
.gallery-masonry-empty {
  text-align: center;
  padding: var(--section-v) var(--gutter);
}

.gallery-masonry-empty p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════════════════════
   GALLERY SINGLE — vendor credits
   ══════════════════════════════════════════════════════════════ */

.gallery-vendors {
  padding: 0 var(--gutter) 64px;
}

.gallery-vendors-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-vendors-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}

.gallery-vendors-rule {
  flex: 1;
  height: 1px;
  background: rgba(58, 80, 107, 0.18);
}

.gallery-vendors-label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.gallery-vendors-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(58, 80, 107, 0.18);
  padding: 40px 56px 48px;
  margin-top: -1px;
}

.gallery-vendors-col {
  text-align: center;
}

.gallery-vendor-item {
  padding: 0;
  margin: 0;
}

.gallery-vendor-line {
  font-family: var(--font-serif);
  font-size: 15px;
  color: #333;
  line-height: 1.55;
  display: block;
}

@media (max-width: 640px) {
  .gallery-vendors-box {
    grid-template-columns: 1fr;
    padding: 28px 24px;
  }
}

/* ══════════════════════════════════════════════════════════════
   GALLERY SINGLE — "View More Galleries" section
   ══════════════════════════════════════════════════════════════ */

.gallery-more {
  text-align: center;
}

.gallery-more-heading {
  font-family: var(--font-script);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--navy);
  display: block;
  margin-bottom: 52px;
}

.gallery-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}


/* ══════════════════════════════════════════════════════════════
   GALLERIES — responsive
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .gallery-masonry-wrap { columns: 2; }
}

@media (max-width: 768px) {
  .galleries-page-header { padding-top: 100px; }

  .galleries-grid { grid-template-columns: 1fr; gap: 48px; }

  .gallery-hero { height: 38vw; min-height: 220px; }

  .gallery-intro { padding: 56px var(--gutter) 48px; }

  .gallery-intro-meta { gap: 36px; flex-wrap: wrap; }

  .gallery-masonry-wrap { columns: 2; }

  .gallery-more-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .galleries-page-header { padding-top: 88px; }

  .gallery-masonry-wrap { columns: 2; }

  .gallery-intro-meta { flex-direction: column; gap: 24px; align-items: center; }
}


/* ══════════════════════════════════════════════════════════════
   CONTACT / INQUIRE PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Page header ─────────────────────────────────────────────── */

.contact-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
  position: relative;
  z-index: 1;
}

.contact-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.contact-page-intro {
  max-width: 680px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
}


/* ── Contact info strip ──────────────────────────────────────── */

.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream-dark);
  border-top: 1px solid rgba(58,80,107,0.1);
  border-bottom: 1px solid rgba(58,80,107,0.1);
  position: relative;
  z-index: 1;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  text-decoration: none;
  color: inherit;
  border-right: 1px solid rgba(58,80,107,0.1);
  transition: background var(--dur) var(--ease);
}

.contact-info-item:last-child { border-right: none; }

a.contact-info-item:hover { background: var(--cream); }

.contact-info-label {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.contact-info-value {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
}


/* ── Form section ────────────────────────────────────────────── */

.contact-form-section {
  background: var(--white);
  padding: 80px var(--gutter) 100px;
  position: relative;
  z-index: 1;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

/* ── Form rows & fields ──────────────────────────────────────── */

.form-row {
  margin-bottom: 32px;
}

.form-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label,
.form-fieldset legend {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: block;
}

.form-fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-required {
  color: var(--navy);
  font-style: normal;
}

.form-note {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--text-muted);
  font-family: var(--font-serif);
}

.form-help {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  font-style: italic;
}

/* Split name input — looks like one box, two fields inside */
.form-split-input {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(58,80,107,0.3);
  transition: border-color var(--dur) var(--ease);
}

.form-split-input:focus-within {
  border-color: var(--navy);
}

.form-split-input input {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text);
  background: transparent;
  border: none !important;
  padding: 10px 0;
  outline: none;
  min-width: 0;
}

.form-split-input input::placeholder {
  color: var(--text-muted);
  font-style: italic;
}

.form-split-divider {
  width: 1px;
  height: 18px;
  background: rgba(58,80,107,0.25);
  flex-shrink: 0;
  margin: 0 16px;
}

.form-split-input--narrow {
  flex: 0 0 120px;
}


/* Inputs, selects, textarea */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(58,80,107,0.3);
  padding: 10px 0;
  width: 100%;
  outline: none;
  transition: border-color var(--dur) var(--ease);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.contact-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  border: 1px solid rgba(58,80,107,0.2);
  padding: 14px 16px;
  line-height: 1.7;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--navy);
}

/* Radio & checkbox groups */
.form-radio-group,
.form-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 6px;
}

.form-radio-group--stacked {
  flex-direction: column;
  gap: 14px;
}

.form-checkbox-group--months {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 16px;
}

.form-radio,
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.5;
}

.form-radio input,
.form-checkbox input {
  margin-top: 2px;
  accent-color: var(--navy);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Submit */
.form-submit {
  margin-top: 48px;
  text-align: center;
}

.contact-form-note {
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  text-align: center;
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}


/* ── FAQ accordion ───────────────────────────────────────────── */

.contact-faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.contact-faq-header h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--navy);
  margin-top: 8px;
}

.faq-accordion {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(58,80,107,0.15);
}

.faq-item:first-child {
  border-top: 1px solid rgba(58,80,107,0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--dur);
}

.faq-question:hover { color: var(--navy); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

/* + icon */
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  border-radius: 1px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.faq-icon::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* When open — rotate to × */
.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  padding: 0 0 28px;
}

.faq-answer p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1em;
}

.faq-answer p:last-child { margin-bottom: 0; }


/* ── Testimonials ────────────────────────────────────────────── */

.contact-testimonials { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
  max-width: 980px;
  margin: 0 auto;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  font-family: var(--font-serif);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
}

.testimonial-card cite {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-style: normal;
}


/* ── Contact responsive ──────────────────────────────────────── */

@media (max-width: 768px) {
  .contact-page-header { padding-top: 100px; }

  .contact-info-strip { grid-template-columns: 1fr; }
  .contact-info-item {
    border-right: none;
    border-bottom: 1px solid rgba(58,80,107,0.1);
    padding: 32px 24px;
  }
  .contact-info-item:last-child { border-bottom: none; }

  .form-row--2col { grid-template-columns: 1fr; gap: 28px; }

  /* Boxed inputs on mobile — underline style too subtle on small screens */
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select {
    background: var(--cream);
    border: 1px solid rgba(58,80,107,0.22);
    border-radius: 2px;
    padding: 14px 16px;
  }

  .contact-form input:focus,
  .contact-form select:focus {
    border-color: var(--navy);
    background: var(--white);
  }

  /* Split name box on mobile */
  .form-split-input {
    background: var(--cream);
    border: 1px solid rgba(58,80,107,0.22) !important;
    border-radius: 2px;
    padding: 0 16px;
  }

  .form-split-input input {
    padding: 14px 0;
    background: transparent !important;
    border: none !important;
  }

  .form-split-input--narrow {
    flex: 0 0 100px;
  }

  .form-checkbox-group--months { grid-template-columns: repeat(3, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .form-checkbox-group--months { grid-template-columns: repeat(2, 1fr); }
}


/* ══════════════════════════════════════════════════════════════
   SPACES PAGE — /spaces
   ══════════════════════════════════════════════════════════════ */

/* ── Page header ─────────────────────────────────────────────── */

.spaces-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
  position: relative;
  z-index: 1;
}

.spaces-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.spaces-page-intro {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
}


/* ── Individual space section ────────────────────────────────── */

.space-section {
  background: var(--white);
  padding: 80px var(--gutter) 100px;
  border-top: 1px solid rgba(58, 80, 107, 0.1);
  position: relative;
  z-index: 1;
}

.space-section--cream {
  background: var(--cream);
}

.space-inner {
  max-width: var(--container);
  margin: 0 auto;
}

/* Section title */
.space-heading {
  text-align: center;
  margin-bottom: 36px;
}

.space-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 36px);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
  font-weight: 400;
}


/* ── 3-photo strip ───────────────────────────────────────────── */

.space-photos {
  display: grid;
  /* landscape | portrait (narrower, same height) | landscape */
  grid-template-columns: 2fr 1.5fr 2fr;
  gap: 8px;
  height: clamp(300px, 36vw, 520px);
  margin-bottom: 8px;
}

.space-photo {
  overflow: hidden;
  background: var(--cream-dark);
}

.space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.space-photo:hover img {
  transform: scale(1.03);
}


/* ── Bottom: video (left) + text (right) ─────────────────────── */

.space-bottom {
  display: grid;
  grid-template-columns: 3.85fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Video player — thumbnail + play button, click to play */
.space-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--cream-dark);
}

.space-video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.space-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.space-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.space-video-play svg {
  width: 18px;
  height: 18px;
  margin-left: 3px; /* optical center for triangle */
}

.space-video-poster:hover .space-video-play {
  background: rgba(0, 0, 0, 0.32);
  border-color: rgba(255, 255, 255, 1);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Once playing — hide poster, show video */
.space-video--playing .space-video-poster {
  display: none;
}

.space-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.space-video--playing video {
  display: block;
}

.space-text {
  padding-bottom: 4px;
}

.space-text p {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 1.1em;
  text-align: left;
}

/* First paragraph acts as a subheading — bold and centered */
.space-text p:first-child {
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: var(--text);
  margin-bottom: 1.4em;
}

.space-text p:last-child {
  margin-bottom: 0;
  font-size: 15.5px;
}


/* ── Bottom CTA ──────────────────────────────────────────────── */

.spaces-cta {
  background: var(--cream);
  text-align: center;
  padding: 100px var(--gutter);
  border-top: 1px solid rgba(58, 80, 107, 0.1);
  position: relative;
  z-index: 1;
}

.spaces-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--navy);
  margin: 12px 0 18px;
  line-height: 1.2;
}

.spaces-cta p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
}


/* ── Spaces responsive ───────────────────────────────────────── */

@media (max-width: 1024px) {
  .space-bottom {
    grid-template-columns: 3fr 2fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .spaces-page-header {
    padding-top: 100px;
  }

  .space-section {
    padding: 64px var(--gutter) 80px;
  }

  /* Stack photos: portrait spans full width on top, two landscape below */
  .space-photos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    height: auto;
  }

  .space-photo--portrait {
    grid-column: 1 / -1;
    height: 280px;
  }

  .space-photo--landscape {
    height: 200px;
  }

  /* Stack video + text vertically */
  .space-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .space-video {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 480px) {
  /* Single column photos on small screens */
  .space-photos {
    grid-template-columns: 1fr;
    height: auto;
  }

  .space-photo--portrait {
    grid-column: 1;
    height: 320px;
  }

  .space-photo--landscape {
    height: 240px;
  }
}


/* ══════════════════════════════════════════════════════════════
   SPACES — LAYOUT A (EDITORIAL SIDEBAR)
   Left col: Title + rule + Subheader + Body (sticky)
   Right col: Portrait → Landscape×2 → Video
   ══════════════════════════════════════════════════════════════ */

.la-section {
  background: var(--white);
  padding: 80px var(--gutter) 100px;
  border-top: 1px solid rgba(58,80,107,0.1);
}
.la-section--cream { background: var(--cream); }

.la-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: start;
}

.la-sidebar {
  position: sticky;
  top: 96px;   /* clears the fixed nav (~72px) + 24px breathing room */
  padding-top: 0;
}

.la-sidebar .la-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.6vw, 28px);
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.45;
  margin: 0 0 28px;
}

.la-sidebar .la-rule {
  width: 48px;
  height: 1px;
  background: var(--navy);
  opacity: 0.35;
  margin: 0 0 28px;
}

.la-sidebar .la-sub {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 20px;
}

.la-sidebar .la-body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-mid);
}

.la-visuals {
  display: grid;
  gap: 8px;
}

.la-portrait {
  overflow: hidden;
  background: var(--cream-dark);
  height: clamp(280px, 32vw, 480px);
}
.la-portrait img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.la-portrait:hover img { transform: scale(1.03); }

.la-landscape-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: clamp(160px, 16vw, 240px);
}
.la-landscape {
  overflow: hidden;
  background: var(--cream-dark);
}
.la-landscape img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.la-landscape:hover img { transform: scale(1.03); }

.la-video {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--cream-dark);
}
.la-video-poster {
  position: absolute; inset: 0; z-index: 2;
}
.la-video-poster img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.la-video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.la-video-play svg { width: 18px; height: 18px; margin-left: 3px; }
.la-video-poster:hover .la-video-play {
  background: rgba(0,0,0,0.32);
  border-color: rgba(255,255,255,1);
  transform: translate(-50%, -50%) scale(1.08);
}
.la-video--playing .la-video-poster { display: none; }
.la-video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: none;
}
.la-video--playing video { display: block; }

@media (max-width: 900px) {
  .la-inner { grid-template-columns: 1fr; gap: 40px; }
  .la-sidebar { position: static; }
}
@media (max-width: 600px) {
  .la-landscape-row { height: auto; }
  .la-landscape { height: 200px; }
}


/* ══════════════════════════════════════════════════════════════
   SPACES — LAYOUT B (STACKED PANORAMIC)
   Full-width landscape banner → Title centered →
   3-col: landscape | portrait (taller) | video →
   Subheader + Body centered below
   ══════════════════════════════════════════════════════════════ */

.lb-section {
  background: var(--white);
  border-top: 1px solid rgba(58,80,107,0.1);
  padding-bottom: 100px;
}
.lb-section--cream { background: var(--cream); }

.lb-banner {
  overflow: hidden;
  height: clamp(220px, 28vw, 440px);
}
.lb-banner img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 1s var(--ease);
}
.lb-banner:hover img { transform: scale(1.02); }

.lb-title-block {
  text-align: center;
  padding: 48px var(--gutter) 36px;
}
.lb-title-block h2 {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.8vw, 30px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}
.lb-title-rule {
  width: 56px; height: 1px;
  background: var(--navy);
  opacity: 0.3;
  margin: 20px auto 0;
}

.lb-trio {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 8px;
  padding: 0 var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.lb-trio-item {
  overflow: hidden;
  background: var(--cream-dark);
}
.lb-trio-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s var(--ease);
}
.lb-trio-item:hover img { transform: scale(1.03); }

.lb-portrait-cell {
  height: clamp(300px, 36vw, 560px);
}
.lb-landscape-cell {
  height: clamp(220px, 26vw, 400px);
  align-self: center;
}
.lb-video-cell {
  height: clamp(220px, 26vw, 400px);
  align-self: center;
  position: relative;
}

.lb-video-cell .lb-vp {
  position: absolute; inset: 0; z-index: 2;
}
.lb-video-cell .lb-vp img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.lb-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lb-play svg { width: 16px; height: 16px; margin-left: 3px; }
.lb-video-cell .lb-vp:hover .lb-play {
  background: rgba(0,0,0,0.32);
  transform: translate(-50%, -50%) scale(1.08);
}
.lb-video-cell--playing .lb-vp { display: none; }
.lb-video-cell video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: none;
}
.lb-video-cell--playing video { display: block; }

.lb-text-block {
  max-width: 760px;
  margin: 52px auto 0;
  padding: 0 var(--gutter);
  text-align: center;
}
.lb-text-block .lb-sub {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 20px;
}
.lb-text-block .lb-body {
  font-family: var(--font-serif);
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--text-mid);
  text-align: left;
}

@media (max-width: 900px) {
  .lb-trio {
    grid-template-columns: 1fr 1fr;
  }
  .lb-portrait-cell {
    grid-column: 1 / -1;
    height: 300px;
  }
  .lb-landscape-cell,
  .lb-video-cell { height: 220px; }
}
@media (max-width: 600px) {
  .lb-trio { grid-template-columns: 1fr; }
  .lb-portrait-cell { grid-column: 1; height: 280px; }
}


/* ══════════════════════════════════════════════════════════════
   ARTISAN CRAFTSMANSHIP PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.artisan-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
}

.artisan-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 18px;
}

.artisan-page-subtitle {
  font-family: var(--font-script);
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--text-mid);
  display: block;
  margin-bottom: 24px;
  line-height: 1.3;
}

.artisan-page-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 660px;
  margin: 0 auto;
}


/* ── Content Sections ────────────────────────────────────────── */

.artisan-section-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

.artisan-section--reverse .artisan-section-inner {
  grid-template-columns: 1fr 1.1fr;
}

/* ── Stacked Offset Overlays ─────────────────────────────────── */

.artisan-overlay {
  position: relative;
  height: clamp(560px, 62vw, 920px);
}

.artisan-overlay img {
  position: absolute;
  object-fit: cover;
  object-position: center;
  box-shadow: 6px 10px 36px rgba(0,0,0,0.13);
}

/* 3-photo overlay */
.artisan-overlay--3 .ao-1 {
  top: 0; left: 0;
  width: 74%; height: 44%;
  z-index: 1;
}
.artisan-overlay--3 .ao-2 {
  top: 42%; right: 0;
  width: 70%; height: 41%;
  z-index: 4;
  box-shadow: -4px 10px 36px rgba(0,0,0,0.13);
}
.artisan-overlay--3 .ao-3 {
  bottom: 0; left: 0;
  width: 68%; height: 44%;
  z-index: 3;
}

/* 4-photo overlay — vertical cascade, alternating left/right */
.artisan-overlay--4 {
  height: clamp(640px, 72vw, 1060px);
}

.artisan-overlay--4 .ao-1 {
  top: 0; left: 0;
  width: 72%; height: 30%;
  z-index: 1;
}
.artisan-overlay--4 .ao-2 {
  top: 24%; right: 0;
  width: 68%; height: 29%;
  z-index: 2;
  box-shadow: -4px 10px 36px rgba(0,0,0,0.13);
}
.artisan-overlay--4 .ao-3 {
  top: 48%; left: 4%;
  width: 70%; height: 30%;
  z-index: 3;
}
.artisan-overlay--4 .ao-4 {
  top: 70%; right: 0;
  width: 67%; height: 30%;
  z-index: 4;
  box-shadow: -4px 10px 36px rgba(0,0,0,0.13);
}

/* Mirror cascade direction for reversed sections (photos on right) */
.artisan-section--reverse .artisan-overlay--3 .ao-1 { left: auto; right: 0; }
.artisan-section--reverse .artisan-overlay--3 .ao-2 { right: auto; left: 0; box-shadow: 4px 10px 36px rgba(0,0,0,0.13); }
.artisan-section--reverse .artisan-overlay--3 .ao-3 { left: auto; right: 8%; }

.artisan-section--reverse .artisan-overlay--4 .ao-1 { left: auto; right: 0; }
.artisan-section--reverse .artisan-overlay--4 .ao-2 { right: auto; left: 0; box-shadow: 4px 10px 36px rgba(0,0,0,0.13); }
.artisan-section--reverse .artisan-overlay--4 .ao-3 { left: auto; right: 5%; }
.artisan-section--reverse .artisan-overlay--4 .ao-4 { right: auto; left: 0; box-shadow: 4px 10px 36px rgba(0,0,0,0.13); }

/* Responsive */
@media (max-width: 900px) {
  .artisan-overlay { height: 420px; }
}
@media (max-width: 560px) {
  .artisan-overlay {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .artisan-overlay img {
    position: static;
    width: 100% !important;
    height: 220px;
    box-shadow: none;
  }
}


/* ── Photo Grids ─────────────────────────────────────────────── */

.artisan-photos {
  display: grid;
  gap: 4px;
  height: clamp(400px, 46vw, 640px);
}

/* 3 landscape: photo 1 full width top, 2+3 side-by-side below */
.artisan-photos--top-wide {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.15fr 1fr;
}
.artisan-photos--top-wide .artisan-photo:first-child {
  grid-column: 1 / -1;
}

/* 2×2 grid */
.artisan-photos--2x2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* Portrait left spanning full height, two landscapes stacked right */
.artisan-photos--portrait-side {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.artisan-photos--portrait-side .artisan-photo--portrait {
  grid-row: 1 / 3;
}

.artisan-photo {
  overflow: hidden;
}

.artisan-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.artisan-photo:hover img {
  transform: scale(1.03);
}

/* Large decorative display heading */
.artisan-section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 64px);
  letter-spacing: 0.08em;
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.artisan-section-lead {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.artisan-section-content p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.artisan-section-content p:last-child {
  margin-bottom: 0;
}


/* ── Closing Statement ───────────────────────────────────────── */

.artisan-closing {
  text-align: center;
}

.artisan-closing .ornament-rule {
  margin-bottom: 32px;
}

.artisan-closing p {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.4;
}

.artisan-closing span {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  max-width: 700px;
  margin: 0 auto;
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 900px) {

  .artisan-section-inner,
  .artisan-section--reverse .artisan-section-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Photos always on top when stacked */
  .artisan-section--reverse .artisan-photos {
    order: -1;
  }

  /* Drop fixed height — let aspect-ratio drive each cell instead */
  .artisan-photos {
    height: auto;
  }

  .artisan-photo img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  /* Portrait photo in furniture section: keep taller */
  .artisan-photo--portrait img {
    aspect-ratio: 2 / 3;
  }

  .artisan-page-header {
    padding-top: 100px;
  }

}

@media (max-width: 560px) {

  .artisan-photos--2x2,
  .artisan-photos--top-wide,
  .artisan-photos--portrait-side {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }

  /* Reset all special placements on small screens */
  .artisan-photos--top-wide .artisan-photo:first-child,
  .artisan-photos--portrait-side .artisan-photo--portrait {
    grid-column: unset;
    grid-row: unset;
  }

  .artisan-photo img,
  .artisan-photo--portrait img {
    aspect-ratio: 16 / 9;
  }

}


/* ══════════════════════════════════════════════════════════════
   KIND WORDS PAGE — /kind-words
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.kw-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
  position: relative;
  z-index: 1;
}

.kw-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.kw-page-intro {
  max-width: 660px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
}


/* ── Section Intro Bands ─────────────────────────────────────── */

.kw-section-intro {
  text-align: center;
  padding: 72px var(--gutter);
}

.kw-section-intro--cream {
  background: var(--cream);
}

.kw-section-intro--navy {
  background: var(--navy);
}

.kw-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 50px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 20px 0 16px;
}

.kw-section-title--light {
  color: var(--white);
}

.kw-section-desc {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 18px);
  font-style: italic;
  line-height: 1.85;
  color: var(--text-mid);
}

.kw-section-desc--light {
  color: rgba(255, 255, 255, 0.72);
}

/* Light ornament rule (white bars, white monogram) */
.kw-ornament-light::before,
.kw-ornament-light::after {
  background: rgba(255, 255, 255, 0.35);
}

.kw-ornament-light {
  color: rgba(255, 255, 255, 0.6);
}


/* ── Individual Testimonial ──────────────────────────────────── */

.kw-testimonial {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 520px;
  position: relative;
}

.kw-testimonial--flip {
  grid-template-columns: 7fr 5fr;
}

/* On flip cards the photo goes to the right */
.kw-testimonial--flip .kw-testimonial-photo {
  order: 2;
}

.kw-testimonial--flip .kw-testimonial-content {
  order: 1;
}

/* Photo column */
.kw-testimonial-photo {
  overflow: hidden;
  position: relative;
}

.kw-testimonial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.9s var(--ease);
}

.kw-testimonial:hover .kw-testimonial-photo img {
  transform: scale(1.04);
}

/* Content column */
.kw-testimonial-content {
  padding: 72px clamp(36px, 5vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  position: relative;
  z-index: 1;
}

/* Alternating cream background on even entries */
.kw-testimonials .kw-testimonial:nth-child(even) .kw-testimonial-content {
  background: var(--cream);
}

/* Names heading */
.kw-names {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.4vw, 34px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Styled ampersand */
.kw-amp {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0;
  font-size: 0.8em;
  color: var(--gold);
  margin: 0 6px;
}

/* Parent attribution line */
.kw-parents-note {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Blockquote */
.kw-quote {
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}

.kw-quote::before {
  content: '\201C';
  font-family: Georgia, var(--font-serif);
  font-size: 100px;
  line-height: 0.55;
  color: var(--gold);
  opacity: 0.35;
  display: block;
  margin-bottom: 16px;
  pointer-events: none;
}

.kw-quote p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.95;
  color: var(--text-mid);
  margin: 0;
}


/* ── Closing CTA ─────────────────────────────────────────────── */

.kw-cta {
  background: var(--navy);
  text-align: center;
  padding: 100px var(--gutter);
}

.kw-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 52px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 24px 0 16px;
}

.kw-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.6;
}

.kw-cta-btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 18px 52px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.kw-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 1000px) {
  .kw-testimonial,
  .kw-testimonial--flip {
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
}

@media (max-width: 768px) {

  .kw-page-header { padding-top: 100px; }

  /* Stack to single column */
  .kw-testimonial,
  .kw-testimonial--flip {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  /* Photo always on top when stacked */
  .kw-testimonial--flip .kw-testimonial-photo { order: -1; }
  .kw-testimonial--flip .kw-testimonial-content { order: unset; }

  .kw-testimonial-photo {
    aspect-ratio: 4 / 3;
  }

  .kw-testimonial-content {
    padding: 52px var(--gutter);
  }

  .kw-section-intro { padding: 56px var(--gutter); }

  .kw-cta { padding: 72px var(--gutter); }
}

@media (max-width: 560px) {

  .kw-page-header { padding-top: 88px; }

  .kw-testimonial-content {
    padding: 44px 24px;
  }

  .kw-quote::before {
    font-size: 72px;
  }

  .kw-section-intro { padding: 48px 24px; }

  .kw-cta { padding: 60px 24px; }
}


/* ══════════════════════════════════════════════════════════════
   TAB SWITCHER — reusable component (.sw-)
   Used on: Kind Words (Couples/Parents), Galleries (Seasons)
   ══════════════════════════════════════════════════════════════ */

.sw-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  position: relative;
}

.sw-tabs::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(58, 80, 107, 0.18);
}

.sw-tab {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 14px 36px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color 0.2s;
}

.sw-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.sw-tab.active {
  color: var(--navy);
}

.sw-tab.active::after {
  transform: scaleX(1);
}

.sw-tab:hover:not(.active) {
  color: var(--navy);
}

.sw-panel {
  display: none;
}

.sw-panel.active {
  display: block;
}


/* ══════════════════════════════════════════════════════════════
   KIND WORDS PAGE — /kind-words
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.kw-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
  position: relative;
  z-index: 1;
}

.kw-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.kw-page-intro {
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.85;
}

/* ── Main content area ───────────────────────────────────────── */

.kw-main {
  background: var(--white);
  padding: 80px var(--gutter) 100px;
}

.kw-main .container {
  max-width: 1100px;
}

/* ── Card grid ───────────────────────────────────────────────── */

.kw-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ── Individual card ─────────────────────────────────────────── */

.kw-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--cream);
  min-height: 170px;
  overflow: hidden;
}

/* Photo */
.kw-card-photo {
  overflow: hidden;
  position: relative;
}

.kw-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s var(--ease);
}

.kw-card:hover .kw-card-photo img {
  transform: scale(1.04);
}

/* Card body */
.kw-card-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
}

/* Parent attribution */
.kw-parents-note {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Names */
.kw-names {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}

.kw-amp {
  font-family: var(--font-serif);
  font-style: italic;
  letter-spacing: 0;
  font-size: 0.8em;
  color: var(--gold);
  margin: 0 4px;
}

/* Quote */
.kw-quote::before {
  content: '\201C';
  font-family: Georgia, var(--font-serif);
  font-size: 44px;
  line-height: 0.65;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: 6px;
}

.kw-quote-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.85;
  color: var(--text-mid);
  overflow: hidden;
  max-height: 5.55em;
  transition: max-height 0.45s ease;
  margin: 0;
}

/* Read more toggle */
.kw-toggle {
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: none;
  border: none;
  padding: 10px 0 0;
  cursor: pointer;
  display: block;
  text-align: left;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.kw-toggle:hover {
  opacity: 1;
}


/* ── CTA Band ────────────────────────────────────────────────── */

.kw-cta {
  background: var(--navy);
  text-align: center;
  padding: 100px var(--gutter);
}

.kw-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 3.8vw, 52px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin: 24px 0 16px;
}

.kw-cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.6;
}

.kw-cta-btn {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 18px 52px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.kw-cta-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  .kw-grid {
    grid-template-columns: 1fr;
  }
  .kw-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 768px) {
  .kw-page-header { padding-top: 100px; }
  .kw-main { padding: 60px var(--gutter) 72px; }
  .sw-tab { padding: 12px 24px; letter-spacing: 0.16em; font-size: 12px; }
  .sw-tabs { margin-bottom: 36px; }
  .kw-cta { padding: 72px var(--gutter); }
}

@media (max-width: 560px) {
  .kw-page-header { padding-top: 88px; }
  .kw-card { grid-template-columns: 110px 1fr; }
  .kw-card-body { padding: 16px 14px 14px; }
  .kw-main { padding: 48px 24px 64px; }
  .sw-tab { padding: 10px 16px; }
  .kw-cta { padding: 56px 24px; }
}

/* Light ornament rule variant — for dark/navy backgrounds */
.kw-ornament-light::before,
.kw-ornament-light::after {
  background: rgba(255, 255, 255, 0.3);
}

.kw-ornament-light {
  color: rgba(255, 255, 255, 0.55);
}


/* old modal block removed — stacked version is defined above */


/* ══════════════════════════════════════════════════════════════
   HISTORY PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.hist-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
}

.hist-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.hist-page-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto;
}


/* ── Numbered entry sections ─────────────────────────────────── */

.hist-entry-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr; /* photo left (col 1 wider) */
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}

/* Reverse: text col 1, photo col 2 — flip column widths too */
.hist-entry--reverse .hist-entry-inner {
  grid-template-columns: 1fr 1.5fr;
}

.hist-entry--reverse .hist-entry-text  { order: -1; }
.hist-entry--reverse .hist-entry-img   { order:  1; }

.hist-entry-img {
  overflow: hidden;
  background: var(--cream-dark);
}

.hist-entry-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.hist-entry-img:hover img {
  transform: scale(1.03);
}

.hist-entry-text {
  /* no extra wrapper needed — grid child */
}

.hist-entry-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 14px;
}

.hist-entry-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.2vw, 32px);
  letter-spacing: 0.1em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.hist-entry-text p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.hist-entry-text p:last-child {
  margin-bottom: 0;
}


/* ── What's in a name? ───────────────────────────────────────── */

.hist-name-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}

/* 3-image grid: portrait left (spans 2 rows), two landscapes stacked right */
.hist-name-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
}

.hist-name-portrait {
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
  background: var(--cream-dark);
}

.hist-name-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.hist-name-portrait:hover img {
  transform: scale(1.03);
}

.hist-name-landscape {
  grid-column: 2;
  overflow: hidden;
  background: var(--cream-dark);
}

.hist-name-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.hist-name-landscape:hover img {
  transform: scale(1.03);
}

.hist-name-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 28px;
}

.hist-name-opener {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: italic;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 20px;
}

.hist-name-text p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.hist-name-text p:last-child {
  margin-bottom: 0;
}


/* ── Schoharie Attractions ───────────────────────────────────── */

.hist-attractions-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
}

.hist-attractions-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hist-attractions-text > p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.hist-attractions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hist-attractions-list li {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  color: var(--text-mid);
  padding: 14px 0;
  border-bottom: 1px solid rgba(58, 80, 107, 0.12);
}

.hist-attractions-list li:first-child {
  border-top: 1px solid rgba(58, 80, 107, 0.12);
}

.hist-attractions-list li strong {
  color: var(--navy);
  font-weight: 700;
}

/* 2-col × 3-row photo grid */
.hist-attractions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 6px;
}

.hist-attr-item {
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
}

.hist-attr-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease);
}

.hist-attr-item:hover img {
  transform: scale(1.05);
}

/* Hover caption overlay */
.hist-attr-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 12px 12px;
  background: linear-gradient(transparent, rgba(18, 28, 42, 0.82));
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  pointer-events: none;
}

.hist-attr-item:hover .hist-attr-caption {
  opacity: 1;
  transform: translateY(0);
}


/* ── CTA Band ────────────────────────────────────────────────── */

.hist-cta-band {
  background: var(--white);
  text-align: center;
  padding: 80px var(--gutter);
  border-top: 1px solid var(--cream-dark);
}

.hist-cta-band p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}


/* ── History Page Responsive ─────────────────────────────────── */

@media (max-width: 900px) {

  .hist-entry-inner,
  .hist-name-inner,
  .hist-attractions-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* On mobile, image always renders first visually */
  .hist-entry--reverse .hist-entry-text  { order: 1; }
  .hist-entry--reverse .hist-entry-img   { order: -1; }

  .hist-entry-img img {
    aspect-ratio: 16 / 9;
    max-height: 380px;
  }

  /* Name grid: stack portrait on top, landscapes side by side below */
  .hist-name-imgs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hist-name-portrait {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .hist-name-portrait img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  .hist-name-landscape {
    grid-column: auto;
    grid-row: 2;
  }

  .hist-name-landscape img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .hist-attractions-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }

  .hist-name-title,
  .hist-attractions-title {
    text-align: center;
  }

  .hist-name-text .ornament-rule--left,
  .hist-attractions-text .ornament-rule--left {
    justify-content: center;
  }

  .hist-name-text .ornament-rule--left::before,
  .hist-attractions-text .ornament-rule--left::before {
    display: block;
  }

  .hist-name-text .label,
  .hist-attractions-text .label {
    text-align: center;
    display: block;
  }

}

@media (max-width: 600px) {

  .hist-page-header  { padding-top: 100px; }
  .hist-cta-band     { padding: 60px 24px; }

  .hist-entry-img img {
    aspect-ratio: 4 / 3;
    max-height: unset;
  }

}


/* ══════════════════════════════════════════════════════════════
   LODGING & TRANSPORTATION PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.lodge-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
}

.lodge-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.lodge-page-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}


/* ── Intro block ─────────────────────────────────────────────── */

.lodge-intro-inner {
  max-width: 780px;
}

.lodge-intro-inner p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.lodge-intro-inner p:last-child {
  margin-bottom: 0;
}


/* ── Section layout ──────────────────────────────────────────── */

.lodge-section-inner {
  max-width: 960px;
}

.lodge-section-header {
  text-align: center;
  margin-bottom: 52px;
}

.lodge-section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: 0.1em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.lodge-section-context {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ── Property grid ───────────────────────────────────────────── */

.lodge-property-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.lodge-property-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}


/* ── Property card ───────────────────────────────────────────── */

.lodge-property {
  background: var(--white);
  padding: 32px 36px;
}

.section--cream .lodge-property {
  background: var(--cream);
}

/* Full-width variant for private rentals */
.lodge-property--full {
  grid-column: 1 / -1;
  border-bottom: 1px solid rgba(58, 80, 107, 0.12);
  padding: 28px 0;
  background: transparent !important;
}

.lodge-property--full:first-child { padding-top: 0; }
.lodge-property--full:last-child  { border-bottom: none; padding-bottom: 0; }

.lodge-property-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.lodge-property-desc {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.lodge-property-contact {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--text-mid);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 0;
  line-height: 1.6;
}

.lodge-property-contact a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(58, 80, 107, 0.35);
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}

.lodge-property-contact a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.lodge-sep {
  margin: 0 7px;
  color: var(--text-muted);
  opacity: 0.5;
}

.lodge-sep--muted {
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 6px;
}


/* ── Text-only blocks (parking, uber/lyft) ───────────────────── */

.lodge-property-list {
  width: 100%;
}

.lodge-text-block {
  max-width: 760px;
  margin: 0 auto;
}

.lodge-text-block p {
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.lodge-text-block p:last-child {
  margin-bottom: 0;
}

.lodge-text-block + .lodge-property-grid,
.lodge-text-block + .lodge-property-grid--3 {
  margin-top: 48px;
}


/* ── CTA Band ────────────────────────────────────────────────── */

.lodge-cta-band {
  background: var(--white);
  text-align: center;
  padding: 80px var(--gutter);
  border-top: 1px solid var(--cream-dark);
}

.lodge-cta-band p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 860px) {
  .lodge-property-grid,
  .lodge-property-grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .lodge-page-header { padding-top: 100px; }
  .lodge-cta-band    { padding: 60px 24px; }
  .lodge-property    { padding: 24px 20px; }

  .lodge-property-contact {
    flex-direction: column;
    gap: 4px;
  }

  .lodge-sep { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   FAQS PAGE
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.faq-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 72px;
}

.faq-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin: 8px 0 22px;
}

.faq-page-intro {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 640px;
  margin: 0 auto;
}


/* ── Main FAQ section ────────────────────────────────────────── */

.faq-main {
  background: var(--white);
  padding: 80px var(--gutter) 100px;
}

.faq-main-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Override Kind Words tab sizing — 4 longer labels need slightly smaller text */
.faq-main .faq-tabs {
  margin-bottom: 56px;
}

.faq-main .faq-tabs .sw-tab {
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.22em;
}

/* Widen the accordion beyond the contact page default (760px) */
.faq-main .faq-accordion {
  max-width: 860px;
  margin: 0 auto;
}

/* Answer body text */
.faq-main .faq-answer p {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 14px;
}

.faq-main .faq-answer p:last-child {
  margin-bottom: 0;
}

/* Links inside answers */
.faq-main .faq-answer a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(58, 80, 107, 0.35);
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}

.faq-main .faq-answer a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}


/* ── CTA Band ────────────────────────────────────────────────── */

.faq-cta-band {
  background: var(--white);
  text-align: center;
  padding: 80px var(--gutter);
  border-top: 1px solid var(--cream-dark);
}

.faq-cta-band p {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}


/* ── Responsive ──────────────────────────────────────────────── */

/* 4 tabs wrap to 2×2 on narrower screens */
@media (max-width: 900px) {
  .faq-main .faq-tabs {
    flex-wrap: wrap;
  }

  .faq-main .faq-tabs .sw-tab {
    flex: 1 1 calc(50% - 1px);
    text-align: center;
  }
}

@media (max-width: 600px) {
  .faq-page-header { padding-top: 100px; }
  .faq-main        { padding: 60px 24px 80px; }
  .faq-cta-band    { padding: 60px 24px; }

  .faq-main .faq-tabs .sw-tab {
    flex: 1 1 100%;
    padding: 12px 20px;
  }
}


/* ══════════════════════════════════════════════════════════════
   WHAT'S INCLUDED — /weddings/whats-included
   ══════════════════════════════════════════════════════════════ */

/* ── Page Header ─────────────────────────────────────────────── */

.wi-page-header {
  background: var(--white);
  text-align: center;
  padding: 120px var(--gutter) 80px;
  position: relative;
  z-index: 1;
}

.wi-page-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 8px 0 12px;
  line-height: 1;
}

.wi-page-subtitle {
  font-family: var(--font-script);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 28px;
  line-height: 1.2;
}

.wi-page-intro {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.9;
  color: var(--text-mid);
  max-width: 780px;
  margin: 0 auto;
}


/* ── Intro Split ─────────────────────────────────────────────── */

.wi-intro {
  background: var(--white);
  padding: 80px 0 100px;
}

.wi-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}

/* Script headings within the copy column */
.wi-script-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin: 52px 0 20px;
}

.wi-script-heading:first-child {
  margin-top: 0;
}

.wi-intro-text p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 22px;
}

.wi-intro-text p:last-child {
  margin-bottom: 0;
}

/* Overlapping image pair */
.wi-intro-images {
  position: relative;
  height: 782px;
}

/* Upper-left portrait */
.wi-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 65.5%;
  height: 71%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  box-shadow: 8px 12px 40px rgba(0,0,0,0.14);
}

/* Lower-right landscape — slides behind img-1 overlap */
.wi-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 86%;
  height: 67%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  box-shadow: -6px 10px 36px rgba(0,0,0,0.12);
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 960px) {
  .wi-intro-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .wi-intro-images {
    height: 598px;
  }
}

@media (max-width: 600px) {
  .wi-page-header { padding: 100px 24px 60px; }
  .wi-intro { padding: 60px 0 80px; }

  .wi-intro-images {
    height: 437px;
  }

  .wi-img-1 { width: 69%; height: 69%; }
  .wi-img-2 { width: 90%; height: 63%; }
}


/* ══ CATERING PAGE ══════════════════════════════════════════════════ */

/* ── 3-Image Overlay ──────────────────────────────────────────────── */

.cat-intro-images {
  position: relative;
  height: 1175px;
  overflow: hidden;
}

/* Top: cat-landscape 1024×683 — left-aligned */
.cat-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 31%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  box-shadow: 6px 8px 28px rgba(0,0,0,0.13);
}

/* Middle: cat-accent 1024×683 — pushed right, slight overlap */
.cat-img-2 {
  position: absolute;
  top: 29%;
  right: -8%;
  width: 90%;
  height: 31%;
  object-fit: cover;
  object-position: center;
  z-index: 2;
  box-shadow: -4px 8px 28px rgba(0,0,0,0.13);
}

/* Bottom: cat-portrait 1000×1500 — center-left, slight overlap, on top */
.cat-img-3 {
  position: absolute;
  top: 56%;
  left: 5%;
  width: 73%;
  height: 44%;
  object-fit: cover;
  object-position: center top;
  z-index: 3;
  box-shadow: 6px 8px 28px rgba(0,0,0,0.13);
}

/* Lead paragraph — large italic serif */
.cat-intro-lead,
.wi-intro-text p.cat-intro-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 40px;
}


/* ── Policy Section ──────────────────────────────────────────────── */

.cat-policy {
  padding: 80px 0;
}

.cat-policy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 900px;
  margin: 0 auto;
}

.cat-policy-label {
  font-family: var(--font-serif);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.cat-policy-block p {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.cat-policy-block p:last-child {
  margin-bottom: 0;
}


/* ── Caterers List ──────────────────────────────────────────────── */

.cat-list {
  padding: 80px 0 100px;
}

.cat-list .ornament-rule {
  margin-bottom: 16px;
}

.cat-list-intro {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-mid);
  margin-bottom: 64px;
}

.cat-entries {
  display: flex;
  flex-direction: column;
  gap: 64px;
  max-width: 800px;
  margin: 0 auto;
}

.cat-entry {
  border-top: 1px solid var(--cream-dark);
  padding-top: 48px;
}

.cat-entry:first-child {
  border-top: none;
  padding-top: 0;
}

.cat-entry-name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--text);
  margin-bottom: 20px;
}

.cat-entry-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 24px;
}

.cat-entry-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}

.cat-entry-quote cite {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.cat-entry p {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.cat-entry p:last-child {
  margin-bottom: 0;
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 960px) {
  .cat-intro-images { height: 850px; }
}

@media (max-width: 600px) {
  .cat-intro-images { height: 650px; }
  .cat-img-1 { width: 92%; height: 30%; }
  .cat-img-2 { width: 92%; height: 30%; top: 27%; }
  .cat-img-3 { width: 75%; height: 44%; top: 54%; }
}


/* ── Photo Grid ──────────────────────────────────────────────── */

.cat-photo-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90%;
  margin: 0 auto;
}

.cat-grid-row {
  display: flex;
  gap: 16px;
}

.cat-grid-row img {
  height: 420px;
  min-width: 0;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* flex-grow proportional to aspect ratio */
/* landscape 1024×683 → ratio ≈ 1.499 */
.cat-grid-ls {
  flex: 1499;
}

/* portrait 1000×1500 → ratio ≈ 0.667 */
.cat-grid-pt {
  flex: 667;
}

@media (max-width: 768px) {
  .cat-grid-row img { height: 300px; }
}

@media (max-width: 480px) {
  .cat-grid-row { flex-direction: column; }
  .cat-grid-row img { height: 260px; flex: none; width: 100%; }
}


/* ── Galleries Season Filter ─────────────────────────────────── */

.galleries-filter-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(58, 80, 107, 0.08);
  padding: 0 0 0;
}

/* 6 tabs — 2 rows of 3 */
.galleries-tabs {
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.galleries-tabs .sw-tab {
  flex: 1 1 calc(33.333% - 1px);
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  padding: 16px 22px;
}

.galleries-no-results {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  padding: 60px 0;
}

@media (max-width: 600px) {
  .galleries-tabs .sw-tab {
    flex: 1 1 calc(50% - 1px);
    padding: 13px 14px;
    font-size: 11px;
  }
}


/* ── Quote Ribbon ────────────────────────────────────────────── */

.wi-quote-band {
  background: var(--navy-dark);
  padding: 80px var(--gutter);
  text-align: center;
}

.wi-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 820px;
  margin: 0 auto 20px;
}

.wi-quote cite {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}


/* ── Message Section ─────────────────────────────────────────── */

.wi-message {
  padding: 100px 0;
}

.wi-message-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.wi-message-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.55;
  color: var(--navy);
  margin: 0 0 40px;
}

.wi-message-body p {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.wi-message-body p:last-child {
  margin-bottom: 0;
}


/* ── Inclusions Tabbed Section ───────────────────────────────── */

.wi-inclusions {
  background: var(--white);
  padding: 80px 0 100px;
}

/* 6 tabs — 2 rows of 3 */
.wi-tabs {
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 56px;
}

.wi-tabs .sw-tab {
  flex: 1 1 calc(33.333% - 1px);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.2em;
  padding: 16px 22px;
}


/* ── Inclusion list ──────────────────────────────────────────── */

.wi-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wi-list li {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.85;
  color: var(--text-mid);
  padding: 18px 0 18px 32px;
  border-bottom: 1px solid rgba(58,80,107,0.1);
  position: relative;
}

.wi-list li:first-child {
  border-top: 1px solid rgba(58,80,107,0.1);
}

/* Gold leaf bullet */
.wi-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

.wi-list li strong {
  font-weight: 700;
  color: var(--navy);
}

.wi-list a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(58,80,107,0.35);
  transition: color var(--dur) var(--ease), text-decoration-color var(--dur) var(--ease);
}

.wi-list a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* What's Not Included — muted bullet */
.wi-list--excluded li::before {
  background: var(--text-muted);
  opacity: 0.45;
}


/* ── Timeline ────────────────────────────────────────────────── */

.wi-timeline {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wi-timeline li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(58,80,107,0.1);
}

.wi-timeline li:first-child {
  border-top: 1px solid rgba(58,80,107,0.1);
}

.wi-time {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.wi-event {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.3vw, 17px);
  color: var(--text-mid);
  line-height: 1.7;
}


/* ── Responsive ──────────────────────────────────────────────── */

@media (max-width: 600px) {
  .wi-quote-band { padding: 60px 24px; }
  .wi-message { padding: 72px 0; }
  .wi-inclusions { padding: 60px 0 80px; }

  .wi-tabs .sw-tab {
    flex: 1 1 calc(50% - 1px);
    padding: 12px 14px;
    font-size: 11px;
  }

  .wi-timeline li {
    grid-template-columns: 110px 1fr;
    gap: 16px;
