/* Map image */
.contact__map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--grey-border); }
.contact__map-link { display: block; text-decoration: none; }
.contact__map-img {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.contact__map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.contact__map-link:hover .contact__map-img img { transform: scale(1.03); }
.contact__map-pin {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: 50px;
  padding: 6px 14px 6px 8px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.contact__map-pin svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Map link */
.map__link {
  margin-top: 8px;
  font-size: 0.83rem;
  text-align: right;
}
.map__link a { color: var(--blue-accent); font-weight: 600; }
.map__link a:hover { text-decoration: underline; }

/* ===========================
   RAYER HEALTH CENTER — CSS
   =========================== */

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

:root {
  --blue-deep:    #1A3A5C;
  --blue-mid:     #1E4A75;
  --blue-accent:  #4AA8D8;
  --blue-light:   #D6EDFA;
  --white:        #FFFFFF;
  --grey-bg:      #F5F7FA;
  --grey-border:  #E2E8EF;
  --grey-text:    #4A5568;
  --grey-muted:   #718096;
  --text:         #1A202C;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(26,58,92,.10);
  --shadow-lg:  0 8px 40px rgba(26,58,92,.14);

  --nav-h:      72px;
  --section-py: 88px;
  --section-py-sm: 56px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* overflow lock when mobile menu is open */
body.menu-open { overflow: hidden; }

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

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

/* Image fill utility — avoids letterboxing */
.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; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--blue-deep);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--grey-text); }

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg { padding: 15px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; border-radius: var(--radius-md); }

.btn--primary {
  background: var(--blue-accent);
  color: var(--white);
  border-color: var(--blue-accent);
}
.btn--primary:hover {
  background: #3595c2;
  border-color: #3595c2;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74,168,216,.35);
}

.btn--ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--blue-deep);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--grey-bg);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

/* ---- Sections ---- */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--grey-bg); }
.section--blue {
  background: var(--blue-deep);
  color: var(--white);
}
.section--blue h2,
.section--blue h3,
.section--blue h4 { color: var(--white); }

/* Section header */
.section-header { text-align: center; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header--light .section-sub { color: rgba(255,255,255,.75); }
.section-header--light h2 { color: var(--white); }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 10px;
}
.section-label--light { color: var(--blue-accent); }
.section-sub { margin-top: 14px; font-size: 1.05rem; }
.section-sub--light { color: rgba(255,255,255,.75); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-border);
  transition: box-shadow .2s;
}
.site-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  text-decoration: none;
}
.logo__icon, .logo svg { width: 34px; height: 34px; flex-shrink: 0; }
.logo__text, .logo span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 400;
  color: var(--blue-deep);
}
.logo__text strong, .logo span strong { font-weight: 700; }

.desktop-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.desktop-nav a {
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-text);
  border-radius: 50px;
  transition: color .18s, background .18s;
}
.desktop-nav a:hover { color: var(--blue-deep); background: var(--grey-bg); }
.desktop-nav .nav-cta {
  background: var(--blue-deep);
  color: var(--white);
  padding: 9px 20px;
}
.desktop-nav .nav-cta:hover { background: var(--blue-mid); color: var(--white); }

/* ---- HAMBURGER ---- */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger { display: flex; flex-direction: column; gap: 5px; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}

/* ---- MOBILE MENU OVERLAY ---- */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--white);
  z-index: 1200;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  visibility: hidden;
}
.mobile-menu__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu__panel { min-height: 100%; display: flex; flex-direction: column; padding: 0; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--grey-border);
}
.mobile-logo { gap: 10px; font-size: 0.95rem; }
.mobile-logo svg { width: 32px; height: 32px; }

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--blue-deep);
  border-radius: var(--radius-sm);
}
.mobile-menu__close svg { width: 24px; height: 24px; display: block; }

.mobile-menu__list {
  list-style: none;
  padding: 24px 0;
  flex: 1;
}
.mobile-menu__item {
  display: block;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blue-deep);
  border-bottom: 1px solid var(--grey-border);
  transition: background .15s, color .15s;
  text-decoration: none;
}
.mobile-menu__item:hover { background: var(--grey-bg); }
.mobile-menu__item--cta {
  margin: 20px 24px;
  padding: 16px 24px;
  background: var(--blue-accent);
  color: var(--white);
  border-radius: 50px;
  text-align: center;
  border-bottom: none;
}
.mobile-menu__item--cta:hover { background: #3595c2; color: var(--white); }

.mobile-menu__footer {
  padding: 24px 32px;
  border-top: 1px solid var(--grey-border);
  background: var(--grey-bg);
}
.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.mobile-contact-link svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26,58,92,.82) 0%,
    rgba(26,58,92,.55) 55%,
    rgba(26,58,92,.20) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 680px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(74,168,216,.15);
  border: 1px solid rgba(74,168,216,.35);
  border-radius: 50px;
}
.hero__title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.hero__sub {
  color: rgba(255,255,255,.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
}
.hero__trust svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-accent); }
.br-hide { display: inline; }

/* ---- CARD GRID ---- */
.card-grid { display: grid; gap: 24px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); align-items: stretch; }

.card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon { width: 26px; height: 26px; color: var(--blue-deep); }

.card__title {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.card__text { font-size: 0.92rem; line-height: 1.65; }

/* Mobile card enhancement */
@media (max-width: 768px) {
  .card {
    border-left: 3px solid var(--blue-accent);
    padding: 22px 20px;
  }
  .card + .card { margin-top: 0; }
}

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

.about__media {
  position: relative;
}
.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--blue-accent);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-heading);
}
.about__badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about__badge span  { font-size: 0.78rem; font-weight: 500; opacity: .9; }

.about__content h2 { margin-bottom: 16px; }
.about__content p  { margin-bottom: 16px; font-size: 0.97rem; }

.about__features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.about__feature svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

/* ---- JOURNEY ---- */
.journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 64px;
}

.journey__step {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.journey__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(74,168,216,.3);
  line-height: 1;
  margin-bottom: 16px;
}
.journey__icon {
  width: 52px;
  height: 52px;
  background: rgba(74,168,216,.15);
  border: 1px solid rgba(74,168,216,.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.journey__icon svg { width: 24px; height: 24px; color: var(--blue-accent); }
.journey__step h3 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.journey__step p { color: rgba(255,255,255,.7); font-size: 0.88rem; }

.journey__connector {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  color: rgba(74,168,216,.5);
}
.journey__connector::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: rgba(74,168,216,.35);
  border-radius: 2px;
}

/* ---- USPs ---- */
.usps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usp {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.usp__icon { width: 52px; height: 52px; margin: 0 auto 16px; }
.usp__icon svg { width: 100%; height: 100%; }
.usp h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.usp p { font-size: 0.88rem; color: rgba(255,255,255,.7); }

/* ---- PHOTO BAND ---- */
.section--photo-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.photo-band__media {
  position: absolute;
  inset: 0;
}
.photo-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,.85) 0%, rgba(26,58,92,.65) 100%);
}
.photo-band__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.photo-band__content h2 { color: var(--white); margin-bottom: 16px; }
.photo-band__content p  { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; }

/* ---- HOURS ---- */
.hours__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.hours__content h2 { margin-bottom: 16px; }
.hours__content p  { margin-bottom: 28px; font-size: 0.97rem; }

.hours__table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
}
.hours__table { width: 100%; border-collapse: collapse; }
.hours__table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-border);
  font-size: 0.92rem;
}
.hours__table tr:last-child td { border-bottom: none; }
.hours__day { font-weight: 600; color: var(--text); width: 44%; }
.hours__time { color: var(--grey-text); }
.hours__status {
  text-align: right;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 3px 10px;
}
.hours__status--open    { color: #1A7A4A; background: #DFFAED; }
.hours__status--afspraak{ color: #975A00; background: #FEF3CD; }
.hours__status--closed  { color: #9B1C1C; background: #FEE2E2; }
.hours__row--closed td  { opacity: .65; }

.hours__note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.84rem;
  color: var(--grey-muted);
  padding-top: 20px;
  border-top: 1px solid var(--grey-border);
}
.hours__note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.hours__note a { color: var(--blue-accent); font-weight: 600; }

/* ---- CONTACT ---- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact__info h2 { margin-bottom: 14px; }
.contact__info p { margin-bottom: 24px; font-size: 0.97rem; }

.contact__details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact__detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 18px; height: 18px; color: var(--blue-deep); }
.contact__detail strong { display: block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--grey-muted); margin-bottom: 2px; }
.contact__detail span, .contact__detail a { font-size: 0.92rem; color: var(--text); }
.contact__detail a:hover { color: var(--blue-accent); }

.contact__map { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ---- CONTACT FORM ---- */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--grey-border);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; gap: 18px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .02em;
}
.req { color: var(--blue-accent); }

.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .18s, box-shadow .18s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(74,168,216,.15);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px; cursor: pointer; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--grey-muted);
  text-align: center;
  margin-top: -4px;
}

.form-success {
  text-align: center;
  padding: 40px;
}
.form-success__icon { margin: 0 auto 16px; width: 56px; height: 56px; }
.form-success__icon svg { width: 100%; height: 100%; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }

/* ---- FOOTER ---- */
.footer-kit {
  background: var(--blue-deep);
  color: rgba(255,255,255,.75);
  padding-top: 72px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand .logo--footer span { color: rgba(255,255,255,.9); font-size: 1.02rem; }
.footer__brand .logo--footer svg { width: 36px; height: 36px; }
.footer__brand p { font-size: 0.88rem; margin-top: 16px; color: rgba(255,255,255,.55); line-height: 1.7; }

.footer__col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}
.footer__col ul li a:hover { color: var(--white); }

.footer__hours li {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  padding: 4px 0;
  gap: 12px;
}

.footer__col address { font-style: normal; display: flex; flex-direction: column; gap: 12px; }
.footer__col address p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
}
.footer__col address svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; opacity: .6; }
.footer__col address a { color: rgba(255,255,255,.55); }
.footer__col address a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.35);
}
.footer__bottom a { color: rgba(255,255,255,.5); }
.footer__bottom a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .about__grid { gap: 48px; }
  .hours__grid, .contact__grid { gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .journey { grid-template-columns: 1fr; gap: 16px; }
  .journey__connector { display: none; }
}

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

  .desktop-nav { display: none; }
  .mobile-menu__trigger { display: flex; }

  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .br-hide { display: none; }

  .hero { min-height: 100svh; min-height: 100vh; }
  .hero__content { max-width: 100%; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__trust { gap: 14px; }

  .card-grid--3 { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 24px 20px; }

  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { bottom: -12px; right: 12px; padding: 14px 18px; }
  .about__badge strong { font-size: 1.6rem; }

  .usps { grid-template-columns: 1fr; gap: 16px; }
  .usp { padding: 22px 18px; }

  .hours__grid { grid-template-columns: 1fr; gap: 36px; }
  .hours__table-wrap { padding: 22px 18px; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact__form-wrap { padding: 26px 18px; }
  .form-row--2 { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; padding-bottom: 40px; }
  .footer__bottom .container { flex-direction: column; text-align: center; }

  .photo-band__content { padding: 0 20px; }

  .section-header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__trust { flex-direction: column; gap: 8px; }
  .about__badge { right: 8px; }
}

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