/* ============================================================
   Everyday Life Events & Design — Design System
   Tokens locked in /.docs/PROJECT-BRIEF.md
   Last updated: 2026-04-28
   ============================================================ */

:root {
  /* ── Color tokens ─────────────────────────────────────── */
  --c-ivory:       #FEF9F0;  /* primary background */
  --c-dove:        #F5F3F0;  /* alternating sections / cards */
  --c-charcoal:    #2C2A29;  /* primary body text */
  --c-charcoal-2:  #4a4745;  /* secondary text */
  --c-terracotta:  #C27D6E;  /* wedding accent / primary buttons */
  --c-terracotta-d:#a96459;
  --c-sage:        #6F8F7A;  /* corporate / charity / secondary */
  --c-sage-d:      #5a7864;
  --c-navy:        #2C3E4E;  /* political / executive / footer */
  --c-navy-2:      #1f2c38;
  --c-gold:        #D9B48B;  /* dividers / highlights */
  --c-gold-d:      #b9966f;
  --c-cranberry:   #9E4A4A;  /* sparing accent */
  --c-rule:        #e3ddd2;  /* hairlines */
  --c-warning-bg:  #fef3c7;  /* NEEDS-INPUT badge */
  --c-warning-fg:  #78350f;

  /* ── Typography ───────────────────────────────────────── */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', sans-serif;

  /* Fluid scale — clamp(min, preferred, max) */
  --fs-h1:   clamp(2.75rem, 5.5vw + 1rem, 4.25rem);
  --fs-h2:   clamp(2rem, 3vw + 0.75rem, 2.75rem);
  --fs-h3:   clamp(1.375rem, 1.5vw + 0.5rem, 1.75rem);
  --fs-h4:   clamp(1.125rem, 0.5vw + 1rem, 1.25rem);
  --fs-body: 1.0625rem;          /* 17px */
  --fs-small:0.9375rem;          /* 15px */
  --fs-eyebrow: 0.8125rem;       /* 13px — uppercase eyebrow text */

  --lh-tight:  1.15;
  --lh-snug:   1.3;
  --lh-normal: 1.55;
  --lh-relaxed:1.7;

  /* ── Spacing scale ────────────────────────────────────── */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* ── Layout ──────────────────────────────────────────── */
  --container:      72rem;     /* 1152px */
  --container-wide: 84rem;     /* 1344px */
  --container-narrow: 48rem;   /* 768px */

  /* ── Radii ──────────────────────────────────────────── */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(44, 42, 41, 0.06), 0 1px 2px rgba(44, 42, 41, 0.04);
  --shadow-md: 0 4px 14px rgba(44, 42, 41, 0.08), 0 2px 4px rgba(44, 42, 41, 0.04);
  --shadow-lg: 0 12px 36px rgba(44, 42, 41, 0.12), 0 4px 8px rgba(44, 42, 41, 0.06);

  /* ── Motion ─────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.2, 0.8, 0.25, 1);
  --dur-fast: 160ms;
  --dur-med:  240ms;
  --dur-slow: 420ms;

  /* ── Header height (used to offset anchor jumps) ─────── */
  --header-h: 76px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--c-charcoal);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
img { font-style: italic; color: var(--c-charcoal-2); }  /* shows alt text if image fails */

a {
  color: var(--c-terracotta-d);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color var(--dur-fast) var(--ease-out);
}
a:hover { color: var(--c-charcoal); }
a:focus-visible {
  outline: 2px solid var(--c-terracotta);
  outline-offset: 3px;
  border-radius: 2px;
}

button { font-family: inherit; cursor: pointer; }
button:focus-visible {
  outline: 2px solid var(--c-terracotta);
  outline-offset: 3px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: var(--lh-tight);
  color: var(--c-charcoal);
  margin: 0 0 var(--sp-4) 0;
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fs-h1); font-weight: 500; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 500; }
h4 { font-size: var(--fs-h4); font-weight: 600; font-family: var(--font-body); letter-spacing: 0; }

p { margin: 0 0 var(--sp-4) 0; max-width: 70ch; }
.lead { font-size: 1.1875rem; line-height: var(--lh-relaxed); color: var(--c-charcoal-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-terracotta-d);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.eyebrow.--sage    { color: var(--c-sage-d); }
.eyebrow.--navy    { color: var(--c-navy); }
.eyebrow.--gold    { color: var(--c-gold-d); }

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--sp-6);
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: var(--container-narrow); }
@media (min-width: 1024px) {
  .container { padding-inline: var(--sp-8); }
}

.section {
  padding-block: clamp(var(--sp-16), 8vw, var(--sp-24));
}
.section--tight { padding-block: clamp(var(--sp-12), 6vw, var(--sp-16)); }
.section--dove { background: var(--c-dove); }
.section--ivory { background: var(--c-ivory); }
.section--navy { background: var(--c-navy); color: #f4ede0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fcf6e8; }

.divider-gold {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--c-gold);
  margin: var(--sp-4) 0 var(--sp-6) 0;
}

.section-head { margin-bottom: var(--sp-12); max-width: 56ch; }
.section-head.--center { margin-inline: auto; text-align: center; }
.section-head.--center .divider-gold { margin-inline: auto; }

/* ============================================================
   Skip-to-main link (a11y)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--c-charcoal);
  color: var(--c-ivory);
  padding: var(--sp-3) var(--sp-4);
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Site header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 249, 240, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-rule);
}

.site-header__inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding: var(--sp-3) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--c-charcoal);
}
.brand img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-charcoal-2);
  margin-top: 3px;
  font-weight: 500;
}
@media (max-width: 640px) {
  .brand__name { font-size: 1.2rem; }
  .brand__sub { display: none; }
  .brand img { width: 36px; height: 36px; }
}

.primary-nav { display: flex; align-items: center; gap: var(--sp-1); }
.primary-nav a {
  font-size: 0.95rem;
  color: var(--c-charcoal);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
  font-weight: 500;
}
.primary-nav a:hover { background: var(--c-dove); color: var(--c-charcoal); }
.primary-nav a[aria-current="page"] {
  color: var(--c-terracotta-d);
  background: rgba(194, 125, 110, 0.08);
}

@media (max-width: 1024px) {
  .primary-nav { display: none; }
}

.nav-cta { display: inline-flex; align-items: center; gap: var(--sp-3); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--c-rule);
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; color: var(--c-charcoal); }
@media (max-width: 1024px) { .menu-toggle { display: inline-flex; } }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(44, 42, 41, 0.55);
  display: none;
}
.mobile-drawer[data-open="true"] { display: block; }
.mobile-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(360px, 100%);
  background: var(--c-ivory);
  padding: var(--sp-6);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.mobile-drawer__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--sp-6);
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-drawer nav a {
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--c-charcoal);
  font-size: 1.0625rem;
  font-weight: 500;
}
.mobile-drawer nav a[aria-current="page"] { color: var(--c-terracotta-d); }
.mobile-drawer__cta { margin-top: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-3); }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  min-height: 44px;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--c-terracotta); color: var(--c-ivory); }
.btn--primary:hover { background: var(--c-terracotta-d); color: var(--c-ivory); }

.btn--secondary { background: var(--c-sage); color: var(--c-ivory); }
.btn--secondary:hover { background: var(--c-sage-d); color: var(--c-ivory); }

.btn--ghost {
  background: transparent;
  color: var(--c-charcoal);
  border-color: var(--c-charcoal);
}
.btn--ghost:hover { background: var(--c-charcoal); color: var(--c-ivory); }

.btn--ghost-on-dark {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(254, 249, 240, 0.4);
}
.btn--ghost-on-dark:hover { background: var(--c-ivory); color: var(--c-navy); border-color: var(--c-ivory); }

.btn--gold { background: var(--c-gold); color: var(--c-charcoal); }
.btn--gold:hover { background: var(--c-gold-d); }

.btn--small { padding: 0.55rem 1rem; font-size: 0.875rem; min-height: 36px; }
.btn--block { width: 100%; }

.icon-arrow { display: inline-block; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .icon-arrow { transform: translateX(3px); }

/* ============================================================
   NEEDS INPUT badge — visible marker for placeholder content
   ============================================================ */
.needs-input {
  display: inline-block;
  background: var(--c-warning-bg);
  color: var(--c-warning-fg);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  border: 1px solid #fcd34d;
  vertical-align: middle;
}
.needs-input::before { content: "⚠ "; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-ivory);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.32) 0%, rgba(28, 28, 28, 0.55) 100%),
    linear-gradient(90deg, rgba(28, 28, 28, 0.55) 0%, rgba(28, 28, 28, 0.05) 60%);
}
.hero__content {
  max-width: var(--container-wide);
  width: 100%;
  margin-inline: auto;
  padding: var(--sp-12) var(--sp-6);
}
.hero__inner {
  max-width: 38rem;
}
.hero__eyebrow {
  display: inline-block;
  color: var(--c-gold);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--sp-4);
}
.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 6vw + 1rem, 5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero h1 em {
  font-style: italic;
  color: var(--c-gold);
}
.hero__sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
  max-width: 36rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.2);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

/* Compact hero for inner pages */
.hero--compact { min-height: clamp(360px, 44vh, 460px); }
.hero--compact h1 { font-size: clamp(2.5rem, 4vw + 1rem, 3.5rem); }
.hero--compact .hero__sub { font-size: 1.0625rem; }

/* ============================================================
   Cards & grids
   ============================================================ */
.grid {
  display: grid;
  gap: var(--sp-6);
}
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-gold);
}
.card h3 { margin-top: 0; }

.event-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent, var(--c-terracotta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.event-card:hover { transform: translateY(-3px); border-color: var(--accent, var(--c-terracotta)); box-shadow: var(--shadow-lg); }
.event-card:hover::before { transform: scaleX(1); }
.event-card__icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(194, 125, 110, 0.10);
  color: var(--accent, var(--c-terracotta-d));
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.event-card[data-accent="sage"]      { --accent: var(--c-sage); }
.event-card[data-accent="sage"] .event-card__icon { background: rgba(111, 143, 122, 0.12); color: var(--c-sage-d); }
.event-card[data-accent="navy"]      { --accent: var(--c-navy); }
.event-card[data-accent="navy"] .event-card__icon { background: rgba(44, 62, 78, 0.10); color: var(--c-navy); }
.event-card[data-accent="gold"]      { --accent: var(--c-gold-d); }
.event-card[data-accent="gold"] .event-card__icon { background: rgba(217, 180, 139, 0.18); color: var(--c-gold-d); }
.event-card[data-accent="cranberry"] { --accent: var(--c-cranberry); }
.event-card[data-accent="cranberry"] .event-card__icon { background: rgba(158, 74, 74, 0.10); color: var(--c-cranberry); }

.event-card__title { font-size: 1.5rem; line-height: 1.2; margin: 0; font-family: var(--font-display); font-weight: 500; }
.event-card__desc { color: var(--c-charcoal-2); font-size: 0.95rem; margin: 0; line-height: var(--lh-relaxed); }
.event-card__more {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 0.875rem;
  color: var(--accent, var(--c-terracotta-d));
}

/* ============================================================
   Two-column showcase
   ============================================================ */
.showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: var(--sp-10); }
}
.showcase__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.showcase__media img { width: 100%; height: 100%; object-fit: cover; }
.showcase--reverse .showcase__media { order: 2; }
@media (max-width: 900px) {
  .showcase--reverse .showcase__media { order: 0; }
}
.showcase__list {
  list-style: none; padding: 0; margin: var(--sp-6) 0 0 0;
  display: grid; gap: var(--sp-4);
}
.showcase__list li {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  padding-left: 0;
}
.showcase__list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px; height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--c-gold);
}

/* ============================================================
   Pricing tables
   ============================================================ */
.pricing-table {
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-table__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--c-rule);
  align-items: baseline;
}
.pricing-table__row:last-child { border-bottom: none; }
.pricing-table__row.--featured { background: rgba(217, 180, 139, 0.10); }
.pricing-table__label {
  font-weight: 500;
  color: var(--c-charcoal);
}
.pricing-table__sub {
  font-size: 0.875rem;
  color: var(--c-charcoal-2);
  display: block;
  margin-top: 4px;
  font-weight: 400;
}
.pricing-table__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-charcoal);
  font-weight: 500;
}
.pricing-note {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--c-dove);
  border-left: 3px solid var(--c-gold);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--c-charcoal-2);
}

/* ============================================================
   Forms
   ============================================================ */
.field {
  display: flex; flex-direction: column;
  gap: 6px;
  margin-bottom: var(--sp-5);
}
.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-charcoal);
  letter-spacing: 0.01em;
}
.field label .req {
  color: var(--c-terracotta-d);
  margin-left: 2px;
}
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-md);
  background: var(--c-ivory);
  color: var(--c-charcoal);
  transition: border-color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out);
  min-height: 44px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-terracotta);
  box-shadow: 0 0 0 3px rgba(194, 125, 110, 0.18);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: var(--c-cranberry);
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 640px) { .field-row { grid-template-columns: 1fr; } }

.form-success, .form-error {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-4);
}
.form-success { background: rgba(111, 143, 122, 0.16); color: var(--c-sage-d); border: 1px solid var(--c-sage); }
.form-error { background: rgba(158, 74, 74, 0.10); color: var(--c-cranberry); border: 1px solid var(--c-cranberry); }

/* ============================================================
   Gallery grid + lightbox
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-3);
}
.gallery-item {
  background: var(--c-dove);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  border: none;
  padding: 0;
  position: relative;
  aspect-ratio: 3 / 2;
  transition: transform var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.gallery-item:hover img { transform: scale(1.04); }

.gallery-grid--featured {
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
}
.gallery-grid--featured .gallery-item { grid-column: span 4; aspect-ratio: 3/2; }
.gallery-grid--featured .gallery-item:nth-child(1) { grid-column: span 8; aspect-ratio: 16/9; }
.gallery-grid--featured .gallery-item:nth-child(6n+4) { grid-column: span 8; aspect-ratio: 16/9; }
@media (max-width: 900px) {
  .gallery-grid--featured { grid-template-columns: 1fr 1fr; }
  .gallery-grid--featured .gallery-item,
  .gallery-grid--featured .gallery-item:nth-child(1),
  .gallery-grid--featured .gallery-item:nth-child(6n+4) { grid-column: span 1; aspect-ratio: 4/3; }
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 18, 17, 0.94);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--sp-6);
}
.lightbox[data-open="true"] { display: flex; }
.lightbox img {
  max-width: min(95vw, 1600px);
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(254, 249, 240, 0.12);
  border: 1px solid rgba(254, 249, 240, 0.3);
  color: var(--c-ivory);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
}
.lightbox__close { top: var(--sp-6); right: var(--sp-6); }
.lightbox__nav.--prev { left: var(--sp-4); top: 50%; transform: translateY(-50%); }
.lightbox__nav.--next { right: var(--sp-4); top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(254, 249, 240, 0.25); }

/* ============================================================
   Testimonial (placeholder, hidden until real ones supplied)
   ============================================================ */
.testimonial-placeholder {
  background: rgba(217, 180, 139, 0.10);
  border: 1px dashed var(--c-gold);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  text-align: center;
  color: var(--c-charcoal-2);
  max-width: 56rem;
  margin-inline: auto;
}
.testimonial-placeholder__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-charcoal);
  margin-bottom: var(--sp-2);
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background:
    linear-gradient(135deg, rgba(44, 62, 78, 0.92), rgba(44, 62, 78, 0.78)),
    var(--c-navy);
  color: var(--c-ivory);
  padding: clamp(var(--sp-12), 6vw, var(--sp-16)) var(--sp-6);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__inner { max-width: 48rem; margin-inline: auto; position: relative; z-index: 1; }
.cta-band h2 {
  color: #fff;
  margin-bottom: var(--sp-3);
}
.cta-band p { color: rgba(254, 249, 240, 0.85); margin-bottom: var(--sp-8); margin-inline: auto; }
.cta-band__buttons { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.cta-band::before, .cta-band::after {
  content: ""; position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--c-gold);
  opacity: 0.06;
}
.cta-band::before { top: -100px; right: -80px; }
.cta-band::after { bottom: -120px; left: -80px; opacity: 0.04; background: var(--c-terracotta); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-navy);
  color: rgba(254, 249, 240, 0.78);
  padding: var(--sp-16) 0 var(--sp-6) 0;
  font-size: 0.9375rem;
}
.site-footer a { color: rgba(254, 249, 240, 0.9); text-decoration: none; }
.site-footer a:hover { color: var(--c-gold); }
.site-footer h4 {
  color: var(--c-ivory);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
  font-weight: 600;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-12);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  display: flex; align-items: center; gap: var(--sp-3);
  color: var(--c-ivory);
  margin-bottom: var(--sp-3);
  text-decoration: none;
}
.footer-brand img { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--c-ivory); padding: 4px; }
.footer-brand strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.footer-tag {
  font-size: 0.875rem; color: rgba(254, 249, 240, 0.65);
  max-width: 28ch;
  line-height: var(--lh-relaxed);
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-2); }
.footer-list li a { display: inline-block; padding: 2px 0; }
.footer-contact { display: grid; gap: var(--sp-3); }
.footer-contact strong { color: var(--c-ivory); display: block; font-weight: 600; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(254, 249, 240, 0.10);
  padding-top: var(--sp-6);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: var(--sp-3);
  font-size: 0.8125rem;
  color: rgba(254, 249, 240, 0.6);
}
.external::after {
  content: " ↗";
  font-size: 0.85em;
  opacity: 0.6;
}

/* ============================================================
   Service package cards (used on Weddings, Corporate)
   ============================================================ */
.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-6);
}
@media (max-width: 900px) { .package-grid { grid-template-columns: 1fr; } }

.package-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.package-card:hover { transform: translateY(-3px); border-color: var(--c-gold); box-shadow: var(--shadow-md); }
.package-card .eyebrow { margin-bottom: var(--sp-1); }
.package-card h3 { margin-top: var(--sp-2); }
.package-card p { color: var(--c-charcoal-2); margin-bottom: var(--sp-6); flex-grow: 1; }

/* ============================================================
   Vendor / policy callout
   ============================================================ */
.callout {
  background: var(--c-dove);
  border-left: 4px solid var(--c-terracotta);
  border-radius: var(--radius-md);
  padding: var(--sp-6) var(--sp-8);
}
.callout--sage  { border-left-color: var(--c-sage); }
.callout--navy  { border-left-color: var(--c-navy); }
.callout--gold  { border-left-color: var(--c-gold); }
.callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ============================================================
   Anchor section nav (Events page)
   ============================================================ */
.anchor-nav {
  position: sticky;
  top: var(--header-h);
  background: var(--c-ivory);
  border-bottom: 1px solid var(--c-rule);
  z-index: 30;
  padding: var(--sp-3) 0;
}
.anchor-nav__inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: thin;
}
.anchor-nav a {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  background: var(--c-dove);
  color: var(--c-charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.anchor-nav a:hover { background: var(--c-gold); color: var(--c-charcoal); }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq-list { display: grid; gap: var(--sp-3); }
.faq-item {
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--c-terracotta-d);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item__body {
  padding: 0 var(--sp-6) var(--sp-6) var(--sp-6);
  color: var(--c-charcoal-2);
}

/* ============================================================
   Contact info card / map
   ============================================================ */
.contact-info {
  display: grid;
  gap: var(--sp-5);
}
.contact-info__row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.contact-info__icon {
  width: 40px; height: 40px;
  background: rgba(217, 180, 139, 0.18);
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--c-terracotta-d);
}
.contact-info__row strong { display: block; color: var(--c-charcoal); margin-bottom: 2px; }
.contact-info__row a { color: var(--c-charcoal); text-decoration: none; }
.contact-info__row a:hover { color: var(--c-terracotta-d); }

.map-frame {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Airbnb teaser card (homepage)
   ============================================================ */
.airbnb-teaser {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 900px) { .airbnb-teaser { grid-template-columns: 1fr; } }
.airbnb-teaser__media { aspect-ratio: 16 / 11; background: var(--c-dove); }
.airbnb-teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.airbnb-teaser__body { padding: var(--sp-10); display: flex; flex-direction: column; justify-content: center; }
.airbnb-teaser__rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
  color: var(--c-gold-d);
  margin-bottom: var(--sp-3);
}
.airbnb-teaser__meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  margin-bottom: var(--sp-4);
  color: var(--c-charcoal-2);
  font-size: 0.95rem;
}
.airbnb-teaser__meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   Utility
   ============================================================ */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: var(--sp-2) !important; }
.mt-4 { margin-top: var(--sp-4) !important; }
.mt-6 { margin-top: var(--sp-6) !important; }
.mt-8 { margin-top: var(--sp-8) !important; }
.mt-12 { margin-top: var(--sp-12) !important; }
.flex-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.flex-row.--center { justify-content: center; }

/* ============================================================
   ════════════════════════════════════════════════════════════
   ▌ HIGH-END POLISH LAYER — added 2026-05-01
   ════════════════════════════════════════════════════════════
   Scroll reveal · Ken Burns hero · ornament dividers ·
   refined nav · scroll-progress bar · drop caps ·
   premium hovers · subtle grain · refined focus rings
   ============================================================ */

/* ─── Subtle grain overlay (pure CSS, no asset) ─────────────── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.025;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.16 0 0 0 0 0.16 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}
@media (prefers-reduced-motion: reduce) { body::before { display: none; } }

/* ─── Scroll progress bar (top of viewport) ─────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--c-terracotta) 0%, var(--c-gold) 50%, var(--c-sage) 100%);
  z-index: 60;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ─── Site header — refined scroll state ────────────────────── */
.site-header {
  background: rgba(254, 249, 240, 0.78);
  transition: background var(--dur-med) var(--ease-out),
              backdrop-filter var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.site-header[data-scrolled="true"] {
  background: rgba(254, 249, 240, 0.96);
  box-shadow: 0 2px 16px rgba(44, 42, 41, 0.05);
  border-bottom-color: transparent;
}

/* ─── Animated nav underlines ──────────────────────────────── */
.primary-nav a {
  position: relative;
  background: transparent !important;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--c-terracotta);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-med) var(--ease-out);
  border-radius: 1px;
}
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  background: var(--c-terracotta);
}
.primary-nav a[aria-current="page"] {
  color: var(--c-terracotta-d);
}
.primary-nav a:hover { background: transparent; color: var(--c-charcoal); }

/* ─── Ornament divider (replaces simple gold bar) ──────────── */
.divider-gold {
  position: relative;
  width: 80px;
  height: 14px;
  background: transparent;
  margin: var(--sp-4) 0 var(--sp-6) 0;
}
.divider-gold::before,
.divider-gold::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}
.divider-gold::before { left: 0; }
.divider-gold::after { right: 0; }
.divider-gold > span,
.divider-gold:empty::after {
  /* fall back: keep simple bar look without the diamond if no inner content */
}
/* Add diamond to all gold dividers via JS-free pseudo trick: extra :before stack via box-shadow dot */
.divider-gold::before {
  box-shadow:
    36px 0 0 -0.5px var(--c-gold),
    36px 0 0 -0.5px var(--c-gold);
}
/* Simpler: use a dedicated diamond as middle element via gradient */
.divider-gold {
  background: linear-gradient(90deg,
    var(--c-gold) 0 28px,
    transparent 28px 36px,
    transparent 36px 44px,
    transparent 44px 52px,
    var(--c-gold) 52px 80px) no-repeat;
  background-size: 100% 1px;
  background-position: 0 50%;
  height: 14px;
}
.divider-gold::before,
.divider-gold::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  background: var(--c-gold);
  transform: rotate(45deg);
}
.divider-gold::after { display: none; }

/* Smaller centered version for narrow contexts */
.divider-gold[style*="margin-inline:auto"] {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Scroll-reveal animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out),
              transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease-out),
              transform 600ms var(--ease-out);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay:  60ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 140ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 220ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 300ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 380ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 460ms; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 540ms; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 620ms; }
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
}

/* ─── Hero: subtle Ken Burns drift ─────────────────────────── */
@keyframes kenBurns {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}
.hero__media img {
  animation: kenBurns 28s ease-out forwards;
  transform-origin: center center;
}
@media (prefers-reduced-motion: reduce) {
  .hero__media img { animation: none; }
}

/* ─── Hero gradient — slightly more refined ─────────────────── */
.hero__overlay {
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.20) 0%, rgba(20, 18, 16, 0.62) 100%),
    linear-gradient(90deg, rgba(20, 18, 16, 0.60) 0%, rgba(20, 18, 16, 0.05) 65%);
}
.hero h1 { font-weight: 400; letter-spacing: -0.012em; }
.hero h1 em {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--c-gold);
  display: inline-block;
}

/* Hero CTA buttons — slight glass treatment */
.btn--ghost-on-dark {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost-on-dark:hover { background: var(--c-ivory); }

/* ─── Drop cap on first .lead in narrow sections ────────────── */
.lead.has-dropcap::first-letter,
.section .container--narrow > .lead:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.85;
  font-weight: 500;
  float: left;
  color: var(--c-terracotta);
  margin: 0.25rem 0.55rem 0 0;
  font-style: normal;
}

/* ─── Premium gallery hover with overlay reveal ─────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0) 50%, rgba(28, 28, 28, 0.55) 100%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-out);
  pointer-events: none;
}
.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); }
.gallery-item img { transition: transform 600ms var(--ease-out); }

/* ─── Card refinements (softer borders, lift on hover) ─────── */
.card, .package-card, .event-card, .airbnb-teaser {
  background: rgba(254, 249, 240, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ─── Eyebrow with leading dash ─────────────────────────────── */
.eyebrow {
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  margin-top: -0.5px;
}
.section-head.--center .eyebrow,
.text-center .eyebrow,
.hero__eyebrow {
  /* recenter eyebrows in centered layouts */
  padding-left: 0;
}
.section-head.--center .eyebrow::before,
.text-center .eyebrow::before,
.hero__eyebrow::before { display: none; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--c-gold);
}

/* ─── Section heading refinement ──────────────────────────── */
.section-head h2,
.text-center h2 {
  font-weight: 400;
  letter-spacing: -0.01em;
}
.section-head h2 em,
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--c-terracotta-d);
  font-weight: 500;
}

/* ─── Refined buttons ──────────────────────────────────────── */
.btn {
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.95rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-100%);
  transition: transform 350ms var(--ease-out);
  pointer-events: none;
}
.btn:hover::before { transform: translateX(0); }
.btn--small { font-size: 0.75rem; padding: 0.65rem 1.1rem; }
.btn--ghost::before, .btn--ghost-on-dark::before {
  background: rgba(0, 0, 0, 0.06);
}

/* ─── CTA band — richer treatment ──────────────────────────── */
.cta-band {
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 180, 139, 0.18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(194, 125, 110, 0.14), transparent 55%),
    linear-gradient(135deg, var(--c-navy) 0%, #1f2c38 100%);
}
.cta-band h2 {
  font-size: clamp(2.2rem, 3.5vw + 0.5rem, 3rem);
  letter-spacing: -0.01em;
}

/* ─── Footer refinement ────────────────────────────────────── */
.site-footer {
  background:
    radial-gradient(ellipse at top right, rgba(217, 180, 139, 0.06), transparent 60%),
    var(--c-navy);
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 120px; height: 1px;
  margin-left: -60px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.site-footer h4 {
  color: var(--c-gold);
}

/* ─── Refined focus rings (high-contrast, gold) ────────────── */
*:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ─── Brand: tighter, more confident ───────────────────────── */
.brand__name {
  font-weight: 500;
  letter-spacing: -0.005em;
}
.brand__sub {
  color: var(--c-charcoal-2);
  letter-spacing: 0.2em;
  font-size: 0.65rem;
}
.brand img {
  border-radius: 6px;
  background: var(--c-ivory);
  padding: 2px;
  box-shadow: 0 1px 3px rgba(44, 42, 41, 0.06);
}

/* ─── Image blur-up loading state ───────────────────────────── */
img[loading="lazy"] {
  background: var(--c-dove);
}

/* ─── Mobile drawer — refined slide ─────────────────────────── */
.mobile-drawer__panel {
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.32, 0.72, 0, 1);
  width: min(380px, 100%);
}
.mobile-drawer[data-open="true"] .mobile-drawer__panel {
  transform: translateX(0);
}
.mobile-drawer {
  background: rgba(20, 18, 16, 0);
  transition: background 320ms var(--ease-out);
}
.mobile-drawer[data-open="true"] {
  background: rgba(20, 18, 16, 0.55);
}
.mobile-drawer nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  border-bottom: 1px solid var(--c-rule);
  border-radius: 0;
  padding: var(--sp-3) 0;
}
.mobile-drawer nav a:last-child { border-bottom: none; }
.mobile-drawer nav a[aria-current="page"] { color: var(--c-terracotta-d); }

/* ─── Pricing table — refined ──────────────────────────────── */
.pricing-table {
  background: linear-gradient(180deg, var(--c-ivory) 0%, var(--c-dove) 100%);
  border: 1px solid rgba(217, 180, 139, 0.4);
  box-shadow: var(--shadow-md);
}
.pricing-table__row.--featured {
  background: linear-gradient(135deg, rgba(217, 180, 139, 0.18), rgba(194, 125, 110, 0.10));
  border-left: 3px solid var(--c-gold);
}
.pricing-table__price {
  background: linear-gradient(135deg, var(--c-charcoal), var(--c-charcoal-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── Airbnb teaser polish ──────────────────────────────────── */
.airbnb-teaser {
  background: linear-gradient(180deg, var(--c-ivory) 0%, var(--c-dove) 100%);
  box-shadow: var(--shadow-md);
  border-color: rgba(217, 180, 139, 0.4);
}
.airbnb-teaser__rating {
  background: linear-gradient(135deg, var(--c-gold-d), var(--c-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ─── Section-head spacing: a bit more generous ──────────── */
.section-head { margin-bottom: var(--sp-16); }
.section-head.--center { margin-inline: auto; }

/* ─── Lead paragraph — slightly bigger, more elegant ────── */
.lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--c-charcoal-2);
  max-width: 60ch;
}
.text-center .lead { margin-inline: auto; }

/* ─── FAQ summary refined ─────────────────────────────────── */
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.faq-item[open] summary {
  border-bottom: 1px solid var(--c-rule);
  margin-bottom: var(--sp-3);
  padding-bottom: var(--sp-4);
}
.faq-item[open] {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}

/* ─── Filter bar (gallery) — refined ──────────────────────── */
.filter-bar button {
  background: transparent;
  border-color: var(--c-rule);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.filter-bar button[aria-pressed="true"] {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: var(--c-ivory);
}

/* ============================================================
   ▌ VIDEO LAYER — added 2026-05-07
   ============================================================ */

/* Hero video background — fills the .hero__media container */
.hero--video .hero__media { background: #1a1816; }
.hero--video .hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: none;  /* override Ken Burns; video has its own motion */
}
/* Hide ken-burns img animation in case any img sneaks in */
.hero--video .hero__media img { animation: none; }

/* If user prefers reduced motion, the video's own poster image shows
   (since autoplay is disabled by the OS). No special handling needed. */

/* Video gallery cards */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-4);
}
@media (max-width: 720px) {
  .video-grid { grid-template-columns: 1fr; }
}
.video-card {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--c-charcoal);
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0.05) 0%, rgba(20,18,16,0.55) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  pointer-events: none;
  transition: background var(--dur-med) var(--ease-out);
}
.video-card:hover .video-card__overlay {
  background: linear-gradient(180deg, rgba(20,18,16,0.05) 0%, rgba(20,18,16,0.40) 100%);
}
.video-card__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(254, 249, 240, 0.92);
  color: var(--c-terracotta-d);
  font-size: 1.25rem;
  padding-left: 4px; /* visual centering of triangle */
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.video-card:hover .video-card__play {
  transform: scale(1.08);
  background: var(--c-ivory);
}
.video-card__label {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-5);
  right: var(--sp-5);
  color: var(--c-ivory);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  text-align: left;
}

/* Video lightbox (separate from image lightbox visually) */
.video-lightbox {
  position: fixed; inset: 0;
  background: rgba(20, 18, 17, 0.96);
  z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--sp-6);
}
.video-lightbox[data-open="true"] { display: flex; }
.video-lightbox video {
  max-width: min(92vw, 1280px);
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
  background: #000;
}
.video-lightbox__close {
  position: absolute;
  top: var(--sp-6); right: var(--sp-6);
  background: rgba(254, 249, 240, 0.12);
  border: 1px solid rgba(254, 249, 240, 0.3);
  color: var(--c-ivory);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.video-lightbox__close:hover { background: rgba(254, 249, 240, 0.25); }

/* Hover-preview: play card video on hover (desktop only) */
@media (hover: hover) and (pointer: fine) {
  .video-card:hover video { /* Browsers that support it will play via JS handler */ }
}

/* ============================================================
   ▌ SERVICES BLOCK — pricing page packages layout
   ============================================================ */
.services-block {
  margin-bottom: var(--sp-16);
}
.services-block:last-child { margin-bottom: 0; }
.services-block__eyebrow {
  margin-bottom: var(--sp-2);
}
.services-block__title {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: var(--sp-6);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: var(--sp-4);
}
.service-card {
  background: var(--c-ivory);
  border: 1px solid var(--c-rule);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out);
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}
.service-card h4 {
  margin: 0 0 var(--sp-3) 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--c-charcoal);
}
.service-card p {
  color: var(--c-charcoal-2);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0 0 0;
  display: grid;
  gap: var(--sp-2);
}
.service-card ul li {
  position: relative;
  padding-left: var(--sp-5);
  color: var(--c-charcoal-2);
  font-size: 0.9rem;
  line-height: 1.5;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
}

/* ============================================================
   ▌ HERO INTERIOR — portrait interior video, contained
   ============================================================ */
.hero-interior {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1a1816;
  aspect-ratio: 9 / 16;
  max-height: 85vh;
}
.hero-interior__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hero-interior__video { display: none; }
  .hero-interior::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url("/videos/interior-mainhall-poster.jpg");
    background-size: cover; background-position: center;
  }
}
@media (max-width: 640px) {
  .hero-interior {
    max-width: 100%;
    border-radius: var(--radius-md);
  }
}

/* ============================================================
   ▌ TESTIMONIAL — editorial pull-quote
   ============================================================ */
.testimonial {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(var(--sp-10), 6vw, var(--sp-16)) clamp(var(--sp-6), 4vw, var(--sp-12));
  background: var(--c-ivory);
  border: 1px solid rgba(217, 180, 139, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--c-gold) 0%, var(--c-terracotta) 100%);
}
.testimonial__quote-mark {
  position: absolute;
  top: 12px;
  left: clamp(var(--sp-6), 4vw, var(--sp-12));
  font-family: var(--font-display);
  font-size: clamp(6rem, 9vw, 9rem);
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.35;
  font-weight: 400;
  pointer-events: none;
  user-select: none;
}
.testimonial__quote {
  margin: 0 0 var(--sp-8) 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.testimonial__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.4vw + 0.7rem, 1.55rem);
  line-height: 1.55;
  font-weight: 400;
  color: var(--c-charcoal);
  margin: 0 0 var(--sp-5) 0;
  font-style: italic;
  letter-spacing: -0.003em;
}
.testimonial__quote p:last-child { margin-bottom: 0; }
.testimonial__quote em {
  font-style: italic;
  color: var(--c-terracotta-d);
  font-weight: 500;
}
.testimonial__attribution {
  position: relative;
  z-index: 1;
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial__author {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-charcoal);
}
.testimonial__role {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-charcoal-2);
  font-weight: 500;
}

/* ─── Print refinements ────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .cta-band, .menu-toggle, .lightbox,
  .scroll-progress, .mobile-drawer, .filter-bar { display: none !important; }
  body::before { display: none; }
  body { background: white; color: black; }
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; }
  .hero__media img { animation: none !important; }
}
