/* ================================================================
   FYSIO DE TOLGAARDE — Demo Site Stylesheet
   Brand: Amber #C8860A | Teal #2AACBF | Dark Teal #1A6B8A | Navy #1E3A5F
   ================================================================ */

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

:root {
  --amber:       #D4890A;
  --amber-light: #F09B1A;
  --amber-bg:    #FFF8EC;
  --teal:        #2AACBF;
  --teal-dark:   #1A6B8A;
  --navy:        #1E3A5F;
  --navy-soft:   #263B55;
  --white:       #FFFFFF;
  --off-white:   #F7F9FA;
  --grey-100:    #F0F2F5;
  --grey-200:    #E2E6EA;
  --grey-400:    #9CA3AF;
  --grey-600:    #4B5563;
  --grey-800:    #1F2937;
  --text:        #1A2332;
  --text-soft:   #4A5568;

  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 16px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);

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

  --max-w: 1160px;
  --header-h: 72px;
}

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

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

/* ── Images: fill containers (mobile-proof) ──────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__media img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ── Typography ───────────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; color: var(--text); }
h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--grey-400); }
p  { color: var(--text-soft); }
a  { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--teal-dark); }
address { font-style: normal; }

/* ── Container ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}
.btn--amber:hover, .btn--amber:focus-visible {
  background: #a87009;
  border-color: #a87009;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200,134,10,.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn--lg  { padding: .9rem 2rem; font-size: 1rem; }
.btn--sm  { padding: .55rem 1.2rem; font-size: .85rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section helpers ──────────────────────────────────────────── */
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}
.section-header--light h2, .section-header--light p { color: var(--white); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .5rem;
}
.section-label--light { color: var(--amber-light); }

.section-title { margin-bottom: .75rem; }
.section-sub   { font-size: 1.05rem; color: var(--text-soft); }

/* ════════════════════════════════════════════════════════════════
   HEADER / NAV
════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s, backdrop-filter .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--grey-200);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
/* Nav items white when header is transparent (over hero) */
.site-header:not(.scrolled) .desktop-nav a,
.site-header:not(.scrolled) .logo__brand,
.site-header:not(.scrolled) .logo__name {
  color: rgba(255,255,255,.9);
}
.site-header:not(.scrolled) .desktop-nav a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
}
.site-header:not(.scrolled) .mobile-menu__trigger .hamburger span {
  background: var(--white);
}


.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo__mark { flex-shrink: 0; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__brand {
  font-size: .7rem;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: .03em;
}
.logo__name {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}

/* Desktop nav */
.desktop-nav { margin-left: auto; }
.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: .25rem;
}
.desktop-nav a {
  display: block;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey-600);
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.desktop-nav a:hover { color: var(--teal-dark); background: var(--grey-100); }

.nav-cta { margin-left: .5rem; flex-shrink: 0; }

/* Hamburger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .25s;
}

/* ════════════════════════════════════════════════════════════════
   MOBILE MENU OVERLAY (fullscreen kit)
════════════════════════════════════════════════════════════════ */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--white);
  height: 100dvh;
  height: 100svh;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}
body.menu-open { overflow: hidden; }

.mobile-menu__panel { padding: 1.5rem; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-200);
  margin-bottom: 1rem;
}
.mobile-menu__logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-600);
  padding: .4rem;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s;
}
.mobile-menu__close:hover { color: var(--text); background: var(--grey-100); }

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: background .15s, color .15s;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.mobile-menu__item:hover { background: var(--grey-100); color: var(--teal-dark); }

.mobile-menu__footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu__phone {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-dark);
  justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,58,95,.72) 0%,
    rgba(26,107,138,.45) 50%,
    rgba(200,134,10,.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 4rem;
  max-width: 680px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}

.hero__headline {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.25);
}

.hero__sub {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ════════════════════════════════════════════════════════════════
   USP STRIP
════════════════════════════════════════════════════════════════ */
.usp-strip {
  background: var(--navy);
  padding-block: 1.75rem;
}
.usp-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  gap: 1rem;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
}
.usp-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(42,172,191,.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}
.usp-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
}
.usp-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}

/* ════════════════════════════════════════════════════════════════
   SPECIALISATIES — CARD GRID
════════════════════════════════════════════════════════════════ */
.specialisaties { background: var(--off-white); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.card:hover .card__media img { transform: scale(1.04); }

/* Coloured fallback media blocks */
.card__media--teal       { position: relative; background: linear-gradient(135deg, var(--teal) 0%, #1d8c9c 100%); display: flex; align-items: center; justify-content: center; }
.card__media--teal-dark  { position: relative; background: linear-gradient(135deg, var(--teal-dark) 0%, #0f4a62 100%); display: flex; align-items: center; justify-content: center; }
.card__media--navy       { position: relative; background: linear-gradient(135deg, var(--navy) 0%, #0e2540 100%); display: flex; align-items: center; justify-content: center; }
.card__media--amber-light{ position: relative; background: linear-gradient(135deg, #e8960f 0%, #c87209 100%); display: flex; align-items: center; justify-content: center; }
.card__media--praktijk   { /* photo */ }

.card__icon { 
  color: rgba(255,255,255,.92); 
  width: 64px; 
  height: 64px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
}
/* Add subtle texture to coloured card media */
.card__media--teal::before, .card__media--teal-dark::before,
.card__media--navy::before, .card__media--amber-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}

.card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.card__tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
}
.card__body h3 { font-size: 1.05rem; color: var(--text); }
.card__body p  { font-size: .9rem; color: var(--text-soft); flex: 1; }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--amber);
  margin-top: .5rem;
  padding: .4rem 0;
  min-height: 44px;
  transition: gap .2s;
}
.card__link:hover { gap: .6rem; }

/* ════════════════════════════════════════════════════════════════
   OVER ONS
════════════════════════════════════════════════════════════════ */
.over-ons { background: var(--white); }

.over-ons__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.over-ons__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.img-fill {
  width: 100%;
  height: 100%;
}
.img-fill > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over-ons__media-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.95);
  border-radius: 100px;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.over-ons__content { display: flex; flex-direction: column; gap: 1.25rem; }
.over-ons__content h2 { margin-bottom: .25rem; }
.over-ons__content p  { font-size: 1rem; }

.over-ons__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.over-ons__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .9rem;
  color: var(--text-soft);
}
.over-ons__list svg { flex-shrink: 0; margin-top: 2px; }

/* ════════════════════════════════════════════════════════════════
   REVIEWS
════════════════════════════════════════════════════════════════ */
.reviews {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%);
}
.reviews .section-title { color: var(--white); }

.reviews__rating {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-top: .5rem;
}
.stars {
  display: flex;
  gap: 2px;
}
.stars svg { width: 20px; height: 20px; }
.reviews__score {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.review-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background .2s;
}
.review-card:hover { background: rgba(255,255,255,.11); }
.review-card--featured {
  background: rgba(255,255,255,.13);
  border-color: rgba(200,134,10,.4);
  transform: scale(1.02);
}

.review-card__google {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.review-card__stars {
  display: flex;
  gap: 2px;
}

.review-card p {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.88);
  font-style: italic;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.review-card cite {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  font-style: normal;
}
.review-card footer span {
  display: block;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
}

/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════════════════════════════ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.75rem; }

.contact-info__block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .85rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  box-shadow: var(--shadow-sm);
}
.contact-details strong { display: block; font-size: .8rem; font-weight: 700; color: var(--grey-600); margin-bottom: .2rem; }
.contact-details a { color: var(--text); font-weight: 500; }
.contact-details a:hover { color: var(--teal-dark); }

/* Opening hours table */
.opening-hours {
  width: 100%;
  border-collapse: collapse;
}
.opening-hours th, .opening-hours td {
  padding: .45rem .5rem;
  font-size: .9rem;
  text-align: left;
  border-bottom: 1px solid var(--grey-200);
  color: var(--text);
}
.opening-hours th { font-weight: 600; width: 50%; }
.opening-hours td { color: var(--text-soft); }
.opening-hours tr.closed th, .opening-hours tr.closed td { color: var(--grey-400); }
.opening-hours tr:last-child th, .opening-hours tr:last-child td { border-bottom: none; }

/* Map */
.contact-info__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-info__map iframe { display: block; }

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--teal-dark);
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label span { color: var(--amber); }
.form-group input, .form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,172,191,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
  font-size: .78rem;
  color: var(--grey-400);
  text-align: center;
  margin-top: .25rem;
}

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); }

.footer__top { padding-block: clamp(2.5rem, 6vw, 5rem); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__col h4 {
  color: rgba(255,255,255,.45);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Brand col */
.footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer__logo-text span:first-child {
  font-size: .7rem;
  color: rgba(255,255,255,.5);
}
.footer__logo-text span:last-child {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.footer__col--brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  max-width: 260px;
}
.footer__kngf {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--teal);
}

/* Footer links */
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer__links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer__links a:hover { color: var(--teal); }

.footer__links--contact li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255,255,255,.65);
}
.footer__links--contact svg { flex-shrink: 0; margin-top: 2px; color: var(--teal); opacity: .8; }
.footer__links--contact a { color: rgba(255,255,255,.65); }
.footer__links--contact a:hover { color: var(--teal); }

/* Footer hours */
.footer__hours {
  border-collapse: collapse;
  width: 100%;
}
.footer__hours th, .footer__hours td {
  font-size: .85rem;
  padding: .3rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer__hours th { color: rgba(255,255,255,.65); font-weight: 500; }
.footer__hours td { color: rgba(255,255,255,.4); }
.footer__hours tr:last-child th,
.footer__hours tr:last-child td { border-bottom: none; }

.footer__cta { margin-top: 1.25rem; }

/* Footer bottom */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 1.25rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}


/* Nav CTA amber button stays amber even on transparent header */
.site-header:not(.scrolled) .nav-cta.btn--amber {
  background: var(--amber);
  color: var(--white);
  border-color: var(--amber);
}

/* Hero primary CTA - extra punchy amber */
.hero__cta-primary {
  background: var(--amber) !important;
  color: #fff !important;
  border-color: var(--amber) !important;
  box-shadow: 0 4px 20px rgba(212,137,10,.4);
}
.hero__cta-primary:hover {
  background: #b87308 !important;
  border-color: #b87308 !important;
  box-shadow: 0 8px 28px rgba(212,137,10,.5);
  transform: translateY(-2px);
}

/* Outline white button */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn--outline-white:hover, .btn--outline-white:focus-visible {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .over-ons__inner { grid-template-columns: 1fr; }
  .over-ons__media { max-width: 560px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .review-card--featured { transform: none; }
}

@media (max-width: 768px) {
  /* Nav: hide desktop items, show hamburger */
  .desktop-nav, .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }

  /* USP: 2-col on tablet */
  .usp-list { grid-template-columns: repeat(2, 1fr); }

  /* Cards: single col on mobile */
  .card-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .usp-list { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Focus visible (accessibility) ───────────────────────────── */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Scrollbar (cosmetic) ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--grey-100); }
::-webkit-scrollbar-thumb { background: var(--grey-400); border-radius: 3px; }

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
