/* ────────────────────────────────────────────────
   Lucy's Aesthetics — landing page
   Implemented from "Lucys-Aesthetics-Website.dc.html" (Claude Design)
   + the Aesthetics brand one-pager. Warm-neutral, editorial, light theme.
   Sibling of the Lucy's Prescribing site (shared structure & fonts).
   ──────────────────────────────────────────────── */

:root {
  /* Warm-neutral palette (brand one-pager) */
  --ink: #3a2b22;
  --ink-panel: #33241b;      /* dark bands: CTA + footer */
  --clay: #b4906b;           /* decorative accent (lines, borders, strokes) */
  --taupe: #b7a188;
  --blush: #e7c8b4;
  --sand: #e1d4c3;
  --cream: #efe6d9;          /* alternate section background */
  --canvas: #f6f0e8;         /* page background */

  /* Accent text — deep clay, tuned for AA contrast on light backgrounds */
  --accent: #7f5c34;
  --accent-display: #9a7550; /* large display italics (AA large-text) */

  /* Ink text at opacities (on light backgrounds) */
  --ink-82: rgba(58, 43, 34, 0.82);
  --ink-72: rgba(58, 43, 34, 0.72);
  --ink-60: rgba(58, 43, 34, 0.6);
  --ink-50: rgba(58, 43, 34, 0.5);
  --ink-40: rgba(58, 43, 34, 0.42);

  /* Cream text at opacities (on dark ink bands) */
  --cream-90: rgba(239, 230, 217, 0.92);
  --cream-72: rgba(239, 230, 217, 0.72);
  --cream-55: rgba(239, 230, 217, 0.55);
  --soft-clay: #d9bd94;      /* accent text on dark bands (AA on ink) */

  /* Hairlines & tints */
  --line: rgba(58, 43, 34, 0.12);
  --line-strong: rgba(58, 43, 34, 0.2);
  --clay-40: rgba(180, 144, 107, 0.4);
  --clay-30: rgba(180, 144, 107, 0.3);
  --clay-20: rgba(180, 144, 107, 0.2);

  --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(--canvas);
  /* 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(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--canvas);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Visible focus for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ─────────────── 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(--clay); }

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

.section-head.centered { text-align: center; margin-bottom: 84px; }
.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(--ink);
  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(--accent-display); font-style: italic; }

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

/* Buttons */

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

.btn-primary {
  padding: 17px 30px;
  background: var(--ink);
  color: var(--canvas);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: #4c382c;
  border-color: #4c382c;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(58, 43, 34, 0.18);
}

.btn-outline {
  padding: 11px 22px;
  border: 1px solid var(--clay);
  color: var(--ink);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  gap: 10px;
}
.btn-outline:hover { background: var(--ink); color: var(--canvas); border-color: var(--ink); }

.btn-instagram {
  padding: 16px 26px;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  gap: 11px;
}
.btn-instagram:hover { border-color: var(--ink); background: rgba(58, 43, 34, 0.04); }

/* Buttons on dark ink bands */
.btn-primary.on-dark {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--canvas);
}
.btn-primary.on-dark:hover {
  background: var(--blush);
  border-color: var(--blush);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.btn-instagram.on-dark { color: var(--cream); border-color: rgba(239, 230, 217, 0.35); }
.btn-instagram.on-dark:hover { border-color: var(--cream); background: rgba(239, 230, 217, 0.08); }

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 240, 232, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.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: 40px;
  height: 48px;
  border: 1.5px solid var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.brand-mark.large { width: 44px; height: 54px; font-size: 23px; }

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

.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ink);
  line-height: 1;
}

.brand-sub {
  font-size: 9.5px;
  letter-spacing: 0.34em;
  color: var(--accent);
  text-transform: uppercase;
}

.footer-brand { margin-bottom: 24px; }
.footer-brand .brand-name { font-size: 21px; color: var(--cream); }
.footer-brand .brand-sub { font-size: 10px; color: var(--soft-clay); }
.footer-brand .brand-mark { border-color: var(--soft-clay); color: var(--soft-clay); }

.main-nav {
  display: flex;
  gap: 36px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-72);
}

.main-nav a { transition: color 240ms var(--ease); white-space: nowrap; }
.main-nav a:hover { color: var(--accent); }

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

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

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

.hero-left .eyebrow-row { gap: 18px; margin-bottom: 32px; }
.hero-left .eyebrow-line { width: 48px; }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 82px;
  line-height: 1.0;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 30px;
  text-wrap: balance;
}
.hero-title em { color: var(--accent-display); font-style: italic; font-weight: 500; }

.hero-rule {
  width: 120px;
  height: 1px;
  background: var(--clay);
  margin: 0 0 34px;
  transform-origin: left;
  animation: laDrawLine 900ms 200ms var(--ease) both;
}

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

.hero-body {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-72);
  max-width: 500px;
  margin: 0 0 40px;
}

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

.hero-cue {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.hero-cue span:nth-child(even) { color: var(--clay); }

/* Hero right — arch + poster */

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

.arch-outer {
  position: absolute;
  inset: 0;
  border: 1px solid var(--clay);
  border-radius: 320px 320px 8px 8px;
  padding: 14px;
}

.arch-inner-ring {
  width: 100%;
  height: 100%;
  border: 1px solid var(--clay-30);
  border-radius: 306px 306px 4px 4px;
}

.arch-media {
  position: absolute;
  inset: 24px;
  border-radius: 300px 300px 4px 4px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(58, 43, 34, 0.18);
  background: linear-gradient(168deg, #f3e5d6 0%, #ecd8c4 46%, #e3c7ae 100%);
}

/* Brand poster (CSS recreation; replace with a real portrait) */

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

.poster-monogram {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--ink);
  border: 1.5px solid var(--clay);
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.poster-wordmark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.05;
}

.poster-wordmark span {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
}

.poster-rule {
  width: 46px;
  height: 1px;
  background: var(--clay);
  margin: 24px 0;
}

.poster-inp {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-72);
  margin-bottom: 22px;
}

.poster-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 260px;
  margin: 0 0 34px;
}

.poster-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.poster-tags span {
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--clay-40);
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.28);
}

.monogram-badge {
  position: absolute;
  right: -20px;
  bottom: 54px;
  width: 96px;
  height: 118px;
  background: var(--ink-panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 16px 40px rgba(58, 43, 34, 0.32);
}

.monogram-la {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--soft-clay);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
}

.monogram-rule { width: 24px; height: 1px; background: var(--soft-clay); opacity: 0.6; }

.monogram-est {
  font-size: 8px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-72);
  text-align: center;
  line-height: 1.5;
}

.hero-ornament {
  position: absolute;
  top: -120px;
  right: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 144, 107, 0.16) 0%, transparent 62%);
  pointer-events: none;
  z-index: 0;
}

/* ─────────────── Trust strip ─────────────── */

.trust {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 46px 40px;
}

.trust-strip {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.trust-item { text-align: center; padding: 0 12px; }

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

.trust-label {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
  line-height: 1.5;
}

.trust-divider { width: 1px; height: 46px; background: var(--clay-30); }

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

.about { padding: 130px 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(--ink-60);
  margin-bottom: 14px;
}

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

.about-rule { width: 64px; height: 1px; background: var(--clay); margin-bottom: 30px; }

.about-roles {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-72);
  line-height: 1.9;
}

.about-portrait {
  margin-top: 40px;
  aspect-ratio: 4 / 5;
  max-width: 300px;
  border: 1px solid var(--clay-40);
  border-radius: 200px 200px 6px 6px;
  background: linear-gradient(168deg, #f0e1d0 0%, #e6d1bd 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-portrait-mark {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--accent);
  border: 1.5px solid var(--clay);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-portrait-note {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-50);
}

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

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

.about-copy p { margin: 0; }

/* Credentials grid */

.credentials {
  margin-top: 56px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 48px;
}

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

.credential-value {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--ink);
  line-height: 1.35;
}

/* ─────────────── Treatments & pricing ─────────────── */

.treatments { padding: 130px 40px; }

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

.treatment {
  background: var(--canvas);
  padding: 44px 44px 40px;
}

.treatment-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

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

.treatment-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--clay-40);
  padding: 5px 11px;
  white-space: nowrap;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  font-size: 15px;
  color: var(--ink-82);
  border-bottom: 1px dotted var(--line);
}
.price-list li:last-child { border-bottom: none; }

.price-list .price {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

.treatment-note {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-60);
  font-style: italic;
  margin: 18px 0 0;
}

.treatment-copy {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-72);
  margin: 0;
}

.treatment-consult { background: var(--cream); }

.treatment-terms {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 30px 36px;
  border: 1px solid var(--clay-30);
  background: rgba(180, 144, 107, 0.06);
}

.treatment-terms p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-72);
  max-width: 620px;
}
.treatment-terms strong { color: var(--ink); font-weight: 600; }
.treatment-terms .btn { flex: none; }

/* ─────────────── Safety / Why medically led ─────────────── */

.safety {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 120px 40px;
}

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

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

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

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

.pillar-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-72);
  margin: 0;
}

/* ─────────────── CTA banner (dark ink band) ─────────────── */

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

.cta-banner {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--ink-panel);
  padding: 88px 80px;
  position: relative;
  overflow: hidden;
}

.cta-la-ghost {
  position: absolute;
  right: -30px;
  bottom: -70px;
  font-family: var(--serif);
  font-size: 360px;
  line-height: 1;
  color: rgba(239, 230, 217, 0.045);
  font-weight: 500;
  letter-spacing: 0.02em;
  pointer-events: none;
}

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

.cta-banner .eyebrow-line { background: var(--soft-clay); }
.cta-banner .eyebrow { color: var(--soft-clay); }

.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(--soft-clay); font-style: italic; }

.cta-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream-72);
  margin: 0 0 38px;
  max-width: 540px;
}

.cta-tiles { display: flex; flex-direction: column; gap: 20px; }

.cta-tile {
  padding: 26px 28px;
  border: 1px solid rgba(239, 230, 217, 0.18);
  background: rgba(239, 230, 217, 0.04);
}

.cta-tile-value {
  font-family: var(--serif);
  font-size: 46px;
  color: var(--soft-clay);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.cta-tile-label {
  font-size: 12.5px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--cream-72);
}

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

.contact { padding: 130px 40px; }

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

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

.contact-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-82);
  margin: 0 0 44px;
  max-width: 440px;
}

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

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

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

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

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

.contact-value a { transition: color 200ms var(--ease); }
.contact-value a:hover { color: var(--accent); }

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

/* Contact form */

.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 54px 48px;
}

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

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

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

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

.field label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  display: block;
  margin-bottom: 10px;
}

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

.field input::placeholder,
.field textarea::placeholder { color: var(--ink-40); }

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

.field textarea { resize: none; }

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

.field-hint {
  font-size: 12px;
  color: var(--ink-60);
  margin: -12px 0 0;
}

/* Select styled to match the underline fields */
.select-wrap { position: relative; }
.field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 24px;
  cursor: pointer;
}
.select-chevron {
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  pointer-events: none;
}

/* Honeypot — visually hidden, kept in the layout flow for bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-72);
  cursor: pointer;
}
.consent input {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent a:hover { color: var(--ink); }

.form-submit {
  margin-top: 6px;
  align-self: flex-start;
}

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

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

/* ─────────────── Footer (dark ink band) ─────────────── */

.site-footer {
  background: var(--ink-panel);
  padding: 80px 40px 36px;
  color: var(--cream-72);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(239, 230, 217, 0.12);
}

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

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

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

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

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

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(239, 230, 217, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: border-color 240ms var(--ease);
}

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

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-55);
}

.footer-bottom-links { display: flex; gap: 14px 28px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--cream); }

.footer-legal {
  max-width: 1280px;
  margin: 26px auto 0;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: var(--cream-55);
}

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

@media (max-width: 1100px) {
  /* full nav row is 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: 26px; }

  .hero { grid-template-columns: 1fr; padding-top: 56px; gap: 64px; }
  .hero-right { height: 600px; max-width: 460px; margin: 0 auto; width: 100%; }
  .monogram-badge { right: 8px; }
  /* decorative glow extends 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; }
  .hero-cue { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-side { position: static; text-align: center; }
  .about-side .eyebrow-row { justify-content: center; }
  .about-rule { margin-left: auto; margin-right: auto; }
  .about-portrait { margin-left: auto; margin-right: auto; }

  .treatment-terms { flex-direction: column; align-items: flex-start; }

  .pillar-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 0; }
  .pillar:nth-child(2n) { border-right: none; }

  .cta-grid { grid-template-columns: 1fr; gap: 44px; }
  .cta-banner { padding: 64px 48px; }
  .cta-banner-wrap { padding: 96px 40px; }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .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; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@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: 44px 24px 80px; }
  .hero-title { font-size: clamp(42px, 15vw, 60px); }
  .hero-lede { font-size: 22px; }

  .trust { padding: 36px 24px; }
  .trust-strip { flex-wrap: wrap; gap: 22px 20px; }
  .trust-divider { display: none; }
  .trust-item { flex: 1 1 40%; min-width: 120px; }

  .about, .treatments, .safety, .contact { padding-left: 24px; padding-right: 24px; }
  .about, .treatments, .contact { padding-top: 88px; padding-bottom: 88px; }
  .safety { padding-top: 80px; padding-bottom: 80px; }

  .section-title { font-size: 40px; }
  .section-title.large { font-size: 44px; }
  .about-name { font-size: 64px; }
  .about-quote { font-size: 26px; }

  .credentials { grid-template-columns: 1fr; }

  /* minmax(0,1fr) lets cards shrink below their content's min width */
  .treatment-grid { grid-template-columns: minmax(0, 1fr); }
  .treatment { padding: 34px 26px; }
  .treatment-title { font-size: 25px; }
  .treatment-head { flex-wrap: wrap; gap: 10px 16px; }
  .treatment-terms { padding: 26px 24px; }

  .pillar-grid { grid-template-columns: 1fr; gap: 44px 0; }
  .pillar { border-right: none !important; padding: 0 8px; }

  .cta-banner-wrap { padding: 80px 24px; }
  .cta-banner { padding: 52px 28px; }
  .cta-title { font-size: 34px; }
  .cta-la-ghost { font-size: 260px; }

  .form-card { padding: 38px 26px; }
  .field-row { grid-template-columns: 1fr; }

  .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; }
  .footer-legal { text-align: center; }

  .hero-right { height: 540px; }
  .poster { padding: 60px 24px 30px; }
  .poster-monogram { margin-bottom: 22px; }
  .poster-wordmark { font-size: 26px; }
  .poster-line { font-size: 20px; margin-bottom: 26px; }
  .monogram-badge { width: 74px; height: 92px; right: 2px; bottom: 24px; gap: 6px; }
  .monogram-la { font-size: 28px; }
}

/* ─────────────── LEGAL PAGES (privacy, complaints) ─────────────── */
.legal-hero {
  max-width: 880px;
  margin: 0 auto;
  padding: 84px 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(--ink);
  margin: 0 0 18px;
}
.legal-title em { color: var(--accent-display); font-style: italic; }
.legal-meta {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.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(--ink);
  margin: 52px 0 14px;
}
.legal-body h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 8px;
}
.legal-body p,
.legal-body li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-72);
}
.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(--clay); }
.legal-body a { color: var(--accent); text-decoration-color: var(--clay-40); text-underline-offset: 3px; }
.legal-body a:hover { color: var(--ink); }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-note {
  border: 1px solid var(--clay-30);
  background: rgba(180, 144, 107, 0.08);
  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(--clay);
  border: none;
  margin: 56px 0 0;
}
.legal-contact {
  border: 1px solid var(--line);
  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; }
}


/* ─────────────── Journal / Blog ─────────────── */

.journal { padding: 130px 40px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.blog-card {
  background: var(--canvas);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 240ms var(--ease);
}
.blog-card:hover { background: var(--cream); }

.blog-card-meta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}

.blog-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-72);
  margin: 0;
}

.blog-card-link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.blog-card:hover .blog-card-link { color: var(--ink); }

.journal-more { text-align: center; margin-top: 44px; }

/* Blog index / posts (reuses .legal-hero + .legal-body) */
.post { }
.post + .post { margin-top: 60px; padding-top: 60px; border-top: 1px solid var(--line); }
.post-meta {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.post-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.14;
  color: var(--ink);
  margin: 0 0 18px;
}
.post-title em { color: var(--accent-display); font-style: italic; }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: 1fr; }
  .journal { padding: 96px 40px; }
}
@media (max-width: 760px) {
  .journal { padding: 80px 24px; }
  .blog-card { padding: 32px 26px; }
}

/* Blog post extras */
.post-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-60);
  border-left: 2px solid var(--clay-30);
  padding-left: 16px;
  margin-top: 22px;
}
.journal-cta {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.journal-cta-line {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--ink);
  margin: 0 0 24px;
}
.journal-cta .hero-actions { justify-content: center; }
