/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  /* Warm stone grays — no white / off-white */
  --s: #c5c1bb;
  --s2: #b7b3ad;
  --s3: #a9a59f;
  --s4: #9b978f;
  --s5: #8c8881;
  --g: #9a7d42;
  --gd: #7d6433;
  --gl: #b8944e;
  --gll: #c9a86a;
  --c: #1a1714;
  --m: #4a453f;
  --md: rgba(26, 23, 20, 0.65);
  --muted: rgba(26, 23, 20, 0.7);
  /* Light type on dark panels — stone gray, not white */
  --on-dark: #d0ccc6;
  --on-dark-soft: rgba(208, 204, 198, 0.72);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--s);
  color: var(--c);
  font-family: var(--sans);
  overflow-x: hidden;
  cursor: auto;
}

/* ═══════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════ */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--g);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(154, 125, 66, 0.45);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.3s var(--ease), height 0.3s var(--ease);
}
body.hovering #cursor {
  width: 6px;
  height: 6px;
  background: var(--gl);
}
body.hovering #cursor-ring {
  width: 50px;
  height: 50px;
  border-color: rgba(154, 125, 66, 0.7);
}
body.clicking #cursor {
  transform: translate(-50%, -50%) scale(0.7);
}
#cursor,
#cursor-ring {
  display: none !important;
}
@media (hover: none) {
  body {
    cursor: auto;
  }
}

/* ═══════════════════════════════════════
   GRAIN OVERLAY
═══════════════════════════════════════ */
#grain {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ═══════════════════════════════════════
   SCROLL PROGRESS
═══════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--g);
  z-index: 200;
  width: 0%;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(26, 23, 20, 0.96);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
}
#lightbox.open {
  display: flex;
  touch-action: none;
}
/* Hide chrome that would stack over a full-screen photo */
body.lb-open #float-cta,
body.lb-open #btt {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
}
#lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  animation: lbIn 0.3s var(--ease);
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
}
@keyframes lbIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
#lb-close {
  position: fixed;
  top: 20px;
  right: 24px;
  color: var(--on-dark);
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  cursor: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1201;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
#lb-close:hover {
  opacity: 1;
}
#lb-prev,
#lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(154, 125, 66, 0.15);
  border: 1px solid rgba(154, 125, 66, 0.25);
  color: var(--g);
  font-size: 20px;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  cursor: none;
  transition: background 0.2s, opacity 0.2s;
  z-index: 1201;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
/* Hide dead prev/next when gallery wiring isn’t active */
#lightbox:not(.has-nav) #lb-prev,
#lightbox:not(.has-nav) #lb-next {
  display: none;
}
#lb-prev {
  left: 16px;
}
#lb-next {
  right: 16px;
}
#lb-prev:hover,
#lb-next:hover {
  background: rgba(154, 125, 66, 0.28);
}
#lb-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(208, 204, 198, 0.6);
  text-align: center;
  z-index: 1201;
  max-width: min(90vw, 40rem);
  padding: 0 12px;
  pointer-events: none;
}
@media (max-width: 960px) {
  #lightbox img {
    max-width: 100vw;
    max-height: 78vh;
  }
  #lb-prev,
  #lb-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: rgba(14, 12, 10, 0.45);
    border-color: rgba(201, 168, 106, 0.2);
  }
  #lb-prev {
    left: 8px;
  }
  #lb-next {
    right: 8px;
  }
  #lb-caption {
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
#btt {
  position: fixed;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  left: max(20px, env(safe-area-inset-left, 0px));
  z-index: 200;
  width: 40px;
  height: 40px;
  background: var(--s3);
  border: 1px solid rgba(154, 125, 66, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g);
  font-size: 18px;
  cursor: pointer;
  cursor: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
#btt.show {
  opacity: 1;
  transform: translateY(0);
}
#btt:hover {
  background: var(--s4);
}

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 22px;
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-l.visible {
  opacity: 1;
  transform: none;
}
.reveal-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal-r.visible {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}
.d3 {
  transition-delay: 0.3s;
}
.d4 {
  transition-delay: 0.4s;
}
.d5 {
  transition-delay: 0.5s;
}
.d6 {
  transition-delay: 0.6s;
}

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  padding: 0 clamp(14px, 2.8vw, 40px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(10px, 1.4vw, 28px);
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
/* Tapered dark read shade when nav sits over photography */
body.page-home #nav::before,
body.page-catering #nav::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(var(--nav-h) + 88px);
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(14, 12, 10, 0.9) 0%,
    rgba(14, 12, 10, 0.68) 26%,
    rgba(14, 12, 10, 0.38) 52%,
    rgba(14, 12, 10, 0.14) 76%,
    transparent 100%
  );
  transition: opacity 0.35s ease;
}
body.page-home #nav.scrolled::before,
body.page-catering #nav.scrolled::before {
  opacity: 0;
}
#nav.scrolled {
  background: rgba(197, 193, 187, 0.96);
  border-bottom-color: rgba(154, 125, 66, 0.14);
  backdrop-filter: blur(14px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: 0;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  opacity: 0.85;
  transition: filter 0.35s, opacity 0.35s;
}
#nav.scrolled .nav-logo-img {
  filter: brightness(0);
  opacity: 0.85;
}
.nav-wm {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgba(208, 204, 198, 0.88);
  transition: color 0.35s;
}
#nav.scrolled .nav-wm {
  color: var(--c);
}
.nav-div {
  width: 1px;
  height: 16px;
  background: rgba(208, 204, 198, 0.3);
  transition: background 0.35s;
}
#nav.scrolled .nav-div {
  background: rgba(154, 125, 66, 0.3);
}
.nav-est {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(208, 204, 198, 0.6);
  transition: color 0.35s;
}
#nav.scrolled .nav-est {
  color: var(--g);
  font-weight: 300;
}
.nav-links {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: space-evenly;
  min-width: 0;
  gap: 0;
  margin: 0;
  padding: 0 clamp(4px, 0.8vw, 16px);
}
.nav-link {
  flex: 1 1 0;
  text-align: center;
  font-size: clamp(10.5px, 0.55vw + 7.5px, 13px);
  letter-spacing: clamp(0.04em, 0.35vw, 0.12em);
  text-transform: uppercase;
  color: rgba(201, 168, 106, 0.88);
  font-weight: 600;
  transition: color 0.35s;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 2px;
}
.nav-link:hover {
  color: var(--gll);
}
#nav.scrolled .nav-link {
  color: rgba(154, 125, 66, 0.92);
  font-weight: 600;
}
#nav.scrolled .nav-link:hover {
  color: var(--g);
}
.nav-cta {
  display: inline-block;
  flex: 0 0 auto;
  padding: clamp(8px, 0.7vw, 10px) clamp(12px, 1.1vw, 16px);
  background: var(--g);
  color: var(--on-dark);
  font-size: clamp(9px, 0.45vw + 6px, 10px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  text-align: center;
  line-height: 1.3;
  max-width: 168px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--gl);
  transform: translateY(-1px);
}
.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  cursor: none;
  padding: 8px;
  background: none;
  border: none;
}
.mob-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c);
  transition: all 0.25s;
}

/* ═══════════════════════════════════════
   MOBILE NAV
═══════════════════════════════════════ */
#mob-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--s);
  padding: 100px 8% 50px;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  display: flex;
}
#mob-nav.open {
  transform: none;
}
.mob-link {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--c);
  padding: 14px 0;
  border-bottom: 1px solid rgba(154, 125, 66, 0.1);
  display: block;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mob-link:hover {
  color: var(--g);
  padding-left: 8px;
}
.mob-cta-btn {
  margin-top: 32px;
  display: inline-block;
  padding: 16px 36px;
  background: var(--g);
  color: var(--on-dark);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.mob-cta-btn:hover {
  background: var(--gl);
}

/* ═══════════════════════════════════════
   HERO — photo plane clean; copy below
═══════════════════════════════════════ */
#hero {
  position: relative;
  overflow: hidden;
}
/* Full-bleed photo + type over image */
#hero.hero-overlay {
  height: min(100svh, 1100px);
  min-height: 560px;
}
#hero.hero-clean {
  height: auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: #1a1714;
  overflow: hidden;
  z-index: 0;
}
#hero.hero-clean .hero-photo {
  position: relative;
  flex: 1 1 auto;
  min-height: min(85svh, 960px);
  height: clamp(420px, 88svh, 1080px);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
/* Production-style crossfade carousel */
.hero-photo[data-hero-slider] > .hero-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.hero-photo[data-hero-slider] > .hero-frame.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-photo[data-hero-slider] > .hero-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Soft read gradient — top for nav, bottom-left for type */
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(14, 12, 10, 0.82) 0%,
      rgba(14, 12, 10, 0.58) 6%,
      rgba(14, 12, 10, 0.34) 12%,
      rgba(14, 12, 10, 0.16) 18%,
      rgba(14, 12, 10, 0.06) 26%,
      transparent 38%
    ),
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(20, 17, 14, 0.22) 58%,
      rgba(20, 17, 14, 0.72) 78%,
      rgba(18, 15, 12, 0.9) 100%
    ),
    linear-gradient(
      90deg,
      rgba(18, 15, 12, 0.55) 0%,
      rgba(18, 15, 12, 0.22) 42%,
      transparent 70%
    );
}
.hero-copy {
  position: absolute;
  z-index: 3;
  left: 5.5%;
  right: 5.5%;
  bottom: clamp(36px, 8vh, 80px);
  max-width: 640px;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-lead {
  position: relative;
  padding: clamp(36px, 5.5vw, 64px) 5.5% clamp(40px, 6vw, 72px);
  background: var(--s);
  border-bottom: 1px solid rgba(154, 125, 66, 0.1);
}
.hero-brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--on-dark);
  margin-bottom: 14px;
  animation: fadeUp 0.85s var(--ease) 0.12s both;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}
.hero-copy .hero-eyebrow,
.hero-lead .hero-eyebrow {
  color: var(--gll);
  animation: fadeUp 0.85s var(--ease) 0.22s both;
}
.hero-copy .hero-eyebrow::before,
.hero-lead .hero-eyebrow::before {
  background: var(--gll);
}
.hero-copy .hero-h1 {
  color: var(--on-dark);
  font-size: clamp(34px, 5.2vw, 64px);
  margin-bottom: 16px;
  animation: fadeUp 0.85s var(--ease) 0.32s both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.hero-copy .hero-h1 em {
  color: var(--gll);
}
.hero-lead .hero-h1 {
  color: var(--c);
  font-size: clamp(32px, 4.8vw, 58px);
  margin-bottom: 16px;
  animation: fadeUp 0.85s var(--ease) 0.32s both;
}
.hero-lead .hero-h1 em {
  color: var(--g);
}
.hero-copy .hero-sub {
  color: rgba(208, 204, 198, 0.82);
  animation: fadeUp 0.85s var(--ease) 0.42s both;
  margin-bottom: 28px;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}
.hero-lead .hero-sub {
  color: var(--m);
  animation: fadeUp 0.85s var(--ease) 0.42s both;
  margin-bottom: 28px;
}
.hero-copy .hero-btns,
.hero-lead .hero-btns {
  animation: fadeUp 0.85s var(--ease) 0.52s both;
}
/* legacy overlay hero pieces */
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-ov {
  display: none;
}
.hero-yr {
  display: none;
}
.hero-content {
  position: absolute;
  bottom: 10%;
  left: 5.5%;
  max-width: 720px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--gll);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gll);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(50px, 8.8vw, 112px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 24px;
  color: var(--on-dark);
}
.hero-h1 em {
  font-style: italic;
  color: var(--gll);
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(208, 204, 198, 0.58);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: var(--g);
  color: var(--on-dark);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  transition: background 0.2s, gap 0.25s;
  text-decoration: none;
}
.btn-gold:hover {
  background: var(--gl);
  gap: 14px;
}
.btn-ghost {
  display: inline-block;
  padding: 15px 32px;
  border: 1px solid rgba(154, 125, 66, 0.35);
  color: var(--c);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  font-family: var(--sans);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover {
  border-color: var(--g);
  color: var(--g);
}
#hero.hero-overlay .btn-ghost,
#hero.hero-clean .btn-ghost {
  color: var(--on-dark);
  border-color: rgba(208, 204, 198, 0.4);
  background: rgba(18, 15, 12, 0.2);
  backdrop-filter: blur(6px);
}
#hero.hero-overlay .btn-ghost:hover,
#hero.hero-clean .btn-ghost:hover {
  color: var(--gll);
  border-color: var(--gll);
}
.hero-scroll {
  display: none;
}
.hero-scroll-txt {
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(154, 125, 66, 0.45);
  margin-bottom: 7px;
}
.hero-scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--g), transparent);
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.trust-bar {
  background: var(--s2);
  border-top: 1px solid rgba(154, 125, 66, 0.08);
  border-bottom: 1px solid rgba(154, 125, 66, 0.08);
  padding: 13px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-stars {
  display: flex;
  gap: 2px;
}
.trust-star {
  color: var(--g);
  width: 13px;
  height: 13px;
  vertical-align: middle;
}
.trust-txt {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--m);
}
.trust-txt strong {
  color: var(--c);
  font-weight: 400;
}
.trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(154, 125, 66, 0.18);
}
.trust-live {
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ecf9a;
  animation: pulse 2s ease infinite;
}
.live-txt {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(26, 23, 20, 0.45);
}

/* ═══════════════════════════════════════
   TICKER
═══════════════════════════════════════ */
.ticker {
  background: var(--g);
  overflow: hidden;
  padding: 11px 0;
}
.ticker-track {
  display: flex;
  animation: ticker 34s linear infinite;
  width: max-content;
}
.ticker-text {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--on-dark);
  text-transform: uppercase;
  white-space: nowrap;
  font-style: italic;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SHARED
═══════════════════════════════════════ */
.sl {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--g);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sl::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--g);
}
.dh {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--c);
  line-height: 1.1;
}
.di {
  font-style: italic;
  color: var(--g);
}
.body-link {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  border-bottom: 1px solid rgba(154, 125, 66, 0.4);
  padding-bottom: 1px;
  display: inline-block;
  transition: border-color 0.2s, opacity 0.2s;
  text-decoration: none;
}
.body-link:hover {
  border-color: var(--g);
  opacity: 0.75;
}

/* ═══════════════════════════════════════
   STORY
═══════════════════════════════════════ */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}
.story-img {
  position: relative;
  overflow: hidden;
}
.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 640px;
  transition: transform 0.8s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .story-img:hover img {
    transform: scale(1.03);
  }
}
.story-tag {
  display: none;
}
.story-addr {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g);
  margin: -6px 0 16px;
  font-weight: 400;
}
.story-body {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--s);
}
.story-wm {
  position: absolute;
  top: -8%;
  right: -14%;
  font-family: var(--serif);
  font-size: clamp(160px, 22vw, 280px);
  font-weight: 300;
  color: rgba(154, 125, 66, 0.032);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.story-stats {
  display: flex;
  gap: 44px;
  padding: 28px 0;
  border-top: 1px solid rgba(154, 125, 66, 0.13);
  border-bottom: 1px solid rgba(154, 125, 66, 0.13);
  margin: 28px 0;
}
.stat-n {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--g);
  line-height: 1;
}
.stat-l {
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--m);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   SPACES
═══════════════════════════════════════ */
.spaces-section {
  background: var(--s2);
  padding: 88px 0;
}
.spaces-hd {
  padding: 0 5.5%;
  margin-bottom: 48px;
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 5.5%;
}
.space-card {
  position: relative;
  height: auto;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--s2);
}
.space-card img {
  width: 100%;
  height: clamp(220px, 28vw, 320px);
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .space-card:hover img {
    transform: scale(1.04);
  }
}
/* No gradient scrim or type on photos */
.space-ov {
  display: none;
}
.space-info {
  position: static;
  bottom: auto;
  left: auto;
  right: auto;
  padding: 18px 18px 20px;
  background: var(--s2);
}
.space-cap {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 7px;
}
.space-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--c);
  margin-bottom: 5px;
  line-height: 1.1;
}
.space-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.5;
  transition: color 0.2s;
}
.space-cta {
  display: inline-block;
  margin-top: 11px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  border-bottom: 1px solid rgba(154, 125, 66, 0.5);
  padding-bottom: 1px;
}
.space-card:hover .space-cta {
  border-bottom-color: var(--g);
}
.space-expand {
  display: none;
}
.spaces-foot {
  text-align: center;
  margin-top: 44px;
}
/* ═══════════════════════════════════════
   DATE CHECK
═══════════════════════════════════════ */
.date-check {
  background: var(--s3);
  border-top: 1px solid rgba(154, 125, 66, 0.08);
  border-bottom: 1px solid rgba(154, 125, 66, 0.08);
  padding: 56px 5.5%;
}
.dc-inner {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.dc-copy .dc-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  color: var(--c);
  line-height: 1.1;
  margin-bottom: 12px;
}
.dc-copy .dc-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.75;
}
.dc-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.dc-success {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0;
}
.dc-success[hidden] {
  display: none;
}
.dc-success-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--c);
}
.dc-success-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.7;
}
.dc-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.dc-link-cta {
  max-width: 360px;
}
.dc-link-cta .urgency {
  margin-top: 14px;
}
a.dc-btn-link {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
}
.dc-tour-btn {
  display: block;
  text-align: center;
  padding: 13px 16px;
  border: 1px solid rgba(154, 125, 66, 0.35);
  color: var(--c);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.dc-tour-btn:hover {
  border-color: var(--g);
  background: rgba(154, 125, 66, 0.08);
}
.dc-input {
  background: rgba(154, 125, 66, 0.06);
  border: 1px solid rgba(154, 125, 66, 0.18);
  padding: 13px 16px;
  color: var(--c);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s;
}
.dc-input:focus {
  border-color: var(--g);
}
.dc-input::placeholder {
  color: var(--m);
}
.dc-input[type='date'] {
  color-scheme: light;
}
.dc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}
.dc-select {
  background: rgba(154, 125, 66, 0.06);
  border: 1px solid rgba(154, 125, 66, 0.18);
  padding: 13px 16px;
  color: var(--m);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  outline: none;
  appearance: none;
  cursor: pointer;
  cursor: none;
  transition: border-color 0.2s;
}
.dc-select:focus {
  border-color: var(--g);
}
.dc-btn {
  background: var(--g);
  color: var(--on-dark);
  border: none;
  padding: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  cursor: none;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.dc-btn:hover {
  background: var(--gl);
}
.dc-btn.success {
  background: #2d6a4f;
  color: var(--on-dark);
  cursor: default;
}
.urgency {
  font-size: 10px;
  letter-spacing: 0.07em;
  color: rgba(154, 125, 66, 0.5);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.urgency-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ecf9a;
  animation: pulse 2s ease infinite;
  flex-shrink: 0;
}
.form-error {
  font-size: 11px;
  color: #f08080;
  display: none;
  margin-top: 2px;
}
.form-error.show {
  display: block;
}

/* ═══════════════════════════════════════
   WHY STONE HOUSE
═══════════════════════════════════════ */
.why-section {
  background: var(--s);
  padding: 88px 5.5%;
}
.why-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.why-card {
  background: var(--s2);
  padding: 32px 28px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-top-color: var(--g);
  background: var(--s3);
}
.why-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 16px;
  display: block;
  color: var(--sage, #7a9a8a);
}
.why-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--c);
  margin-bottom: 10px;
  line-height: 1.2;
}
.why-text {
  font-size: 12px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   EVENTS HUB
═══════════════════════════════════════ */
.events-hub {
  background: var(--s2);
  padding: 88px 5.5%;
  border-top: 1px solid rgba(154, 125, 66, 0.08);
}
.events-hub-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: end;
}
.events-hub-sub {
  margin-top: 16px;
  max-width: 360px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
.events-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(154, 125, 66, 0.18);
}
.events-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1.4fr) auto;
  gap: 12px 20px;
  align-items: baseline;
  padding: 20px 4px;
  border-bottom: 1px solid rgba(154, 125, 66, 0.14);
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease), padding 0.25s var(--ease);
}
.events-row:hover,
.events-row:focus-visible {
  background: rgba(154, 125, 66, 0.06);
  padding-left: 12px;
  padding-right: 12px;
  outline: none;
}
.events-row-label {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 400;
  color: var(--c);
  letter-spacing: 0.01em;
}
.events-row-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}
.events-row-go {
  font-size: 16px;
  color: var(--g);
  transition: transform 0.25s var(--ease);
  justify-self: end;
}
.events-row:hover .events-row-go {
  transform: translateX(4px);
}
@media (max-width: 820px) {
  .events-hub-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }
  .events-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }
  .events-row-label {
    grid-column: 1;
    grid-row: 1;
  }
  .events-row-go {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }
  .events-row-desc {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* ═══════════════════════════════════════
   WEDDINGS
═══════════════════════════════════════ */
.weddings {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 680px;
}
.wed-img {
  position: relative;
  overflow: hidden;
}
.wed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 640px;
  transition: transform 0.8s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .wed-img:hover img {
    transform: scale(1.03);
  }
}
.wed-accent {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background: var(--g);
}
.wed-body {
  padding: 78px 60px;
  background: var(--s3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wed-list {
  border-top: 1px solid rgba(154, 125, 66, 0.14);
  padding-top: 20px;
  margin: 22px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.wed-item {
  display: flex;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}
.wed-dash {
  color: var(--g);
  font-size: 16px;
  line-height: 1.2;
  flex-shrink: 0;
}
.wed-btns {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.wed-collateral {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--m);
  max-width: 400px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.pricing-section {
  background: var(--s);
  padding: 88px 5.5%;
  border-top: 1px solid rgba(154, 125, 66, 0.07);
}
.pricing-hd {
  text-align: center;
  margin-bottom: 48px;
}
.pkg-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}
.pkg-toggle-btn {
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  background: var(--s2);
  border: 1px solid rgba(154, 125, 66, 0.18);
  color: var(--m);
  cursor: pointer;
  cursor: none;
  transition: all 0.2s;
}
.pkg-toggle-btn.active {
  background: var(--g);
  color: var(--on-dark);
  border-color: var(--g);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.price-card {
  background: var(--s2);
  padding: 32px 28px;
  border: 1px solid rgba(154, 125, 66, 0.1);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.price-card:hover {
  border-color: rgba(154, 125, 66, 0.28);
  transform: translateY(-3px);
}
.price-card.feat {
  border-color: var(--g);
  background: var(--s3);
}
.price-card.feat:hover {
  transform: translateY(-4px);
}
.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g);
  padding: 4px 14px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  font-weight: 500;
  white-space: nowrap;
}
.price-tier {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.price-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--c);
  margin-bottom: 16px;
}
.price-from {
  font-size: 11px;
  color: var(--m);
  margin-bottom: 4px;
}
.price-n {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--c);
  margin-bottom: 3px;
}
.price-note {
  font-size: 11px;
  color: var(--m);
  margin-bottom: 22px;
}
.price-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.price-items li {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.price-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 1px;
  background: var(--g);
}
.price-cta {
  display: block;
  text-align: center;
  padding: 11px;
  border: 1px solid rgba(154, 125, 66, 0.28);
  color: var(--g);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.2s;
  text-decoration: none;
}
.price-cta:hover,
.price-card.feat .price-cta {
  background: var(--g);
  color: var(--on-dark);
  border-color: var(--g);
}
.pricing-footer {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.8;
}
.pricing-footer a {
  color: var(--g);
  border-bottom: 1px solid rgba(154, 125, 66, 0.35);
  text-decoration: none;
}

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process {
  background: var(--s3);
  padding: 80px 5.5%;
  border-top: 1px solid rgba(154, 125, 66, 0.08);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(154, 125, 66, 0.25), transparent);
}
.process-step {
  text-align: center;
  padding: 0 12px;
}
.ps-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: rgba(154, 125, 66, 0.2);
  line-height: 1;
  margin-bottom: 14px;
}
.ps-title {
  font-size: 10px;
  font-weight: 500;
  color: var(--c);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.ps-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   CATERING
═══════════════════════════════════════ */
.catering {
  background: var(--s);
  padding: 88px 5.5%;
}
.cat-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.cat-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cat-tag {
  border: 1px solid rgba(154, 125, 66, 0.28);
  padding: 7px 13px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--g);
  text-transform: uppercase;
}
.cat-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.cat-main {
  grid-row: span 2;
  overflow: hidden;
  cursor: pointer;
  cursor: none;
}
.cat-sm {
  overflow: hidden;
  cursor: pointer;
  cursor: none;
}
.cat-main img,
.cat-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .cat-main:hover img,
  .cat-sm:hover img {
    transform: scale(1.06);
  }
}

/* ═══════════════════════════════════════
   REAL WEDDINGS
═══════════════════════════════════════ */
.rw {
  background: var(--s2);
  padding: 80px 5.5%;
}
.rw-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}
.rw-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.rw-main {
  overflow: hidden;
  grid-row: span 2;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: var(--s2);
}
.rw-sm {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  min-height: 220px;
}
.rw-main img,
.rw-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
  display: block;
}
.rw-main img {
  height: clamp(280px, 42vw, 520px);
  flex: 1;
}
.rw-sm img {
  min-height: 220px;
}
@media (hover: hover) and (pointer: fine) {
  .rw-main:hover img,
  .rw-sm:hover img {
    transform: scale(1.04);
  }
}
/* Captions sit under photos — never over */
.rw-cap {
  position: static;
  bottom: auto;
  left: auto;
  background: var(--s2);
  padding: 14px 16px 16px;
  flex-shrink: 0;
}
.rw-cap-date {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.rw-cap-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--c);
  font-weight: 300;
  font-style: italic;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials {
  background: var(--s);
  padding: 80px 5.5%;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 42px;
}
.test-card {
  background: var(--s2);
  padding: 28px 26px;
  border: 1px solid rgba(154, 125, 66, 0.08);
  transition: border-color 0.3s;
}
.test-card:hover {
  border-color: rgba(154, 125, 66, 0.22);
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--s4);
  border: 1px solid rgba(154, 125, 66, 0.25);
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--g);
}
.test-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.test-star {
  color: var(--g);
  width: 13px;
  height: 13px;
  vertical-align: middle;
}
.test-q {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--c);
  line-height: 1.65;
  margin-bottom: 18px;
}
.test-auth {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--m);
  text-transform: uppercase;
}
.test-src {
  font-size: 10px;
  color: rgba(154, 125, 66, 0.45);
  margin-top: 3px;
}

/* ═══════════════════════════════════════
   EMAIL LIST SIGNUP
═══════════════════════════════════════ */
.email-signup {
  background: var(--s3);
  padding: 64px 5.5%;
  border-top: 1px solid rgba(154, 125, 66, 0.1);
  border-bottom: 1px solid rgba(154, 125, 66, 0.1);
}
.oh-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.oh-form {
  display: flex;
  flex-direction: column;
  gap: 9px;
  max-width: 360px;
  margin: 0 auto;
}
.oh-input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(154, 125, 66, 0.07);
  border: 1px solid rgba(154, 125, 66, 0.18);
  padding: 13px 16px;
  color: var(--c);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  outline: none;
}
.oh-input:focus {
  border-color: var(--g);
}
.oh-input::placeholder {
  color: var(--m);
}
.oh-btn {
  width: 100%;
  background: var(--g);
  color: var(--on-dark);
  border: none;
  padding: 13px 22px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  cursor: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.oh-btn:hover {
  background: var(--gl);
}
.oh-note {
  font-size: 11px;
  color: var(--m);
  margin-top: 12px;
}

/* ═══════════════════════════════════════
   PLANNING LIBRARY (content inventory)
═══════════════════════════════════════ */
.resources-section {
  background: var(--s2);
  padding: 88px 5.5%;
  border-top: 1px solid rgba(154, 125, 66, 0.08);
  border-bottom: 1px solid rgba(154, 125, 66, 0.08);
}
.resources-inner {
  max-width: 920px;
  margin: 0 auto;
}
.resources-lead {
  font-size: 14px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.78;
  max-width: 640px;
  margin-top: 16px;
}
.res-cat {
  margin-top: 40px;
}
.res-cat:first-of-type {
  margin-top: 36px;
}
.res-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--c);
  margin-bottom: 14px;
}
.res-cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g);
  flex-shrink: 0;
}
.res-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(154, 125, 66, 0.12);
  background: var(--s3);
}
.res-li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(154, 125, 66, 0.08);
  font-size: 13px;
  font-weight: 300;
}
.res-li:last-child {
  border-bottom: none;
}
.res-li-name {
  color: var(--c);
  line-height: 1.45;
}
.res-li-act {
  text-align: right;
  flex-shrink: 0;
}
.res-a {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g);
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 125, 66, 0.35);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: opacity 0.2s, border-color 0.2s;
}
.res-a:hover {
  opacity: 0.85;
  border-color: var(--g);
}
.res-soon {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26, 23, 20, 0.38);
  white-space: nowrap;
}
.res-internal {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m);
  white-space: nowrap;
  max-width: 160px;
  text-align: right;
  line-height: 1.35;
}
.res-li--live .res-li-name {
  border-left: 2px solid rgba(78, 207, 154, 0.45);
  padding-left: 12px;
  margin-left: -12px;
}
.res-li--soon .res-li-name {
  border-left: 2px solid rgba(154, 125, 66, 0.2);
  padding-left: 12px;
  margin-left: -12px;
}
.res-li--internal .res-li-name {
  border-left: 2px solid rgba(138, 126, 111, 0.35);
  padding-left: 12px;
  margin-left: -12px;
}
@media (max-width: 580px) {
  .res-li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .res-li-act {
    text-align: left;
  }
  .res-internal {
    text-align: left;
    max-width: none;
  }
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-section {
  background: var(--s);
  padding: 80px 5.5%;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 44px;
}
.faq-intro {
  font-size: 14px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 8px;
}
.faq-pdf {
  margin: 0 0 28px;
  line-height: 1.9;
}
.faq-pdf-sep {
  color: var(--m);
  font-weight: 300;
}
.faq-cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g);
  font-weight: 500;
  margin: 40px 0 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(154, 125, 66, 0.12);
}
.faq-list > h3.faq-cat:first-of-type {
  margin-top: 28px;
  padding-top: 0;
  border-top: none;
}
.faq-a-inner ul {
  margin: 12px 0 0;
  padding-left: 1.15em;
}
.faq-a-inner li {
  margin-bottom: 8px;
}
.faq-a-inner li:last-child {
  margin-bottom: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(154, 125, 66, 0.1);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  cursor: none;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--g);
}
.faq-q-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--c);
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-q:hover .faq-q-text {
  color: var(--g);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(154, 125, 66, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, transform 0.3s;
}
.faq-q:hover .faq-icon {
  border-color: var(--g);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--g);
  transition: transform 0.3s, opacity 0.3s;
}
.faq-icon::before {
  width: 10px;
  height: 1px;
}
.faq-icon::after {
  width: 1px;
  height: 10px;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.faq-item.open .faq-a {
  max-height: 8000px;
}
.faq-a-inner {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   CTA
═══════════════════════════════════════ */
.cta-section {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-ov {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0.85);
}
.cta-content {
  position: relative;
  text-align: center;
  padding: 80px 5%;
  max-width: 760px;
  color: var(--on-dark);
}
.cta-content .dh {
  color: var(--on-dark);
}
.cta-content .btn-ghost {
  color: var(--on-dark);
  border-color: rgba(154, 125, 66, 0.35);
}
.cta-content .btn-ghost:hover {
  color: var(--g);
  border-color: var(--g);
}
.cta-content .sl {
  color: var(--g);
}
.cta-content p {
  color: rgba(208, 204, 198, 0.65);
}
.cta-trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cta-trust-item {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(154, 125, 66, 0.55);
  text-transform: uppercase;
}
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0 0;
}

/* ═══════════════════════════════════════
   INSTAGRAM
═══════════════════════════════════════ */
.ig-section {
  background: var(--s2);
  padding: 52px 5.5%;
}
.ig-hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.ig-handle {
  font-size: 13px;
  font-weight: 300;
  color: var(--m);
}
.ig-handle a {
  color: var(--g);
  border-bottom: 1px solid rgba(154, 125, 66, 0.35);
  text-decoration: none;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
.ig-cell {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  cursor: none;
}
.ig-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .ig-cell:hover img {
    transform: scale(1.1);
  }
  .ig-cell:hover .ig-ov {
    background: rgba(26, 23, 20, 0.48);
  }
}
.ig-ov {
  position: absolute;
  inset: 0;
  background: rgba(26, 23, 20, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.ig-heart {
  opacity: 0;
  color: var(--g);
  width: 20px;
  height: 20px;
  transition: opacity 0.3s;
}
.ig-cell:hover .ig-heart {
  opacity: 1;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer-quote {
  background: var(--s);
  padding: 50px 5.5%;
  text-align: center;
  border-top: 1px solid rgba(154, 125, 66, 0.08);
}
.footer-quote-text {
  font-family: var(--serif);
  font-size: clamp(18px, 2.8vw, 32px);
  font-weight: 300;
  font-style: italic;
  color: rgba(26, 23, 20, 0.35);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.footer-quote-text em {
  color: var(--g);
  font-style: normal;
}

footer {
  background: var(--s2);
  padding: 60px 5.5% 28px;
  border-top: 1px solid rgba(154, 125, 66, 0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 44px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  opacity: 0.8;
  filter: brightness(0);
}
.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--m);
  line-height: 1.82;
  max-width: 215px;
  margin-bottom: 18px;
}
.footer-addr {
  font-size: 13px;
  color: rgba(154, 125, 66, 0.68);
  line-height: 1.84;
}
.footer-addr a {
  color: rgba(154, 125, 66, 0.68);
  text-decoration: none;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--g);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 400;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: var(--m);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--c);
}
.footer-bottom {
  border-top: 1px solid rgba(154, 125, 66, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copy {
  font-size: 12px;
  color: var(--m);
}
.footer-est {
  font-family: var(--serif);
  font-size: 12px;
  color: var(--m);
  font-style: italic;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   FLOAT CTA (bottom-right — all viewports)
═══════════════════════════════════════ */
#float-cta {
  display: block;
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  z-index: 90;
  background: var(--g);
  color: var(--on-dark);
  padding: 13px 16px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  max-width: min(280px, calc(100vw - 40px));
  text-align: center;
  line-height: 1.35;
}
#float-cta:hover {
  background: var(--gl);
  transform: translateY(-2px);
}
/* Room so last CTAs / footer aren't under the float pill */
main {
  padding-bottom: 4.5rem;
}
body.page-inner main {
  padding-bottom: 5rem;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
/* Mid desktop — free space by trimming logo lockup */
@media (max-width: 1180px) {
  .nav-div,
  .nav-est {
    display: none;
  }
  .nav-wm {
    font-size: clamp(15px, 1.4vw, 18px);
    letter-spacing: 0.14em;
  }
  .nav-logo-img {
    height: 32px;
  }
}
/* Compact desktop — keep even spread without overflow */
@media (max-width: 1080px) and (min-width: 961px) {
  .nav-link {
    font-size: 10.5px;
    letter-spacing: 0.05em;
  }
  .nav-cta {
    padding: 8px 11px;
    font-size: 9px;
  }
}
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  #nav {
    justify-content: space-between;
    gap: 12px;
  }
  .nav-cta {
    margin-left: auto;
    white-space: nowrap;
  }
  .mob-btn {
    display: flex;
  }
  /* Clean hero photo on small screens — date CTA lives in nav / float */
  #hero .hero-btns {
    display: none;
  }
  .story {
    grid-template-columns: 1fr;
  }
  .story-img img {
    min-height: unset;
  }
  .story-img {
    height: 420px;
  }
  .story-body {
    padding: 52px 28px;
  }
  .spaces-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .dc-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .weddings {
    grid-template-columns: 1fr;
  }
  .wed-img {
    height: 440px;
  }
  .wed-body {
    padding: 52px 28px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .process-steps::before {
    display: none;
  }
  .cat-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .cat-photos {
    grid-template-rows: 200px 200px;
  }
  .rw-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .rw-main {
    grid-row: unset;
    grid-column: span 2;
  }
  .test-grid {
    grid-template-columns: 1fr;
  }
  .ig-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .trust-sep {
    display: none;
  }
}
@media (max-width: 580px) {
  .spaces-grid {
    grid-template-columns: 1fr;
  }
  .hero-h1 {
    font-size: clamp(42px, 12vw, 68px);
  }
  .hero-copy {
    bottom: clamp(28px, 6vh, 48px);
  }
  .hero-brand {
    font-size: clamp(36px, 10vw, 52px);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .oh-form {
    flex-direction: column;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .rw-grid {
    grid-template-columns: 1fr;
  }
  .rw-main {
    grid-column: unset;
  }
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .story-stats {
    gap: 22px;
  }
  .stat-n {
    font-size: 38px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ═══════════════════════════════════════
   MULTI-PAGE SHELL
═══════════════════════════════════════ */
body.page-inner {
  padding-top: var(--nav-h);
}
body.page-inner #nav {
  background: rgba(197, 193, 187, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154, 125, 66, 0.14);
}
body.page-inner #nav .nav-logo,
body.page-inner #nav .nav-wm,
body.page-inner #nav .nav-est {
  color: var(--c);
}
body.page-inner #nav .nav-logo-img {
  filter: brightness(0);
  opacity: 0.85;
}
body.page-inner #nav .nav-link {
  color: rgba(154, 125, 66, 0.92);
  font-weight: 600;
}
body.page-inner #nav .nav-link:hover,
body.page-inner #nav .nav-link.is-active,
body.page-inner #nav .nav-link[aria-current='page'] {
  color: var(--g);
}
body.page-inner #nav .mob-btn span {
  background: var(--c);
}
a.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.page-cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 48px 5.5% calc(72px + env(safe-area-inset-bottom, 0px));
  justify-content: center;
  background: var(--s2);
  border-top: 1px solid rgba(154, 125, 66, 0.1);
}
.page-cta-strip .btn-gold,
.page-cta-strip .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  box-sizing: border-box;
}
@media (max-width: 560px) {
  .page-cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding-left: 5.5%;
    padding-right: 5.5%;
  }
  .page-cta-strip .btn-gold,
  .page-cta-strip .btn-ghost {
    width: 100%;
  }
}
.home-links {
  padding: 72px 5.5%;
  background: var(--s2);
  border-top: 1px solid rgba(154, 125, 66, 0.1);
}
.home-links-inner {
  max-width: 720px;
}
.home-link-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(154, 125, 66, 0.18);
}
.home-link-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid rgba(154, 125, 66, 0.14);
  text-decoration: none;
  color: var(--c);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  transition: padding 0.25s var(--ease), background 0.25s;
}
.home-link-row:hover {
  padding-left: 0.65rem;
  padding-right: 0.65rem;
  background: rgba(154, 125, 66, 0.05);
}
.home-link-go {
  color: var(--g);
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease);
}
/* ═══════════════════════════════════════
   SPLIT BAND — National-style photo | copy
   (text never sits on the photograph)
═══════════════════════════════════════ */
.split-band {
  display: grid;
  /* Text ~40% · Photo ~60% — balanced for CTAs in the copy column */
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  align-items: stretch;
  min-height: 0;
  background: #1a1714;
}
.split-band--short .split-media {
  min-height: min(56vh, 520px);
}
.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  background:
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(154, 125, 66, 0.1), transparent 55%),
    #1c1916;
  color: var(--on-dark);
  position: relative;
  isolation: isolate;
  min-width: 0;
}
.split-copy.sh-pattern::before {
  opacity: 0.08;
  filter: brightness(1.4);
  background-size: 160px 160px;
  z-index: 0;
}
.split-copy > * {
  position: relative;
  z-index: 1;
}
.split-kicker {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gll);
  margin-bottom: 16px;
  font-weight: 400;
}
.split-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.08;
  color: var(--gll);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-wrap: balance;
}
.split-title em {
  font-style: italic;
  color: var(--on-dark);
}
.split-rule {
  width: 48px;
  height: 1px;
  background: rgba(226, 192, 136, 0.55);
  margin-bottom: 20px;
  border: 0;
}
.split-lede {
  font-family: var(--serif);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(208, 204, 198, 0.92);
  max-width: 32ch;
  margin-bottom: 12px;
}
.split-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(208, 204, 198, 0.58);
  max-width: 36ch;
  margin-bottom: 28px;
}
.split-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 10px;
  line-height: 1.55;
  max-width: 40ch;
}
.split-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  max-width: 22rem;
}
.split-btns .btn-gold,
.split-btns .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  min-height: 48px;
  margin: 0;
}
/* Two CTAs: share a row when space allows */
.split-btns:has(> :nth-child(2):last-child) > .btn-gold,
.split-btns:has(> :nth-child(2):last-child) > .btn-ghost {
  flex: 1 1 auto;
}
/* Three CTAs: primary full width, secondary pair aligned */
.split-btns:has(> :nth-child(3):last-child) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.split-btns:has(> :nth-child(3):last-child) > :first-child {
  grid-column: 1 / -1;
  width: 100%;
}
.split-btns:has(> :nth-child(3):last-child) > .btn-ghost {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}
.split-copy .btn-gold {
  background: var(--gll);
  color: #1a1714;
}
.split-copy .btn-gold:hover {
  background: #d4c49a;
  color: #1a1714;
}
.split-copy .btn-ghost {
  color: var(--on-dark);
  border-color: rgba(208, 204, 198, 0.35);
}
.split-copy .btn-ghost:hover {
  border-color: var(--gll);
  color: var(--gll);
}
.split-media {
  position: relative;
  min-height: min(72vh, 680px);
  overflow: hidden;
  background: #111;
}
.split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}
/* Hover zoom only for fine pointers (not touch) */
@media (hover: hover) and (pointer: fine) {
  .split-band:hover .split-media img {
    transform: scale(1.03);
  }
}
.split-media a {
  display: block;
  position: absolute;
  inset: 0;
}
/* Photo left / copy right — keep photo the wider column */
.split-band--flip {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
}
.split-band--flip .split-copy {
  order: 2;
}
.split-band--flip .split-media {
  order: 1;
}
/* Cream variant for spaces subheader */
.split-band--cream .split-copy {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(154, 125, 66, 0.08), transparent 55%),
    var(--s2);
  color: var(--c);
}
.split-band--cream .split-kicker {
  color: var(--g);
}
.split-band--cream .split-title {
  color: var(--c);
}
.split-band--cream .split-title em {
  color: var(--g);
}
.split-band--cream .split-rule {
  background: rgba(154, 125, 66, 0.45);
}
.split-band--cream .split-lede {
  color: var(--c);
}
.split-band--cream .split-body {
  color: var(--m);
}
.split-band--cream .split-copy .btn-ghost {
  color: var(--c);
  border-color: rgba(154, 125, 66, 0.35);
}
.split-band--cream .split-copy .btn-ghost:hover {
  color: var(--g);
  border-color: var(--g);
}
.split-band--cream .split-copy .btn-gold {
  background: var(--g);
  color: var(--on-dark);
}
.split-band--cream .split-copy.sh-pattern::before {
  filter: none;
  opacity: 0.1;
}
.split-page-head {
  padding: clamp(40px, 6vw, 80px) 5.5% clamp(28px, 4vw, 36px);
  background: var(--s);
  max-width: 720px;
}

/* Mid / tablet: equal columns before vertical stack */
@media (max-width: 1100px) and (min-width: 961px) {
  .split-band,
  .split-band--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .split-media {
    min-height: min(64vh, 560px);
  }
  .split-copy {
    padding: clamp(36px, 4vw, 56px) clamp(24px, 3.5vw, 40px);
  }
  .split-title {
    font-size: clamp(30px, 3.6vw, 46px);
  }
  .split-meta {
    letter-spacing: 0.1em;
  }
}

/* Stack with nav/float breakpoint (960) */
@media (max-width: 960px) {
  .split-band {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .split-band--flip .split-copy,
  .split-band--flip .split-media {
    order: unset;
  }
  /* Photo first on mobile for story flow */
  .split-media {
    min-height: min(52vw, 360px);
    max-height: 420px;
    order: -1;
  }
  .split-band--flip .split-media {
    order: -1;
  }
  .split-copy {
    padding: 36px 5.5% calc(48px + env(safe-area-inset-bottom, 0px));
  }
  .split-page-head {
    padding: 28px 5.5% 24px;
    max-width: none;
  }
  .split-meta {
    letter-spacing: 0.08em;
    max-width: none;
  }
  .split-lede,
  .split-body {
    max-width: none;
  }
  /* CTAs use full copy column width */
  .split-btns {
    max-width: none;
  }
  .split-btns:has(> :nth-child(2):last-child) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .split-btns:has(> :nth-child(2):last-child) > * {
    width: 100%;
  }
  .split-btns:has(> :only-child) > * {
    width: 100%;
  }
}

@media (max-width: 420px) {
  /* Very narrow: stack all CTAs equal width */
  .split-btns,
  .split-btns:has(> :nth-child(2):last-child),
  .split-btns:has(> :nth-child(3):last-child) {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .split-btns > .btn-gold,
  .split-btns > .btn-ghost {
    width: 100%;
    grid-column: auto;
  }
  .split-media {
    min-height: 48vw;
    max-height: 300px;
  }
}


/* ═══════════════════════════════════════
   BRAND MOTIF — SH mark wallpaper
   (favicon / monogram as subtle atmosphere)
═══════════════════════════════════════ */
.sh-pattern {
  position: relative;
  isolation: isolate;
}
.sh-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('assets/stone-house-mark-tile.svg');
  background-repeat: repeat;
  background-size: 140px 140px;
  background-position: center;
  opacity: 0.11;
}
.sh-pattern > * {
  position: relative;
  z-index: 1;
}
/* Roomier Victorian wallpaper feel (closer to National Exchange spacing) */
.sh-pattern--wide::before {
  background-size: 200px 200px;
  opacity: 0.1;
}
/* On dark band — gold mark lighter against charcoal */
.sh-pattern--dark::before {
  opacity: 0.09;
  filter: brightness(1.45) saturate(0.85);
}
/* Dense “damask” for narrow bands / footers */
.sh-pattern--dense::before {
  background-size: 96px 96px;
  opacity: 0.09;
}
/* Fade edges so pattern reads as atmosphere, not wallpaper sheets */
.sh-pattern--fade::before {
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, #000 35%, transparent 80%);
}

/* Check Your Date — cream full band, photo-free */
.cta-band {
  padding: clamp(64px, 10vw, 100px) 5.5%;
  background: linear-gradient(180deg, var(--s2) 0%, var(--s3) 100%);
  text-align: center;
}
.cta-band-inner {
  max-width: 520px;
  margin: 0 auto;
}
.cta-band-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  color: var(--c);
  margin: 8px 0 16px;
}
.cta-band-title em {
  font-style: italic;
  color: var(--g);
}
.cta-band-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--m);
  margin-bottom: 28px;
}

.footer-quote.sh-pattern {
  background: var(--s2);
}
.footer-quote.sh-pattern::before {
  opacity: 0.12;
  background-size: 112px 112px;
}

.home-link-row:hover .home-link-go {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════
   HOMEPAGE — dark charcoal (match catering)
═══════════════════════════════════════ */
body.page-home {
  background: #1a1714;
  color: var(--on-dark);
}

body.page-home #nav {
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.page-home #nav .nav-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
body.page-home #nav.scrolled {
  background: rgba(28, 25, 22, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154, 125, 66, 0.18);
}
body.page-home #nav.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
body.page-home #nav.scrolled .nav-wm,
body.page-home #nav.scrolled .nav-est {
  color: var(--on-dark);
}
body.page-home #nav.scrolled .nav-est {
  color: var(--gll);
}
body.page-home #nav.scrolled .nav-div {
  background: rgba(208, 204, 198, 0.3);
}
body.page-home #nav.scrolled .nav-link {
  color: rgba(201, 168, 106, 0.9);
  font-weight: 600;
}
body.page-home #nav.scrolled .nav-link:hover {
  color: var(--gll);
}
body.page-home #nav .nav-link {
  color: rgba(201, 168, 106, 0.88);
  font-weight: 600;
}
body.page-home #nav .nav-link:hover {
  color: var(--gll);
}
body.page-home #nav .mob-btn span {
  background: var(--on-dark);
}
body.page-home #nav.scrolled .mob-btn span {
  background: var(--on-dark);
}

body.page-home .btn-gold {
  background: var(--gll);
  color: #1a1714;
}
body.page-home .btn-gold:hover {
  background: #d4c49a;
  color: #1a1714;
}
body.page-home .btn-ghost {
  color: var(--on-dark);
  border-color: rgba(208, 204, 198, 0.35);
}
body.page-home .btn-ghost:hover {
  border-color: var(--gll);
  color: var(--gll);
}
body.page-home #mob-nav {
  background: #1c1916;
}
body.page-home .mob-link {
  color: var(--on-dark);
  border-bottom-color: rgba(154, 125, 66, 0.18);
}
body.page-home .mob-link:hover {
  color: var(--gll);
}

/* Hero type over photos */
body.page-home .hero-brand {
  color: var(--on-dark);
}
body.page-home .hero-copy .hero-eyebrow {
  color: var(--gll);
}
body.page-home .hero-copy .hero-eyebrow::before {
  background: var(--gll);
}
body.page-home .hero-copy .hero-h1 {
  color: var(--on-dark);
}
body.page-home .hero-copy .hero-h1 em {
  color: var(--gll);
}
body.page-home .hero-copy .hero-sub {
  color: rgba(208, 204, 198, 0.88);
}
body.page-home #hero.hero-overlay .btn-ghost {
  color: var(--on-dark);
  border-color: rgba(208, 204, 198, 0.4);
}
body.page-home #hero.hero-overlay .btn-ghost:hover {
  color: var(--gll);
  border-color: var(--gll);
}

/* Trust / CTA / open house / IG */
body.page-home .trust-bar {
  background: #1c1916;
  border-top-color: rgba(154, 125, 66, 0.12);
  border-bottom-color: rgba(154, 125, 66, 0.12);
}
body.page-home .trust-txt {
  color: rgba(208, 204, 198, 0.62);
}
body.page-home .trust-txt strong {
  color: var(--on-dark);
}
body.page-home .trust-sep {
  background: rgba(154, 125, 66, 0.22);
}
body.page-home .live-txt {
  color: rgba(208, 204, 198, 0.5);
}

body.page-home .cta-band {
  background: linear-gradient(180deg, #1a1714 0%, #161412 100%);
}
body.page-home .cta-band-title {
  color: var(--on-dark);
}
body.page-home .cta-band-title em {
  color: var(--gll);
}
body.page-home .cta-band-body {
  color: rgba(208, 204, 198, 0.68);
}

body.page-home .email-signup {
  background: #1c1916;
  border-top-color: rgba(154, 125, 66, 0.12);
  border-bottom-color: rgba(154, 125, 66, 0.12);
}
body.page-home .email-signup .sl,
body.page-home .email-signup .dh {
  color: var(--on-dark);
}
body.page-home .email-signup .di {
  color: var(--gll);
}
body.page-home .email-signup .reveal[style*='color:var(--m)'],
body.page-home .email-signup p[style*='color:var(--m)'] {
  color: rgba(208, 204, 198, 0.68) !important;
}
body.page-home .oh-note {
  color: rgba(208, 204, 198, 0.5);
}
body.page-home .oh-input {
  background: rgba(0, 0, 0, 0.25);
  border-color: rgba(154, 125, 66, 0.25);
  color: var(--on-dark);
}
body.page-home .oh-input::placeholder {
  color: rgba(208, 204, 198, 0.4);
}
body.page-home .oh-btn {
  background: var(--gll);
  color: #1a1714;
}
body.page-home .oh-btn:hover {
  background: #d4c49a;
}

body.page-home .ig-section {
  background: #1a1714;
}
body.page-home .ig-handle {
  color: rgba(208, 204, 198, 0.6);
}
body.page-home .ig-handle a {
  color: var(--gll);
  border-bottom-color: rgba(201, 168, 106, 0.4);
}
body.page-home .body-link {
  color: var(--gll);
}
body.page-home .ig-section .sl {
  color: var(--gll);
}

body.page-home .footer-quote {
  background: #161412;
  border-top-color: rgba(154, 125, 66, 0.14);
}
body.page-home .footer-quote .footer-quote-text {
  color: rgba(208, 204, 198, 0.35);
}
body.page-home footer {
  background: #1c1916;
  border-top-color: rgba(154, 125, 66, 0.14);
}
body.page-home footer .footer-logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
body.page-home footer .footer-brand {
  color: var(--on-dark);
}
body.page-home footer .footer-desc,
body.page-home footer .footer-addr,
body.page-home footer .footer-copy,
body.page-home footer .footer-est {
  color: rgba(208, 204, 198, 0.55);
}
body.page-home footer .footer-addr a,
body.page-home footer .footer-link {
  color: rgba(208, 204, 198, 0.62);
}
body.page-home footer .footer-link:hover,
body.page-home footer .footer-addr a:hover {
  color: var(--gll);
}
body.page-home footer .footer-col-title {
  color: var(--gll);
}
body.page-home footer .footer-bottom {
  border-top-color: rgba(154, 125, 66, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo[data-hero-slider] > .hero-frame {
    transition: none;
  }
  .split-media img,
  .story-img img,
  .space-card img,
  .wed-img img,
  .cat-main img,
  .cat-sm img,
  .rw-main img,
  .rw-sm img,
  .ig-cell img {
    transition: none !important;
  }
  .split-band:hover .split-media img,
  .story-img:hover img,
  .space-card:hover img,
  .wed-img:hover img,
  .cat-main:hover img,
  .cat-sm:hover img,
  .rw-main:hover img,
  .rw-sm:hover img,
  .ig-cell:hover img {
    transform: none !important;
  }
  .reveal,
  .reveal-l,
  .reveal-r {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  #float-cta,
  #btt {
    transition: none;
  }
  #float-cta:hover {
    transform: none;
  }
}

