/* ============================================================
   Kliniek voor Dieren Woerden , Demo Site Stylesheet
   Brand: #F5C800 (yellow), #00A878 (teal), #1A1A2E (dark)
   Font: DM Sans
   ============================================================ */

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

:root {
  --yellow: #F5C800;
  --yellow-dark: #d9b100;
  --teal: #00A878;
  --teal-dark: #007a58;
  --dark: #1A1A2E;
  --dark-2: #2c2c44;
  --body: #3d3d55;
  --grey-bg: #F4F4F4;
  --white: #FFFFFF;
  --border: #e4e4e4;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,.08);
  --shadow-md: 0 4px 32px rgba(0,0,0,.12);
  --nav-h: 72px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

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

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

/* ---------- Global fill safeguard ---------- */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ---------- Container ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.btn--teal  { background: var(--teal);   color: #fff; border-color: var(--teal); }
.btn--teal:hover  { background: var(--teal-dark); border-color: var(--teal-dark); }

.btn--yellow { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.btn--yellow:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); }

.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }

.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ---------- Cookie Bar ---------- */
.cookie-bar {
  background: var(--dark);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 200;
  position: relative;
}
.cookie-bar__accept {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  border-radius: 20px;
  padding: 6px 16px;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  font-family: var(--font);
  flex-shrink: 0;
}

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo__icon { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo__text {
  font-size: .9rem;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 500;
}
.nav-logo__text strong { display: block; font-size: 1rem; font-weight: 800; }

.nav-desktop { margin-left: auto; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-link:hover { background: var(--grey-bg); color: var(--teal); }

/* Dropdown */
.nav-item--has-sub { position: relative; }
.nav-submenu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 240px;
  list-style: none;
  padding: 8px;
  z-index: 200;
}
.nav-item--has-sub:hover .nav-submenu,
.nav-item--has-sub:focus-within .nav-submenu { display: block; }
.nav-submenu__link {
  display: block;
  padding: 10px 16px;
  font-size: .9rem;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
}
.nav-submenu__link:hover { background: var(--grey-bg); color: var(--teal); }

.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: .9rem; flex-shrink: 0; }

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

/* ---------- Mobile Menu Overlay ---------- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--white);
  z-index: 500;
  display: flex;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.mobile-menu__overlay:not([aria-hidden="true"]) {
  pointer-events: all;
  opacity: 1;
}

.mobile-menu__backdrop {
  display: none;
}

.mobile-menu__panel {
  position: absolute;
  inset: 0;
  background: var(--white);
  display: flex;
  flex-direction: column;
  padding: 0 0 32px;
  overflow-y: auto;
  transition: transform .28s ease;
}
.mobile-menu__panel--root { transform: translateX(0); }
.mobile-menu__panel--sub { transform: translateX(100%); }
.mobile-menu__panel--sub.is-active { transform: translateX(0); }
.mobile-menu__panel--root.is-pushed { transform: translateX(-100%); }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__title { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.mobile-menu__close {
  background: none; border: none; cursor: pointer; padding: 4px; color: var(--dark);
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.mobile-menu__close:hover { background: var(--grey-bg); }

.mobile-menu__list { list-style: none; padding: 16px 16px 0; flex: 1; }
.mobile-menu__list li + li { border-top: 1px solid var(--border); }
.mobile-menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  text-decoration: none;
  transition: background .15s, color .15s;
  min-height: 44px;
}
.mobile-menu__item:hover { background: var(--grey-bg); color: var(--teal); }

.mobile-menu__cta {
  margin: 24px 16px 0;
  justify-content: center;
}

.mobile-menu__back {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 24px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  font-family: var(--font);
  width: 100%;
  text-align: left;
  min-height: 60px;
}
.mobile-menu__back:hover { background: var(--grey-bg); }

.mobile-menu__sub-title {
  padding: 16px 24px 0;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,46,.72) 0%,
    rgba(0,168,120,.25) 60%,
    rgba(26,26,46,.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,.15);
  border: 1px solid rgba(245,200,0,.4);
  color: var(--yellow);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--dark);
  padding: 20px 0;
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: .9rem;
  font-weight: 500;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section--white { background: var(--white); }
.section--grey { background: var(--grey-bg); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--teal);
  background: rgba(0,168,120,.1);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.65;
}

.section-body {
  font-size: 1rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ---------- About Section ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img { position: relative; }
.about-img__frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.about-img__frame img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-img__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.badge-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

.about-text .section-label { display: inline-block; margin-bottom: 12px; }
.about-text .section-title { margin-bottom: 20px; }

.about-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--body);
}
.about-list svg { flex-shrink: 0; margin-top: 2px; }

/* ---------- Card Grid ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(0,168,120,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card__body {
  font-size: .9rem;
  color: var(--body);
  line-height: 1.65;
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(0,168,120,.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band__text { flex: 1; min-width: 280px; }
.cta-band__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-band__body {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  max-width: 500px;
}
.cta-band__actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- Clinic Section ---------- */
.clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.clinic-img__frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}
.clinic-img__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clinic-text .section-label { display: inline-block; margin-bottom: 12px; }
.clinic-text .section-title { margin-bottom: 20px; }

.clinic-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}
.stat__label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--body);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

/* ---------- Reviews ---------- */
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 50px;
  margin-top: 12px;
}
.google-rating__score { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.star-row { display: flex; gap: 2px; }
.star-row svg { width: 16px; height: 16px; }
.google-rating__label { font-size: .85rem; color: var(--body); }

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-card__stars { display: flex; gap: 3px; }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__quote {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  font-style: normal;
}
.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), #00c994);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-block {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-block__icon {
  width: 44px;
  height: 44px;
  background: rgba(0,168,120,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-block strong {
  display: block;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact-block p { font-size: .95rem; color: var(--body); margin: 0; }
.contact-link {
  font-size: .95rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  display: block;
}
.contact-link:hover { text-decoration: underline; }

.hours-table { border-collapse: collapse; font-size: .9rem; color: var(--body); margin-top: 4px; }
.hours-table td { padding: 3px 12px 3px 0; }
.hours-table td:last-child { font-weight: 600; color: var(--dark); }

/* Contact Form */
.contact-form {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0; }
.form-row .form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,120,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
.footer-kit {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: 1180px;
  margin: 0 auto;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 12px;
  text-decoration: none;
}
.footer-kit__tagline {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 4px;
  font-style: italic;
}
.footer-kit__since {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-kit__col h4 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-kit__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-kit__col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .15s;
}
.footer-kit__col ul a:hover { color: var(--yellow); }
.footer-kit__col address { font-style: normal; display: flex; flex-direction: column; gap: 8px; }
.footer-kit__col address p { font-size: .9rem; }
.footer-kit__col address a { font-size: .9rem; color: rgba(255,255,255,.65); transition: color .15s; }
.footer-kit__col address a:hover { color: var(--yellow); }
.footer-hours { margin-top: 12px; }
.footer-hours p { font-size: .85rem; color: rgba(255,255,255,.5); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-kit__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-kit__bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-kit__credit a { color: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .about-grid,
  .clinic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-img__badge { bottom: 16px; right: 16px; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Nav */
  .nav-desktop { display: none; }
  .nav-cta { display: none; }
  .mobile-menu__trigger { display: flex; }
  .nav-inner { gap: 0; }

  /* Mobile menu trigger animation */
  .mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu__trigger[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__content { padding-top: 60px; padding-bottom: 60px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }

  /* Trust bar */
  .trust-bar__inner { gap: 16px; }
  .trust-bar__item { font-size: .82rem; }

  /* Cards */
  .card-grid--3,
  .card-grid--2 { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band__actions { justify-content: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 20px; }

  /* About badge */
  .about-img__badge { display: none; }

  /* Clinic stats */
  .clinic-stats { gap: 24px; justify-content: center; }

  /* Footer */
  .footer-kit__inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 32px; }
  .footer-kit__bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero__title { font-size: 2.2rem; }
  .section-title { font-size: 1.7rem; }
  .cta-band { padding: 52px 0; }
  .cookie-bar { font-size: .8rem; gap: 12px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================================
   Additional polish (post-review)
   ============================================================ */

/* Transparent nav when at top of hero */
.site-nav--transparent {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.site-nav--transparent .nav-link { color: #fff; }
.site-nav--transparent .nav-logo__text { color: #fff; }
.site-nav--transparent .hamburger span { background: #fff; }

/* Better mobile card readability */
@media (max-width: 768px) {
  .card { padding: 24px 20px; }
  .card__title { font-size: 1rem; }
  .card__body { font-size: .92rem; }
  .card__icon-wrap { width: 46px; height: 46px; margin-bottom: 16px; }
  .stat__number { font-size: 1.8rem; }
  .stat__label { font-size: .75rem; }
}

/* favicon.ico fallback — add to head via HTML update */

/* Card yellow accent top bar */
.card { border-top: 3px solid var(--teal); }
.section--white .card { border-top-color: var(--yellow); }
.section--grey .card { border-top: 3px solid var(--teal); }
