/* ============================================================
   DS Remedial Massage — Stylesheet
   Palette anchored to logo navy #1B3A6B
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:       #1B3A6B;
  --blue:       #2D5DA1;
  --blue-light: #3D6DB5;
  --off-white:  #F5F7FA;
  --white:      #FFFFFF;
  --text-dark:  #1A1A2E;
  --text-mid:   #555770;
  --gold:       #C8952A;
  --gold-light: #E8B04A;
  --border:     #DDE3ED;
  --shadow:     0 4px 24px rgba(27, 58, 107, 0.10);
  --shadow-sm:  0 2px 8px rgba(27, 58, 107, 0.08);

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius:     8px;
  --radius-lg:  16px;

  --max-w:      1140px;
  --section-y:  80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-y) 0; }
.section--alt { background: var(--off-white); }
.section--navy { background: var(--navy); color: var(--white); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section--navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  margin-bottom: 48px;
}

.section--navy .section-subtitle { color: rgba(255,255,255,0.75); }

.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-left: auto; margin-right: auto; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 149, 42, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--sm { padding: 10px 20px; font-size: 0.875rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img { height: 44px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--navy); }

.nav__cta { margin-left: 8px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.25s;
}

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

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.nav__mobile.open { display: flex; }

.nav__mobile a {
  display: block;
  padding: 14px 24px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { background: var(--off-white); color: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2347 60%, #1a3a6b 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content { color: var(--white); }

.hero__logo {
  height: 90px;
  width: auto;
  margin-bottom: 40px;
  filter: brightness(0) invert(1);
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hero__tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.hero__trust-item svg { flex-shrink: 0; }

.hero__image {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.hero__photo-placeholder {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 24px;
}
.hero__photo-placeholder svg { opacity: 0.4; }

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about__photo {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
}

.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__photo--placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-mid);
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
}

.about__photo:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 4/3;
}

.about__content .section-subtitle { margin-bottom: 24px; }

.about__bio {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.about__credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about__credential {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.about__credential-icon {
  width: 32px;
  height: 32px;
  background: rgba(27,58,107,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.about__badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.about__badge img { height: 56px; width: auto; }

.about__trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(27,58,107,0.07);
  color: var(--navy);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: rgba(27,58,107,0.2);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.2s;
}

.pricing-card:hover,
.pricing-card--featured {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.pricing-card--featured {
  background: var(--navy);
  color: var(--white);
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__duration {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.pricing-card--featured .pricing-card__duration { color: rgba(255,255,255,0.7); }

.pricing-card__price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__price { color: var(--white); }

.pricing-card__note {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-top: 8px;
}

.pricing-card--featured .pricing-card__note { color: rgba(255,255,255,0.6); }

.pricing__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  flex-wrap: wrap;
}

.pricing__note {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.pricing__hicaps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(27,58,107,0.07);
  padding: 8px 16px;
  border-radius: 100px;
}

/* ============================================================
   BOOKING
   ============================================================ */
.booking__embed {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.booking__embed iframe {
  display: block;
  width: 100%;
  min-height: 800px;
}

.booking__fallback {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-mid);
}

.booking__fallback a {
  color: var(--navy);
  font-weight: 500;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery__item {
  aspect-ratio: 4/3;
  background: var(--off-white);
  border: none;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover img { transform: scale(1.04); }

.gallery__item--placeholder {
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.8rem;
  text-align: center;
  padding: 16px;
}
.gallery__item--placeholder svg { color: var(--border); }

.gallery__caption {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.gallery__caption span { margin: 0 8px; color: var(--gold); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}

.testimonial-card__stars {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-card__location {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location__details { padding-top: 8px; }

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.location__detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(27,58,107,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.location__detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.location__detail-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.5;
}

.location__detail-value a {
  color: var(--navy);
  font-weight: 600;
}
.location__detail-value a:hover { color: var(--blue); }

.location__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__intro .section-subtitle { margin-bottom: 0; }

.contact__quick {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact__quick-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.contact__quick-item svg { color: var(--navy); flex-shrink: 0; }

.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

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

.form__group { margin-bottom: 20px; }

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}

.form__textarea { resize: vertical; min-height: 120px; }

.form__honeypot { display: none; }

.form__submit { width: 100%; margin-top: 8px; justify-content: center; }

.form__message {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

.form__message--success {
  background: #e6f4ea;
  color: #1b6030;
  border: 1px solid #c3e6cb;
}

.form__message--error {
  background: #fdecea;
  color: #922b21;
  border: 1px solid #f5c6cb;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0f2347;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 300px;
}

.footer__mma {
  margin-top: 24px;
}

.footer__mma img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  filter: brightness(0) invert(1);
}

.footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer__contact-item svg { flex-shrink: 0; color: var(--gold); }
.footer__contact-item a { color: rgba(255,255,255,0.65); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --section-y: 56px; }

  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__image { display: none; }
  .hero__logo { height: 72px; }

  .about__grid { grid-template-columns: 1fr; }
  .about__photos { grid-template-columns: 1fr 1fr; }
  .about__photo:first-child { grid-column: 1 / -1; }

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

  .pricing__grid { grid-template-columns: repeat(2, 1fr); }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 12px;
    /* hide scrollbar but keep functionality */
    scrollbar-width: none;
  }
  .testimonials__grid::-webkit-scrollbar { display: none; }
  .testimonials__grid .testimonial-card {
    scroll-snap-align: start;
    min-width: min(85vw, 320px);
    flex-shrink: 0;
  }

  .location__grid { grid-template-columns: 1fr; }
  .location__map { height: 300px; }

  .contact__grid { grid-template-columns: 1fr; }
  .form { padding: 28px 20px; }
  .form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .pricing__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
  line-height: 1.4;
}

.faq__question:hover {
  color: var(--blue);
}

.faq__chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--blue);
}

.faq__question[aria-expanded="true"] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 4px 22px;
  animation: faqOpen 0.2s ease;
}

.faq__answer[hidden] {
  display: none;
}

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

.faq__answer p + p {
  margin-top: 12px;
}

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

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   ACCESSIBILITY — CONTRAST FIXES
   Boost semi-transparent text to meet WCAG 2.1 AA (4.5:1)
   ============================================================ */
.section--navy .section-subtitle          { color: rgba(255,255,255,0.92); }
.hero__subtitle                            { color: rgba(255,255,255,0.92); }
.hero__trust-item                          { color: rgba(255,255,255,0.92); }
.testimonial-card__text                    { color: rgba(255,255,255,0.95); }
.testimonial-card__location                { color: rgba(255,255,255,0.82); }
.footer__desc                              { color: rgba(255,255,255,0.82); }
.footer__links a                           { color: rgba(255,255,255,0.88); }
.footer__contact-item                      { color: rgba(255,255,255,0.88); }
.footer__contact-item a                    { color: rgba(255,255,255,0.88); }
.footer__bottom                            { color: rgba(255,255,255,0.65); }

/* ============================================================
   ACCESSIBILITY — FOCUS VISIBLE
   Visible keyboard focus rings everywhere interactive
   ============================================================ */
.nav__links a:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
  border-radius: 3px;
}
.nav__mobile a:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: -3px;
}
.nav__hamburger:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 4px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.footer__links a:focus-visible,
.footer__contact-item a:focus-visible,
.footer__bottom a:focus-visible {
  outline: 2px solid rgba(255,255,255,0.9);
  outline-offset: 3px;
  border-radius: 2px;
}
.faq__question:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   ACCESSIBILITY — SKIP LINK
   ============================================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 24px;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid var(--gold);
  outline-offset: 0;
}

/* ============================================================
   ACCESSIBILITY — REDUCED MOTION
   Respects both system setting and user toolbar preference
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
html.a11y-reduce-motion { scroll-behavior: auto !important; }

/* ============================================================
   ACCESSIBILITY — DYSLEXIA FONT (OpenDyslexic)
   Font only downloaded if the class is ever applied
   ============================================================ */
@font-face {
  font-family: 'OpenDyslexic';
  src: url('https://cdn.jsdelivr.net/gh/antijingoist/opendyslexic@master/compiled/OpenDyslexic-Regular.woff2') format('woff2'),
       url('https://cdn.jsdelivr.net/gh/antijingoist/opendyslexic@master/compiled/OpenDyslexic-Regular.woff') format('woff');
  font-weight: normal;
  font-display: swap;
}

html.a11y-dyslexia body,
html.a11y-dyslexia p,
html.a11y-dyslexia li,
html.a11y-dyslexia label,
html.a11y-dyslexia input,
html.a11y-dyslexia textarea,
html.a11y-dyslexia select,
html.a11y-dyslexia .service-card__desc,
html.a11y-dyslexia .about__bio,
html.a11y-dyslexia .faq__answer p,
html.a11y-dyslexia .testimonial-card__text,
html.a11y-dyslexia .section-subtitle {
  font-family: 'OpenDyslexic', sans-serif !important;
  line-height: 1.95 !important;
  letter-spacing: 0.05em !important;
  word-spacing: 0.12em !important;
}

/* ============================================================
   ACCESSIBILITY — HIGH CONTRAST MODE
   ============================================================ */
html.a11y-high-contrast body {
  background: #ffffff !important;
  color: #000000 !important;
}

/* Dark sections become near-black */
html.a11y-high-contrast .hero,
html.a11y-high-contrast .section--navy {
  background: #00004e !important;
}
html.a11y-high-contrast .hero *,
html.a11y-high-contrast .section--navy * {
  color: #ffffff !important;
}
html.a11y-high-contrast .footer {
  background: #000000 !important;
}
html.a11y-high-contrast .footer * {
  color: #ffffff !important;
}

/* Light section text */
html.a11y-high-contrast .section-title { color: #000000 !important; }
html.a11y-high-contrast .section-subtitle,
html.a11y-high-contrast .about__bio,
html.a11y-high-contrast .service-card__desc,
html.a11y-high-contrast .faq__answer p,
html.a11y-high-contrast .pricing__note { color: #1a1a1a !important; }

/* Borders and cards */
html.a11y-high-contrast .service-card,
html.a11y-high-contrast .pricing-card,
html.a11y-high-contrast .form { border: 2px solid #000000 !important; }

/* Buttons */
html.a11y-high-contrast .btn--primary {
  background: #b36200 !important;
  color: #ffffff !important;
  border-color: #b36200 !important;
}
html.a11y-high-contrast .btn--outline {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Links */
html.a11y-high-contrast a { color: #0000cc !important; }
html.a11y-high-contrast .hero a,
html.a11y-high-contrast .section--navy a,
html.a11y-high-contrast .footer a { color: #ffff00 !important; }
html.a11y-high-contrast .hero a:hover,
html.a11y-high-contrast .section--navy a:hover,
html.a11y-high-contrast .footer a:hover { color: #ffffff !important; }

/* Nav */
html.a11y-high-contrast .nav {
  background: #ffffff !important;
  border-bottom: 2px solid #000000 !important;
}
html.a11y-high-contrast .nav__links a { color: #000000 !important; }

/* ============================================================
   ACCESSIBILITY TOOLBAR — NAV BUTTON
   ============================================================ */
.nav__a11y-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--navy);
  margin-right: 8px;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.nav__a11y-btn:hover,
.nav__a11y-btn[aria-expanded="true"] {
  background: rgba(27,58,107,0.08);
  border-color: var(--navy);
}
.nav__a11y-btn:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
}

/* ============================================================
   ACCESSIBILITY TOOLBAR — PANEL
   ============================================================ */
.a11y-panel {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 200;
  width: 288px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(27,58,107,0.18);
  font-family: var(--font-body);
}

.a11y-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--border);
}

.a11y-panel__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
}

.a11y-panel__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-mid);
}
.a11y-panel__close:hover { background: var(--off-white); color: var(--text-dark); }
.a11y-panel__close:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.a11y-panel__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.a11y-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.a11y-row__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Text size controls */
.a11y-size-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.a11y-size-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.a11y-size-btn--lg { font-size: 1rem; }
.a11y-size-btn:hover:not(:disabled) { background: var(--off-white); border-color: var(--navy); }
.a11y-size-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.a11y-size-btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.a11y-size-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  min-width: 46px;
  text-align: center;
}

/* On/Off switches */
.a11y-switch {
  min-width: 54px;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.a11y-switch.a11y-switch--on {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.a11y-switch:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* Reset button */
.a11y-reset-btn {
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.15s, color 0.15s;
}
.a11y-reset-btn:hover { background: var(--off-white); color: var(--text-dark); }
.a11y-reset-btn:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

@media (max-width: 480px) {
  .a11y-panel { right: 12px; left: 12px; width: auto; }
}
