:root {
  --navy: #1a2233;
  --stone: #e5e1da;
  --gold: #c6a96b;
  --white: #faf9f7;
  --slate: #3a4a5a;
  --ink: #101722;
  --muted: #67707c;
  --line: rgba(26, 34, 51, 0.14);
  --shadow: 0 28px 80px rgba(12, 19, 31, 0.18);
  --font-sans: "Century Gothic", "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  --font-display: var(--font-sans);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
}

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 68px);
  color: var(--white);
  animation: headerDrop 820ms var(--ease) both;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 249, 247, 0.94);
  color: var(--navy);
  box-shadow: 0 12px 40px rgba(26, 34, 51, 0.08);
  backdrop-filter: blur(18px);
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(198, 169, 107, 0.75);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.72;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-links a,
.footer-links a,
.text-link {
  position: relative;
}

.nav-links a::after,
.footer-links a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.footer-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.header-cta {
  border: 1px solid rgba(198, 169, 107, 0.8);
  padding: 12px 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
}

.section-panel,
.split-section,
.approach,
.mid-cta,
.site-footer {
  padding-right: clamp(20px, 5vw, 68px);
  padding-left: clamp(20px, 5vw, 68px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding-top: 118px;
  padding-bottom: 80px;
  background:
    linear-gradient(90deg, rgba(26, 34, 51, 0.98) 0%, rgba(26, 34, 51, 0.9) 54%, rgba(26, 34, 51, 0.5) 100%),
    url("assets/images/atlanta-calm-architecture.jpg") center/cover;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(250, 249, 247, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(250, 249, 247, 0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  background-position: calc(var(--scroll-progress, 0) * -36px) calc(var(--scroll-progress, 0) * -58px);
  content: "";
  opacity: 0;
  animation: gridReveal 1400ms 320ms ease both;
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-copy {
  animation: heroCopyIn 1000ms 180ms var(--ease) both;
}

.hero-actions {
  animation: softFadeIn 900ms 560ms var(--ease) both;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 7vw, 6.9rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.8vw, 5.15rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 650px;
  color: rgba(250, 249, 247, 0.82);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  animation: softFadeIn 900ms 420ms var(--ease) both;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), background 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.015);
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 68%);
  content: "";
  transform: translateX(-130%);
  transition: transform 560ms var(--ease);
}

.button:hover::before {
  transform: translateX(130%);
}

.button-primary {
  background: var(--gold);
  color: var(--navy);
}

.button-primary:hover {
  background: #d7bc7d;
  box-shadow: 0 18px 42px rgba(198, 169, 107, 0.2);
}

.button-secondary {
  border-color: rgba(250, 249, 247, 0.42);
  color: var(--white);
}

.button-secondary:not(.dark):hover {
  border-color: var(--gold);
  background: rgba(198, 169, 107, 0.08);
}

.button-secondary.dark,
.contact-section .button-secondary {
  border-color: rgba(26, 34, 51, 0.24);
  color: var(--navy);
}

.hero-quote {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 16px;
  margin-top: 58px;
  color: rgba(250, 249, 247, 0.78);
  animation: softFadeIn 900ms 650ms var(--ease) both;
}

.hero-quote span {
  width: 70px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--gold);
  transform-origin: left;
  animation: lineGrow 1100ms 900ms var(--ease) both;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  margin-top: 38px;
  background: rgba(250, 249, 247, 0.14);
  animation: softFadeIn 900ms 760ms var(--ease) both;
}

.hero-proof-grid div {
  padding: 18px;
  background: rgba(26, 34, 51, 0.46);
  backdrop-filter: blur(14px);
}

.hero-proof-grid strong,
.hero-proof-grid span {
  display: block;
}

.hero-proof-grid strong {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 500;
  text-transform: uppercase;
}

.hero-proof-grid span {
  margin-top: 6px;
  color: rgba(250, 249, 247, 0.68);
  font-size: 0.78rem;
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  transform: translate3d(0, calc(var(--scroll-progress, 0) * -22px), 0);
  animation: mediaIn 1200ms 300ms var(--ease) both;
  will-change: transform;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform: scale(1.03);
  animation: imageSettle 1800ms 280ms var(--ease) both;
}

.hero-media::before {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(198, 169, 107, 0.34);
  content: "";
  opacity: 0;
  transform: scale(0.96);
  animation: frameDraw 1200ms 620ms var(--ease) both;
}

.care-radar {
  position: absolute;
  top: 30px;
  left: 30px;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  pointer-events: none;
}

.care-radar span {
  position: absolute;
  border: 1px solid rgba(198, 169, 107, 0.8);
  border-radius: 999px;
  inset: 24px;
  opacity: 0;
  animation: radarPulse 2600ms ease-out infinite;
}

.care-radar span:nth-child(2) {
  animation-delay: 700ms;
}

.care-radar span:nth-child(3) {
  animation-delay: 1400ms;
}

.floating-card {
  position: absolute;
  right: clamp(-24px, -2vw, -10px);
  bottom: 36px;
  max-width: 280px;
  border-left: 3px solid var(--gold);
  background: rgba(250, 249, 247, 0.94);
  padding: 22px;
  color: var(--navy);
  box-shadow: var(--shadow);
  animation: floatCardIn 1000ms 900ms var(--ease) both, calmFloat 5200ms 1900ms ease-in-out infinite;
}

.hero-insight {
  position: absolute;
  right: 22px;
  top: 26px;
  max-width: 260px;
  border: 1px solid rgba(250, 249, 247, 0.34);
  background: rgba(26, 34, 51, 0.62);
  color: var(--white);
  padding: 18px;
  backdrop-filter: blur(16px);
  animation: floatCardIn 1000ms 1180ms var(--ease) both, calmFloat 5400ms 2300ms ease-in-out infinite reverse;
}

.hero-insight small,
.hero-insight strong {
  display: block;
}

.hero-insight small {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.hero-insight strong {
  font-size: 0.84rem;
  font-weight: 500;
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.trust-strip div {
  min-height: 96px;
  border-right: 1px solid rgba(250, 249, 247, 0.12);
  padding: 30px clamp(18px, 3vw, 38px);
  color: rgba(250, 249, 247, 0.86);
  font-weight: 500;
  transform: translateY(0);
  animation: riseIn 760ms var(--ease) both;
  animation-delay: calc(var(--strip-index, 0) * 110ms + 450ms);
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
  position: relative;
}

.trust-strip div::before {
  display: block;
  width: 22px;
  height: 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(198, 169, 107, 0.72);
  color: var(--gold);
  content: "✓";
  font-size: 0.75rem;
  line-height: 20px;
  text-align: center;
}

.trust-strip div:hover {
  background: rgba(198, 169, 107, 0.1);
  color: var(--white);
  transform: translateY(-3px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 86px);
  padding-top: 110px;
  padding-bottom: 90px;
}

.intro-copy {
  color: var(--slate);
  font-size: clamp(1.03rem, 1.4vw, 1.2rem);
}

.intro-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 36px 0 32px;
  padding: 0;
  list-style: none;
}

.intro-note li {
  padding-top: 16px;
  border-top: 2px solid var(--gold);
}

.intro-note strong {
  display: block;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.intro-note span {
  display: block;
  margin-top: 7px;
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.45;
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 5px;
  transition: gap 220ms var(--ease), color 200ms ease;
}

.intro-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 240ms var(--ease);
}

.intro-cta:hover {
  color: var(--gold);
}

.intro-cta:hover svg {
  transform: translateX(5px);
}

.local-signals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  counter-reset: signal;
}

.local-signals div {
  counter-increment: signal;
  min-height: 180px;
  background: var(--stone);
  padding: clamp(22px, 3vw, 38px);
  position: relative;
  overflow: hidden;
  transition: transform 320ms var(--ease), background 260ms ease;
}

.local-signals div::before {
  display: block;
  margin-bottom: 26px;
  color: rgba(26, 34, 51, 0.38);
  content: "0" counter(signal);
  font-size: 0.8rem;
}

.local-signals div::after,
.service-grid article::after,
.steps article::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 46px;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 260ms ease, transform 360ms var(--ease);
}

.local-signals div:hover {
  background: #ebe7df;
  transform: translateY(-6px);
}

.local-signals div:hover::after,
.service-grid article:hover::after,
.steps article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.local-signals strong,
.local-signals span {
  display: block;
}

.local-signals strong {
  margin-bottom: 14px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1;
}

.local-signals span {
  color: var(--slate);
  font-size: 0.94rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--white);
}

.image-frame {
  position: relative;
  overflow: hidden;
}

.image-frame::before {
  position: absolute;
  top: 28px;
  right: -28px;
  bottom: -28px;
  left: 28px;
  border: 1px solid rgba(198, 169, 107, 0.72);
  content: "";
  transform: translate3d(calc(var(--scroll-progress, 0) * 18px), calc(var(--scroll-progress, 0) * -12px), 0);
  transition: transform 260ms ease;
}

.image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(26, 34, 51, 0.36));
  content: "";
  pointer-events: none;
}

.image-frame img {
  position: relative;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
  transition: transform 700ms var(--ease), filter 700ms ease;
}

.image-frame:hover img {
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.025);
}

.content-stack h2 {
  max-width: 720px;
}

.audience-list {
  display: grid;
  gap: 18px;
}

.audience-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  transition: transform 260ms var(--ease), border-color 260ms ease;
}

.audience-list article:hover {
  border-color: rgba(198, 169, 107, 0.72);
  transform: translateX(8px);
}

.audience-list article span,
.steps article span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
}

.audience-list article p {
  grid-column: 2;
  color: var(--slate);
}

.services {
  padding-top: 104px;
  padding-bottom: 116px;
  background:
    linear-gradient(180deg, rgba(26, 34, 51, 0.97), rgba(26, 34, 51, 1)),
    url("assets/images/private-atlanta-office.jpg") center/cover;
  color: var(--white);
}

.condition-flow {
  position: relative;
  padding-top: 110px;
  padding-bottom: 96px;
  background:
    linear-gradient(180deg, rgba(250, 249, 247, 0.98), rgba(229, 225, 218, 0.86)),
    url("assets/images/atlanta-calm-architecture.jpg") center/cover;
  overflow: hidden;
}

.condition-flow::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 18% 18%, rgba(198, 169, 107, 0.16), transparent 28%), radial-gradient(circle at 78% 32%, rgba(58, 74, 90, 0.14), transparent 30%);
  content: "";
  pointer-events: none;
}

.flow-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  margin-bottom: 44px;
}

.flow-heading p:last-child {
  color: var(--slate);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(26, 34, 51, 0.16);
  box-shadow: 0 28px 90px rgba(26, 34, 51, 0.12);
  backdrop-filter: blur(18px);
}

.flow-board article {
  min-height: 260px;
  background: rgba(250, 249, 247, 0.78);
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  transition: transform 300ms var(--ease), background 260ms ease;
}

.flow-board article::before {
  position: absolute;
  top: -72px;
  right: -72px;
  width: 146px;
  height: 146px;
  border: 1px solid rgba(198, 169, 107, 0.44);
  border-radius: 999px;
  content: "";
  transform: scale(0.8);
  transition: transform 420ms var(--ease);
}

.flow-board article:hover {
  background: var(--white);
  transform: translateY(-8px);
}

.flow-board article:hover::before {
  transform: scale(1.14);
}

.flow-board article::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  opacity: 0.35;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: opacity 260ms ease, transform 360ms var(--ease);
}

.flow-board article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.flow-board span,
.flow-board strong {
  display: block;
  position: relative;
}

.flow-board span {
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.flow-board strong {
  color: var(--navy);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 500;
  line-height: 1.45;
}

.motion-marquee {
  position: relative;
  display: flex;
  gap: 26px;
  margin-top: 46px;
  color: rgba(26, 34, 51, 0.44);
  font-size: clamp(1.4rem, 3.4vw, 3rem);
  line-height: 1;
  overflow: hidden;
  text-transform: uppercase;
  white-space: nowrap;
}

.motion-marquee div {
  display: flex;
  flex: 0 0 auto;
  gap: 26px;
  min-width: 100%;
  animation: marqueeSlide 26s linear infinite;
}

.motion-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.motion-marquee span::after {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  content: "";
}

.section-heading {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 42px;
  padding-bottom: 20px;
  text-align: center;
}

.section-heading::after {
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  transform: scaleX(0);
  animation: headingLineIn 900ms 280ms var(--ease) both;
}

.services h2,
.services h3 {
  color: var(--white);
}

.services h2 {
  background: linear-gradient(100deg, var(--white) 0%, #e9d69a 44%, var(--white) 72%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textSheen 5200ms ease-in-out infinite;
}

.text-link {
  margin-bottom: 0;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250, 249, 247, 0.14);
}

.service-grid article {
  min-height: 250px;
  background: rgba(34, 44, 65, 0.92);
  padding: clamp(24px, 3vw, 38px);
  position: relative;
  overflow: hidden;
  transform-origin: center bottom;
  transition: background 180ms ease, transform 220ms var(--ease);
}

.service-grid article::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 169, 107, 0.16), transparent 48%);
  content: "";
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 280ms ease, transform 320ms var(--ease);
}

.service-grid article:hover {
  background: #29354d;
  transform: translateY(-6px);
}

.service-grid article.is-visible {
  animation: cardSettle 760ms var(--ease) both;
}

.service-grid article:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.service-grid p {
  color: rgba(250, 249, 247, 0.72);
}

.approach {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 112px);
  padding-top: 120px;
  padding-bottom: 110px;
  background: var(--stone);
  position: relative;
}

.approach-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--slate);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  align-self: start;
  background: rgba(26, 34, 51, 0.12);
  position: relative;
}

.steps::before {
  position: absolute;
  top: 50%;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 169, 107, 0.7), transparent);
  content: "";
  pointer-events: none;
}

.steps article {
  min-height: 240px;
  background: var(--white);
  padding: clamp(24px, 3vw, 34px);
  position: relative;
  overflow: hidden;
  transition: transform 280ms var(--ease), box-shadow 280ms ease;
  z-index: 1;
}

.steps article:hover {
  box-shadow: 0 22px 54px rgba(26, 34, 51, 0.1);
  transform: translateY(-6px);
}

.steps p {
  color: var(--slate);
}

.quote-band {
  padding: clamp(72px, 9vw, 130px) clamp(20px, 9vw, 130px);
  background:
    linear-gradient(100deg, rgba(26, 34, 51, 0.92), rgba(26, 34, 51, 0.6)),
    url("assets/images/atlanta-calm-architecture.jpg") center/cover;
  color: var(--white);
  text-align: center;
  background-attachment: fixed;
  animation: slowBackdrop 18s ease-in-out infinite alternate;
}

.quote-band p {
  max-width: 980px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: 1.08;
}

.quote-band span {
  color: rgba(250, 249, 247, 0.78);
  font-weight: 500;
}

.seo-pages {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 90px);
  padding-top: 100px;
  padding-bottom: 100px;
  background:
    linear-gradient(90deg, rgba(250, 249, 247, 0.94), rgba(250, 249, 247, 0.82)),
    url("assets/images/therapy-lounge.jpg") right center/auto 120% no-repeat;
}

.page-links {
  display: grid;
  gap: 12px;
  align-self: center;
}

.page-links a {
  border: 1px solid rgba(26, 34, 51, 0.12);
  background: rgba(250, 249, 247, 0.82);
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 500;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 220ms var(--ease);
}

.page-links a:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateX(8px);
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 70px;
  padding-bottom: 70px;
  background:
    linear-gradient(90deg, rgba(58, 74, 90, 0.96), rgba(26, 34, 51, 0.82)),
    url("assets/images/private-atlanta-office.jpg") center/cover;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.mid-cta::before {
  position: absolute;
  top: 22px;
  right: clamp(20px, 5vw, 68px);
  left: clamp(20px, 5vw, 68px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
  opacity: 0.7;
}

.mid-cta > * {
  position: relative;
}

.mid-cta h2 {
  max-width: 620px;
  margin-bottom: 16px;
}

.mid-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(250, 249, 247, 0.78);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: clamp(34px, 7vw, 96px);
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    linear-gradient(180deg, rgba(250, 249, 247, 0.92), rgba(229, 225, 218, 0.76)),
    url("assets/images/atlanta-calm-architecture.jpg") center/cover;
  position: relative;
}

.contact-section::before {
  position: absolute;
  inset: 34px clamp(20px, 5vw, 68px);
  border: 1px solid rgba(198, 169, 107, 0.22);
  content: "";
  pointer-events: none;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--slate);
}

.contact-copy,
.contact-form {
  position: relative;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-self: start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: 0 24px 70px rgba(26, 34, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}

.contact-form:hover {
  box-shadow: 0 30px 90px rgba(26, 34, 51, 0.13);
  transform: translateY(-5px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 34, 51, 0.16);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  padding: 14px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(198, 169, 107, 0.22);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

.contact-form .button {
  width: 100%;
  margin-top: 8px;
  cursor: pointer;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 38px;
  padding-bottom: 38px;
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: var(--white);
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(250, 249, 247, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--gold);
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

@keyframes mediaIn {
  from {
    opacity: 0;
    transform: translate3d(28px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, calc(var(--scroll-progress, 0) * -22px), 0);
  }
}

@keyframes imageSettle {
  from {
    filter: blur(10px) saturate(0.82);
    transform: scale(1.09);
  }
  to {
    filter: blur(0) saturate(1);
    transform: scale(1.03);
  }
}

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

@keyframes calmFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes gridReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes slowBackdrop {
  from {
    background-position: center center;
  }
  to {
    background-position: center 58%;
  }
}

@keyframes frameDraw {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes radarPulse {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  35% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: scale(2.7);
  }
}

@keyframes marqueeSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 26px));
  }
}

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

@keyframes textSheen {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@keyframes cardSettle {
  from {
    filter: blur(4px);
    transform: translateY(20px) scale(0.985);
  }
  to {
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

/* ---- Brand logo ---- */
.brand-logo {
  width: auto;
  height: 72px;
  display: block;
}

.brand-logo-light {
  display: none;
}

.site-header.is-scrolled .brand-logo-dark {
  display: none;
}

.site-header.is-scrolled .brand-logo-light {
  display: block;
}

/* ---- Hero availability badge ---- */
.hero-badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.hero-badge span {
  border: 1px solid rgba(198, 169, 107, 0.55);
  background: rgba(198, 169, 107, 0.1);
  padding: 9px 15px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Telehealth benefits ---- */
.benefits {
  padding-top: 104px;
  padding-bottom: 104px;
  background: var(--white);
}

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

.benefit-grid article {
  counter-increment: benefit;
  min-height: 224px;
  background: var(--stone);
  padding: clamp(28px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: transform 280ms var(--ease), background 260ms ease;
}

.benefit-grid article::before {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  content: "0" counter(benefit);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.benefit-grid article::after {
  position: absolute;
  inset: auto 28px 28px auto;
  width: 46px;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: opacity 260ms ease, transform 360ms var(--ease);
}

.benefit-grid article:hover {
  background: #ebe7df;
  transform: translateY(-6px);
}

.benefit-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.benefit-grid h3 {
  margin-bottom: 12px;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--slate);
}

/* ---- Collaborative care (distinct light split layout) ---- */
.collab {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 88px);
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--stone);
}

.collab-intro {
  align-self: start;
}

.collab-intro p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 0;
  color: var(--slate);
}

.collab-list {
  display: grid;
}

.collab-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 22px;
  row-gap: 6px;
  align-items: start;
  padding: 26px 0;
  border-top: 1px solid rgba(26, 34, 51, 0.16);
  transition: transform 260ms var(--ease);
}

.collab-list article:last-child {
  border-bottom: 1px solid rgba(26, 34, 51, 0.16);
}

.collab-list article:hover {
  transform: translateX(8px);
}

.collab-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(198, 169, 107, 0.5);
  border-radius: 12px;
  background: rgba(198, 169, 107, 0.1);
  color: var(--gold);
}

.collab-icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.collab-list h3 {
  grid-column: 2;
  margin: 0;
}

.collab-list p {
  grid-column: 2;
  margin: 0;
  color: var(--slate);
}

/* ---- Mid CTA (centered, premium) ---- */
.mid-cta {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.mid-cta .eyebrow {
  margin-bottom: 0;
}

.mid-cta h2 {
  margin: 10px auto 0;
}

.mid-cta p:not(.eyebrow) {
  margin: 0 auto;
}

.mid-cta .hero-actions {
  justify-content: center;
  margin-top: 6px;
}

.mid-cta .button-secondary {
  border-color: rgba(250, 249, 247, 0.42);
  color: var(--white);
}

.mid-cta .button-secondary:hover {
  border-color: var(--gold);
  background: rgba(198, 169, 107, 0.12);
}

/* ---- Contact form (modern) ---- */
.contact-form {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 20px 56px rgba(26, 34, 51, 0.12);
  backdrop-filter: none;
}

.form-lead {
  margin: 0 0 4px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  padding: 13px 15px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #868d97;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form select {
  border-radius: 10px;
  padding: 13px 15px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231a2233' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* Honeypot: off-screen rather than display:none, which some bots detect. */
.form-gotcha {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-turnstile:not(:empty) {
  margin-top: 2px;
}

.form-status {
  margin: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}

.form-status[data-state="pending"] {
  background: rgba(26, 34, 51, 0.06);
  color: var(--muted);
}

.form-status[data-state="success"] {
  background: rgba(198, 169, 107, 0.16);
  border: 1px solid rgba(198, 169, 107, 0.5);
  color: var(--navy);
}

.form-status[data-state="error"] {
  background: rgba(176, 58, 46, 0.08);
  border: 1px solid rgba(176, 58, 46, 0.35);
  color: #8c2f26;
}

.contact-form .button[disabled] {
  opacity: 0.62;
  cursor: progress;
  transform: none;
}

/* ---- Conditions treated ---- */
.conditions {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--stone);
}

.conditions-intro {
  max-width: 640px;
  margin-top: 8px;
  color: var(--slate);
}

.condition-grid {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  column-count: 2;
  column-gap: 56px;
}

.condition-grid li {
  break-inside: avoid;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 2px;
  border-bottom: 1px solid rgba(26, 34, 51, 0.12);
  color: var(--navy);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.35;
  transition: color 200ms ease;
}

.condition-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6a96b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M8.4 12.3l2.4 2.4 4.8-5.4'/%3E%3C/svg%3E") center / contain no-repeat;
}

.condition-grid li:hover {
  color: var(--slate);
}

/* ---- Insurance section ---- */
.insurance {
  padding-top: 100px;
  padding-bottom: 100px;
  background: var(--white);
}

.insurance .section-heading h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  max-width: 920px;
}

.insurance-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.insurance-grid li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 20px 11px 15px;
  background: rgba(229, 225, 218, 0.45);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease, transform 220ms var(--ease);
}

.insurance-grid li::before {
  content: "";
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6a96b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4.6-3.1 7.7-7 9-3.9-1.3-7-4.4-7-9V6l7-3Z'/%3E%3Cpath d='M9 12l2 2 4-4.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.insurance-grid li:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}

.insurance-grid li.approved {
  border-color: rgba(198, 169, 107, 0.55);
  background: rgba(198, 169, 107, 0.18);
}

.insurance-grid li.pending {
  background: rgba(229, 225, 218, 0.28);
  color: var(--slate);
}

.insurance-note {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* ---- Contact form self-pay checkbox ---- */
.checkbox-field {
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
  font-size: 0.92rem;
}

.checkbox-field input {
  width: auto;
  margin: 0;
  accent-color: var(--gold);
}

.checkbox-field span {
  color: var(--slate);
}

/* ---- About page ---- */
.about-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding-top: 150px;
  padding-bottom: 90px;
  background:
    linear-gradient(90deg, rgba(26, 34, 51, 0.97) 0%, rgba(26, 34, 51, 0.9) 60%, rgba(26, 34, 51, 0.6) 100%),
    url("assets/images/atlanta-calm-architecture.jpg") center/cover;
  color: var(--white);
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(198, 169, 107, 0.5);
  background: rgba(250, 249, 247, 0.06);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

.about-photo span {
  color: rgba(250, 249, 247, 0.66);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 18px;
}

.about-hero .hero-subtitle {
  max-width: 640px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-credentials span {
  border: 1px solid rgba(198, 169, 107, 0.55);
  padding: 9px 14px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.75fr);
  gap: clamp(30px, 6vw, 86px);
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-body .bio-copy p {
  color: var(--slate);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
}

.about-side {
  align-self: start;
  display: grid;
  gap: 20px;
}

.about-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: clamp(22px, 3vw, 30px);
}

.about-card-head {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.about-card-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: rgba(198, 169, 107, 0.14);
  color: var(--gold);
}

.about-card-icon svg {
  width: 21px;
  height: 21px;
  display: block;
}

.about-card h3 {
  margin: 0;
}

.about-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.about-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.4;
}

.about-card li::before {
  content: "";
  flex: 0 0 auto;
  margin-top: 3px;
  width: 15px;
  height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6a96b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4 4L19 6.5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.about-pullquote {
  margin: 4px 0 0;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 14px;
  background: var(--navy);
  color: var(--white);
}

.about-pullquote .quote-mark {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  color: var(--gold);
}

.about-pullquote blockquote {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  line-height: 1.42;
}

.about-pullquote figcaption {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-quote {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 9vw, 130px);
  background:
    linear-gradient(100deg, rgba(26, 34, 51, 0.92), rgba(26, 34, 51, 0.62)),
    url("assets/images/therapy-lounge.jpg") center/cover;
  color: var(--white);
  text-align: center;
}

.about-quote p {
  max-width: 940px;
  margin: 0 auto 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  line-height: 1.15;
}

.about-quote span {
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-hero,
  .about-body,
  .collab {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand-logo {
    height: 52px;
  }

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

  .condition-grid {
    column-count: 1;
  }

  .insurance-grid {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .collab-list article {
    column-gap: 16px;
  }

  .benefits,
  .conditions,
  .insurance,
  .about-body {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-hero {
    padding-top: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .intro-grid,
  .split-section,
  .approach,
  .flow-heading,
  .seo-pages,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 116px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-proof-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .local-signals,
  .flow-board,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mid-cta,
  .site-footer,
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .text-link {
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero,
  .section-panel,
  .split-section,
  .approach,
  .mid-cta,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3.55rem, 19vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-insight,
  .care-radar {
    display: none;
  }

  .floating-card {
    right: 14px;
    bottom: 16px;
    max-width: calc(100% - 28px);
  }

  .trust-strip,
  .local-signals,
  .flow-board,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px 18px;
  }

  .steps::before {
    display: none;
  }

  .intro-grid,
  .split-section,
  .approach,
  .condition-flow,
  .seo-pages,
  .contact-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .image-frame::before {
    top: 16px;
    right: -12px;
    bottom: -16px;
    left: 16px;
  }

  .audience-list article {
    grid-template-columns: 42px 1fr;
  }

  .quote-band {
    background-attachment: scroll;
    padding-right: 18px;
    padding-left: 18px;
  }

  .seo-pages {
    background:
      linear-gradient(90deg, rgba(250, 249, 247, 0.96), rgba(250, 249, 247, 0.94)),
      url("assets/images/therapy-lounge.jpg") center/cover;
  }
}

/* ---- Legal pages (privacy, terms, cookies) ---- */
.legal-hero {
  padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin: 6px 0 14px;
  max-width: 20ch;
}

.legal-hero .legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(32px, 5vw, 56px) 0 clamp(56px, 8vw, 96px);
}

.legal-toc {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 22px 20px;
}

.legal-toc strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.legal-toc ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 9px;
  font-size: 0.86rem;
}

.legal-toc a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.legal-toc a:hover {
  color: var(--gold);
}

.legal-content {
  max-width: 74ch;
}

.legal-content section + section {
  margin-top: clamp(32px, 4vw, 48px);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  scroll-margin-top: 110px;
}

.legal-content h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 600;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px;
  padding-left: 22px;
  display: grid;
  gap: 9px;
}

.legal-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(198, 169, 107, 0.7);
}

.legal-content a:hover {
  color: var(--gold);
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 18px;
  font-size: 0.88rem;
}

.legal-content th,
.legal-content td {
  border: 1px solid var(--line);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
  color: var(--muted);
}

.legal-content th {
  background: rgba(26, 34, 51, 0.04);
  color: var(--navy);
  font-weight: 600;
}

.legal-table-scroll {
  overflow-x: auto;
}

/* Emergency notice — must be impossible to miss on a psychiatry site. */
.legal-alert {
  border: 1px solid rgba(176, 58, 46, 0.4);
  border-left: 4px solid #b03a2e;
  border-radius: 12px;
  background: rgba(176, 58, 46, 0.06);
  padding: 20px 22px;
  margin: 0 0 28px;
}

.legal-alert strong {
  display: block;
  margin-bottom: 6px;
  color: #8c2f26;
  font-size: 0.95rem;
}

.legal-alert p {
  margin: 0;
  color: #6f2a22;
  font-size: 0.9rem;
}

.legal-callout {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  background: rgba(198, 169, 107, 0.08);
  padding: 18px 22px;
  margin: 0 0 24px;
}

.legal-callout p:last-child {
  margin-bottom: 0;
}

/* Unfilled facts. Deliberately loud so they cannot ship unnoticed. */
.legal-placeholder {
  background: rgba(198, 169, 107, 0.3);
  border-bottom: 1px dashed #8a6d2b;
  padding: 1px 5px;
  border-radius: 3px;
  color: #6b5418;
  font-weight: 600;
  font-size: 0.94em;
}

/* Footer additions */
.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(250, 249, 247, 0.16);
  font-size: 0.8rem;
  color: rgba(250, 249, 247, 0.62);
}

.footer-legal p {
  margin: 0;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-legal a {
  color: rgba(250, 249, 247, 0.72);
  text-decoration: none;
  transition: color 180ms ease;
}

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

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-toc {
    position: static;
  }
}

.form-note a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(198, 169, 107, 0.7);
}

.form-crisis {
  border-left: 3px solid #b03a2e;
  border-radius: 6px;
  background: rgba(176, 58, 46, 0.06);
  padding: 10px 12px;
  color: #6f2a22;
}

.form-crisis strong {
  color: #8c2f26;
}
