/* ============================================================
   TOM'S SPORTS MASSAGE — Global Stylesheet
   Fonts: Cormorant Garamond (headings), Inter (body)
   ============================================================ */

/* ─── TOKENS ────────────────────────────────────────────────── */
:root {
  --cream:        #f7f3eb;
  --cream-alt:    #ede8df;
  --cream-dark:   #e0d9cc;
  --sage:         #4a6250;
  --sage-mid:     #6b8570;
  --sage-light:   #c2d0bb;
  --sage-dark:    #2b3c30;
  --warm-gold:    #b08040;
  --slate:        #1e2420;
  --body-text:    #363830;
  --muted:        #7a7d74;
  --white:        #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:    72px;
  --max-w:    1200px;
  --radius:   4px;
  --ease:     0.25s ease;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
  color: var(--slate);
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); }
h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.section        { padding: 100px 0; }
.section--alt   { background: var(--cream-alt); }
.section--white { background: var(--white); }
.section--dark  { background: var(--sage-dark); color: var(--cream); }
.text-center    { text-align: center; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}
.btn--primary {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}
.btn--primary:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 235, 0.6);
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--sage-dark);
  border-color: var(--cream);
}
.btn--outline-sage {
  background: transparent;
  color: var(--sage);
  border-color: var(--sage);
}
.btn--outline-sage:hover {
  background: var(--sage);
  color: var(--cream);
}

/* ─── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid rgba(74, 98, 80, 0.12);
  transition: box-shadow var(--ease);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(30, 36, 32, 0.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav__logo em { color: var(--sage); font-style: normal; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--body-text);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--ease);
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage);
  transition: width var(--ease);
}
.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--sage);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}
/* Book Now CTA in nav */
.nav__links a.nav__book {
  background: var(--sage);
  color: var(--cream) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  letter-spacing: 0.1em;
}
.nav__links a.nav__book::after { display: none; }
.nav__links a.nav__book:hover {
  background: var(--sage-dark);
  color: var(--cream) !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate);
  transition: all var(--ease);
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--sage-light);
  padding: 8px 40px 24px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(30,36,32,0.1);
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  padding: 14px 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body-text);
  border-bottom: 1px solid rgba(74,98,80,0.1);
  transition: color var(--ease);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover,
.nav__mobile a[aria-current="page"] { color: var(--sage); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(27, 38, 30, 0.80) 0%,
    rgba(43, 60, 48, 0.60) 60%,
    rgba(43, 60, 48, 0.40) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 22px;
}
.hero__title {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 24px;
  font-weight: 500;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(247,243,235,0.85);
  max-width: 520px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247,243,235,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(194,208,187,0.5);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0); transform-origin: top; }
  50%       { transform: scaleY(1); transform-origin: top; }
}

/* ─── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--sage-dark);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: var(--sage-light);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  opacity: 0.88;
}

/* ─── SECTION HEADERS ────────────────────────────────────────── */
.sh { margin-bottom: 64px; }
.sh--center { text-align: center; }
.sh__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 14px;
}
.sh__title { margin-bottom: 18px; }
.sh__sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.8;
}
.sh--center .sh__sub { margin: 0 auto; }
.sh__rule {
  width: 44px; height: 2px;
  background: var(--sage-light);
  margin: 20px 0 0;
}
.sh--center .sh__rule { margin: 20px auto 0; }

/* section dark heading overrides */
.section--dark .sh__eyebrow { color: var(--sage-light); opacity: 0.7; }
.section--dark .sh__title   { color: var(--white); }
.section--dark .sh__sub     { color: rgba(247,243,235,0.7); }
.section--dark .sh__rule    { background: rgba(194,208,187,0.35); }

/* ─── TWO-COLUMN LAYOUT ──────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col--reversed .two-col__media { order: 2; }
.two-col--reversed .two-col__text  { order: 1; }
.two-col__media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
}
.two-col__text .sh { margin-bottom: 28px; }
.two-col__text .sh__rule { margin-top: 16px; }

/* ─── WHO I WORK WITH (checklist cards) ──────────────────────── */
.checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid rgba(194,208,187,0.5);
  transition: box-shadow var(--ease), transform var(--ease);
}
.checklist__item:hover {
  box-shadow: 0 6px 24px rgba(74,98,80,0.08);
  transform: translateY(-2px);
}
.checklist__icon {
  width: 38px; height: 38px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
  font-size: 1rem;
  margin-top: 2px;
}
.checklist__body h4 { font-size: 0.9375rem; margin-bottom: 4px; }
.checklist__body p  { font-size: 0.85rem; color: var(--muted); margin: 0; line-height: 1.5; }

/* ─── ISSUES LIST ─────────────────────────────────────────────── */
.issues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.issue {
  padding: 22px 24px;
  border-left: 3px solid var(--sage-light);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.issue p { font-size: 0.9375rem; color: var(--body-text); margin: 0; }

/* ─── TREATMENT CARDS ────────────────────────────────────────── */
.treatments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.treatment {
  background: var(--white);
  border: 1px solid var(--sage-light);
  border-radius: 8px;
  padding: 52px 40px 48px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.treatment:hover {
  box-shadow: 0 16px 48px rgba(74,98,80,0.1);
  transform: translateY(-4px);
}
.treatment--featured {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
}
.treatment--featured h3           { color: var(--cream); }
.treatment--featured .t-duration  { color: var(--sage-light); opacity: 0.8; }
.treatment--featured .t-price     { color: var(--sage-light); }
.treatment--featured .t-tag       { color: var(--sage-light); opacity: 0.6; }
.treatment--featured p            { color: rgba(247,243,235,0.78); }
.treatment--featured .t-rule      { background: rgba(194,208,187,0.25); }
.t-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.t-duration {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 10px;
}
.t-price {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 600;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 6px;
}
.t-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.t-rule {
  width: 36px; height: 1.5px;
  background: var(--sage-light);
  margin: 0 auto 28px;
}
.treatment h3 { font-size: 1.7rem; margin-bottom: 16px; }
.treatment p  { font-size: 0.9375rem; line-height: 1.8; }

/* ─── INFO BLOCKS ─────────────────────────────────────────────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.info-block {
  padding: 40px 36px;
  background: var(--white);
  border-radius: 6px;
  border-left: 4px solid var(--sage);
}
.info-block h3 { font-size: 1.5rem; margin-bottom: 12px; }
.info-block p  { font-size: 0.9375rem; }

/* ─── TESTIMONIAL CARDS ──────────────────────────────────────── */
.testimonials-grid {
  columns: 3;
  column-gap: 24px;
}
.t-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid rgba(194,208,187,0.5);
  border-radius: 8px;
  padding: 36px 32px;
  margin-bottom: 24px;
  page-break-inside: avoid;
}
.t-card__quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 20px;
  position: relative;
  padding-top: 8px;
}
.t-card__quote::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: -6px;
  font-size: 5rem;
  color: var(--sage-light);
  line-height: 1;
  font-style: normal;
}
.t-card__author {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

/* Featured testimonials (2-col on home) */
.testimonials-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--sage);
  padding: 88px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 16px; }
.cta-strip p  {
  color: rgba(247,243,235,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 40px;
}
.cta-strip__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 80px;
  align-items: start;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 36px;
}
.contact-item__icon {
  width: 44px; height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--sage-dark);
}
.contact-item__text h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.contact-item__text p  { font-size: 0.9875rem; margin: 0; }
.contact-item__text a  { color: var(--body-text); transition: color var(--ease); }
.contact-item__text a:hover { color: var(--sage); }

/* ─── FORM ────────────────────────────────────────────────────── */
.form__group { margin-bottom: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--body-text);
  background: var(--white);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius);
  transition: border-color var(--ease);
  outline: none;
  -webkit-appearance: none;
}
input:focus,
textarea:focus { border-color: var(--sage); }
textarea { resize: vertical; min-height: 150px; }
.form__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 14px;
}

/* ─── LOCATION PAGE ──────────────────────────────────────────── */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.address-block {
  font-style: normal;
  font-size: 1rem;
  line-height: 2;
  color: var(--body-text);
}
.location-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}
.location-detail__icon {
  width: 40px; height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--sage-dark);
}
.location-detail__body h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.location-detail__body p { font-size: 0.9375rem; margin: 0; }

/* Map embed */
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sage-light);
}
.map-wrap iframe {
  width: 100%; height: 460px;
  display: block; border: none;
}

/* Clinic image gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform var(--ease);
}
.gallery img:hover { transform: scale(1.02); }

/* ─── QUAL BADGE ──────────────────────────────────────────────── */
.quals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.qual-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  max-width: 340px;
}
.qual-badge img { width: 52px; height: auto; object-fit: contain; }
.qual-badge p {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--body-text);
  line-height: 1.4;
  margin: 0;
}

/* ─── PHONE LINK ──────────────────────────────────────────────── */
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--sage);
  transition: color var(--ease);
}
.phone-link:hover { color: var(--sage-dark); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--sage-dark);
  padding: 72px 0 36px;
  color: var(--sage-light);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer__brand h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 14px;
}
.footer__brand p { font-size: 0.875rem; opacity: 0.68; line-height: 1.8; }
.footer__brand .footer__irsm {
  margin-top: 24px;
}
.footer__irsm img {
  height: 52px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.45;
  transition: opacity var(--ease);
}
.footer__irsm img:hover { opacity: 0.7; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 0.875rem;
  color: var(--sage-light);
  opacity: 0.72;
  transition: opacity var(--ease), color var(--ease);
}
.footer__col ul a:hover { opacity: 1; color: var(--cream); }
.footer__col p { font-size: 0.875rem; opacity: 0.72; line-height: 1.85; }
.footer__bottom {
  border-top: 1px solid rgba(194,208,187,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.8rem; opacity: 0.45; margin: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links      { display: none; }
  .nav__hamburger  { display: flex; }
  .treatments      { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .two-col         { grid-template-columns: 1fr; gap: 40px; }
  .two-col--reversed .two-col__media { order: 0; }
  .two-col--reversed .two-col__text  { order: 0; }
  .two-col__media img { height: 340px; }
  .testimonials-grid { columns: 2; }
  .footer__grid    { grid-template-columns: 1fr 1fr; }
  .gallery         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container       { padding: 0 20px; }
  .section         { padding: 72px 0; }
  .hero__content   { padding: 64px 20px; }
  .page-hero       { padding: 110px 0 64px; }
  .contact-layout  { grid-template-columns: 1fr; gap: 40px; }
  .location-layout { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { columns: 1; }
  .testimonials-featured { grid-template-columns: 1fr; }
  .form__row       { grid-template-columns: 1fr; }
  .footer__grid    { grid-template-columns: 1fr; gap: 36px; }
  .gallery         { grid-template-columns: 1fr; }
  .sh              { margin-bottom: 40px; }
  .map-wrap iframe { height: 300px; }
}

@media (max-width: 480px) {
  .nav__mobile     { padding: 8px 20px 20px; }
  .cta-strip       { padding: 64px 0; }
  .hero__actions   { flex-direction: column; }
  .btn             { text-align: center; }
}
