/* DPsychDoc — visual system mirrored from Marquis MD */
:root {
  --color-charcoal: #1e1e1e;
  --color-brown: #3c2415;
  --color-cream: #f5f0e8;
  --color-warm-white: #faf7f2;
  --color-sand: #d4bc9a;
  --color-sand-light: #d4bc9a;
  --color-stone: #8b8578;
  --color-terracotta: #b07d62;
  --font-sans: "Geologica", system-ui, sans-serif;
  --font-headline: "essonnes-headline", Georgia, serif;
  --font-display: "essonnes-display", Georgia, serif;
  --font-text: "essonnes-text", Georgia, serif;
  --content: 80rem; /* 1280px */
  --ease-drawer: cubic-bezier(0.76, 0, 0.24, 1);
}

@font-face {
  font-family: Geologica;
  src: url("../fonts/Geologica-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Geologica;
  src: url("../fonts/Geologica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Geologica;
  src: url("../fonts/Geologica-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 200;
  color: var(--color-charcoal);
  background: var(--color-warm-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
input,
textarea,
select,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}
img,
video,
svg {
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--color-charcoal);
  color: var(--color-sand);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.content-container {
  width: min(var(--content), 100%);
  margin-inline: auto;
  padding-inline: 1.6rem;
}

/* Eyebrow — Marquis: 14px / tracking 2.4px / sand */
.eyebrow {
  margin: 0 0 2rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-sand);
}
.eyebrow-dark {
  color: var(--color-terracotta);
  font-size: 18px;
}
.section-center {
  text-align: center;
}
.section-center .headline,
.section-center .section-intro {
  margin-inline: auto;
}
.section-center .section-intro { max-width: 40rem; }

.headline {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.15;
  text-wrap: pretty;
}
.headline em,
.headline .accent {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-sand);
  font-weight: 400;
}

.lede {
  margin: 2rem 0 0;
  max-width: 48rem;
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.95);
  text-wrap: balance;
}

/* Buttons — Marquis: h-20 (80px), px-[98px], 20px uppercase */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 98px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.btn svg {
  width: 29px;
  height: 15px;
  flex-shrink: 0;
  margin-left: 0.75rem;
}
.btn-solid {
  background: var(--color-charcoal);
  color: var(--color-sand);
}
.btn-solid:hover {
  background: var(--color-sand);
  color: var(--color-charcoal);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--color-sand);
  color: var(--color-sand);
}
.btn-ghost:hover {
  background: rgba(212, 188, 154, 0.12);
}
.btn-dark {
  background: var(--color-charcoal);
  color: var(--color-sand);
}
.btn-outline-dark {
  border: 1px solid var(--color-charcoal);
  color: var(--color-charcoal);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--color-charcoal);
  color: var(--color-sand);
}
.btn-outline-dark svg { color: currentColor; }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-top: 4.25rem; /* ~mt-17 */
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(60, 36, 21, 0.32) 0%, transparent 100%);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 24px;
  /* keep .content-container padding-inline so logo/toggle match page edges */
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-sand);
  transition: opacity 0.3s ease;
}
.brand:hover { opacity: 0.85; }
/* Own logo — sand version matching Marquis #d4bc9a */
.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .brand-logo { height: 52px; }
}

/* Two-line toggle — 26px / 18px / 1px / cream */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 7px;
  padding: 8px 0;
  margin: 0;
  color: var(--color-cream);
  transition: color 0.3s ease;
}
.menu-toggle:hover { color: var(--color-sand); }
.menu-line {
  display: block;
  height: 1px;
  background: currentColor;
}
.menu-line-top { width: 26px; }
.menu-line-bottom { width: 18px; }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(30, 30, 30, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay[hidden] { display: none !important; }
.nav-overlay.is-open[hidden] { display: block !important; }

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 37.5rem;
  height: 100%;
  background: var(--color-warm-white);
  color: var(--color-charcoal);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-drawer);
}
.nav-panel.is-open { transform: translateX(0); }
.nav-panel-top {
  display: flex;
  justify-content: flex-end;
  padding: 24px 56px;
}
.nav-close {
  padding: 8px;
  color: rgba(30, 30, 30, 0.5);
  transition: color 0.2s ease;
}
.nav-close:hover { color: var(--color-charcoal); }
.nav-list {
  flex: 1;
  overflow-y: auto;
  padding: 24px 56px 32px;
}
.nav-list > a,
.nav-dropdown > button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.4);
  transition: color 0.2s ease;
}
.nav-list > a:last-of-type { border-bottom: 1px solid rgba(30, 30, 30, 0.1); }
.nav-list > a:hover,
.nav-list > a.is-active,
.nav-dropdown > button:hover {
  color: var(--color-charcoal);
}
.nav-sub { display: none; padding: 0 0 12px 12px; }
.nav-dropdown.is-open .nav-sub { display: grid; gap: 4px; }
.nav-sub a {
  padding: 8px 0;
  font-size: 15px;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.55);
}
.nav-sub a:hover { color: var(--color-charcoal); }
.nav-cta { padding: 24px 56px 40px; }
.nav-cta .btn {
  width: 100%;
  height: 64px;
  font-size: 16px;
  padding: 0 2rem;
}

/* ========== HERO — mirrored from Marquis HeroV6 ========== */
.hero {
  position: relative;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  padding: 120px 0; /* py-30 */
  background: var(--color-charcoal);
  color: var(--color-warm-white);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.72;
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Label — text-[10px] / md:text-sm, tracking 2.4px, mb-8 */
.hero-label {
  margin: 0 0 2rem;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-sand-light);
  text-align: center;
}
@media (min-width: 768px) {
  .hero-label {
    font-size: 14px;
    text-align: left;
  }
}

/* H1 — short 2-line italic, 85px / lh ~89px */
.hero-heading {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1.1;
  color: var(--color-warm-white);
  max-width: none;
  white-space: nowrap;
}
.hero-heading-accent {
  display: block;
  color: var(--color-sand-light);
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 400;
}

/* Body — mt-8, 1.5rem, extralight, full content width */
.hero-body {
  margin: 2rem 0 0;
  max-width: none;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 200;
  line-height: 1.5;
  color: var(--color-warm-white);
  text-wrap: balance;
}
.hero-support {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 200;
  line-height: 1.65;
  color: rgba(250, 247, 242, 0.78);
}

/* Buttons — mt-17 (68px), gap-x-6 (24px) */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 68px;
}
.hero-buttons .btn-ghost:hover {
  background: var(--color-sand-light);
  border-color: transparent;
  color: var(--color-charcoal);
}

/* Mobile — exact Marquis breakpoints */
@media (max-width: 768px) {
  .hero-content { align-items: center; }
  .hero-heading {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    max-width: none;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }
  .hero-body {
    font-size: 16px;
    max-width: 22rem;
    text-align: center;
  }
  .hero-support {
    font-size: 14px;
    max-width: 22rem;
    text-align: center;
  }
  .hero-buttons {
    margin-top: 40px;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 22rem;
  }
  .hero-buttons .btn {
    width: 100%;
    height: 56px;
    padding: 0 1.5rem;
    font-size: 14px;
  }
}

/* Short viewports */
@media (min-width: 790px) and (max-height: 800px) {
  .hero-label { font-size: 0.8rem !important; }
  .hero-heading { font-size: 3.5rem; }
  .hero-body { font-size: 1.2rem; margin-top: 1rem; }
  .hero-buttons { margin-top: 2rem; }
  .hero-buttons .btn {
    height: 56px;
    padding-inline: 48px;
    font-size: 16px;
  }
}

/* ========== SECTIONS ========== */
.section {
  padding: 80px 0;
  position: relative;
}
.section-cream { background: var(--color-cream); }
.section-warm { background: var(--color-warm-white); }
.section-dark {
  background: var(--color-charcoal);
  color: var(--color-warm-white);
}
.section .eyebrow { margin-bottom: 1.25rem; }
.section .headline {
  font-family: var(--font-text);
  font-size: clamp(2rem, 4vw, 50px);
  line-height: 1.2;
  color: var(--color-charcoal);
  max-width: none;
  margin-bottom: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .section .headline { white-space: normal; }
}
.section-dark .headline { color: var(--color-warm-white); }
.section-intro {
  max-width: 40rem;
  margin: 0 0 3.5rem;
  font-size: 1.125rem;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.72);
  line-height: 1.7;
}
.section-dark .section-intro { color: rgba(250, 247, 242, 0.72); }

/* ========== Who You Help — Marquis "What We Do" / difference pattern ========== */
.difference {
  overflow: hidden;
  background: linear-gradient(226.7deg, var(--color-cream) 56%, var(--color-sand-light) 134%);
}
.difference-header {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}
@media (min-width: 640px) {
  .difference-header {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
}
.difference-eyebrow {
  margin: 0 0 3rem;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-terracotta);
}
.difference-heading {
  margin: 0 auto;
  max-width: 26.5rem; /* max-w-106 */
  font-family: var(--font-text);
  font-weight: 400;
  font-style: italic;
  font-size: 32px;
  line-height: 2.5rem;
  letter-spacing: 0.5px;
  color: var(--color-charcoal);
  text-wrap: balance;
}
@media (min-width: 640px) {
  .difference-heading {
    font-size: 50px;
    line-height: 3.75rem; /* leading-15 */
  }
}
.difference-subhead {
  margin: 2rem auto 0;
  max-width: 32.5rem; /* max-w-130 */
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
  color: var(--color-charcoal);
}
@media (min-width: 640px) {
  .difference-subhead { font-size: 20px; }
}
.difference-list {
  padding-bottom: 5rem;
}
@media (min-width: 640px) {
  .difference-list { padding-bottom: 10rem; }
}
.difference-item {
  position: relative;
  max-width: 32.75rem; /* max-w-131 ≈ 524px */
  margin-top: 1rem;
}
.difference-item:first-child { margin-top: 0; }
@media (min-width: 640px) {
  .difference-item { margin-top: 1.5rem; }
  .difference-item:first-child { margin-top: 0; }
}
.difference-right { margin-left: auto; }
.difference-num {
  margin: 0;
  position: relative;
  top: 1rem;
  font-family: var(--font-headline);
  font-size: 70px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  color: var(--color-sand-light);
  opacity: 0.3;
  user-select: none;
  pointer-events: none;
}
@media (min-width: 640px) {
  .difference-num {
    top: 1.75rem;
    font-size: 150px;
  }
}
.difference-item h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 2.5rem; /* pl-10 */
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  font-style: normal;
  color: var(--color-charcoal);
  line-height: 1.3;
}
.difference-item > p:not(.difference-num) {
  margin: 1rem 0 0;
  padding-left: 2.5rem;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 200;
  line-height: 1.5;
  color: var(--color-charcoal);
}
@media (min-width: 640px) {
  .difference-item h3 {
    padding-left: 6rem; /* pl-24 */
    font-size: 25px;
  }
  .difference-item > p:not(.difference-num) {
    margin-top: 1.5rem;
    padding-left: 6rem;
    font-size: 20px;
  }
}

.audience-grid,
.service-grid,
.pricing-grid {
  display: grid;
  gap: 2.5rem 3rem;
}
@media (min-width: 768px) {
  .service-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1100px) {
  .service-grid.service-grid-4,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Membership-style service cards (dark) */
.service-card,
.price-card {
  border: 1px solid rgba(212, 188, 154, 0.15);
  background: rgba(212, 188, 154, 0.05);
  padding: 2rem 2rem 2.25rem;
  border-radius: 2px;
  transition: background 0.45s ease, border-color 0.45s ease;
}
.service-card:hover,
.price-card:hover {
  border-color: rgba(212, 188, 154, 0.3);
  background: rgba(212, 188, 154, 0.1);
}
.section-cream .service-card,
.section-cream .price-card,
.section-warm .service-card,
.section-warm .price-card {
  border-color: rgba(30, 30, 30, 0.1);
  background: rgba(30, 30, 30, 0.02);
}
.section-cream .service-card:hover,
.section-cream .price-card:hover {
  border-color: rgba(30, 30, 30, 0.18);
  background: rgba(30, 30, 30, 0.04);
}
.service-card h3,
.price-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
}
.service-card p,
.price-card p {
  margin: 0;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.7);
  line-height: 1.65;
  font-size: 1.05rem;
}
.section-dark .service-card p,
.section-dark .price-card p {
  color: rgba(250, 247, 242, 0.7);
}
.price {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-terracotta);
}
.section-dark .price { color: var(--color-sand); }
.service-card .btn,
.price-card .btn {
  height: 56px;
  padding: 0 1.75rem;
  font-size: 14px;
  width: auto;
}
.cash-note {
  margin-top: 2.5rem;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-stone);
}
.section-dark .cash-note { color: rgba(212, 188, 154, 0.7); }

.why-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .why-grid { grid-template-columns: 1.05fr 0.95fr; gap: 5rem; }
}
.section-philosophy {
  overflow: hidden;
  background: linear-gradient(to bottom, var(--color-warm-white), var(--color-cream));
  position: relative;
}
.section-philosophy .arc-deco {
  position: absolute;
  top: 10%;
  right: -18rem;
  width: 30rem;
  pointer-events: none;
  user-select: none;
  opacity: 0.9;
}
.why-copy p {
  max-width: 36rem;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.75);
  line-height: 1.7;
  font-size: 1.05rem;
}
.why-meta { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.why-meta li {
  font-size: 1rem;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.8);
}
.why-meta li::before {
  content: "—";
  color: var(--color-terracotta);
  margin-right: 0.6rem;
}
.why-photo {
  overflow: hidden;
  background: var(--color-charcoal);
  min-height: 480px;
}
.why-photo img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: grayscale(8%) contrast(1.03);
}

.cta-band {
  padding: 120px 0;
  text-align: center;
  color: var(--color-warm-white);
  background:
    linear-gradient(180deg, rgba(30, 30, 30, 0.82), rgba(30, 30, 30, 0.88)),
    url("../img/background.webp") center/cover;
}
.cta-band .headline {
  font-family: var(--font-text);
  font-size: clamp(2rem, 4vw, 50px);
  color: var(--color-warm-white);
  max-width: none;
  margin-inline: auto;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .cta-band .headline { white-space: normal; }
}
.cta-band .lede {
  margin-inline: auto;
  color: rgba(250, 247, 242, 0.82);
  font-size: 1.25rem;
}
.cta-band .btn-row { justify-content: center; }

/* Contact */
.contact-grid {
  display: grid;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; }
}
.contact-form { display: grid; gap: 1.75rem; }
.form-block {
  display: grid;
  gap: 1.35rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(30, 30, 30, 0.08);
}
.form-block:last-of-type { border-bottom: 0; padding-bottom: 0; }
.form-block-title {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-charcoal);
  font-weight: 400;
}
.form-block-note {
  margin: -0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.5;
  color: rgba(30, 30, 30, 0.62);
}
.form-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 700px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-stone);
  font-weight: 400;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(30, 30, 30, 0.18);
  background: transparent;
  padding: 0.9rem 0;
  font: inherit;
  font-weight: 200;
  color: var(--color-charcoal);
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.field select {
  padding-right: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238b8578' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.15rem center;
  cursor: pointer;
}
.field input[type="date"] {
  min-height: 3.1rem;
  color-scheme: light;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--color-sand);
}
.form-message {
  display: none;
  padding: 0.9rem 1rem;
  background: rgba(212, 188, 154, 0.2);
  font-weight: 200;
}
.form-message.is-visible { display: block; }
.form-note {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 200;
  line-height: 1.55;
  color: rgba(30, 30, 30, 0.65);
}
.btn-form {
  height: 64px;
  padding: 0 2.5rem;
  font-size: 15px;
  width: fit-content;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 767px) {
  .btn-form {
    width: 100%;
    height: auto;
    min-height: 56px;
    padding: 1rem 1.5rem;
  }
}

/* Long CTA labels — keep luxury buttons balanced */
.hero-buttons .btn,
.cta-band .btn,
.nav-cta .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.25;
  height: auto;
  min-height: 80px;
  padding: 1.25rem 3rem;
}
@media (max-width: 767px) {
  .hero-buttons .btn,
  .cta-band .btn {
    min-height: 56px;
    padding: 1rem 1.5rem;
  }
}

.legal-prose {
  max-width: 44rem;
  display: grid;
  gap: 1.15rem;
}
.legal-prose p {
  margin: 0;
  font-weight: 200;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.78);
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(30, 30, 30, 0.12);
}
.faq-item {
  border-bottom: 1px solid rgba(30, 30, 30, 0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  text-align: left;
  font-family: var(--font-text);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--color-charcoal);
}
.faq-question:hover { color: var(--color-terracotta); }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}
.faq-answer {
  padding: 0 2rem 1.4rem 0;
}
.faq-answer p {
  margin: 0;
  max-width: 42rem;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.75);
}

/* Inner page hero — same image + same charcoal overlay as homepage */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--color-warm-white);
  padding: 8rem 0 5rem;
  text-align: center;
  min-height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-charcoal);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/carousel-2.webp") center center / cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.78;
}
.page-hero-media,
.page-hero-overlay {
  display: none;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero .eyebrow {
  color: var(--color-sand-light);
}
.page-hero .headline {
  font-family: var(--font-headline);
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  color: var(--color-warm-white);
  max-width: none;
  margin-inline: auto;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .page-hero .headline { white-space: normal; }
}
.page-hero .lede {
  margin: 1.25rem auto 0;
  color: rgba(250, 247, 242, 0.9);
  font-size: 1.25rem;
  max-width: 36rem;
}
.page-hero-crumb {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 200;
  color: rgba(250, 247, 242, 0.85);
}
.page-hero-crumb a { color: var(--color-warm-white); }
.page-hero-crumb a:hover { color: var(--color-sand); }
.page-hero-crumb span { margin: 0 0.5rem; opacity: 0.7; }

/* Footer */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(250, 247, 242, 0.7);
  padding: 5rem 0 2rem;
  font-weight: 200;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem; }
}
.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand {
  margin-bottom: 1.25rem;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-sand);
  font-weight: 400;
}
.footer-grid p {
  max-width: 28rem;
  line-height: 1.7;
  margin: 0;
}
.footer-grid ul { display: grid; gap: 0.65rem; }
.footer-grid a:hover { color: var(--color-sand); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}
.footer-credit a {
  color: var(--color-sand);
  transition: opacity 0.2s ease;
}
.footer-credit a:hover { opacity: 0.85; }

/* Content helpers */
.content-narrow { max-width: 48rem; }
.error-page {
  text-align: center;
}
.error-page .section-intro {
  margin: 0 auto 2rem;
  max-width: 36rem;
}
.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.error-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(30, 30, 30, 0.1);
}
.error-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.error-links a:hover {
  color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}
.prose-block {
  max-width: 46rem;
  display: grid;
  gap: 1.15rem;
}
.prose-block p,
.prose-block li {
  margin: 0;
  font-weight: 200;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.78);
}
.section-dark .prose-block p,
.section-dark .prose-block li {
  color: rgba(250, 247, 242, 0.8);
}
.prose-block h2 {
  margin: 1.5rem 0 0;
  font-family: var(--font-text);
  font-size: 1.65rem;
  font-weight: 400;
  font-style: italic;
}
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.plain-list li::before {
  content: "—";
  color: var(--color-terracotta);
  margin-right: 0.55rem;
}
.section-dark .plain-list li::before { color: var(--color-sand); }

.compare-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .compare-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.compare-card {
  border: 1px solid rgba(212, 188, 154, 0.15);
  background: rgba(212, 188, 154, 0.05);
  padding: 2rem;
}
.compare-card h3 {
  margin: 0 0 1.25rem;
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-warm-white);
}
.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.compare-card li {
  font-weight: 200;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.5;
}
.compare-card li::before {
  content: "•";
  margin-right: 0.55rem;
  color: rgba(250, 247, 242, 0.4);
}
.compare-card-accent {
  border-color: rgba(212, 188, 154, 0.35);
  background: rgba(212, 188, 154, 0.1);
}
.check-list li::before {
  content: "✓";
  color: var(--color-sand);
}

.expertise-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (min-width: 800px) {
  .expertise-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.expertise-card {
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: rgba(30, 30, 30, 0.02);
  padding: 2rem;
}
.expertise-card h3 {
  margin: 0 0 0.85rem;
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}
.expertise-card p {
  margin: 0;
  font-weight: 200;
  line-height: 1.65;
  color: rgba(30, 30, 30, 0.75);
}

.steps-grid {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.step-card {
  border: 1px solid rgba(212, 188, 154, 0.18);
  background: rgba(212, 188, 154, 0.05);
  padding: 1.75rem 1.5rem;
}
.step-num {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--color-sand);
}
.step-card h3 {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-warm-white);
}

.blog-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.blog-card {
  border: 1px solid rgba(30, 30, 30, 0.1);
  background: rgba(30, 30, 30, 0.02);
  overflow: hidden;
}
.blog-card-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-charcoal);
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; }
.blog-meta {
  margin: 0 0 0.75rem;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-stone);
}
.blog-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-text);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}
.blog-card h2 a:hover { color: var(--color-terracotta); }
.blog-card-body > p {
  margin: 0;
  font-weight: 200;
  color: rgba(30, 30, 30, 0.72);
  line-height: 1.6;
}
.blog-featured {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
  margin-bottom: 2.5rem;
}
.blog-prose {
  display: grid;
  gap: 1.15rem;
}
.blog-prose h2 {
  margin: 1.75rem 0 0;
  font-family: var(--font-text);
  font-size: 1.75rem;
  font-style: italic;
  font-weight: 400;
}
.blog-prose h3 {
  margin: 1.25rem 0 0;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 400;
}
.blog-prose p,
.blog-prose li {
  margin: 0;
  font-weight: 200;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.78);
}
.blog-prose ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.65rem;
}
.blog-prose img {
  max-width: 100%;
  height: auto;
  margin: 0.5rem 0;
}
.blog-prose a { color: var(--color-terracotta); text-decoration: underline; }
.blog-prose blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--color-sand);
  color: rgba(30, 30, 30, 0.7);
  font-style: italic;
}

.scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--color-sand);
  background: var(--color-charcoal);
  color: var(--color-sand);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.5rem);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--color-sand);
  color: var(--color-charcoal);
}
.scroll-top:focus-visible {
  outline: 2px solid var(--color-sand);
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .btn {
    height: 56px;
    font-size: 14px;
    padding: 0 1.75rem;
    width: 100%;
  }
  .btn-row {
    flex-direction: column;
    align-items: stretch;
    margin-top: 2.5rem;
  }
  .nav-panel-top,
  .nav-list,
  .nav-cta { padding-left: 40px; padding-right: 40px; }
  .nav-panel { max-width: 100%; }
  .lede { font-size: 1.15rem; }
}
