@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/CormorantGaramond-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/CormorantGaramond-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../assets/fonts/CormorantGaramond-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #17201d;
  --ink-soft: #34403b;
  --stone: #9a9183;
  --stone-light: #d9d2c8;
  --mist: #ece9e3;
  --paper: #f7f5f0;
  --current: #416a67;
  --current-deep: #2f5653;
  --current-soft: #8fb3ae;
  --white: #fff;
  --muted: #5d6661;
  --border: #cec9c0;
  --focus: #1d7470;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, Arial, Helvetica, sans-serif;
  --ease: cubic-bezier(0.22, 0.82, 0.2, 1);
  --duration: 240ms;
  --content: 76rem;
  --reading: 38rem;
  --header-h: 4.75rem;
}

@media (prefers-reduced-motion: reduce) {
  :root { --duration: 0ms; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero-media img { animation: none !important; transform: none !important; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  background: var(--paper);
  letter-spacing: -0.005em;
}
img, svg { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: var(--current-deep); text-underline-offset: 0.18em; }
a:hover { color: var(--ink); }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.4rem, 9vw, 6.6rem); margin-bottom: 1.5rem; }
h2 { font-size: clamp(2.5rem, 6vw, 4.4rem); margin-bottom: 1.25rem; }
h3 { font-size: clamp(1.55rem, 2.8vw, 2.05rem); margin-bottom: 0.7rem; letter-spacing: -0.03em; }
p { max-width: var(--reading); }
.lede {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  line-height: 1.28;
  max-width: 32rem;
  letter-spacing: -0.025em;
}
.eyebrow {
  margin: 0 0 1.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--current);
}
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.wrap {
  width: min(var(--content), calc(100% - 3rem));
  margin-inline: auto;
}
.narrow { width: min(42rem, calc(100% - 3rem)); margin-inline: auto; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(2px);
  transition: opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Header: quiet luxury */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
  background: transparent;
}
.site-header.is-scrolled {
  backdrop-filter: blur(18px) saturate(1.15);
  background: rgba(247, 245, 240, 0.88);
  border-bottom-color: rgba(206, 201, 192, 0.75);
}
.site-header.on-hero:not(.is-scrolled) .brand-link,
.site-header.on-hero:not(.is-scrolled) .site-nav > a:not(.nav-cta) {
  color: var(--paper);
}
.site-header.on-hero:not(.is-scrolled) .nav-toggle {
  color: var(--paper);
  border-color: rgba(247, 245, 240, 0.35);
  background: rgba(23, 32, 29, 0.25);
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  transition: color var(--duration) var(--ease);
}
.brand-link img { width: 28px; height: 28px; }
.site-header.on-hero:not(.is-scrolled) .brand-link img {
  filter: brightness(0) invert(0.95);
}
.brand-link span {
  font-family: var(--serif);
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--duration) var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.78rem 1.2rem;
  background: var(--ink);
  color: var(--paper) !important;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
}
.site-header.on-hero:not(.is-scrolled) .site-nav .nav-cta {
  background: var(--paper);
  color: var(--ink) !important;
}
.site-nav .nav-cta:hover { background: var(--current-deep); color: var(--white) !important; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    inset: calc(var(--header-h) - 1px) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.65rem 1.4rem 1.4rem;
    background: rgba(247, 245, 240, 0.98);
    border-bottom: 1px solid var(--border);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--ink-soft) !important;
  }
  .site-nav .nav-cta {
    margin-top: 1rem;
    justify-content: center;
    border: 0;
    color: var(--paper) !important;
    background: var(--ink) !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.05rem 1.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--duration) var(--ease), color var(--duration) var(--ease), border-color var(--duration) var(--ease), transform var(--duration) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--current-deep); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247, 245, 240, 0.4);
}
.btn-secondary:hover { border-color: var(--paper); color: var(--paper); }
.btn-secondary.on-light {
  color: var(--ink);
  border-color: rgba(23, 32, 29, 0.28);
}
.btn-secondary.on-light:hover { border-color: var(--ink); color: var(--ink); }
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  align-items: center;
  margin-top: 2.1rem;
}
.link-arrow {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.link-arrow:hover { opacity: 0.75; }

/* Hero: private-client first impression */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 9rem 0 5.5rem;
  overflow: hidden;
  color: var(--paper);
  background: #0f1513;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  animation: heroEase 22s var(--ease) infinite alternate;
}
@keyframes heroEase {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.2%, 1.2%, 0); }
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(15, 21, 19, 0.82) 0%, rgba(15, 21, 19, 0.55) 42%, rgba(15, 21, 19, 0.22) 68%, rgba(15, 21, 19, 0.45) 100%),
    linear-gradient(180deg, rgba(15, 21, 19, 0.28) 0%, rgba(15, 21, 19, 0.18) 35%, rgba(15, 21, 19, 0.88) 100%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: min(52rem, calc(100% - 3rem));
}
.hero .eyebrow { color: var(--current-soft); }
.hero .brand-signal {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: rise 1.15s var(--ease) 0.1s forwards;
}
.hero .brand-signal img {
  width: 58px;
  height: 58px;
  filter: brightness(0) invert(0.95);
}
.hero .brand-signal strong {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.hero h1 {
  opacity: 0;
  animation: rise 1.15s var(--ease) 0.26s forwards;
  max-width: 12ch;
}
.hero .support {
  max-width: 30rem;
  color: rgba(236, 233, 227, 0.88);
  font-size: 1.12rem;
  line-height: 1.65;
  opacity: 0;
  animation: rise 1.15s var(--ease) 0.4s forwards;
}
.hero .cta-row { opacity: 0; animation: rise 1.15s var(--ease) 0.52s forwards; }
.hero .trust {
  margin: 1.85rem 0 0;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(154, 145, 131, 0.95);
  opacity: 0;
  animation: rise 1.15s var(--ease) 0.64s forwards;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

.discretion-bar {
  background: var(--ink);
  color: var(--stone-light);
  border-top: 1px solid #24302c;
}
.discretion-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.discretion-bar article {
  padding: 1.65rem 1.75rem 1.65rem 0;
  border-right: 1px solid #2a3531;
}
.discretion-bar article:last-child { border-right: 0; padding-right: 0; }
.discretion-bar h2 {
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--current-soft);
  margin: 0 0 0.55rem;
}
.discretion-bar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--stone-light);
  max-width: 22rem;
}
@media (max-width: 860px) {
  .discretion-bar .wrap { grid-template-columns: 1fr; }
  .discretion-bar article {
    border-right: 0;
    border-bottom: 1px solid #2a3531;
    padding: 1.35rem 0;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9.5rem 0 4.5rem;
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
  background: #121916;
  color: var(--paper);
  border-bottom: 0;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
}
.page-hero-media img,
.page-hero-media picture,
.page-hero-media source {
  width: 100%;
  height: 100%;
}
.page-hero-media img {
  object-fit: cover;
  min-height: 100%;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 21, 19, 0.78) 0%, rgba(15, 21, 19, 0.4) 55%, rgba(15, 21, 19, 0.55) 100%),
    linear-gradient(180deg, rgba(15, 21, 19, 0.2), rgba(15, 21, 19, 0.88));
  pointer-events: none;
}
.page-hero .narrow,
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--current-soft); }
.page-hero .lede { color: var(--stone-light); }
.page-hero h1 { max-width: 14ch; color: var(--paper); }

.section { padding: 7rem 0; position: relative; }
.section + .section { border-top: 1px solid rgba(206, 201, 192, 0.75); }
.section-ink {
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
  overflow: hidden;
}
.section-ink .eyebrow { color: var(--current-soft); }
.section-ink .muted,
.section-ink p { color: var(--stone-light); }
.section-mist {
  background: linear-gradient(180deg, #f1ede5, #ebe5da);
  border-top: 0;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.25rem, 5.5vw, 6rem);
  align-items: start;
}
.split-visual {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.split-visual.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .split,
  .split-visual { grid-template-columns: 1fr; }
  .split-visual.reverse > :first-child { order: 0; }
  .section { padding: 4.75rem 0; }
  .hero { padding: 8rem 0 4rem; }
  .page-hero { min-height: 48vh; padding: 8rem 0 3.5rem; }
}

.visual-frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 44vw, 580px);
  background: #1a2320;
}
.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(15, 21, 19, 0.18);
  pointer-events: none;
}
.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: inherit;
  transition: transform 1.2s var(--ease);
}
.visual-frame:hover img { transform: scale(1.03); }
.visual-frame.tall { min-height: clamp(400px, 62vw, 720px); }
.visual-caption {
  margin-top: 0.95rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: 7.5rem 0;
  background: #0f1513;
  color: var(--paper);
  min-height: 62vh;
  display: flex;
  align-items: center;
}
.quote-band-media {
  position: absolute;
  inset: 0;
}
.quote-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 21, 19, 0.82), rgba(15, 21, 19, 0.45) 55%, rgba(15, 21, 19, 0.7));
}
.quote-band .wrap { position: relative; z-index: 1; }
.quote-band blockquote {
  margin: 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 5.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.quote-band .attribution {
  margin-top: 1.75rem;
  color: var(--current-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.understanding {
  display: grid;
  gap: 0;
  margin-top: 2.75rem;
  border-top: 1px solid var(--border);
}
.understanding article {
  display: grid;
  grid-template-columns: 4.75rem 1fr;
  gap: 1.35rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.understanding .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--stone);
  line-height: 1;
}
.understanding strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.sign-list {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}
.sign-list li {
  padding: 1.85rem 1.5rem 1.85rem 0;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 3.1rem 1fr;
  gap: 1rem;
}
.sign-list li:nth-child(odd) { padding-right: 2rem; }
.sign-list li:nth-child(even) {
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}
.sign-list .num {
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--stone);
  line-height: 1;
}
.sign-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}
@media (max-width: 760px) {
  .sign-list { grid-template-columns: 1fr; }
  .sign-list li:nth-child(odd),
  .sign-list li:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }
}

.focus-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.focus-list li {
  padding: 1.85rem 0;
  border-top: 1px solid var(--border);
}
.focus-list a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.focus-list a:hover h3 { color: var(--current-deep); }
.focus-list h3 { margin-bottom: 0.45rem; }
.focus-list p { margin: 0; color: var(--muted); }

.tribe-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.tribe-link {
  display: grid;
  gap: 1.15rem;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
}
.tribe-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #1a2320;
}
.tribe-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.tribe-link:hover .tribe-visual img { transform: scale(1.045); }
.tribe-link h3 { margin: 0.15rem 0 0.45rem; }
.tribe-link p { margin: 0; color: var(--muted); font-size: 0.95rem; }
@media (max-width: 900px) {
  .tribe-rail { grid-template-columns: 1fr; gap: 2.25rem; }
  .tribe-visual { aspect-ratio: 16 / 10; }
}

.steps {
  counter-reset: step;
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 2rem;
}
.steps li {
  counter-increment: step;
  padding-left: 4.5rem;
  position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--stone);
}

.prose > * + * { margin-top: 1.1rem; }
.prose h2 { margin-top: 3.1rem; }
.prose ul {
  padding-left: 1.2rem;
  max-width: var(--reading);
}
.prose li + li { margin-top: 0.5rem; }

.faq details {
  border-top: 1px solid var(--border);
  padding: 1.3rem 0;
}
.faq details:last-child { border-bottom: 1px solid var(--border); }
.faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--current);
  font-family: var(--sans);
  font-weight: 500;
}
.faq details[open] summary::after { content: "-"; }
.faq details p { margin: 0.9rem 0 0; color: var(--muted); }

/* Private intake */
.intake-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .intake-shell { grid-template-columns: 1fr; }
}
.privacy-panel {
  padding: 2rem 0 0;
  border-top: 1px solid var(--border);
}
.privacy-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}
.privacy-panel ul {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}
.privacy-panel li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--muted);
}
.privacy-panel li strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.form-panel {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.28)),
    var(--mist);
  border: 1px solid var(--border);
}
.form-kicker {
  margin: 0 0 1.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--current);
}
.form-grid { display: grid; gap: 1.15rem; }
.field label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 1rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  background: rgba(247, 245, 240, 0.92);
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--focus);
  outline-offset: 1px;
  border-color: var(--current);
}
.form-note {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.form-actions { margin-top: 1.4rem; }
.crisis-note {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

/* Appointment book */
.booking-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  margin-top: 2.5rem;
}
@media (max-width: 900px) {
  .booking-shell { grid-template-columns: 1fr; }
}
.booking-panel { display: grid; gap: 1.25rem; }
.booking-external {
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(247, 245, 240, 0.35)),
    var(--mist);
}
.booking-form .field-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.day-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(4.6rem, 1fr);
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x proximity;
}
.day-chip,
.slot-chip {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.92);
  color: var(--ink);
  border-radius: 0.2rem;
  cursor: pointer;
  font: inherit;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
.day-chip {
  min-width: 4.6rem;
  padding: 0.75rem 0.45rem;
  text-align: center;
  scroll-snap-align: start;
}
.day-chip .dow {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.day-chip .dom {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}
.day-chip .mon {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  color: var(--muted);
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(6.5rem, 1fr));
  gap: 0.55rem;
}
.slot-chip {
  padding: 0.85rem 0.6rem;
  text-align: center;
  font-size: 0.92rem;
}
.day-chip:hover,
.slot-chip:hover {
  border-color: var(--current);
}
.day-chip.is-selected,
.slot-chip.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.day-chip.is-selected .dow,
.day-chip.is-selected .mon {
  color: rgba(247, 245, 240, 0.72);
}
.day-chip:focus-visible,
.slot-chip:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.booking-summary {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;
  border-left: 2px solid var(--current);
  background: rgba(255, 255, 255, 0.35);
}
.booking-summary p:last-child {
  margin: 0.35rem 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.booking-form code {
  font-size: 0.82em;
  color: var(--ink-soft);
}
.calendar-connect {
  margin-top: 1.35rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
}
.calendar-connect .muted {
  margin: 0.35rem 0 1rem;
  font-size: 0.9rem;
}
.calendar-app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.55rem;
}
.calendar-app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  background: rgba(247, 245, 240, 0.95);
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}
a.calendar-app-btn:hover,
button.calendar-app-btn:hover {
  border-color: var(--current);
  color: var(--ink);
  background: var(--paper);
}
.calendar-app-btn:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* Intelligent intake */
.intake-app {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) {
  .intake-app { grid-template-columns: 1fr; }
}
.intake-shell-app {
  padding: 1.5rem 0 0;
}
.intake-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.intake-back {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--current-deep);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0.35rem 0;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.intake-progress {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.intake-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--current);
  transition: width var(--duration) var(--ease);
}
.intake-stage:focus { outline: none; }
.intake-card {
  padding: 2rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.28)),
    var(--mist);
}
.intake-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0.35rem 0 0.85rem;
  letter-spacing: -0.02em;
}
.intake-options {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.intake-option {
  appearance: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  background: rgba(247, 245, 240, 0.95);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.intake-option:hover {
  border-color: var(--current);
  transform: translateY(-1px);
}
.intake-option.is-selected {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.intake-option:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}
.intake-option-label {
  font-size: 1.02rem;
  line-height: 1.35;
}
.intake-fields {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.intake-summary {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
}
.intake-summary li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}
.intake-result[data-result="strong"] {
  box-shadow: inset 3px 0 0 var(--current);
}
.intake-result[data-result="possible"] {
  box-shadow: inset 3px 0 0 var(--stone);
}
.intake-result[data-result="poor"],
.intake-result[data-result="redirect"],
.intake-result[data-result="crisis"] {
  box-shadow: inset 3px 0 0 var(--ink-soft);
}
.intake-footnotes {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.intake-transfer {
  margin: 0 0 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}
.intake-transfer strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

/* HIPAA secure chat */
.secure-chat {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.secure-chat-launcher {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
  display: grid;
  gap: 0.1rem;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 21, 19, 0.28);
  font: inherit;
}
.secure-chat-launcher-label {
  font-size: 0.95rem;
  font-weight: 600;
}
.secure-chat-launcher-meta {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--current-soft);
}
.secure-chat-launcher:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}
.secure-chat-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 21, 19, 0.35);
  z-index: 70;
}
.secure-chat-panel {
  width: min(26rem, calc(100vw - 2rem));
  max-height: min(36rem, calc(100vh - 6rem));
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(15, 21, 19, 0.25);
  z-index: 81;
}
.secure-chat-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.15rem 0.85rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--paper);
}
.secure-chat-sub {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.secure-chat-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--current-deep);
  font: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.secure-chat-body { padding: 1.15rem; }
.secure-chat-gate p { margin: 0 0 0.85rem; }
.secure-chat-list {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--muted);
}
.secure-chat-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--current-deep);
}
.secure-chat-frame {
  width: 100%;
  min-height: 22rem;
  border: 1px solid var(--border);
  background: var(--white);
}
.secure-chat-form { display: grid; gap: 0.9rem; }
.secure-chat-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.secure-chat-consent input { margin-top: 0.2rem; }
body.secure-chat-open { overflow: hidden; }
@media (max-width: 640px) {
  .secure-chat-panel {
    width: calc(100vw - 1.5rem);
    max-height: calc(100vh - 5.5rem);
  }
}

/* Client portal */
.portal-login-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) {
  .portal-login-shell { grid-template-columns: 1fr; }
}
.portal-section { padding-top: 2rem; }
.portal-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.portal-head h1 {
  margin: 0.2rem 0 0.4rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}
.portal-mode {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.portal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.portal-nav-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.2rem;
  cursor: pointer;
}
.portal-nav-btn.is-active,
.portal-nav-btn[aria-current="page"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.portal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 800px) {
  .portal-grid { grid-template-columns: 1fr; }
}
.portal-card {
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.28)),
    var(--mist);
}
.portal-card h2,
.portal-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
}
.portal-card .btn { margin-top: 1rem; }
.portal-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  align-items: start;
}
@media (max-width: 900px) {
  .portal-split { grid-template-columns: 1fr; }
}
.portal-list {
  display: grid;
  gap: 0.55rem;
}
.portal-item {
  appearance: none;
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.95);
  padding: 0.95rem 1rem;
  cursor: pointer;
  font: inherit;
  display: grid;
  gap: 0.25rem;
}
.portal-item strong {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}
.portal-item span {
  color: var(--muted);
  font-size: 0.88rem;
}
.portal-item.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}
.portal-item.is-active span { color: rgba(247, 245, 240, 0.72); }
.secure-chat-portal {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  align-items: stretch;
  margin-top: 1rem;
}
.secure-chat-portal .secure-chat-launcher {
  align-self: flex-start;
}
.secure-chat-portal .secure-chat-panel {
  width: 100%;
  max-height: none;
  position: relative;
}
.secure-chat-portal .secure-chat-backdrop {
  display: none;
}

.site-footer {
  padding: 4.5rem 0 max(3rem, env(safe-area-inset-bottom));
  background: #0f1513;
  color: var(--stone-light);
}
.site-footer a { color: var(--stone-light); }
.site-footer a:hover { color: var(--paper); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.75rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: var(--paper);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}
.footer-col h2 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--current-soft);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li + li { margin-top: 0.6rem; }
.footer-col a { text-decoration: none; }
.footer-bottom {
  margin-top: 3.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid #24302c;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.84rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

.invite .cta-row { justify-content: flex-start; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.assurance-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 2.75rem;
  border-top: 1px solid rgba(143, 179, 174, 0.28);
}
.assurance-row div {
  padding: 1.6rem 1.5rem 0 0;
  border-right: 1px solid rgba(143, 179, 174, 0.28);
}
.assurance-row div:last-child { border-right: 0; padding-right: 0; }
.assurance-row h3 {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
  color: var(--paper);
}
.assurance-row p {
  margin: 0;
  color: var(--stone-light);
  font-size: 0.95rem;
}
@media (max-width: 800px) {
  .assurance-row { grid-template-columns: 1fr; }
  .assurance-row div {
    border-right: 0;
    border-bottom: 1px solid rgba(143, 179, 174, 0.28);
    padding: 1.35rem 0;
  }
}

.main-pad { padding-top: 0; }
body.has-fixed-header .page-hero { padding-top: 9.5rem; }


.book-feature {
  padding-bottom: 2rem;
}
.book-feature h2 {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
}
.book-feature em {
  font-style: italic;
}

/* Unlisted branding pack */
.pack-url {
  word-break: break-all;
  font-family: var(--sc-font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
}
.pack-status {
  min-height: 1.4em;
  margin-top: 0.85rem;
}
.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.pack-grid article h3 {
  margin-bottom: 0.65rem;
}
.pack-pre {
  white-space: pre-wrap;
  background: rgba(23, 32, 29, 0.04);
  border: 1px solid var(--sc-border, #cec9c0);
  padding: 1.15rem 1.25rem;
  font-family: var(--sc-font-sans, Inter, Arial, sans-serif);
  font-size: 0.95rem;
  line-height: 1.55;
  overflow-x: auto;
}
.pack-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.swatch-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}
.swatch {
  background: var(--sw);
  min-height: 6.5rem;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f7f5f0;
  border: 1px solid rgba(23, 32, 29, 0.12);
}
.swatch span {
  font-family: var(--sc-font-display, Georgia, serif);
  font-size: 1.15rem;
}
.swatch code {
  font-size: 0.75rem;
  opacity: 0.9;
}
.swatch[style*="#ece9e3"],
.swatch[style*="#f7f5f0"],
.swatch[style*="#9a9183"] {
  color: #17201d;
}
.pack-on-ink h2,
.pack-on-ink li,
.pack-on-ink strong {
  color: var(--paper, #f7f5f0);
}
.pack-on-ink li + li {
  margin-top: 0.55rem;
}
@media (max-width: 720px) {
  .pack-grid,
  .swatch-row {
    grid-template-columns: 1fr;
  }
}
