/* ────────────────────────────────────────────────
   Lucy's Prescribing — landing page
   Implemented from "Lucy's Prescribing - Landing.dc.html"
   (Claude Design). Theme: accentGold=classic, bgDepth=forest.
   ──────────────────────────────────────────────── */

:root {
  --gold: #c9a66b;
  --gold-soft: #e8d4a8;
  --bg-deep: #0c2820;
  --bg-panel: #0a2218;
  --cream: #efe8d6;
  --cream-82: rgba(239, 232, 214, 0.82);
  --cream-78: rgba(239, 232, 214, 0.78);
  --cream-75: rgba(239, 232, 214, 0.75);
  --cream-70: rgba(239, 232, 214, 0.7);
  --cream-65: rgba(239, 232, 214, 0.65);
  --cream-60: rgba(239, 232, 214, 0.6);
  --cream-55: rgba(239, 232, 214, 0.55);
  --cream-45: rgba(239, 232, 214, 0.45);
  --cream-30: rgba(239, 232, 214, 0.3);
  --gold-18: rgba(201, 166, 107, 0.18);
  --gold-25: rgba(201, 166, 107, 0.25);
  --gold-35: rgba(201, 166, 107, 0.35);
  --sand-70: rgba(232, 212, 168, 0.7);
  --sand-55: rgba(232, 212, 168, 0.55);
  --sand-80: rgba(232, 212, 168, 0.8);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Schibsted Grotesk', system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-deep);
  /* hidden = fallback for older browsers; clip = hard block on horizontal panning */
  overflow-x: hidden;
  overflow-x: clip;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

@keyframes lpFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lpDrawLine {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

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

/* ─────────────── Shared ─────────────── */

.container { max-width: 1280px; margin: 0 auto; }
.container.narrow { max-width: 1120px; }

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.eyebrow-row.centered { display: inline-flex; }

.eyebrow-line { width: 32px; height: 1px; background: var(--gold); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head.centered { text-align: center; margin-bottom: 96px; }
.section-head.centered .eyebrow-row { margin-bottom: 20px; }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0 auto;
  max-width: 780px;
  text-wrap: balance;
}

.section-title.large {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: none;
}

.section-title em { color: var(--gold); font-style: italic; }

.section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream-70);
  max-width: 600px;
  margin: 24px auto 0;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 240ms var(--ease);
  cursor: pointer;
}

.btn-gold {
  padding: 18px 32px;
  background: var(--gold);
  color: var(--bg-deep);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }

.btn-outline {
  padding: 11px 22px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  gap: 10px;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-deep); }

.btn-underline {
  padding: 18px 4px;
  color: var(--cream);
  border-bottom: 1px solid var(--cream-30);
  gap: 12px;
}
.btn-underline:hover { color: var(--gold); border-color: var(--gold); }

.cta-dash { display: inline-block; width: 14px; height: 1px; background: currentColor; }

/* ─────────────── Header ─────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 40, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-18);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { display: flex; align-items: center; gap: 14px; }

.brand-mark {
  width: 38px;
  height: 46px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.brand-mark.large { width: 42px; height: 52px; font-size: 24px; }

.brand-words { display: flex; flex-direction: column; gap: 2px; }

.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--sand-70);
  text-transform: uppercase;
}

.footer-brand { margin-bottom: 24px; }
.footer-brand .brand-name { font-size: 20px; }
.footer-brand .brand-sub { font-size: 10px; }

.main-nav {
  display: flex;
  gap: 38px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-78);
}

.main-nav a { transition: color 240ms var(--ease); }
.main-nav a:hover { color: var(--gold); }

/* ─────────────── Hero ─────────────── */

.hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 120px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  position: relative;
  z-index: 2;
  animation: lpFadeUp 700ms var(--ease) both;
}

.hero-left .eyebrow-row { gap: 18px; margin-bottom: 36px; }
.hero-left .eyebrow-line { width: 48px; }
.hero-left .eyebrow { font-weight: 500; }

.hero-welcome {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-70);
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 96px;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--gold);
  margin: 0 0 28px;
  text-wrap: balance;
}

.hero-rule {
  width: 120px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 0 0 36px;
  transform-origin: left;
  animation: lpDrawLine 900ms 200ms var(--ease) both;
}

.hero-lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.45;
  color: var(--cream);
  max-width: 540px;
  margin: 0 0 18px;
  font-style: italic;
}

.hero-body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--cream-75);
  max-width: 520px;
  margin: 0 0 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Trust strip — regulatory credentials */

.trust-strip {
  margin-top: 64px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.trust-value {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}

.trust-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin-top: 8px;
}

.trust-divider { width: 1px; height: 52px; background: var(--gold-25); }

/* Hero right — arch + poster */

.hero-right {
  position: relative;
  height: 720px;
  animation: lpFadeUp 900ms 150ms var(--ease) both;
}

.arch-outer {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  border-radius: 360px 360px 8px 8px;
  padding: 14px;
  opacity: 0.6;
}

.arch-inner-ring {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(201, 166, 107, 0.3);
  border-radius: 346px 346px 4px 4px;
}

.arch-media {
  position: absolute;
  inset: 24px;
  border-radius: 340px 340px 4px 4px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  background: linear-gradient(168deg, #123227 0%, #0a231b 55%, #071b14 100%);
}

/* Brand poster (CSS recreation of assets/brand-poster.jpeg) */

.poster {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 44px 56px;
  gap: 0;
}

.poster-wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 44px;
}

.poster-wordmark span {
  display: block;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.44em;
  color: var(--sand-70);
  margin-top: 6px;
}

.poster-welcome {
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-70);
  margin-bottom: 20px;
}

.poster-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.poster-rule {
  width: 46px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 26px 0;
}

.poster-inp {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-82);
  margin-bottom: 20px;
}

.poster-line {
  font-size: 12.5px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--cream-70);
  max-width: 300px;
  margin: 0 0 44px;
}

.poster-icons {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  justify-content: center;
}

.poster-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  padding: 0 10px;
}

.poster-icon + .poster-icon { border-left: 1px solid var(--gold-25); }

.poster-icon span {
  font-size: 7.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-60);
  line-height: 1.5;
}

.monogram-badge {
  position: absolute;
  right: -20px;
  bottom: 60px;
  width: 96px;
  height: 120px;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.monogram-lp {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.monogram-rule { width: 24px; height: 1px; background: var(--gold); opacity: 0.5; }

.monogram-est {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.hero-ornament {
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ─────────────── Pillars ─────────────── */

.pillars {
  background: var(--bg-panel);
  border-top: 1px solid rgba(201, 166, 107, 0.15);
  border-bottom: 1px solid rgba(201, 166, 107, 0.15);
  padding: 120px 40px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  padding: 8px 32px;
  text-align: center;
}

.pillar:not(:last-child) { border-right: 1px solid var(--gold-18); }

.pillar-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  color: var(--gold);
}

.pillar-title {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 16px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--cream-70);
  margin: 0;
}

/* ─────────────── About ─────────────── */

.about { padding: 140px 40px; position: relative; }

.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 96px;
  align-items: start;
}

.about-side { position: sticky; top: 120px; }

.about-meet {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin-bottom: 14px;
}

.about-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 88px;
  line-height: 0.96;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin: 0 0 32px;
}

.about-rule { width: 64px; height: 1px; background: var(--gold); opacity: 0.5; margin-bottom: 32px; }

.about-roles {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-70);
  line-height: 1.8;
}

.about-quote {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 40px;
  font-weight: 400;
  font-style: italic;
  text-wrap: balance;
}

.about-copy {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream-82);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-copy p { margin: 0; }

/* Credentials grid — regulatory credentials */

.credentials {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gold-18);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}

.credential-label {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.credential-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  line-height: 1.3;
}

/* ─────────────── Process ─────────────── */

.process {
  background: var(--bg-panel);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}

.process-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 96px;
}

.process-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-75);
  max-width: 480px;
  justify-self: end;
  margin: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-line {
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 166, 107, 0.4) 20%, rgba(201, 166, 107, 0.4) 80%, transparent);
  z-index: 0;
}

.step { position: relative; z-index: 1; }

.step-circle {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.step-circle span {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold);
  font-weight: 500;
}

.step-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.step-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  color: var(--cream);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-70);
  margin: 0 0 24px;
}

.step-note {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-55);
}

/* ─────────────── Services ─────────────── */

.services { padding: 140px 40px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-18);
  border: 1px solid var(--gold-18);
}

.service { background: var(--bg-deep); padding: 48px; }

.service-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 24px;
}

.service-title {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

.service-price {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.service p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--cream-70);
  margin: 0 0 24px;
}

.tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-80);
  padding: 6px 12px;
  border: 1px solid var(--gold-35);
}

.services-note {
  text-align: center;
  margin: 40px auto 0;
  max-width: 640px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--cream-55);
  font-style: italic;
}

/* ─────────────── Practitioner CTA banner ─────────────── */

.cta-banner-wrap { padding: 0 40px; }

.cta-banner {
  max-width: 1120px;
  margin: 0 auto;
  background: linear-gradient(135deg, #0a2218 0%, #143028 100%);
  border: 1px solid var(--gold-35);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}

.cta-lp-ghost {
  position: absolute;
  right: -40px;
  bottom: -40px;
  font-family: var(--serif);
  font-size: 380px;
  line-height: 1;
  color: rgba(201, 166, 107, 0.04);
  font-weight: 500;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  color: var(--cream);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.cta-title em { color: var(--gold); font-style: italic; }

.cta-body {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--cream-75);
  margin: 0 0 40px;
  max-width: 540px;
}

.cta-stats { display: flex; flex-direction: column; gap: 24px; }

.cta-stat {
  padding: 24px 28px;
  border: 1px solid var(--gold-25);
  background: rgba(12, 40, 32, 0.4);
}

.cta-stat-value {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
}

.cta-stat-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-65);
}

/* ─────────────── Contact ─────────────── */

.contact { padding: 140px 40px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.contact .section-title.large { margin-bottom: 32px; }

.contact-intro {
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-78);
  margin: 0 0 48px;
  max-width: 440px;
}

.contact-items { display: flex; flex-direction: column; gap: 28px; }

.contact-item { display: flex; gap: 20px; align-items: flex-start; }

.contact-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--gold);
}

.contact-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--cream);
  line-height: 1.4;
  overflow-wrap: anywhere; /* long email addresses on narrow screens */
}

.contact-value a:hover { color: var(--gold); }

.contact-hint { font-size: 13px; color: var(--cream-60); margin-top: 6px; }

/* Contact form */

.form-card {
  background: var(--bg-panel);
  border: 1px solid rgba(201, 166, 107, 0.22);
  padding: 56px 48px;
}

.form-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.form-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  color: var(--cream);
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}

#contact-form { display: flex; flex-direction: column; gap: 24px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field label,
.field legend {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-60);
  display: block;
  margin-bottom: 10px;
  padding: 0;
}

.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gold-35);
  padding: 10px 0;
  color: var(--cream);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  border-radius: 0;
  transition: border-color 240ms var(--ease);
}

.field input:focus,
.field textarea:focus { border-color: var(--gold); }

.field textarea { resize: none; }

.field input.is-invalid,
.field textarea.is-invalid { border-color: #c96b6b; }

.role-field { border: none; margin: 0; padding: 0; }
.role-field legend { margin-bottom: 14px; }

.role-buttons { display: flex; gap: 10px; }

.role-btn {
  flex: 1;
  padding: 14px 16px;
  background: transparent;
  color: var(--cream-70);
  border: 1px solid var(--gold-35);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 240ms var(--ease);
}

.role-btn:hover { border-color: var(--gold); color: var(--cream); }

.role-btn.is-active {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
}

.form-submit {
  margin-top: 8px;
  border: none;
  font-family: inherit;
  align-self: flex-start;
}

.form-error { font-size: 13px; line-height: 1.6; color: #d99a9a; margin: 0; }

.form-success { font-size: 14px; line-height: 1.6; color: var(--gold-soft); margin: 0; }

/* ─────────────── Footer ─────────────── */

.site-footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--gold-18);
  padding: 80px 40px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cream-60);
  max-width: 340px;
  margin: 0;
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--cream-70);
}

.footer-links a { transition: color 240ms var(--ease); }
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 14px; margin-top: 8px; }

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 240ms var(--ease);
}

.footer-social a:hover { border-color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-45);
}

.footer-bottom-links { display: flex; gap: 16px 32px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ─────────────── Responsive ─────────────── */

@media (max-width: 1100px) {
  /* full nav row is ~1060px wide — wrap it onto its own centered row */
  .header-inner { flex-wrap: wrap; row-gap: 12px; padding: 14px 24px; }
  .main-nav { order: 3; flex-basis: 100%; justify-content: center; gap: 28px; }
  .main-nav a { white-space: nowrap; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-right { height: 640px; max-width: 480px; margin: 0 auto; width: 100%; }
  .monogram-badge { right: 8px; }
  /* decorative glow extends 200px past the right edge — the horizontal-scroll culprit */
  .hero-ornament { display: none; }

  /* single-column sections centre-justify to match the centred arch/cards */
  .hero-left { text-align: center; }
  .hero-left .eyebrow-row { justify-content: center; }
  .hero-rule, .hero-lede, .hero-body { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .trust-strip { justify-content: center; }

  .about-side { text-align: center; }
  .about-side .eyebrow-row { justify-content: center; }
  .about-rule { margin-left: auto; margin-right: auto; }

  .process-head { text-align: center; }
  .process-head .eyebrow-row { justify-content: center; }
  .process-intro { justify-self: center; margin: 0 auto; }
  .step { text-align: center; }
  .step-circle { margin-left: auto; margin-right: auto; }

  .cta-banner { text-align: center; }
  .cta-banner .eyebrow-row { justify-content: center; }
  .cta-body { margin-left: auto; margin-right: auto; }

  .contact-grid > div:first-child { text-align: center; }
  .contact-grid > div:first-child .eyebrow-row { justify-content: center; }
  .contact-intro { margin-left: auto; margin-right: auto; }
  .contact-items { width: fit-content; margin: 0 auto; }
  .contact-item { text-align: left; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .pillar:nth-child(2n) { border-right: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-side { position: static; }
  .process-head { grid-template-columns: 1fr; gap: 32px; }
  .process-intro { justify-self: start; }
  .steps { grid-template-columns: 1fr; gap: 64px; }
  .steps-line { display: none; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner { padding: 64px 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-inner { padding: 14px 20px; gap: 16px; }
  .header-cta { white-space: nowrap; padding: 10px 14px; }
  .header-cta .cta-dash { display: none; }
  .hero { padding: 48px 24px 80px; }
  .hero-title { font-size: clamp(44px, 16vw, 64px); }
  .hero-lede { font-size: 22px; }
  .trust-strip { gap: 20px 28px; flex-wrap: wrap; }
  .pillars, .about, .process, .services, .contact { padding-left: 24px; padding-right: 24px; }
  .pillars { padding-top: 80px; padding-bottom: 80px; }
  .about, .process, .services, .contact { padding-top: 96px; padding-bottom: 96px; }
  .section-title { font-size: 40px; }
  .section-title.large { font-size: 44px; }
  .about-name { font-size: 64px; }
  .about-quote { font-size: 26px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; padding: 0 8px; }
  .credentials { grid-template-columns: 1fr; }
  /* minmax(0,1fr) lets cards shrink below their content's min width */
  .service-grid { grid-template-columns: minmax(0, 1fr); }
  .service { padding: 36px 28px; }
  .service-head { flex-wrap: wrap; gap: 8px 24px; }
  .service-title { font-size: 26px; }
  .cta-banner-wrap { padding: 0 24px; }
  .cta-banner { padding: 56px 28px; }
  .cta-title { font-size: 34px; }
  .form-card { padding: 40px 28px; }
  .field-row { grid-template-columns: 1fr; }
  .role-buttons { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-blurb { margin: 0 auto; }
  .footer-social { justify-content: center; }
  .site-footer { padding: 64px 24px 32px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .hero-right { height: 560px; }
  .poster { padding: 56px 24px 28px; }
  .poster-wordmark { margin-bottom: 24px; }
  .poster-title { font-size: 32px; }
  .poster-rule { margin: 18px 0; }
  .poster-inp { margin-bottom: 14px; }
  .poster-line { margin-bottom: 24px; }
  .poster-icons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 4px; justify-items: center; }
  .poster-icon + .poster-icon { border-left: none; }
  .monogram-badge { width: 72px; height: 90px; right: 2px; bottom: 24px; gap: 6px; }
  .monogram-lp { font-size: 28px; }
}

/* ─────────────── LEGAL PAGES (privacy, complaints) ─────────────── */
.legal-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 88px 48px 0;
}
.legal-hero .eyebrow-row { margin-bottom: 20px; }
.legal-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(42px, 5.5vw, 60px);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 18px;
}
.legal-title em { color: var(--gold); font-style: italic; }
.legal-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-45);
}
.legal-body {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 48px 112px;
}
.legal-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  color: var(--gold-soft);
  margin: 52px 0 14px;
}
.legal-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--cream);
  margin: 28px 0 8px;
}
.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cream-70);
}
.legal-body p { margin: 0 0 14px; }
.legal-body ul { margin: 10px 0 20px; padding-left: 20px; }
.legal-body li { margin-bottom: 9px; padding-left: 4px; }
.legal-body li::marker { color: var(--gold); }
.legal-body a { color: var(--gold-soft); text-decoration-color: var(--gold-35); text-underline-offset: 3px; }
.legal-body a:hover { color: var(--gold); }
.legal-body strong { color: var(--cream-82); font-weight: 600; }
.legal-note {
  border: 1px solid var(--gold-25);
  background: rgba(201, 166, 107, 0.07);
  padding: 20px 24px;
  margin: 28px 0;
}
.legal-note p { margin: 0; }
.legal-note p + p { margin-top: 10px; }
.legal-divider {
  width: 56px;
  height: 1px;
  background: var(--gold-35);
  border: none;
  margin: 56px 0 0;
}
.legal-contact {
  border: 1px solid var(--gold-18);
  padding: 26px 28px;
  margin: 20px 0 8px;
}
.legal-contact p { margin: 0 0 6px; }
.legal-contact p:last-child { margin-bottom: 0; }
@media (max-width: 760px) {
  .legal-hero { padding: 56px 24px 0; }
  .legal-body { padding: 12px 24px 88px; }
  .legal-title { font-size: 40px; }
  .legal-body h2 { font-size: 26px; }
}
