/* ==========================================================================
   PULS FYSIO — Stylesheet
   Matches client design: simple, minimal, mobile-responsive
   ========================================================================== */

/* =========================================
   1. DESIGN TOKENS
   ========================================= */
:root {
  /* Brand colors */
  --c-navy: #2b2e62;
  --c-navy-dark: #1f2249;
  --c-mint: #5dceac;
  --c-mint-light: #d6f1e7;
  --c-mint-bg: #66ceae;
  --c-green: #19ce99;

  /* Neutrals */
  --c-white: #ffffff;
  --c-bg: #f5f6f9;
  --c-text: #2b2e62;
  --c-text-soft: #5a5e80;
  --c-border: #e6e8f0;

  /* Footer */
  --c-footer-bg: #2b2e62;
  --c-footer-text: #ffffff;
  --c-footer-soft: #b9bbd1;

  /* Typography */
  --ff-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --container: 1200px;
  --gutter: 1.25rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Shadow */
  --sh-card: 0 2px 12px rgba(43, 46, 98, 0.06);
  --sh-card-hover: 0 6px 24px rgba(43, 46, 98, 0.1);
}

/* =========================================
   2. RESET / BASE
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.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;
}

/* =========================================
   3. UTILITIES
   ========================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =========================================
   4. BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--c-green);
  color: var(--c-white);
}
.btn--primary:hover {
  background: #16b889;
}

.btn--navy {
  background: var(--c-navy);
  color: var(--c-white);
}
.btn--navy:hover {
  background: var(--c-navy-dark);
}

.btn--outline {
  background: var(--c-green);
  color: var(--c-white);
}
.btn--outline:hover {
  background: #16b889;
}

.btn--disabled {
  background: #b9bbd1 !important;
  color: var(--c-white);
  cursor: not-allowed;
  pointer-events: none;
}

/* =========================================
   5. HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-navy);
  color: var(--c-white);
  transition: box-shadow 0.2s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  color: var(--c-white);
}
.brand:hover {
  text-decoration: none;
}

.brand__mark {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand__mark .dot {
  color: var(--c-green);
}

.brand__tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-top: 0.25rem;
  color: var(--c-white);
  opacity: 0.95;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.15s ease;
}
.nav-link:hover {
  opacity: 0.75;
  text-decoration: none;
}
.nav-link.is-active {
  color: var(--c-green);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--c-white);
}

.icon-bar {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem var(--gutter);
  background: var(--c-navy-dark);
}
.mobile-menu.is-open {
  display: flex;
}

.mobile-menu a {
  color: var(--c-white);
  font-size: 1.125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .btn {
  margin-top: 0.5rem;
}

/* =========================================
   6. HERO (home) — matches client PDF design
   ========================================= */
.hero {
  position: relative;
  background: #c8d0e0;
  color: var(--c-navy);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: grayscale(100%);
  opacity: 0.95;
}

/* Light tint overlay — lets runner image show through clearly */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(220, 225, 235, 0.55) 0%,
    rgba(220, 225, 235, 0.35) 50%,
    rgba(220, 225, 235, 0.25) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.hero__title {
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  max-width: 14ch;
  color: var(--c-navy);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--c-navy);
}

.hero__cta {
  padding: 1.125rem 2.5rem;
  font-size: 1.0625rem;
  box-shadow: 0 8px 24px rgba(25, 206, 153, 0.35);
}
.hero__cta:hover {
  box-shadow: 0 12px 28px rgba(25, 206, 153, 0.45);
}

/* =========================================
   7. SECTIONS (general)
   ========================================= */
.section {
  padding: 4.5rem 0;
}

.section--white {
  background: var(--c-white);
}
.section--bg {
  background: var(--c-bg);
}
.section--mint {
  background: var(--c-mint-bg);
  color: var(--c-navy);
}
.section--cream {
  background: #faf8f3;
}
.section--sand {
  background: #f4f1ea;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--c-navy);
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  line-height: 1.7;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}

/* =========================================
   8. TREATMENT GRID (4 cards 2x2)
   ========================================= */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.treatment-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.treatment-card:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-2px);
}

.treatment-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--c-mint-light);
  color: var(--c-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.treatment-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}

.treatment-card__body {
  color: var(--c-text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
}

/* =========================================
   9. OM OSS (mint background)
   ========================================= */

.about-section.page-hero {
  background-color: var(--c-white);
  padding: 4.5rem 0;
}

.about-section .section-title,
.about-section .section-subtitle,
.about-section .eyebrow {
  color: var(--c-navy);
}

.therapist-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.therapist {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: center;
}

.therapist__media {
  position: relative;
}
.therapist__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #2b2e62, #3d4084);
}

.therapist__name {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 0.25rem;
}

.therapist__role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 1rem;
  display: block;
}

.therapist__desc {
  color: var(--c-text-soft);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.therapist__note {
  font-weight: 700;
  color: var(--c-navy);
  margin: 1rem 0 1.5rem;
  font-size: 0.9375rem;
}

.therapist__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* =========================================
   10. LOCATION (Hvor finner du oss?)
   ========================================= */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.location__lead {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.location__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-feature__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: var(--c-mint-light);
  color: var(--c-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.location-feature h4 {
  font-size: 1.0625rem;
  color: var(--c-navy);
  margin-bottom: 0.25rem;
}

.location-feature p {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.6;
}

.location__map {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 360px;
  position: relative;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.location__map-link {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--c-white);
  color: #1a73e8;
  padding: 0.5rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-border);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  z-index: 5;
  text-decoration: none;
}
.location__map-link:hover {
  text-decoration: none;
  background: #f5f6f9;
}

/* =========================================
   11. CONTACT GRID (3 cards)
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.contact-card:hover {
  box-shadow: var(--sh-card-hover);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: var(--c-mint-light);
  color: var(--c-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.contact-card h3 {
  font-size: 1.125rem;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}

.contact-card p,
.contact-card a {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
}

.contact-card a:hover {
  color: var(--c-navy);
}

/* =========================================
   12. CTA BAND (mint with navy button)
   ========================================= */
.cta-band {
  background: var(--c-mint-bg);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.cta-band p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-navy);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* =========================================
   13. FOOTER
   ========================================= */
.site-footer {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
}

.footer-brand-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Multi-color bars logo */
.logo-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
}
.logo-bars .bar {
  width: 6px;
  border-radius: 2px;
  display: block;
}
.logo-bars .bar:nth-child(1) {
  height: 18px;
  background: #19ce99;
}
.logo-bars .bar:nth-child(2) {
  height: 28px;
  background: #19ce99;
}
.logo-bars .bar:nth-child(3) {
  height: 36px;
  background: #fdcb58;
}
.logo-bars .bar:nth-child(4) {
  height: 28px;
  background: #f47c2c;
}
.logo-bars .bar:nth-child(5) {
  height: 22px;
  background: #e84e6f;
}
.logo-bars .bar:nth-child(6) {
  height: 14px;
  background: #c241a4;
}

.footer-brand-mark {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--c-white);
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: var(--c-footer-soft);
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}
.footer-col a:hover {
  color: var(--c-white);
  text-decoration: none;
}

.footer-hours li {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-bottom: 1rem;
}

.footer-hours .day {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-footer-soft);
}

.footer-hours .time {
  font-size: 0.9375rem;
  color: var(--c-white);
  font-weight: 500;
}

.footer-hours .time--closed {
  color: var(--c-green);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--c-footer-soft);
}

.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom__links a {
  color: var(--c-footer-soft);
  font-size: 0.875rem;
}
.footer-bottom__links a:hover {
  color: var(--c-white);
}

/* =========================================
   14. PAGE HERO (about/legal pages)
   ========================================= */
.page-hero {
  background: var(--c-white);
  color: var(--c-navy);
  padding: 4rem 0 3rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: var(--c-navy);
}
.breadcrumb a {
  color: var(--c-navy);
}
.breadcrumb a:hover {
  color: var(--c-navy-dark);
  text-decoration: none;
}
.breadcrumb span {
  color: var(--c-navy);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero h1 em {
  color: var(--c-navy);
  font-style: normal;
}

.page-hero p {
  font-size: 1.0625rem;
  max-width: 640px;
  opacity: 0.9;
  line-height: 1.65;
}

/* =========================================
   15. LEGAL PAGES (TOC + prose)
   ========================================= */
.content-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}

.toc {
  position: sticky;
  top: 100px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
}

.toc h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-navy);
  margin-bottom: 1rem;
}

.toc ul li {
  margin-bottom: 0.5rem;
}
.toc a {
  color: var(--c-text-soft);
  font-size: 0.9375rem;
  transition: color 0.15s ease;
}
.toc a:hover {
  color: var(--c-navy);
  text-decoration: none;
}

.prose {
  background: var(--c-white);
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  padding: 2.5rem;
  line-height: 1.7;
  color: var(--c-text);
}

.prose h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0.75rem;
  color: var(--c-navy);
}
.prose h2:first-of-type {
  margin-top: 1rem;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-text-soft);
}
.prose ul {
  margin: 1rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.prose ul li {
  margin-bottom: 0.5rem;
  color: var(--c-text-soft);
  list-style: disc;
}
.prose blockquote {
  border-left: 4px solid var(--c-mint);
  background: #f5fbf8;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-style: italic;
  color: var(--c-text);
}
.prose hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: 2rem 0;
}
.prose a {
  color: var(--c-navy);
  font-weight: 600;
}

/* =========================================
   16. ABOUT PAGE EXTRAS (values, FAQ)
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
}

.value-card__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-mint);
  margin-bottom: 0.75rem;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.25rem;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--c-text-soft);
  line-height: 1.65;
}

.tag-pill {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: var(--c-mint-light);
  color: var(--c-navy);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
}

.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--c-navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--c-mint);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 1.5rem 1.25rem;
  color: var(--c-text-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* =========================================
   17. REVEAL ANIMATIONS (progressive enhancement)
   ========================================= */
html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =========================================
   18. RESPONSIVE — Tablet
   ========================================= */
@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .therapist {
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }
  .toc {
    position: static;
    margin-bottom: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

/* =========================================
   19. RESPONSIVE — Mobile
   ========================================= */
@media (max-width: 720px) {
  :root {
    --gutter: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  /* Header */
  .nav-desktop {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }

  .brand__mark {
    font-size: 1.5rem;
  }
  .brand__tagline {
    font-size: 0.625rem;
  }

  /* Hero */
  .hero {
    min-height: 420px;
  }
  .hero .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero__title {
    font-size: 2.25rem;
  }
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  /* Grids → single column */
  .treatment-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .therapist {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.25rem;
  }
  .therapist__media img {
    max-width: 240px;
    margin: 0 auto;
  }

  .therapist__actions {
    flex-direction: column;
  }
  .therapist__actions .btn {
    width: 100%;
  }

  .location {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location__map {
    min-height: 280px;
  }
  .location__map iframe {
    min-height: 280px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Section headers */
  .section-title {
    font-size: 1.75rem;
  }

  /* Page hero */
  .page-hero {
    padding: 2.5rem 0 2rem;
  }
  .page-hero h1 {
    font-size: 1.875rem;
  }

  /* Legal */
  .prose {
    padding: 1.5rem;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9375rem;
  }
  .hero__title {
    font-size: 1.875rem;
  }
  .therapist__name {
    font-size: 1.5rem;
  }
}
