:root {
  --ink:        #0B2238;
  --ink-deep:   #061826;
  --ink-soft:   #2C3D52;
  --paper:      #F8F6F1;
  --paper-warm: #F0EDE5;
  --paper-deep: #E5E0D5;
  --brass:      #C9986A;
  --brass-deep: #7a5928;   /* was: #A37844 */
  --rule:       #DDD7C8;
  --text:       #1A2433;
  --text-soft:  #4A5568;
  --text-mute:  #7A8294;
  --white:      #FFFFFF;
  --serif:      'Fraunces', 'Times New Roman', serif;
  --sans:       'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:       'JetBrains Mono', 'SF Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'ss02';
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* GRAIN OVERLAY — paper texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.025 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  opacity: 1;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* MASTHEAD */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248,246,241,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--rule);
}
.masthead-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 48px;
  gap: 32px;
  max-width: 1440px; margin: 0 auto;
}
.masthead-brand {
  display: flex; align-items: center;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.masthead-brand:hover { opacity: 0.85; }
.masthead-logo {
  display: block;
  height: 48px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}

/* Hamburger toggle — hidden on desktop, shown on mobile */
.masthead-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
}
.masthead-toggle-bar {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.masthead-toggle[aria-expanded="true"] .masthead-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.masthead-toggle[aria-expanded="true"] .masthead-toggle-bar:nth-child(2) {
  opacity: 0;
}
.masthead-toggle[aria-expanded="true"] .masthead-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Primary nav */
.masthead-nav {
  flex: 1;
}
.masthead-menu {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.masthead-menu-item {
  position: relative;
}
.masthead-menu-item > a,
.masthead-submenu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--text-soft);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.masthead-menu-item > a:hover,
.masthead-submenu-trigger:hover,
.masthead-menu-item.is-open .masthead-submenu-trigger {
  color: var(--ink);
  background: rgba(11, 34, 56, 0.04);
}

.masthead-chevron {
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  margin-left: 2px;
}
.masthead-menu-item.is-open .masthead-chevron {
  transform: rotate(-135deg) translate(-1px, -1px);
}

/* Submenu (dropdown card) */
.masthead-submenu {
  list-style: none;
  margin: 0; padding: 8px 0;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(11,34,56,0.04), 0 18px 40px -12px rgba(11,34,56,0.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.22s;
}
.masthead-submenu::before {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: var(--brass);
  border-radius: 0 0 2px 2px;
}
.masthead-menu-item.is-open .masthead-submenu,
.masthead-menu-item:hover .masthead-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
}
.masthead-submenu li { margin: 0; }
.masthead-submenu a {
  display: block;
  padding: 10px 22px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: -0.003em;
  transition: color 0.15s ease, background 0.15s ease;
}
.masthead-submenu a:hover {
  color: var(--ink);
  background: var(--paper-warm);
}

.masthead-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans); font-size: 0.86rem; font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.masthead-cta:hover { background: var(--ink-deep); transform: translateY(-1px); }
.masthead-cta::after { content: '→'; font-size: 1.05em; }

/* Tablet — hide menu items at narrow widths, show hamburger */
@media (max-width: 1080px) {
  /* Disable backdrop-filter on mobile so position:fixed nav escapes the masthead containing block */
  .masthead {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .masthead-toggle { display: flex; order: 3; }
  .masthead-cta { order: 2; }

  .masthead-nav {
    position: fixed;
    top: 73px; /* approximate masthead height */
    left: 0; right: 0; bottom: 0;
    background: var(--paper);
    border-top: 1px solid var(--rule);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 99;
    padding: 24px 0;
  }
  .masthead-nav.is-open {
    transform: translateX(0);
  }
  .masthead-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 24px;
  }
  .masthead-menu-item {
    border-bottom: 1px solid var(--rule);
  }
  .masthead-menu-item:last-child {
    border-bottom: none;
  }
  .masthead-menu-item > a,
  .masthead-submenu-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 1.05rem;
    border-radius: 0;
    color: var(--ink);
  }
  .masthead-menu-item > a:hover,
  .masthead-submenu-trigger:hover,
  .masthead-menu-item.is-open .masthead-submenu-trigger {
    background: transparent;
  }
  .masthead-submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: 0;
    box-sizing: border-box;
    padding: 0;
    opacity: 1;
    visibility: visible;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  .masthead-submenu::before { display: none; }
  /* Override desktop is-open/hover rules — they have higher specificity but still translate off-screen */
  .masthead-menu-item.is-open .masthead-submenu,
  .masthead-menu-item:hover .masthead-submenu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .masthead-menu-item.is-open .masthead-submenu {
    max-height: 600px;
    padding: 0 0 16px 16px;
    transition: max-height 0.4s ease, padding 0.3s ease;
  }
  .masthead-menu-item:hover .masthead-submenu {
    /* Hover doesn't trigger expansion on touch devices */
    max-height: 0;
    padding: 0;
  }
  .masthead-menu-item.is-open:hover .masthead-submenu {
    max-height: 600px;
    padding: 0 0 16px 16px;
  }
  .masthead-submenu a {
    padding: 10px 0;
    font-size: 0.96rem;
  }
}

@media (max-width: 720px) {
  .masthead-inner { padding: 14px 24px; gap: 12px; }
  .masthead-logo { height: 40px; }
  .masthead-cta {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .masthead-nav { top: 64px; }
}

/* HERO */
.hero {
  position: relative;
  padding: 96px 48px 120px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1280px; margin: 0 auto;
  gap: 64px;
  align-items: end;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.4fr 0.9fr; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--brass);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.030em;
  color: var(--ink);
  margin-bottom: 42px;
  max-width: 18ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--brass-deep);
}

.hero-lede {
  font-size: 1.10rem;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 50ch;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-signoff {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 380;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.4rem;
  line-height: 1.35;
  color: var(--ink);
  max-width: 50ch;
  margin-bottom: 40px;
  padding-left: 0;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 56px;
}

.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans); font-size: 0.96rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary {
  background: var(--ink); color: var(--white);
  border-radius: 100px;
  letter-spacing: -0.005em;
}
.btn-primary:hover { background: var(--ink-deep); transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(11, 34, 56, 0.3); }
.btn-primary::after {
  content: '→'; font-size: 1.1em;
  transition: transform 0.22s ease;
}
.btn-primary:hover::after { transform: translateX(4px); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 100px;
  letter-spacing: -0.005em;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px 24px;
  font-family: var(--sans); font-size: 0.84rem; font-weight: 500;
  color: var(--text-mute);
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta strong { color: var(--ink); font-weight: 600; font-feature-settings: 'tnum'; }
.hero-meta .dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; flex-shrink: 0; }

/* HERO CARD — the editorial signature card */
.hero-card {
  position: relative;
  padding: 48px 44px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(11,34,56,0.04), 0 24px 60px -20px rgba(11,34,56,0.12);
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: var(--brass);
  border-radius: 0 0 3px 3px;
}
.hero-card-label {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 20px;
}
.hero-card-title {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.6rem;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-card-title em { font-style: italic; color: var(--brass-deep); font-weight: 360; font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.hero-card-body {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.hero-card-rule {
  height: 1px; background: var(--rule);
  margin: 24px 0;
}
.hero-card-detail {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--sans); font-size: 0.92rem;
  margin-bottom: 10px;
  color: var(--text-soft);
}
.hero-card-detail:last-child { margin-bottom: 0; }
.hero-card-detail strong { color: var(--ink); font-weight: 500; }

/* SECTIONS */
section { padding: 120px 48px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--sans); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 28px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--brass);
}
.section-eyebrow .num {
  font-family: var(--mono); font-weight: 500;
  color: var(--text-mute); letter-spacing: 0.05em;
}

.section-title {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 22ch;
}
.section-title em { font-style: italic; font-weight: 320; color: var(--brass-deep); font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.section-lede {
  font-size: 1.1rem; line-height: 1.6;
  color: var(--text-soft);
  max-width: 60ch;
  margin-top: 24px;
}
.section-sub-line {
  font-family: var(--serif); font-style: italic;
  font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.18rem; line-height: 1.45;
  color: var(--text-soft);
  max-width: 50ch;
  margin-top: 24px;
}

/* PROMISE — three-column commitments */
.promise-section { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 72px;
}
@media (min-width: 880px) {
  .promise-grid { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}
.promise-item {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.promise-item-num {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--brass-deep); letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.promise-item h3 {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.4rem; letter-spacing: -0.014em; line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
.promise-item p {
  font-size: 0.98rem; line-height: 1.6;
  color: var(--text-soft);
}
.promise-item p strong { color: var(--ink); font-weight: 500; }

/* ROOMS-DIRECT — the brave moment */
.rooms-section {
  background: var(--ink);
  color: var(--white);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}
.rooms-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(201,152,106,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(201,152,106,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.rooms-section .section-eyebrow { color: var(--brass); }
.rooms-section .section-eyebrow::before { background: var(--brass); }
.rooms-section .section-eyebrow .num { color: rgba(255,255,255,0.5); }
.rooms-section .section-title { color: var(--white); }
.rooms-section .section-title em { color: var(--brass); }
.rooms-section .section-sub-line { color: rgba(255,255,255,0.78); }

.rooms-statement {
  font-family: var(--serif); font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.18; letter-spacing: -0.022em;
  color: var(--white);
  max-width: 22ch;
  margin: 64px 0;
  position: relative;
  z-index: 1;
}
.rooms-statement em {
  font-style: italic;
  color: var(--brass);
  font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.rooms-vs {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  margin-top: 80px;
  position: relative; z-index: 1;
}
@media (min-width: 880px) { .rooms-vs { grid-template-columns: 1fr 1fr; gap: 48px; } }

.rooms-col {
  padding: 40px;
  border-radius: 6px;
  position: relative;
}
.rooms-col-them {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
}
.rooms-col-us {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--brass);
}
.rooms-col-us::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: var(--brass); border-radius: 0 0 3px 3px;
}

.rooms-col h3 {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.45rem; letter-spacing: -0.014em;
  margin-bottom: 8px;
}
.rooms-col-them h3 { color: var(--white); }
.rooms-col-us h3 { color: var(--ink); }
.rooms-col-tag {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.rooms-col-them .rooms-col-tag { color: rgba(255,255,255,0.55); }
.rooms-col-us .rooms-col-tag { color: var(--brass-deep); }

.rooms-list { list-style: none; padding: 0; margin: 0; }
.rooms-list li {
  padding: 14px 0;
  border-bottom: 1px solid;
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.96rem; line-height: 1.5;
}
.rooms-col-them .rooms-list li { border-color: rgba(255,255,255,0.1); color: rgba(255,255,255,0.78); }
.rooms-col-us .rooms-list li { border-color: var(--rule); color: var(--ink); }
.rooms-list li:last-child { border-bottom: none; }
.rooms-list li::before {
  font-family: var(--mono); font-size: 0.86rem;
  flex-shrink: 0; margin-top: 1px;
}
.rooms-col-them .rooms-list li::before { content: '×'; color: rgba(255,255,255,0.35); font-size: 1.1rem; line-height: 1; }
.rooms-col-us .rooms-list li::before { content: '✓'; color: var(--brass-deep); font-weight: 600; }

.rooms-howit {
  margin-top: 60px;
  padding: 36px 44px;
  background: rgba(201,152,106,0.08);
  border-left: 2px solid var(--brass);
  border-radius: 0 6px 6px 0;
  max-width: 760px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.rooms-howit p {
  font-family: var(--serif); font-weight: 380;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.16rem; line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}
.rooms-howit p:last-child {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-style: italic;
  color: rgba(255,255,255,0.62);
  margin-bottom: 0;
}

.rooms-pullquote {
  margin-top: 80px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  text-align: center;
  position: relative; z-index: 1;
}
.rooms-pullquote blockquote {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.32;
  letter-spacing: -0.014em;
  color: var(--white);
  font-style: italic;
  margin-bottom: 24px;
}
.rooms-pullquote cite {
  font-style: normal;
  font-family: var(--sans); font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}
.rooms-pullquote cite strong { color: var(--white); font-weight: 600; }

/* FOUNDER SECTION */
.founder-section { background: var(--paper-warm); border-bottom: 1px solid var(--rule); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-top: 72px;
}
@media (min-width: 980px) {
  .founder-grid { grid-template-columns: 1fr 1.5fr; gap: 96px; align-items: start; }
}

.founder-portrait {
  background: var(--paper-deep);
  border-radius: 6px;
  aspect-ratio: 4 / 5;
  display: flex; align-items: end;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.founder-portrait-placeholder {
  font-family: var(--sans); font-size: 0.78rem;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.founder-portrait-caption {
  font-family: var(--mono); font-size: 0.74rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

.founder-prose p {
  font-size: 1.02rem; line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.founder-prose p strong { color: var(--ink); font-weight: 500; }
.founder-prose p em { font-family: var(--serif); font-style: italic; font-weight: 380; color: var(--ink); }

/* Single-column founder treatment (anonymous-founder version) */
.founder-section .container-narrow { text-align: center; }
.founder-section .container-narrow .section-eyebrow { justify-content: center; }
.founder-section .container-narrow .section-title { margin-left: auto; margin-right: auto; }
.founder-prose-solo {
  margin-top: 56px;
  text-align: left;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.founder-prose-solo p {
  font-size: 1.04rem; line-height: 1.75;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.founder-prose-solo p strong { color: var(--ink); font-weight: 500; }
.founder-prose-solo p em { font-family: var(--serif); font-style: italic; font-weight: 380; color: var(--ink); }

.founder-pullquote {
  margin-top: 40px;
  padding: 28px 32px;
  border-left: 2px solid var(--brass);
  background: rgba(255,255,255,0.6);
  border-radius: 0 6px 6px 0;
}
.founder-pullquote blockquote {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.34rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
}
.founder-pullquote cite {
  font-style: normal;
  font-family: var(--sans); font-size: 0.88rem;
  color: var(--text-mute);
}
.founder-pullquote cite strong { color: var(--ink); font-weight: 600; }

/* BOUTIQUE — editorial showpiece */
.boutique-section { background: var(--paper); padding: 140px 48px; }
.boutique-content {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.boutique-content .section-eyebrow { justify-content: center; }
.boutique-display {
  font-family: var(--serif); font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.038em;
  color: var(--ink);
  text-align: center;
  margin: 36px 0 32px;
}
.boutique-display em { font-style: italic; color: var(--brass-deep); font-weight: 320; font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.boutique-sub {
  font-family: var(--serif); font-style: italic;
  font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.24rem; line-height: 1.45;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0 auto 56px;
}
.boutique-prose {
  text-align: left;
}
.boutique-prose p {
  font-size: 1.04rem; line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.boutique-prose p strong { color: var(--ink); font-weight: 500; }
.capacity-banner {
  margin-top: 56px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--brass);
  border-radius: 6px;
  text-align: center;
  position: relative;
}
.capacity-banner::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px; height: 3px;
  background: var(--brass); border-radius: 0 0 3px 3px;
}
.capacity-banner-label {
  font-family: var(--mono); font-size: 0.74rem;
  color: var(--brass-deep); letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.capacity-banner-text {
  font-family: var(--serif); font-weight: 380;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.16rem; line-height: 1.45;
  color: var(--ink);
}
.capacity-banner-text a { color: var(--brass-deep); text-decoration: none; border-bottom: 1px solid var(--brass); }

/* INCLUSIONS */
.inclusions-section { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.inclusions-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px; overflow: hidden;
  margin-top: 72px;
}
@media (min-width: 720px) { .inclusions-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .inclusions-grid { grid-template-columns: repeat(4, 1fr); } }

.inclusion-cell {
  background: var(--white);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: background 0.25s ease;
}
.inclusion-cell:hover { background: var(--paper); }
.inclusion-num {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--brass-deep); letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.inclusion-cell h3 {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.3rem; letter-spacing: -0.014em; line-height: 1.2;
  color: var(--ink);
  margin-bottom: 24px;
}
.inclusion-cell ul { list-style: none; padding: 0; margin: 0; }
.inclusion-cell li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 0.93rem; line-height: 1.55;
  color: var(--text-soft);
}
.inclusion-cell li:first-child { border-top: none; padding-top: 0; }
.inclusion-cell li:last-child { padding-bottom: 0; }

.inclusion-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 56px;
  font-family: var(--sans); font-size: 1rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap 0.22s ease, color 0.22s ease;
}
.inclusion-link:hover { gap: 14px; color: var(--brass-deep); border-bottom-color: var(--brass); }

/* STATS TABLE */
.stats-section { background: var(--paper-warm); border-bottom: 1px solid var(--rule); }
.stats-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.stats-table th, .stats-table td {
  padding: 22px 24px; text-align: left;
  font-feature-settings: 'tnum';
}
.stats-table thead th {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.stats-table thead th.us { color: var(--brass-deep); background: var(--paper-warm); }
.stats-table tbody td {
  border-bottom: 1px solid var(--rule);
  font-size: 0.98rem;
  color: var(--ink);
}
.stats-table tbody td:first-child {
  font-weight: 500;
  color: var(--ink);
}
.stats-table tbody td.them { color: var(--text-mute); font-family: var(--mono); font-size: 0.94rem; }
.stats-table tbody td.us { color: var(--ink); font-family: var(--mono); font-size: 0.94rem; font-weight: 500; background: rgba(201,152,106,0.06); }
.stats-table tbody tr:last-child td { border-bottom: none; }
.stats-footnote {
  margin-top: 28px;
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--text-mute); line-height: 1.6;
  max-width: 680px;
}

/* COVERAGE */
.coverage-section { background: var(--white); border-bottom: 1px solid var(--rule); }
.coverage-prose p {
  font-size: 1.04rem; line-height: 1.7;
  color: var(--text-soft);
  margin-top: 28px;
  max-width: 64ch;
}
.coverage-cities {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  margin-top: 64px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 600px) { .coverage-cities { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .coverage-cities { grid-template-columns: repeat(3, 1fr); } }
.coverage-city {
  background: var(--white);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.18rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.012em;
  transition: background 0.22s ease, color 0.22s ease;
  border: none;
}
.coverage-city:hover { background: var(--paper); color: var(--brass-deep); }
.coverage-city::after {
  content: '→';
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--brass-deep);
  transition: transform 0.22s ease;
}
.coverage-city:hover::after { transform: translateX(4px); }

/* TESTIMONIALS */
.testimonials-section { background: var(--paper-warm); }
.testimonials {
  display: grid; grid-template-columns: 1fr; gap: 56px;
  margin-top: 80px;
}
@media (min-width: 880px) {
  .testimonials { grid-template-columns: repeat(12, 1fr); gap: 48px; }
  .testimonial:nth-child(1) { grid-column: 1 / span 7; }
  .testimonial:nth-child(2) { grid-column: 8 / span 5; padding-top: 48px; }
}

.testimonial-mark {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 4.5rem; line-height: 0.5;
  color: var(--brass);
  margin-bottom: 8px;
}
.testimonial blockquote {
  font-family: var(--serif); font-weight: 380;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 28px;
}
.testimonial cite {
  font-style: normal;
  display: flex; align-items: baseline; gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans); font-size: 0.92rem;
}
.testimonial cite strong { color: var(--ink); font-weight: 600; }
.testimonial cite span { color: var(--text-mute); }
.testimonial cite::before { content: '—'; color: var(--brass); }

.trust-strip {
  margin-top: 80px;
  padding: 48px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--serif); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-size: clamp(2.2rem, 3.6vw, 2.8rem);
  line-height: 1; letter-spacing: -0.028em;
  color: var(--ink);
  font-feature-settings: 'tnum';
  margin-bottom: 8px;
}
.trust-num em { font-style: italic; color: var(--brass-deep); font-weight: 320; }
.trust-label {
  font-family: var(--sans); font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
}

/* SEGMENTS — three doors */
.segments-section { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.segments-grid {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 6px; overflow: hidden;
  margin-top: 72px;
}
@media (min-width: 880px) { .segments-grid { grid-template-columns: repeat(3, 1fr); } }
.segment {
  background: var(--white);
  padding: 48px 36px;
  display: flex; flex-direction: column;
  transition: background 0.25s ease;
}
.segment:hover { background: var(--paper); }
.segment-num {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--brass-deep); letter-spacing: 0.06em;
  margin-bottom: 24px;
}
.segment h3 {
  font-family: var(--serif); font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.5rem; letter-spacing: -0.016em; line-height: 1.2;
  color: var(--ink);
  margin-bottom: 18px;
}
.segment p {
  font-size: 0.96rem; line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.segment-callout {
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  color: var(--brass-deep);
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 24px 0 32px;
  letter-spacing: -0.005em;
}
.segment-link {
  margin-top: auto;
  font-family: var(--sans); font-size: 0.92rem; font-weight: 500;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--ink);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: gap 0.22s ease, color 0.22s ease;
}
.segment-link:hover { gap: 14px; color: var(--brass-deep); border-bottom-color: var(--brass); }

/* FAQ */
.faq-section { background: var(--paper-warm); border-bottom: 1px solid var(--rule); }
.faq-grid {
  display: grid; grid-template-columns: 1fr; gap: 64px;
  margin-top: 64px;
}
@media (min-width: 980px) { .faq-grid { grid-template-columns: 1fr 2fr; gap: 96px; } }
.faq-aside {
  position: sticky; top: 110px;
  align-self: start;
}
.faq-aside p {
  font-size: 1rem; line-height: 1.65;
  color: var(--text-soft);
  margin-top: 24px;
}
.faq details { border-bottom: 1px solid var(--rule); }
.faq details:first-child { border-top: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 48px 26px 0;
  font-family: var(--serif); font-weight: 440;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.16rem; line-height: 1.4;
  letter-spacing: -0.014em;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}
.faq summary:hover { color: var(--brass-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 14px; height: 14px;
  transform: translateY(-50%);
  background:
    linear-gradient(currentColor, currentColor) center / 100% 1.5px no-repeat,
    linear-gradient(currentColor, currentColor) center / 1.5px 100% no-repeat;
  color: var(--brass-deep);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); background: linear-gradient(currentColor, currentColor) center/100% 1.5px no-repeat; }
.faq-answer {
  padding: 0 48px 28px 0;
  font-family: var(--sans); font-size: 0.98rem; line-height: 1.7;
  color: var(--text-soft);
  max-width: 64ch;
}

/* FAQ video embed — responsive 16:9 with editorial frame */
.faq-video {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 24px 60px -20px rgba(11,34,56,0.18);
}
.faq-video::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: var(--brass);
  border-radius: 0 0 3px 3px;
  z-index: 2;
}
.faq-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* RISK REVERSAL */
.risk-section { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.risk-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  margin-top: 72px;
}
@media (min-width: 720px) { .risk-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px) { .risk-grid { grid-template-columns: repeat(4, 1fr); gap: 56px; } }
.risk-item { padding: 0; }
.risk-num {
  font-family: var(--serif); font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 3rem; line-height: 1;
  font-style: italic;
  color: var(--brass);
  margin-bottom: 20px;
  font-feature-settings: 'tnum', 'lnum';
}
.risk-quote {
  font-family: var(--serif); font-weight: 460;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.18rem; letter-spacing: -0.014em;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.4;
}
.risk-item p {
  font-size: 0.94rem; line-height: 1.6;
  color: var(--text-soft);
}

/* CONTACT */
.contact-section {
  background: var(--ink);
  color: var(--white);
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,152,106,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,152,106,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.contact-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.contact-section .section-eyebrow { color: var(--brass); justify-content: center; }
.contact-section .section-eyebrow::before { background: var(--brass); }

.contact-title {
  font-family: var(--serif); font-weight: 320;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1; letter-spacing: -0.034em;
  color: var(--white);
  margin: 24px 0 32px;
}
.contact-title em { font-style: italic; color: var(--brass); font-weight: 320; font-variation-settings: 'opsz' 144, 'SOFT' 100; }

.contact-lede {
  font-family: var(--serif); font-weight: 380;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-size: 1.18rem; line-height: 1.55;
  color: rgba(255,255,255,0.86);
  margin-bottom: 16px;
  max-width: 56ch; margin-left: auto; margin-right: auto;
}
.contact-meta {
  font-family: var(--mono); font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 48px;
  line-height: 1.7;
}

/* Form wrapper — paper card on the ink background */
.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 40px;
  text-align: left;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.4);
  margin-bottom: 32px;
}
.contact-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: var(--brass); border-radius: 0 0 3px 3px;
}

/* WPForms style overrides — make the plugin inherit the design system */
.contact-form-wrap .wpforms-container { font-family: var(--sans) !important; }

/* Hide the default WPForms decorative icons next to labels */
.contact-form-wrap .wpforms-field-label-inline svg,
.contact-form-wrap .wpforms-field-label svg,
.contact-form-wrap label svg { display: none !important; }

.contact-form-wrap .wpforms-field-label,
.contact-form-wrap label {
  font-family: var(--sans) !important;
  font-size: 0.84rem !important; font-weight: 500 !important;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-soft) !important;
  margin-bottom: 8px !important;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  font-family: var(--sans) !important;
  font-size: 1rem !important;
  background: var(--white) !important;
  border: 1px solid var(--rule) !important;
  border-radius: 4px !important;
  padding: 12px 14px !important;
  color: var(--ink) !important;
  width: 100% !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  outline: none !important;
  border-color: var(--brass) !important;
  box-shadow: 0 0 0 3px rgba(201,152,106,0.18) !important;
}
.contact-form-wrap textarea { min-height: 140px; resize: vertical; }
.contact-form-wrap .wpforms-field { margin-bottom: 20px !important; padding: 0 !important; }
.contact-form-wrap button[type="submit"],
.contact-form-wrap .wpforms-submit {
  font-family: var(--sans) !important;
  font-size: 0.96rem !important; font-weight: 500 !important;
  background: var(--ink) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 16px 32px !important;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-form-wrap button[type="submit"]:hover,
.contact-form-wrap .wpforms-submit:hover {
  background: var(--ink-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(11,34,56,0.3);
}

/* Phone fallback below the form */
.contact-fallback {
  display: inline-flex; flex-wrap: wrap; gap: 6px 14px;
  justify-content: center; align-items: baseline;
  font-family: var(--sans); font-size: 0.94rem;
  color: rgba(255,255,255,0.7);
}
.contact-fallback a {
  color: var(--brass);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,152,106,0.4);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.contact-fallback a:hover { color: var(--white); border-color: var(--white); }
.contact-fallback-hours { color: rgba(255,255,255,0.45); font-family: var(--mono); font-size: 0.82rem; }

/* FOOTER */
.footer {
  background: var(--ink-deep);
  color: rgba(255,255,255,0.72);
  padding: 56px 48px;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1fr auto; } }
.footer-brand { display: flex; align-items: center; }
.footer-logo {
  display: block;
  height: 38px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0.92;
}
.footer-contact {
  display: flex; flex-wrap: wrap; gap: 14px 28px;
  font-family: var(--sans); font-size: 0.88rem;
}
.footer-contact a { color: rgba(255,255,255,0.85); text-decoration: none; }
.footer-contact a:hover { color: var(--white); }

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 720px) {
  section { padding: 80px 24px; }
  .hero { padding: 48px 24px 80px; }
  .masthead { padding: 16px 24px; }
  .faq-aside { position: static; }
  .hero-card { padding: 36px 28px; }
  .rooms-section { padding: 96px 24px; }
  .rooms-col { padding: 28px; }
  .rooms-howit { padding: 28px; }
  .contact-section { padding: 96px 24px; }
  .contact-form-wrap { padding: 28px 24px; }
  .footer { padding: 40px 24px; }
  .stats-table th, .stats-table td { padding: 14px 12px; font-size: 0.88rem; }
  .boutique-section { padding: 96px 24px; }
}

/* ==========================================================================
   HERO IMAGE SECTION
   --------------------------------------------------------------------------
   Append this block to the bottom of:
     /wp-content/themes/astra-child/assets/home/style-home.css

   Sits between the Hero (text + credibility card) and "The Promise"
   (Section 01). Editorial brand statement. No caption — the image speaks.

   If your style-home.css already defines design-token CSS variables
   (e.g. --ft-bg, --ft-radius), feel free to swap the literal values
   below for your existing tokens to keep the design system consistent.
   ========================================================================== */

.hero-image-section {
  /* sits flush against the hero above; pushes off "The Promise" below */
  padding: 0 0 clamp(56px, 8vw, 120px);
  background: transparent;
}

.hero-image-figure {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 clamp(20px, 4vw, 56px);
}

.hero-image-figure img {
  display: block;
  width: 100%;
  height: auto;
  /* Lock aspect ratio to prevent CLS while the image loads.
     Matches the source image's native 16:9 ratio (1672x941). */
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  /* Soft editorial shadow — depth without decoration */
  box-shadow:
    0 30px 60px -28px rgba(20, 14, 8, 0.18),
    0 6px 14px -6px rgba(20, 14, 8, 0.08);
}

/* Mobile — tighter padding, smaller radius */
@media (max-width: 700px) {
  .hero-image-section {
    padding: 0 0 clamp(36px, 9vw, 64px);
  }
  .hero-image-figure {
    padding: 0 16px;
  }
  .hero-image-figure img {
    border-radius: 3px;
    box-shadow:
      0 16px 32px -18px rgba(20, 14, 8, 0.20),
      0 3px 8px -3px rgba(20, 14, 8, 0.08);
  }
}

