/* ============================================
   Lovett Counseling & Consulting
   Whitney Lovett, MA, LPC, CCTP
   v3 — muted clay, clean photos, subtle parallax
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Base */
  --cream: #F2EBE0;
  --cream-light: #F8F3E8;
  --cream-dark: #E8E0D2;

  /* Muted clay — replaces burnt-orange terracotta */
  --clay: #A07B6B;
  --clay-dark: #7F6354;
  --clay-light: #C0A294;

  /* Soft peach for highlights */
  --peach: #D9A892;
  --peach-light: #E8C5B0;

  /* Sage greens */
  --sage: #6B7A5A;
  --sage-light: #8A9779;

  /* Deep greens */
  --forest: #3E4A35;
  --forest-dark: #2A3424;

  /* Text */
  --text-dark: #2C2618;
  --text-medium: #5C5546;
  --text-light: #8B8576;
  --text-on-dark: #F2EBE0;

  --border-soft: rgba(44, 38, 24, 0.08);
  --border-medium: rgba(44, 38, 24, 0.15);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Libre Caslon Text', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --nav-h: 84px;
  --max-content: 1240px;
  /* Sharp corners — more editorial, less playful */
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;

  /* Motion */
  --t-fast: 200ms ease;
  --t-med: 380ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 600ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadow */
  --shadow-soft: 0 8px 30px -12px rgba(44, 38, 24, 0.16);
  --shadow-med: 0 24px 50px -22px rgba(44, 38, 24, 0.24);
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--clay);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--clay-dark); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  color: var(--text-dark);
  letter-spacing: -0.018em;
}

h1 {
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  letter-spacing: -0.02em;
}
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }

/* Editorial italic — for emphasis words inside headlines */
h1 em, h2 em, h3 em,
.italic-emphasis {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--clay);
}

p { color: var(--text-medium); }

/* Lowercase serif label-above-heading pattern (boutique signature) */
.section-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--clay);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
  display: inline-block;
}

.script {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--clay);
  font-size: 1em;
  letter-spacing: -0.02em;
}

.script-large {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: italic;
  color: var(--clay);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* Inline meta line — dot-separated, used under service titles */
.meta-line {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-light);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.meta-line .sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}

/* ---------- TOP NAV ---------- */
.topnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 235, 224, 0);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 280ms ease, backdrop-filter 280ms ease, border-color 280ms ease;
}

/* On scroll (added by JS): solid cream nav */
.topnav.is-scrolled {
  background: rgba(242, 235, 224, 0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-soft);
}

/* When over the dark hero (i.e. top of home page), invert nav colors to readable cream */
body.has-hero .topnav:not(.is-scrolled) .brand-name,
body.has-hero .topnav:not(.is-scrolled) .brand-sub {
  color: var(--cream-light);
}
body.has-hero .topnav:not(.is-scrolled) .nav-links a {
  color: rgba(242, 235, 224, 0.9);
}
body.has-hero .topnav:not(.is-scrolled) .nav-links a:hover {
  color: var(--peach);
}
body.has-hero .topnav:not(.is-scrolled) .nav-links a.active {
  color: var(--peach);
}
body.has-hero .topnav:not(.is-scrolled) .nav-links a::after {
  background: var(--peach);
}
body.has-hero .topnav:not(.is-scrolled) .brand-mark svg path[stroke="#3E4A35"] {
  stroke: var(--cream-light);
}
body.has-hero .topnav:not(.is-scrolled) .hamburger span {
  background: var(--cream-light);
}

.topnav-inner {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 48px;
  flex-shrink: 0;
}

.brand-mark svg { width: 100%; height: 100%; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.35rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-medium);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--t-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--clay);
  transition: width var(--t-med), left var(--t-med);
}

.nav-links a:hover { color: var(--clay); }
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 20px;
  left: calc(50% - 10px);
}

.nav-links a.active { color: var(--clay); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--forest);
  color: var(--cream-light);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background var(--t-fast), transform var(--t-fast);
}

.nav-cta:hover {
  background: var(--forest-dark);
  color: var(--cream-light);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: var(--t-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  height: calc(100dvh - var(--nav-h));
  background: var(--cream-light);
  z-index: 95;
  padding: 1.75rem 2rem calc(1.75rem + env(safe-area-inset-bottom, 0px));
  flex-direction: column;
  gap: 0.25rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.mobile-menu.open { display: flex; }

/* Brand header at the top of the mobile menu */
.mobile-menu-brand {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  padding: 0 0 1.25rem !important;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-medium) !important;
  text-decoration: none;
  flex-shrink: 0;
}

.mobile-menu-brand-mark {
  width: 40px;
  flex-shrink: 0;
}

.mobile-menu-brand-mark svg { width: 100%; height: auto; display: block; }

.mobile-menu-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: 0;
}

.mobile-menu-brand-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.mobile-menu-brand-name em {
  font-style: italic;
  color: var(--clay);
}

.mobile-menu-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.4rem;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-soft);
  flex-shrink: 0;
}

.mobile-menu a:hover { color: var(--clay); }

/* Prominent contact CTA pinned to the bottom of the mobile menu */
.mobile-menu .nav-cta {
  margin-top: auto;
  margin-bottom: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--forest);
  color: var(--cream-light);
  padding: 1.05rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-bottom: none;
  text-align: center;
  transition: background var(--t-fast);
  flex-shrink: 0;
}

.mobile-menu .nav-cta:hover,
.mobile-menu .nav-cta:active {
  background: var(--forest-dark);
  color: var(--cream-light);
}

.mobile-menu .nav-cta::after {
  content: "→";
  font-size: 1rem;
  letter-spacing: 0;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3.5vw, 2.5rem);
  position: relative;
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* ---------- HAND-DRAWN INLINE SVG ORNAMENTS ----------
   Custom line-art ornaments crafted as inline SVG. They live inside
   sections and parallax slowly on scroll via [data-parallax].
   No JPGs, no PNGs, no generic blobs. Just refined line work.
*/
.ornament {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  opacity: 0.7;
}

.ornament svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.ornament path,
.ornament line,
.ornament circle:not([fill]),
.ornament ellipse:not([fill]) {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ornament--clay { color: var(--clay); }
.ornament--clay path,
.ornament--clay line,
.ornament--clay circle,
.ornament--clay ellipse { stroke: var(--clay); }

.ornament--sage { color: var(--sage); }
.ornament--sage path,
.ornament--sage line,
.ornament--sage circle,
.ornament--sage ellipse { stroke: var(--sage); }

/* Section overflow management — keeps ornaments contained */
.hero, .meet, .content-section, .cta-strip, .page-hero, .testimonial {
  overflow: hidden;
  position: relative;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: var(--radius-sm);
  transition: all var(--t-med);
  position: relative;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream-light);
}
.btn-primary:hover {
  background: var(--forest-dark);
  color: var(--cream-light);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -10px rgba(62, 74, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--clay);
  border: 1.5px solid var(--clay);
}
.btn-secondary:hover { background: var(--clay); color: var(--cream-light); }

.btn-arrow::after {
  content: "→";
  font-size: 1rem;
  transition: transform var(--t-fast);
}
.btn:hover .btn-arrow::after,
.btn-arrow:hover::after { transform: translateX(3px); }

.link-arrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow::after {
  content: "→";
  transition: transform var(--t-fast);
}
.link-arrow:hover { color: var(--clay-dark); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- HERO (full-bleed, full-screen) ---------- */
.hero {
  position: relative;
  /* Fallback for older browsers, then steady dvh that ignores URL bar */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;          /* vertical center → label + h1 + p + CTA fit on one screen */
  /* Generous top buffer (clears the nav with air) + bottom room for scroll arrow */
  padding: calc(var(--nav-h) + 4rem) 0 8rem;
  overflow: hidden;
  margin-top: calc(var(--nav-h) * -1);
}

/* Desktop: slightly smaller headline + extra vertical breathing room around block */
@media (min-width: 1024px) {
  .hero {
    padding: calc(var(--nav-h) + 5rem) 0 9rem;
  }
  .hero h1 {
    font-size: clamp(2.6rem, 4.6vw, 4.4rem);  /* a touch smaller than default */
    line-height: 1.07;
  }
  .hero p {
    margin-top: 1.5rem;
  }
  .hero .hero-cta-row {
    margin-top: 2.25rem;
  }
}

/* Background image fills entire hero */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Layered gradient overlay — dark on the left where text sits, fading right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(20, 16, 8, 0.78) 0%,
      rgba(42, 36, 22, 0.55) 38%,
      rgba(42, 36, 22, 0.18) 70%,
      rgba(42, 36, 22, 0.02) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(20, 16, 8, 0.15) 0%,
      rgba(20, 16, 8, 0) 30%,
      rgba(20, 16, 8, 0) 70%,
      rgba(20, 16, 8, 0.25) 100%
    );
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero p {
  /* Lead paragraph: keep the line short enough to read on dark photo */
  max-width: 540px;
}

/* Light typography for hero content over dark image */
.hero h1,
.hero .hero-content h1 { color: var(--cream-light); }
.hero h1 em,
.hero .hero-content em { color: var(--peach); }
.hero .section-label { color: var(--peach); }
.hero p { color: rgba(242, 235, 224, 0.92); }
.hero .hero-meta { color: rgba(242, 235, 224, 0.75); }
.hero .link-arrow { color: rgba(242, 235, 224, 0.85) !important; }
.hero .link-arrow:hover { color: var(--peach) !important; }

/* Bottom-centered scroll button with a down arrow */
.hero-scroll {
  position: absolute;
  bottom: clamp(1.75rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.85);
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.hero-scroll:hover {
  color: var(--peach);
  transform: translateX(-50%) translateY(2px);
}

.hero-scroll-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(242, 235, 224, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: heroArrowBob 2.2s ease-in-out infinite;
}

.hero-scroll-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes heroArrowBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-arrow { animation: none; }
}

.hero h1 {
  margin-bottom: 1.75rem;
  letter-spacing: -0.012em;
}

.hero .script-large {
  font-size: 1.05em;
  display: inline;
}

.hero p {
  font-size: 1.075rem;
  max-width: 480px;
  margin-bottom: 2.25rem;
  color: var(--cream-light);
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* Hero photo — legacy class kept for backward compat */
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 560px;
  width: 100%;
  justify-self: end;
  overflow: hidden;
  box-shadow: var(--shadow-med);
  background: var(--cream-dark);
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- WAVE BANNER ---------- */
.wave-banner {
  position: relative;
  background: var(--clay);
  color: var(--cream-light);
  padding: clamp(4.5rem, 8vw, 6.5rem) 0;
  margin-top: -1px;
  isolation: isolate;
  overflow: hidden;
}

.wave-banner::before,
.wave-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}
.wave-banner::before {
  top: -47px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'><path d='M0,48 C200,5 400,43 600,18 C800,0 1000,38 1200,15 L1200,48 L0,48 Z' fill='%23A07B6B'/></svg>");
}
.wave-banner::after {
  bottom: -47px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'><path d='M0,0 C200,43 400,5 600,28 C800,48 1000,10 1200,33 L1200,0 L0,0 Z' fill='%23A07B6B'/></svg>");
}

.wave-banner-inner {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.wave-quote { position: relative; padding-left: 2.25rem; }
.wave-quote::before {
  content: "“";
  position: absolute;
  left: -0.25rem;
  top: -2rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--cream-light);
  opacity: 0.5;
}

.wave-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.55vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--cream-light);
}

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

.pillar { text-align: center; position: relative; padding: 0 0.5rem; }
.pillar:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.5rem;
  top: 14%;
  bottom: 14%;
  width: 1px;
  background: rgba(242, 235, 224, 0.28);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 1rem;
  stroke: var(--cream-light);
  fill: none;
  stroke-width: 1.2;
}

.pillar h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-light);
  margin-bottom: 0.7rem;
}

.pillar p {
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--cream-light);
  opacity: 0.92;
}

/* ---------- TESTIMONIAL (boutique signature block) ---------- */
.testimonial {
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  text-align: center;
  background: var(--cream-light);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.testimonial-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-dark);
  margin: 1.5rem 0 2rem;
  letter-spacing: -0.012em;
}

.testimonial blockquote::before,
.testimonial blockquote::after {
  display: none;
}

.testimonial cite {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-medium);
  font-style: normal;
}

.testimonial cite::before {
  content: "— ";
}

/* ---------- ROMAN-NUMERAL SERVICES (boutique signature) ---------- */
.roman-services {
  display: grid;
  gap: clamp(3rem, 5vw, 4.5rem);
  max-width: 920px;
  margin: 3rem auto 0;
}

.roman-service {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--border-soft);
}

.roman-service:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.roman-numeral {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
  padding-top: 0.2rem;
  letter-spacing: -0.02em;
}

.roman-service h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--text-dark);
}

.roman-service p {
  font-size: 1.025rem;
  line-height: 1.7;
  color: var(--text-medium);
}

.roman-service .link-arrow {
  margin-top: 1.25rem;
}

/* ---------- PROCESS STEPS (i. ii. iii.) ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1080px;
  margin: 3rem auto 0;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.process-step .roman-numeral {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
}

.process-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-step li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-medium);
}

.process-step li:last-child {
  border-bottom: none;
}

/* ---------- SERVICES — clean cards ---------- */
.services { padding: clamp(5rem, 9vw, 7.5rem) 0 clamp(4rem, 6vw, 5rem); position: relative; }

.services-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 680px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.services-header h2 { margin-bottom: 1rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.8vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  border: 1px solid var(--border-soft);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-med);
}

.service-card-image {
  aspect-ratio: 5/4;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card:hover .service-card-image img { transform: scale(1.05); }

.service-card-body {
  padding: 2.5rem 1.75rem 2rem;
  text-align: center;
  position: relative;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  stroke: var(--cream-light);
  fill: none;
  stroke-width: 1.4;
  box-shadow: 0 4px 14px -4px rgba(44, 38, 24, 0.25);
}

.service-icon.sage { background: var(--sage); }
.service-icon.clay { background: var(--clay); }
.service-icon.sage-light { background: var(--sage-light); }

.service-icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin: 0.4rem 0 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  color: var(--text-medium);
  line-height: 1.65;
}

/* ---------- MEET THERAPIST — clean photo ---------- */
.meet {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  position: relative;
}

.meet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Meet photo — clean */
.meet-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  background: var(--cream-dark);
  z-index: 2;
}

.meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-text { position: relative; }

.meet-text .eyebrow { margin-bottom: 1.25rem; }

.meet-text h2 {
  margin-bottom: 1.75rem;
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
}

.meet-text p {
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.credential-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-medium);
  flex-wrap: wrap;
}

.credential { display: flex; flex-direction: column; }

.credential-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.credential-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--text-dark);
}

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4.5rem);
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  margin-bottom: 1.5rem;
}

.page-hero-lead {
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--text-medium);
  max-width: 540px;
}

/* Inner page hero photo — clean */
.page-hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 500px;
  width: 100%;
  justify-self: end;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  background: var(--cream-dark);
  z-index: 2;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CONTENT BLOCKS ---------- */
.content-section {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  position: relative;
}

.content-section.alt { background: var(--cream-light); }

.content-narrow {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.content-narrow p {
  font-size: 1.025rem;
  line-height: 1.78;
  margin-bottom: 1.5rem;
}

.content-narrow p:last-child { margin-bottom: 0; }

.content-heading {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.content-heading h2 { margin-bottom: 1rem; }

.content-heading p { font-size: 1.05rem; }

/* Two-column with clean photo */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.two-col.image-right > .two-col-text { order: 1; }
.two-col.image-right > .two-col-image { order: 2; }

.two-col-image {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  width: 100%;
  justify-self: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  background: var(--cream-dark);
}

.two-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col-text h2 { margin-bottom: 1.25rem; }
.two-col-text p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* ---------- LIST OF CONCERNS ---------- */
.concerns-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* desktop = 4 columns, even 4+4 rows */
  gap: 0.85rem;
  list-style: none;
  margin: 2.5rem 0;
  position: relative;
  z-index: 2;
}

.concerns-list li {
  background: var(--cream);
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-dark);
  border-left: 2.5px solid var(--clay);
  font-family: var(--font-sans);
}

.content-section.alt .concerns-list li {
  background: var(--cream-light);
}

/* ---------- APPROACH PILLARS ---------- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);  /* default = 4 columns for 4-item grids */
  gap: 2.5rem 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

/* 3-column variant — for 6-item grids that should be 3+3 */
.approach-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.approach-card { text-align: center; padding: 1.5rem 1rem; }

.approach-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-soft);
}

.content-section.alt .approach-icon { background: var(--cream); }

.approach-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 1.4;
}

.approach-card h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.approach-card p {
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---------- CERTIFICATION CALLOUT ---------- */
.cert-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2.5rem;
  max-width: 880px;
  margin: 4rem auto 0;
  padding: 2.25rem 2.5rem;
  background: var(--cream-light);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--clay);
  position: relative;
  z-index: 2;
}

.content-section.alt .cert-callout { background: #fff; }

.cert-callout-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-callout-badge img {
  width: 150px;
  height: 150px;
  display: block;
  object-fit: contain;
}

.cert-callout-text .eyebrow {
  display: block;
  margin-bottom: 0.6rem;
}

.cert-callout-text h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}

.cert-callout-text h3 em {
  font-style: italic;
  color: var(--clay);
}

.cert-callout-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-medium);
  margin: 0;
}

@media (max-width: 720px) {
  .cert-callout {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .cert-callout-badge img { width: 130px; height: 130px; }
  .cert-callout-text h3 { font-size: 1.35rem; }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  border-bottom: 1px solid var(--border-medium);
  padding: 1.5rem 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
  letter-spacing: -0.005em;
}

.faq-question:hover { color: var(--clay); }

.faq-toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--clay);
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-family: var(--font-sans);
  font-weight: 300;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
  line-height: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--clay);
  color: var(--cream-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms ease, padding 300ms ease;
}

.faq-item.open .faq-answer {
  max-height: 1200px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* ---------- FEES ---------- */
.fees-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-soft);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.fees-card h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.75rem;
}

.fees-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.fees-row:last-child { border-bottom: none; }

.fees-label {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  color: var(--text-dark);
}

.fees-value {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--clay);
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-soft);
  min-width: 0;
}

.contact-info-item a,
.contact-info-item p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-soft);
}

.contact-info-item:last-child { border-bottom: none; }
.contact-info-item:first-child { padding-top: 0; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cream-light);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.contact-info-item h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1.025rem;
  color: var(--text-dark);
  line-height: 1.5;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--cream-light);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--cream);
}

.form-group textarea { resize: vertical; min-height: 150px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.55;
}

/* ---------- FORM SUCCESS CARD (replaces form in-place) ---------- */
.form-column { position: relative; min-width: 0; }

.form-success {
  text-align: center;
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  background: var(--cream-light);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--clay);
  animation: form-success-in 0.45s ease;
}

@keyframes form-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  width: 32px;
  height: 32px;
}

.form-success-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.1rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.form-success-title em {
  font-style: italic;
  color: var(--clay);
}

.form-success-lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-medium);
  margin: 0 auto 1.75rem;
  max-width: 440px;
}

.form-success-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 1.5rem 1.5rem;
  margin: 0 0 2rem;
  text-align: center;
}

.form-success-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form-success-card a {
  color: var(--clay);
  font-weight: 500;
  border-bottom: 1px solid rgba(160, 123, 107, 0.35);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form-success-card a:hover { border-bottom-color: var(--clay); }

.form-success-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-medium);
  margin-top: 0.85rem !important;
}

@media (max-width: 600px) {
  .form-success { padding: 2rem 1.25rem; }
  .form-success-card { padding: 1.25rem 1rem; }
  .form-success-lead { font-size: 0.95rem; }
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: var(--cream-light);
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  text-align: center;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}

.cta-strip-inner {
  position: relative;
  z-index: 2;
}

.cta-strip h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
}

.cta-strip p {
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 2rem;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--forest);
  color: var(--cream-light);
  padding: 0 0 1.5rem;
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.footer::before {
  content: "";
  position: absolute;
  top: -47px;
  left: 0;
  right: 0;
  height: 48px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'><path d='M0,48 C200,5 400,43 600,18 C800,0 1000,38 1200,15 L1200,48 L0,48 Z' fill='%233E4A35'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer-tagline-block {
  padding: clamp(4rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  border-bottom: 1px solid rgba(242, 235, 224, 0.18);
  position: relative;
  overflow: hidden;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.35;
  color: var(--cream-light);
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.footer-tagline::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: var(--peach);
  margin: 1.75rem auto 0;
}

.footer-main {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(242, 235, 224, 0.15);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-light);
  margin-bottom: 1.25rem;
  opacity: 0.95;
}

.footer-col p {
  font-size: 0.95rem;
  color: var(--cream-light);
  opacity: 0.78;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--cream-light);
  opacity: 0.78;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: opacity var(--t-fast), color var(--t-fast);
}

.footer-col a:hover { opacity: 1; color: var(--peach); }

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand-mark svg { width: 36px; height: 46px; }

.footer-brand-mark .footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--cream-light);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-brand-mark .footer-brand-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-top: 0.3rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242, 235, 224, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-light);
  opacity: 1;
  margin: 0;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.social-links a:hover {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--forest-dark);
}

.social-links svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.6);
}

.footer-bottom a { color: rgba(242, 235, 224, 0.6); }
.footer-bottom a:hover { color: var(--peach); }

/* ---------- UTILITY ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.7rem; letter-spacing: 0.14em; }
  .hero-grid { gap: 2.5rem; }
  .meet-grid { gap: 3rem; }
}

@media (max-width: 920px) {
  :root { --nav-h: 76px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topnav-inner { grid-template-columns: 1fr auto; gap: 1rem; }

  .hero-grid,
  .page-hero-grid,
  .meet-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-photo,
  .meet-photo,
  .page-hero-photo,
  .two-col-image {
    margin: 0 auto;
    justify-self: center;
    max-width: 440px;
  }

  /* Ornaments: scale down on tablet */
  .ornament { opacity: 0.5; }

  .two-col.image-right > .two-col-text,
  .two-col.image-right > .two-col-image { order: initial; }

  .wave-banner-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .wave-quote { padding-left: 0; padding-top: 2rem; max-width: 480px; margin: 0 auto; }
  .wave-quote::before { left: 50%; transform: translateX(-50%); top: -1rem; }

  .pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
    max-width: 500px;
    margin: 0 auto;
  }
  .pillar::after { display: none; }

  .service-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .process-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 2.5rem; }
  .approach-grid,
  .approach-grid--three { grid-template-columns: repeat(2, 1fr); }
  .concerns-list { grid-template-columns: repeat(2, 1fr); }
  .roman-service { grid-template-columns: 1fr; gap: 0.5rem; }
  .roman-service .roman-numeral { font-size: 2.4rem; padding-top: 0; }

  .credential-row { gap: 1.5rem; }

  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-col:first-child { grid-column: 1 / -1; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Smaller decor on tablet */
  .decor { opacity: 0.4; }
}

/* Mobile hero — keep it full-screen, tighten internal sizing so content fits */
@media (max-width: 768px) {
  .hero {
    padding: var(--nav-h) 0 5.5rem;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    line-height: 1.04;
  }
  .hero p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-scroll {
    bottom: 1.5rem;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
  }
  .hero-scroll-arrow { width: 28px; height: 28px; }
}

@media (max-width: 560px) {
  .brand-text { display: none; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col:first-child { grid-column: auto; }
  .concerns-list { grid-template-columns: 1fr; }
  .credential-row { flex-direction: column; gap: 1.25rem; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  /* Hide ornaments on small mobile for cleanliness */
  .ornament { display: none; }
}

img.img-failed { opacity: 0; }
