:root {
  --doc-gold: #d9ad54;
  --doc-gold-soft: rgba(217, 173, 84, .34);
  --doc-teal: #61c6bd;
  --doc-ink: #0b0a08;
  --doc-surface: rgba(15, 16, 13, .78);
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 104px; }

/* Shared header: the editorial navigation stays compact until it becomes a drawer. */
.site-header .header-inner { max-width: 1540px; }
.site-header .desktop-nav { gap: clamp(12px, 1.25vw, 24px); }
.site-header .desktop-nav a {
  font-size: 11px;
  letter-spacing: .025em;
  white-space: nowrap;
}
.site-header .header-contact {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(217, 173, 84, .56);
  border-radius: 50%;
  color: var(--doc-gold);
  text-decoration: none;
  transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
}
.site-header .header-contact svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.site-header .header-contact:hover,
.site-header .header-contact:focus-visible { color: #0d1513; background: var(--doc-teal); border-color: var(--doc-teal); transform: translateY(-2px); }
.site-header .header-join { padding-inline: 22px; }
.mobile-menu .mobile-contact { color: var(--doc-teal); }

/* Hero wayfinding: one continuous surface, no cards inside cards. */
.hero-wayfinding {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 16px;
  width: min(1280px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  transform: translateX(-50%);
  border: 1px solid var(--doc-gold-soft);
  border-radius: 18px;
  background: linear-gradient(105deg, rgba(10, 10, 8, .88), rgba(17, 25, 23, .8));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 50px rgba(3,5,4,.26);
  backdrop-filter: blur(16px) saturate(115%);
  overflow: hidden;
}
.hero-brand-v3 { min-height: 100dvh; }
.hero-brand-v3 .hero-depth-mark {
  top: 112px;
  right: clamp(24px, 4vw, 64px);
  left: auto;
}
.hero-wayfinding a {
  min-width: 0;
  display: grid;
  align-content: center;
  gap: 5px;
  min-height: 88px;
  padding: 17px 20px 16px;
  color: #f7ecd2;
  text-decoration: none;
  transition: background .22s ease, color .22s ease;
}
.hero-wayfinding a + a { border-left: 1px solid rgba(217, 173, 84, .24); }
.hero-wayfinding strong { font-size: 13px; line-height: 1.15; font-weight: 650; }
.hero-wayfinding span { color: rgba(241, 229, 203, .63); font-size: 10px; line-height: 1.35; letter-spacing: .035em; }
.hero-wayfinding a:hover,
.hero-wayfinding a:focus-visible { color: #fff; background: rgba(97, 198, 189, .12); outline: none; }
.hero-wayfinding a:focus-visible { box-shadow: inset 0 0 0 2px var(--doc-teal); }
.hero-brand-v3 .hero-content { margin-bottom: 94px; }

/* Reviews: a calm reading surface. Video column only exists when content exists. */
.review-showcase {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(97,198,189,.08), transparent 36%),
    #11100d;
  border-top: 1px solid rgba(217,173,84,.18);
  border-bottom: 1px solid rgba(217,173,84,.18);
}
.review-showcase-grid { display: grid; grid-template-columns: 1fr; gap: clamp(30px, 5vw, 76px); align-items: stretch; }
.review-showcase.has-video .review-showcase-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr); }
.review-reader { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; }
.review-reader .eyebrow { color: var(--doc-teal); }
.review-slide { display: none; max-width: 820px; }
.review-slide.is-active { display: block; animation: review-in .34s ease both; }
.review-slide blockquote {
  margin: 28px 0 26px;
  color: #f3ead9;
  font-family: var(--serif);
  font-size: clamp(28px, 3.1vw, 52px);
  line-height: 1.08;
  letter-spacing: -.025em;
  text-wrap: pretty;
}
.review-slide cite { color: rgba(243,234,217,.62); font-size: 13px; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.review-controls { display: flex; align-items: center; gap: 10px; margin-top: 34px; }
.review-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217,173,84,.4);
  border-radius: 50%;
  background: transparent;
  color: var(--doc-gold);
  font-size: 22px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.review-controls button:hover,
.review-controls button:focus-visible { background: var(--doc-teal); border-color: var(--doc-teal); color: #0a1110; outline: none; }
.review-controls button:active { transform: scale(.96); }
.review-counter { color: rgba(243,234,217,.48); font-size: 12px; font-variant-numeric: tabular-nums; }
.review-video-stage { min-height: 360px; overflow: hidden; border-radius: 2px 26px 2px 26px; background: #080806; }
.review-video-stage video,
.review-video-stage iframe { width: 100%; height: 100%; min-height: 360px; display: block; object-fit: cover; border: 0; }
@keyframes review-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.reviews-ledger { display: grid; gap: 0; border-top: 1px solid rgba(217,173,84,.24); }
.reviews-ledger article { display: grid; grid-template-columns: minmax(150px,.3fr) minmax(0,1fr); gap: clamp(24px,5vw,86px); padding: clamp(28px,4vw,56px) 0; border-bottom: 1px solid rgba(217,173,84,.18); }
.reviews-ledger cite { color: var(--doc-teal); font-style: normal; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.reviews-ledger blockquote { max-width: 850px; margin: 0; color: #eee3cf; font-family: var(--serif); font-size: clamp(22px,2.2vw,34px); line-height: 1.25; text-wrap: pretty; }

/* New editorial content pages. */
.editorial-hero { min-height: min(760px, 84dvh); display: grid; align-items: end; position: relative; overflow: hidden; }
.editorial-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) brightness(.56); }
.editorial-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,7,6,.94), rgba(8,7,6,.48) 58%, rgba(8,7,6,.18)); }
.editorial-hero-content { position: relative; z-index: 1; padding-top: 180px; padding-bottom: clamp(74px,9vw,126px); }
.editorial-hero h1 { max-width: 920px; margin: 12px 0 0; color: #f0d88f; font-family: var(--serif); font-size: clamp(52px,7.5vw,112px); line-height: .92; font-weight: 400; letter-spacing: -.045em; text-wrap: balance; }
.editorial-copy { padding: clamp(76px,9vw,140px) 0; }
.editorial-copy-grid { display: grid; grid-template-columns: .62fr 1fr; gap: clamp(46px,8vw,140px); align-items: start; }
.editorial-copy h2 { position: sticky; top: 120px; margin: 0; color: #e7ca7e; font-size: clamp(38px,5vw,74px); line-height: .98; }
.editorial-prose { max-width: 68ch; }
.editorial-prose p { margin: 0 0 1.35em; color: rgba(241,231,211,.74); font-size: clamp(18px,1.65vw,25px); line-height: 1.65; text-wrap: pretty; }
.editorial-prose p:first-child { color: #f4ead6; font-family: var(--serif); font-size: clamp(28px,3vw,46px); line-height: 1.2; }

.join-paths { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(217,173,84,.28); border-left: 1px solid rgba(217,173,84,.28); }
.join-path { min-height: 310px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px,4vw,58px); border-right: 1px solid rgba(217,173,84,.28); border-bottom: 1px solid rgba(217,173,84,.28); background: rgba(255,255,255,.015); }
.join-path small { color: var(--doc-teal); letter-spacing: .12em; text-transform: uppercase; }
.join-path h2 { margin: 18px 0 10px; color: #efd88e; font-size: clamp(36px,4vw,62px); }
.join-path p { max-width: 46ch; color: rgba(241,231,211,.66); }
.join-path .button { margin-top: auto; }
.join-path:hover { background: rgba(217,173,84,.045); }

.gallery-anchor-heading { scroll-margin-top: 110px; }

@media (max-width: 1180px) {
  .site-header .desktop-nav,
  .site-header .header-contact,
  .site-header .header-join { display: none !important; }
  .site-header .menu-button { display: inline-flex; }
}

@media (max-width: 820px) {
  .hero-brand-v3 { display: block; height: 100dvh; min-height: 0; }
  .hero-brand-v3 .hero-content {
    position: absolute;
    right: auto;
    bottom: 102px;
    left: 16px;
    width: calc(100% - 32px);
    margin: 0;
    padding: 0;
  }
  .hero-wayfinding {
    width: calc(100% - 24px);
    bottom: 12px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(215px, 76vw);
    border-radius: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .hero-wayfinding::-webkit-scrollbar { display: none; }
  .hero-wayfinding a { min-height: 74px; padding: 12px 14px; scroll-snap-align: start; }
  .hero-wayfinding a + a { border-left: 1px solid rgba(217,173,84,.22); }
  .hero-wayfinding a:nth-child(n+3) { border-top: 0; }
  .hero-wayfinding a:last-child { grid-column: auto; }
  .hero-brand-v3 .hero-depth-mark { top: 88px; right: 12px; width: 112px; opacity: .82; }
  .review-showcase.has-video .review-showcase-grid,
  .editorial-copy-grid { grid-template-columns: 1fr; }
  .editorial-copy h2 { position: static; }
  .reviews-ledger article { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 560px) {
  .hero-brand-v3 { height: 100dvh; min-height: 0; }
  .hero-brand-v3 .hero-content { bottom: 100px; left: 14px; width: calc(100% - 28px); margin: 0; padding: 0; }
  .hero-wayfinding strong { font-size: 11px; }
  .hero-wayfinding span { font-size: 9px; }
  .review-slide blockquote { font-size: 30px; }
  .join-paths { grid-template-columns: 1fr; }
  .join-path { min-height: 260px; }
  .editorial-hero { min-height: 72dvh; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .review-slide.is-active { animation: none; }
}
