/* ==========================================================================
   Wellness Inspired Inc. — Janae Cox, PMHNP · Los Alamitos, CA
   Design system: coastal sage + sand + deep-ocean accents.
   ========================================================================== */

:root {
  --sage-900: #0f3f52;
  --sage-800: #154f66;
  --sage-700: #1a607a;
  --sage-500: #4e86a2;
  --sage-300: #8fb8c6;
  --sage-100: #d9e9ee;

  --cream:      #faf6ee;
  --cream-soft: #f5efe2;
  --cream-dark: #ece4d3;
  --sand:       #e8dcc2;

  --ocean-900: #0f3f52;
  --ocean-700: #1a607a;
  --ocean-500: #2d819a;
  --ocean-300: #8fb8c6;
  --ocean-100: #dcecf2;

  --ink:       #1f2937;
  --ink-soft:  #3f4a5c;
  --ink-mute:  #55606f;
  --white:     #ffffff;

  --shadow-sm: 0 1px 4px rgba(31, 41, 55, 0.06);
  --shadow:    0 4px 18px rgba(31, 41, 55, 0.09);
  --shadow-lg: 0 18px 45px rgba(31, 41, 55, 0.14);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --max-width: 1120px;

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: clip;
  max-width: 100vw;
}
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--sage-900);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-weight: 600;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink); }

a { color: var(--sage-800); text-decoration: none; transition: color .2s var(--ease); }
a:hover, a:focus { color: var(--ocean-700); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(2.5rem, 6vw, 3rem);
  padding-right: clamp(2.5rem, 6vw, 3rem);
}

.eyebrow {
  color: var(--sage-700);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--sage-900); color: var(--white);
  padding: 0.75rem 1rem; z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; top: 0; }

/* =========================  Announcement Bar  ========================= */
.announce {
  background: var(--sage-900);
  color: var(--cream);
  font-size: 0.9rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.02em;
}
.announce a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.announce a:hover { color: var(--white); }
.announce strong { color: var(--white); }

/* =========================  Header / Nav  ========================= */
.site-header {
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 30;
}
@media (min-width: 821px) {
  .site-header > .container {
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
  position: relative;
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--sage-900);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand span {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-mute);
  font-weight: 500;
  font-family: var(--font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--sage-700);
  color: var(--sage-800);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  position: relative;
}
.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--ocean-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-menu a:not(.btn):hover::after,
.nav-menu a.active:not(.btn)::after { transform: scaleX(1); }
.nav-menu a.active { color: var(--sage-900); }

.phone-display {
  color: var(--sage-900);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.phone-display::before {
  content: "\260E";
  font-size: 1rem;
}

/* Nav phone pill — static display badge (not a link) */
.nav-menu .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-900);
  color: #ffffff !important;
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: 0.02em;
  border: 1.5px solid var(--sage-900);
  box-shadow: 0 3px 10px rgba(15, 63, 82, 0.33);
  white-space: nowrap;
  user-select: text;
  -webkit-text-fill-color: #ffffff;
}
.nav-menu .nav-phone::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.36 11.36 0 003.58.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.36 11.36 0 00.57 3.58 1 1 0 01-.24 1.01z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M6.62 10.79a15.46 15.46 0 006.59 6.59l2.2-2.2a1 1 0 011.01-.24 11.36 11.36 0 003.58.57 1 1 0 011 1V20a1 1 0 01-1 1A17 17 0 013 4a1 1 0 011-1h3.5a1 1 0 011 1 11.36 11.36 0 00.57 3.58 1 1 0 01-.24 1.01z'/></svg>") center/contain no-repeat;
}
.nav-menu li:has(.nav-phone) { margin-left: 0.75rem; }

/* =========================  Buttons  ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--sage-800);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid var(--sage-800);
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 4px 14px rgba(15, 63, 82, 0.25);
  text-decoration: none;
}
.btn:hover, .btn:focus {
  background: var(--sage-900);
  border-color: var(--sage-900);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 63, 82, 0.32);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: var(--sage-800);
  border-color: var(--sage-700);
  box-shadow: none;
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--sage-800);
  color: var(--white);
}
.btn-ocean {
  background: var(--ocean-700);
  border-color: var(--ocean-700);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 63, 82, 0.3);
}
.btn-ocean:hover, .btn-ocean:focus {
  background: var(--ocean-900);
  border-color: var(--ocean-900);
}
.btn-ghost {
  background: var(--white);
  color: var(--sage-900);
  border-color: var(--white);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: var(--cream);
  color: var(--sage-900);
  border-color: var(--cream);
}
.btn-sm { padding: 0.55rem 1.05rem; font-size: 0.9rem; }

/* =========================  Hero  ========================= */
.hero {
  position: relative;
  min-height: clamp(480px, 78vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--cream);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 30% 20%, #f5d6b8 0%, transparent 60%),
    radial-gradient(70% 60% at 80% 70%, #b39bc8 0%, transparent 55%),
    linear-gradient(180deg, #f1ead8 0%, #d8c7b4 100%);
  z-index: -3;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
  background: var(--cream-soft);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 65% at 50% 50%,
      rgba(250, 246, 238, 0.78) 0%,
      rgba(250, 246, 238, 0.55) 45%,
      rgba(15, 63, 82, 0.25) 100%);
  z-index: -1;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
.hero-video::-webkit-media-controls,
.hero-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.hero-content {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
  text-align: center;
}
.hero-content .eyebrow { justify-content: center; }
.hero-content h1 { margin-bottom: 0.75rem; }
.hero-content h1 em {
  font-style: normal;
  color: inherit;
}
.hero-content p.lead {
  font-size: 1.1rem;
  max-width: 56ch;
  margin: 0.5rem auto 0;
}
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--cream-dark);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--cream);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/warm-space-2.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(250, 246, 238, 0.88) 0%,
      rgba(250, 246, 238, 0.78) 60%,
      rgba(250, 246, 238, 0.9) 100%);
  z-index: -1;
}
.page-hero > .container { position: relative; }
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero .lead { margin: 0 auto; }
.page-hero--services::before {
  background-image: url("../images/laughing-people.png");
}

/* =========================  Sections  ========================= */
.section { padding: 5rem 0; }
.section-alt { background: var(--white); }
.section-sand { background: var(--cream-soft); }
.section-sage {
  background: var(--sage-900);
  color: var(--cream);
}
.section-sage h2, .section-sage h3 { color: var(--white); }
.section-sage p { color: var(--sage-100); }

.section-title { text-align: center; margin-bottom: 3rem; }
.section-title .eyebrow { justify-content: center; }
.section-title p { max-width: 640px; margin: 0.5rem auto 0; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* =========================  Cards  ========================= */
.card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-300);
}
.card h3 { margin-top: 0.75rem; }
.card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--sage-100);
  color: var(--sage-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.card.ocean .icon { background: var(--ocean-100); color: var(--ocean-700); }
.card.deep .icon { background: var(--sage-100); color: var(--sage-900); }
.card a.more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--sage-800);
}
.card a.more:hover { color: var(--ocean-700); }

.section-alt .card { background: var(--cream); border-color: var(--cream-dark); }
.section-alt .service-card { background: rgba(15, 63, 82, 0.25); border-color: rgba(15, 63, 82, 0.3); }
.section-alt .service-card--featured { background: rgba(15, 63, 82, 0.33); border-color: rgba(15, 63, 82, 0.38); }
.section-alt .service-card:hover { background: var(--white); border-color: var(--sage-900); }

/* Service cards (How Janae can help) */
.service-cards { gap: 1.75rem; }
.service-card {
  background: rgba(15, 63, 82, 0.25);
  border: 1px solid rgba(15, 63, 82, 0.3);
  border-radius: var(--radius-lg, 20px);
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 1px 2px rgba(15, 63, 82, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), border-width 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ocean-700), var(--ocean-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--white);
  border: 3px solid var(--sage-900);
  box-shadow: 0 22px 44px -20px rgba(15, 63, 82, 0.32);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .service-number {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--ocean-700);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.service-card .service-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage-800);
  margin-bottom: 0.5rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.service-card .service-icon svg {
  width: 28px;
  height: 28px;
}
.service-card:hover .service-icon {
  background: var(--sage-800);
  color: var(--white);
}
.service-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--sage-900);
}
.service-card p {
  color: var(--ink-soft);
  margin: 0;
}
.service-card .more {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 63, 82, 0.25);
  color: var(--ocean-700);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease), gap 0.2s var(--ease);
}
.service-card .more:hover {
  color: var(--sage-900);
  gap: 0.6rem;
}
.service-card--featured {
  background: rgba(15, 63, 82, 0.33);
  border-color: rgba(15, 63, 82, 0.38);
}
.service-card--featured:hover {
  background: var(--white);
  border-color: var(--sage-800);
}
.service-card--featured .service-icon {
  background: var(--white);
}

/* Feature tile (homepage conditions grid) */
/* =========================  Organic Loader Tiles (Who Janae helps)  ========================= */
.condition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 820px) {
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
}
.feature-tile {
  background: rgba(15, 63, 82, 0.22);
  border: 1px solid rgba(15, 63, 82, 0.3);
  border-radius: 14px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 14px 14px;
  text-decoration: none;
  color: var(--sage-900);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-tile:hover {
  background: var(--white);
  border: 3px solid var(--sage-900);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(15, 63, 82, 0.35);
}
.feature-tile .tile-label {
  position: relative;
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--sage-900);
  line-height: 1.2;
}
.feature-tile .blob-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: rgba(15, 63, 82, 0.42);
}
.feature-tile .stage {
  width: min(120px, 70%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: scale(0.78);
  transform-origin: center;
}
.blob-layer svg path,
.blob-layer svg circle:not(.eye-neg) { fill: currentColor; }

/* Anxiety & Depression — rising tide */
.b-tide {
  position: relative; width: 110px; height: 110px;
  border-radius: 50%;
  background: color-mix(in srgb, currentColor 18%, transparent);
  overflow: hidden;
}
.b-tide .wave {
  position: absolute; left: -50%; right: -50%; bottom: 0;
  height: 120%;
  background: currentColor;
  border-radius: 42% 44% 0 0 / 12% 14% 0 0;
  animation: tideRise 5s ease-in-out infinite, tideRoll 3.2s linear infinite;
}
.b-tide .wave.w2 {
  opacity: .55;
  animation: tideRise 5s ease-in-out infinite, tideRoll 4.2s linear infinite reverse;
  animation-delay: -0.4s, 0s;
}
@keyframes tideRise {
  0%,100% { top: 85%; }
  50%     { top: 15%; }
}
@keyframes tideRoll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(25%); }
}

/* ADHD — metaballs */
.b-goo { position: relative; width: 160px; height: 160px; filter: url(#goo-f); }
.b-goo .b {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: currentColor; top: 50%; left: 50%; margin: -24px 0 0 -24px;
}
.b-goo .b1 { animation: gooA 2.6s ease-in-out infinite; }
.b-goo .b2 { animation: gooB 2.6s ease-in-out infinite; }
.b-goo .b3 { animation: gooC 2.6s ease-in-out infinite; width: 30px; height: 30px; margin: -15px 0 0 -15px; }
@keyframes gooA { 0%,100% { transform: translate(-34px,0) scale(1); } 50% { transform: translate( 34px,0) scale(1.1); } }
@keyframes gooB { 0%,100% { transform: translate( 34px,0) scale(1); } 50% { transform: translate(-34px,0) scale(1.1); } }
@keyframes gooC { 0%,100% { transform: translate(0,-30px) scale(.9); } 50% { transform: translate(0, 30px) scale(.9); } }

/* Bipolar — pendulum */
.b-pendulum { position: relative; width: 150px; height: 150px; animation: pendSwing 3s cubic-bezier(.4,0,.6,1) infinite; transform-origin: 75px 20px; }
.b-pendulum .hi, .b-pendulum .lo {
  position: absolute; left: 50%; border-radius: 50%; background: currentColor;
}
.b-pendulum .hi { width: 42px; height: 42px; margin-left: -21px; top: 10px; animation: pendHi 3s cubic-bezier(.4,0,.6,1) infinite; }
.b-pendulum .lo { width: 42px; height: 42px; margin-left: -21px; bottom: 10px; animation: pendLo 3s cubic-bezier(.4,0,.6,1) infinite; }
.b-pendulum .stem { position: absolute; left: 50%; top: 30px; width: 2px; height: 90px; margin-left: -1px; background: currentColor; opacity: .35; }
@keyframes pendSwing { 0%,100% { transform: rotate(-22deg); } 50% { transform: rotate(22deg); } }
@keyframes pendHi { 0%,100% { transform: scale(1.25); } 50% { transform: scale(.7); } }
@keyframes pendLo { 0%,100% { transform: scale(.7); } 50% { transform: scale(1.25); } }

/* OCD — ring trace */
.b-retrace { position: relative; width: 130px; height: 130px; }
.b-retrace .track {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, currentColor 25%, transparent);
}
.b-retrace .dot {
  position: absolute; top: 50%; left: 50%;
  width: 24px; height: 24px; margin: -12px 0 0 -12px;
  background: currentColor;
  border-radius: 48% 52% 50% 50% / 52% 48% 50% 50%;
  transform-origin: 12px 12px;
  animation: retraceSpin 1.6s cubic-bezier(.55,.1,.45,.9) infinite,
             retraceMorph 0.8s ease-in-out infinite;
}
@keyframes retraceSpin {
  0%   { transform: rotate(0deg)   translateX(53px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(53px) rotate(-360deg); }
}
@keyframes retraceMorph {
  0%,100% { border-radius: 48% 52% 50% 50% / 52% 48% 50% 50%; }
  50%     { border-radius: 54% 46% 46% 54% / 46% 54% 54% 46%; }
}

/* PTSD — bouncing trio */
.b-line { position: relative; width: 160px; height: 80px; filter: url(#goo-f); }
.b-line b { position: absolute; top: 22px; width: 30px; height: 30px; border-radius: 50%; background: currentColor; animation: blobBounce 1.4s ease-in-out infinite; }
.b-line b:nth-child(1) { left: 18px;  animation-delay: 0s; }
.b-line b:nth-child(2) { left: 64px;  animation-delay: 0.18s; }
.b-line b:nth-child(3) { left: 110px; animation-delay: 0.36s; }
@keyframes blobBounce { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-24px) scale(1.1); } }

/* Insomnia — moon + drifting z's */
.b-moon { position: relative; width: 120px; height: 120px; animation: moonFloat 5s ease-in-out infinite; }
.b-moon svg { width: 100%; height: 100%; overflow: visible; }
.b-moon .crescent { animation: moonWax 4s ease-in-out infinite; transform-origin: 60px 60px; }
.b-moon .z { font-family: var(--font-serif); fill: currentColor; font-style: italic; animation: zDrift 2.4s ease-in-out infinite; opacity: 0; }
.b-moon .z1 { animation-delay: 0s; }
.b-moon .z2 { animation-delay: -0.8s; }
.b-moon .z3 { animation-delay: -1.6s; }
@keyframes moonFloat { 0%,100% { transform: translate(0, 0); } 50% { transform: translate(0, -6px); } }
@keyframes moonWax { 0%,100% { transform: rotate(-8deg) scale(1); } 50% { transform: rotate(8deg) scale(.96); } }
@keyframes zDrift {
  0%   { transform: translate(0, 0)        scale(.6); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translate(14px, -26px) scale(1.1); opacity: 0; }
}

/* Personality — mitosis */
.b-mitosis { position: relative; width: 140px; height: 80px; filter: url(#goo-f); }
.b-mitosis b { position: absolute; top: 50%; left: 50%; width: 54px; height: 54px; margin: -27px 0 0 -27px; background: currentColor; border-radius: 50%; }
.b-mitosis b:nth-child(1) { animation: mitoA 2.4s ease-in-out infinite; }
.b-mitosis b:nth-child(2) { animation: mitoB 2.4s ease-in-out infinite; }
@keyframes mitoA { 0%,100% { transform: translateX(0) scale(1); } 45%,55% { transform: translateX(-34px) scale(.9); } }
@keyframes mitoB { 0%,100% { transform: translateX(0) scale(1); } 45%,55% { transform: translateX( 34px) scale(.9); } }

/* HRT — infinity flow */
.b-infinity { position: relative; width: 150px; height: 90px; }
.b-infinity svg { width: 100%; height: 100%; animation: infBreathe 4s ease-in-out infinite; }
.b-infinity .lobe { fill: currentColor; }
.b-infinity .dot {
  fill: currentColor;
  offset-path: path("M75,45 C75,15 15,15 15,45 C15,75 75,75 75,45 C75,15 135,15 135,45 C135,75 75,75 75,45 Z");
  offset-rotate: 0deg;
  animation: infRun 3s linear infinite;
}
@keyframes infRun { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@keyframes infBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }

@media (prefers-reduced-motion: reduce) {
  .blob-layer * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

/* =========================  Condition cards (services page)  ========================= */
.condition-list {
  display: grid;
  gap: 1.5rem;
}
.condition-card {
  background: rgba(15, 63, 82, 0.25);
  border: 1px solid rgba(15, 63, 82, 0.3);
  border-radius: var(--radius-lg, 20px);
  padding: 2rem 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
  box-shadow: 0 1px 2px rgba(15, 63, 82, 0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), border-width 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.condition-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--ocean-700), var(--ocean-300));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.condition-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border: 3px solid var(--sage-900);
  box-shadow: 0 22px 44px -20px rgba(15, 63, 82, 0.33);
}
.condition-card:hover::before { transform: scaleY(1); }
.condition-body h3 {
  margin: 0.75rem 0 0.6rem;
  font-size: 1.4rem;
  line-height: 1.25;
  color: var(--sage-900);
}
.condition-body p {
  margin: 0;
  color: var(--ink-soft);
}
.condition-tag {
  display: inline-block;
  color: var(--ocean-700);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.condition-chips {
  list-style: none;
  padding: 0 0 0 1.75rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-left: 1px solid rgba(15, 63, 82, 0.3);
  min-height: 100%;
}
.condition-chips li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.4;
}
.condition-chips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ocean-500);
}
@media (max-width: 800px) {
  .condition-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }
  .condition-chips {
    padding: 1.25rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--cream-dark);
  }
}

/* =========================  Portrait  ========================= */
.portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 460px;
  position: relative;
}
.grid-2 .portrait {
  align-self: stretch;
  width: 100%;
}
.grid-2 .portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 8px solid var(--white);
  pointer-events: none;
}

/* =========================  Lists  ========================= */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: "\2714";
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--sage-100);
  color: var(--sage-800);
  font-weight: 700;
  font-size: 0.8rem;
}

/* =========================  CTA Banner  ========================= */
.cta-banner {
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(45, 129, 154, 0.28) 0%, transparent 60%),
    linear-gradient(180deg, var(--sage-900) 0%, var(--sage-800) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.5rem; }
.cta-banner p { color: var(--sage-100); margin-bottom: 1.5rem; }
.cta-banner .phone-display { color: var(--white); font-size: 1.3rem; }
.cta-banner .btn-ghost .phone-display,
.btn-ghost .phone-display { color: inherit; }
.cta-banner .btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.cta-banner .btn-outline:hover,
.cta-banner .btn-outline:focus {
  background: var(--white);
  color: var(--sage-900);
  border-color: var(--white);
}

/* =========================  Testimonials  ========================= */
.testimonials { padding: 5rem 0; background: var(--cream-soft); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -8px; left: 18px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--ocean-500);
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--ink);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--sage-900);
  font-size: 0.95rem;
}
.testimonial cite span {
  display: block;
  font-weight: 500;
  color: var(--ink-mute);
  font-size: 0.85rem;
  margin-top: 2px;
}
.testimonial .stars {
  color: #e9a63a;
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}

/* =========================  Video / Blog cards  ========================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.video-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--sage-900);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-meta { padding: 1.25rem 1.5rem 1.5rem; }
.video-meta h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.video-meta p { margin: 0; font-size: 0.92rem; color: var(--ink-mute); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.blog-cover {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-cover .tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--cream);
  color: var(--sage-900);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-body h3 { margin: 0 0 0.6rem; font-size: 1.2rem; }
.blog-body p { flex: 1; }

/* ======= Coming-soon placeholder pill + cards ======= */
.pill {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.pill--coming {
  background: rgba(15, 63, 82, 0.1);
  border: 1px solid rgba(15, 63, 82, 0.25);
  color: var(--sage-900);
  align-self: flex-start;
  margin-bottom: 0.9rem;
}

.video-grid--placeholder { grid-template-columns: repeat(3, 1fr); }
.video-card--placeholder {
  border: 1px solid rgba(15, 63, 82, 0.25);
  box-shadow: none;
}
.video-embed--placeholder {
  background: rgba(15, 63, 82, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 63, 82, 0.55);
}
.video-embed--placeholder svg { width: 64px; height: 64px; }
.video-card--placeholder .video-meta { display: flex; flex-direction: column; align-items: flex-start; }
.video-card--placeholder h3 { margin: 0 0 0.3rem; color: var(--sage-900); }

.blog-card--placeholder {
  background: transparent;
  border: 2px dashed rgba(15, 63, 82, 0.33);
  box-shadow: none;
}
.blog-card--placeholder:hover {
  border-color: rgba(15, 63, 82, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(15, 63, 82, 0.25);
}
.blog-card--placeholder .blog-body { padding: 1.75rem; }
.blog-card--placeholder h3 { color: var(--sage-900); }
.blog-card--placeholder .blog-meta {
  color: rgba(15, 63, 82, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 1rem 0 0;
  flex: 0;
}
.blog-meta { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 0.5rem; letter-spacing: 0.03em; }
.blog-body .more {
  font-weight: 600;
  color: var(--sage-800);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-body .more:hover { color: var(--ocean-700); }

/* =========================  Article (blog post)  ========================= */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}
.article h1 { margin-bottom: 0.5rem; }
.article .meta {
  color: var(--ink-mute);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.article .cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.article h2 { margin-top: 2.5rem; }
.article h3 { margin-top: 1.75rem; }
.article p, .article ul, .article ol { font-size: 1.05rem; line-height: 1.75; }
.article blockquote {
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--cream-soft);
  border-left: 4px solid var(--ocean-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--sage-900);
}
.article a { color: var(--ocean-700); text-decoration: underline; text-underline-offset: 3px; }

/* =========================  Insurance grid  ========================= */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.insurance-tile {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--sage-900);
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.insurance-tile:hover {
  border-color: var(--sage-500);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 63, 82, 0.12);
}
.insurance-tile img {
  max-width: 100%;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.insurance-tile img[src*="Blue-Cali"] {
  max-width: 85%;
  max-height: 130px;
}
.insurance-tile .tile-caption {
  display: block;
  color: var(--sage-900);
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
}
.insurance-tile--text {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--sage-900);
  cursor: default;
}
.insurance-tile--text:hover {
  border-color: var(--cream-dark);
  transform: none;
  box-shadow: none;
}

/* =========================  FAQ accordion  ========================= */
.faq {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--sage-300); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  color: var(--sage-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ocean-500);
  transition: transform 0.2s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item .answer {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
}

/* =========================  Forms  ========================= */
.form-field { margin-bottom: 1.25rem; }
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.92rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--sage-700);
  box-shadow: 0 0 0 3px rgba(78, 134, 162, 0.28);
}
.form-note { font-size: 0.85rem; color: var(--ink-mute); }

.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}

/* =========================  Footer  ========================= */
.site-footer {
  background: var(--sage-900);
  color: var(--cream);
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
  position: relative;
}
.site-footer::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--sage-700), var(--ocean-500), var(--ocean-900));
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--font-serif);
  margin: 0 0 1rem;
  font-size: 1.15rem;
}
.site-footer a { color: var(--cream); transition: color 0.15s var(--ease); }
.site-footer a:hover { color: var(--ocean-300); }
.site-footer p, .site-footer li { color: var(--sage-100); font-size: 0.93rem; }
.site-footer strong { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  text-align: center;
  color: var(--sage-100);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 0.5rem; }
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.2s var(--ease);
}
.footer-social a:hover { background: var(--ocean-500); color: var(--white); }

/* =========================  Scroll fade-in  ========================= */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================  Process steps  ========================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: 20px;
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ocean-700);
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 63, 82, 0.3);
}
.step h3 { margin-top: 0.25rem; }

/* =========================  Newsletter strip  ========================= */
.newsletter {
  padding: 3rem 0;
  background: var(--cream-soft);
  text-align: center;
  border-top: 1px solid var(--cream-dark);
}
.newsletter form {
  display: flex;
  gap: 0.6rem;
  max-width: 460px;
  margin: 1rem auto 0;
}
.newsletter input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--white);
}
.newsletter input:focus {
  outline: none;
  border-color: var(--sage-700);
}

/* =========================  Responsive  ========================= */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .insurance-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .container { padding-left: 2.5rem; padding-right: 2.5rem; }
  .nav { gap: 0.9rem; }
  .brand { font-size: 0.98rem; min-width: 0; line-height: 1.05; }
  .brand span { font-size: 0.55rem; letter-spacing: 0.1em; }
  .nav-toggle { flex-shrink: 0; padding: 0.45rem 0.8rem; font-size: 0.85rem; }

  .hero { min-height: clamp(420px, 70vh, 640px); }
  .hero-content { padding: 3rem 1.75rem; }
  .hero-content .eyebrow { letter-spacing: 0.18em; font-size: 0.78rem; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  .hero-content p.lead { font-size: 1rem; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3,
  .blog-grid,
  .testimonial-grid,
  .video-grid,
  .steps { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .portrait { margin: 0 auto; }

  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--cream-dark);
    border-top: 1px solid var(--cream-dark);
    gap: 0.5rem;
    box-shadow: var(--shadow);
  }
  .nav-menu li { padding: 0.6rem 0; border-bottom: 1px solid var(--cream-dark); }
  .nav-menu li:last-child { border-bottom: none; }
  .nav-menu.open { display: flex; }
  .nav-menu .btn { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
