/* =========================================================
   Fysiotherapie Westerkwartier — stylesheet
   ========================================================= */

:root {
  --teal: #1ca7b4;
  --teal-dark: #14808b;
  --teal-deep: #0e5d66;
  --ink: #12333a;
  --ink-soft: #43606a;
  --mist: #eef7f8;
  --mist-deep: #dcf0f2;
  --paper: #ffffff;
  --sand: #f7fafb;
  --lilac: #a99bc9;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 10px 30px rgba(18, 51, 58, 0.10);
  --shadow-soft: 0 6px 18px rgba(18, 51, 58, 0.07);
  --container: 1160px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--teal-dark); text-decoration: none; }
a:hover { color: var(--teal-deep); }

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

/* ---------- typography ---------- */

h1, h2, h3, h4 { line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--teal);
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 20px rgba(28, 167, 180, 0.35);
}
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); color: #fff; transform: translateY(-2px); }

.btn-outline {
  background: #fff;
  color: var(--teal-deep);
  border: 1.5px solid var(--mist-deep);
}
.btn-outline:hover { border-color: var(--teal); transform: translateY(-2px); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 51, 58, 0.07);
}

.topbar {
  background: var(--ink);
  color: #cfe6e9;
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-block: 7px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.topbar-item svg { width: 14px; height: 14px; color: var(--teal); flex: none; }
.topbar-right { display: flex; gap: 20px; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}

.brand img { height: 46px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  display: block;
  white-space: nowrap;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--mist); color: var(--teal-deep); }
.nav-links a.active { background: var(--mist); color: var(--teal-dark); }
.nav-links .nav-cta {
  background: var(--teal);
  color: #fff;
  margin-left: 8px;
}
.nav-links .nav-cta:hover { background: var(--teal-dark); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- hero (home) ---------- */

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9, 42, 49, 0.88) 0%, rgba(14, 93, 102, 0.72) 45%, rgba(14, 93, 102, 0.25) 100%);
}
.hero .container { position: relative; z-index: 2; padding-block: 90px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(4px);
}
.hero-badge svg { width: 15px; height: 15px; color: #7fe3ec; }
.hero h1 { max-width: 640px; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #7fe3ec; }
.hero p { max-width: 540px; font-size: 1.2rem; color: rgba(255, 255, 255, 0.88); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- page hero (subpages) ---------- */

.page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(9, 42, 49, 0.90) 0%, rgba(14, 93, 102, 0.72) 55%, rgba(14, 93, 102, 0.35) 100%);
}
.page-hero .container { position: relative; z-index: 2; padding-block: 84px; }
.page-hero .eyebrow { color: #7fe3ec; }
.page-hero .eyebrow::before { background: #7fe3ec; }
.page-hero h1 { max-width: 640px; margin-bottom: 12px; }
.page-hero p { max-width: 560px; font-size: 1.15rem; color: rgba(255, 255, 255, 0.88); }

/* ---------- sections ---------- */

.section { padding-block: 88px; }
.section-tint { background: var(--sand); }
.section-mist { background: var(--mist); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { margin-top: 12px; color: var(--ink-soft); }

/* ---------- usp grid ---------- */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.usp {
  background: #fff;
  border: 1px solid rgba(18, 51, 58, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.usp:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.usp-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.usp-icon svg { width: 26px; height: 26px; }
.usp h3 { margin-bottom: 8px; }
.usp p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- split layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.split-media .media-card {
  position: absolute;
  left: -18px;
  bottom: -18px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.media-card .media-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mist);
  color: var(--teal-dark);
  display: grid;
  place-items: center;
  flex: none;
}
.media-card .media-card-icon svg { width: 22px; height: 22px; }
.media-card strong { display: block; font-size: 1rem; }
.media-card span { font-size: 0.85rem; color: var(--ink-soft); }

.split-body p { color: var(--ink-soft); margin-bottom: 16px; }

.checklist { list-style: none; margin: 22px 0 30px; display: grid; gap: 12px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; }
.checklist svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex: none;
  margin-top: 2px;
}

/* ---------- vakgebieden cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border: 1px solid rgba(18, 51, 58, 0.06);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-photo { margin: -30px -30px 22px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.card-photo img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.card:hover .card-photo img { transform: scale(1.04); }
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card .card-link {
  margin-top: 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card .card-link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.card .card-link:hover svg { transform: translateX(4px); }

/* ---------- steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.step {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  border: 1px solid rgba(18, 51, 58, 0.06);
  box-shadow: var(--shadow-soft);
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(28, 167, 180, 0.4);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- team ---------- */

/* Auto-fit met een maximum, zodat het raster klopt bij 3 leden én bij nieuwe aanwas. */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  gap: 22px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(18, 51, 58, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}
.team-card-body { padding: 20px 22px 24px; }
.team-card-body h3 { margin-bottom: 2px; font-size: 1.15rem; }
.team-card-body .role { color: var(--teal-dark); font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; }
.tag {
  background: var(--mist);
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease;
}
.gallery img:hover { transform: scale(1.02); }

/* ---------- cta band ---------- */

.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band::before {
  content: "";
  pointer-events: none;
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
}
.cta-band h2 { margin-bottom: 8px; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 480px; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--teal-deep);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.cta-band .btn-primary:hover { background: var(--mist); color: var(--teal-deep); }

/* ---------- info blocks (contact / praktijk) ---------- */

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 51, 58, 0.06);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.info-card h3 svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
.info-card p, .info-card li { color: var(--ink-soft); }
.info-card ul { list-style: none; }
.info-card li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(18, 51, 58, 0.1);
  font-size: 0.97rem;
}
.info-card li:last-child { border-bottom: 0; }
.info-card li strong { color: var(--ink); font-weight: 600; }
.info-card .info-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; margin-top: 10px; }

/* ---------- contact form ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 51, 58, 0.06);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 0.92rem; }
.form-field label span { color: var(--teal-dark); }
.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--mist-deep);
  background: var(--sand);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(28, 167, 180, 0.15);
  background: #fff;
}
.form-note { font-size: 0.88rem; color: var(--ink-soft); margin-top: 14px; }

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.97rem;
}
.form-status:not(:empty) { display: block; background: var(--sand); color: var(--ink-soft); }
.form-status.is-ok { background: #e8f8ef; color: #14683c; }
.form-status.is-error { background: #fdeeee; color: #a33030; }

/* ---------- whatsapp ---------- */

.topbar-wa svg { color: #25d366; }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg { width: 24px; height: 24px; flex: none; }

@media (max-width: 720px) {
  .whatsapp-float { right: 16px; bottom: 16px; padding: 15px; }
  .whatsapp-float span { display: none; }
  .footer-bottom { padding-right: 0; padding-bottom: 70px; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #b9d2d6;
  margin-top: 88px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 64px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.site-footer a { color: #b9d2d6; }
.site-footer a:hover { color: #7fe3ec; }
.footer-brand img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 0.95rem; max-width: 300px; }
.footer-list { list-style: none; display: grid; gap: 9px; font-size: 0.95rem; }
.footer-list .footer-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-list .footer-item svg { width: 16px; height: 16px; color: var(--teal); flex: none; margin-top: 4px; }
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: #fff;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 20px;
  padding-right: 200px; /* ruimte houden voor de zwevende WhatsApp-knop */
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

/* ---------- prose (long text pages) ---------- */

.prose h2 { margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 6px; }

/* ---------- tarieven ---------- */

.price-card {
  background: #fff;
  border: 1px solid rgba(18, 51, 58, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
}
.price-card table { width: 100%; border-collapse: collapse; }
.price-card th {
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  padding: 0 0 14px;
  border-bottom: 2px solid var(--mist-deep);
}
.price-card th:last-child { text-align: right; }
.price-card td {
  padding: 13px 0;
  border-bottom: 1px dashed rgba(18, 51, 58, 0.12);
  color: var(--ink);
  font-weight: 600;
}
.price-card tr:last-child td { border-bottom: 0; }
.price-card td.price {
  text-align: right;
  color: var(--teal-dark);
  font-weight: 800;
  white-space: nowrap;
  padding-left: 16px;
}
.price-footnote { margin-top: 18px; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- vakgebied detail ---------- */

.vak-detail {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 36px;
  align-items: center;
  padding: 38px 0;
  border-bottom: 1px solid rgba(18, 51, 58, 0.08);
}
.vak-detail:last-child { border-bottom: 0; }
.vak-detail .vak-photo {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.vak-detail h3 { font-size: 1.35rem; margin-bottom: 8px; }
.vak-detail p { color: var(--ink-soft); margin-bottom: 8px; }
.vak-detail ul { margin: 8px 0 0 20px; color: var(--ink-soft); }

@media (max-width: 720px) {
  .vak-detail { grid-template-columns: 1fr; gap: 18px; }
  .vak-detail .vak-photo { height: 200px; }
}

/* ---------- responsive ---------- */

@media (max-width: 1000px) {
  .usp-grid, .card-grid, .steps, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar-right span.topbar-hours { display: none; }
}

@media (max-width: 720px) {
  .usp-grid, .card-grid, .steps, .info-grid, .gallery { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero { min-height: 540px; }
  .cta-band { padding: 36px 28px; }
  .topbar .container { justify-content: center; }
  .topbar-left { display: none; }
  .topbar-wa { display: none; } /* de zwevende knop dekt WhatsApp op mobiel */
  .form-card { padding: 28px 22px; }
  .split-media img { height: 320px; }
  .split-media .media-card { left: 12px; bottom: -16px; padding: 14px 16px; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 26px;
    gap: 4px;
    border-bottom: 1px solid rgba(18, 51, 58, 0.08);
    box-shadow: 0 20px 30px rgba(18, 51, 58, 0.12);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 16px; }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
