/* ═══════════════════════════════════════════
   MKAPPERS — KAPSALON REEUWIJK
   Design: warm off-white + dusty blue + sand
   Fonts: Playfair Display + Inter
═══════════════════════════════════════════ */

/* ── Custom properties ───────────────────── */
:root {
  --color-bg:       #f5f5f0;
  --color-text:     #2c2c2c;
  --color-accent:   #7a9aaa;
  --color-accent-dk:#5a7a8a;
  --color-sand:     #d4c5b0;
  --color-sand-lt:  #ede5d8;
  --color-muted:    #6b6b6b;
  --color-white:    #ffffff;
  --color-border:   #ddd8cf;

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

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(44,44,44,.08);
  --shadow-md:  0 6px 24px rgba(44,44,44,.12);

  --transition: 0.25s ease;

  --header-h: 72px;
}

/* ── Reset ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* Screen-reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Container ───────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: background var(--transition), color var(--transition),
              transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(122,154,170,.35);
}
.btn-primary:hover {
  background: var(--color-accent-dk);
  box-shadow: 0 6px 20px rgba(122,154,170,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent-dk);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-white);
}

.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-full { width: 100%; }

/* ── Header ──────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(245,245,240,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 900;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.brand-m { color: var(--color-accent); }
.brand-rest { color: var(--color-text); }

.desktop-nav { margin-left: auto; }
.desktop-nav ul {
  display: flex;
  gap: 2px;
}
.desktop-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color var(--transition), background var(--transition);
}
.desktop-nav a:hover {
  color: var(--color-accent);
  background: rgba(122,154,170,.08);
}

.header-cta { font-size: .875rem; padding: 10px 22px; flex-shrink: 0; }

/* ── Mobile menu trigger ─────────────────── */
.mobile-menu__trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background var(--transition);
}
.mobile-menu__trigger:hover { background: rgba(122,154,170,.1); }
.hamburger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.mobile-menu__trigger[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu overlay ─────────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  height: 100dvh;
  background: var(--color-bg);
  z-index: 950;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}
.mobile-menu__overlay.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu__backdrop {
  display: none;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--header-h);
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.mobile-menu__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}
.mobile-menu__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu__close:hover {
  background: rgba(122,154,170,.1);
  color: var(--color-accent);
}

.mobile-menu__list {
  padding: 32px 24px 24px;
  flex: 1;
}
.mobile-menu__list li { border-bottom: 1px solid var(--color-border); }
.mobile-menu__item {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-text);
  transition: color var(--transition), padding-left var(--transition);
  letter-spacing: -.01em;
}
.mobile-menu__item:hover { color: var(--color-accent); padding-left: 8px; }

.mobile-cta {
  margin: 8px 24px 40px;
  text-align: center;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  margin-top: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44,44,44,.65) 0%,
    rgba(44,44,44,.35) 60%,
    rgba(122,154,170,.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: calc(var(--header-h) + 24px) clamp(16px,5vw,48px) 48px;
  margin: 0 auto 0 clamp(16px,5vw,calc((100vw - 1160px)/2 + 48px));
  color: var(--color-white);
}
.hero__eyebrow {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  opacity: .92;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ── Sections ────────────────────────────── */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section--light { background: var(--color-bg); }
.section--sand  { background: var(--color-sand-lt); }
.section--accent-bg { background: var(--color-accent); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section-label--light { color: rgba(255,255,255,.75); }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-intro {
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* ── Card grid ───────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
  /* Always visible — no JS opacity trick */
  opacity: 1;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
}
.card__text {
  color: var(--color-muted);
  font-size: .9rem;
  line-height: 1.65;
}

/* ── Review cards ────────────────────────── */
.card-grid--reviews {
  grid-template-columns: repeat(3, 1fr);
}
.card--review {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--color-white);
  box-shadow: none;
  opacity: 1;
}
.card--review:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-3px);
}
.card__stars { color: #f5c842; font-size: 1.1rem; margin-bottom: 14px; }
.card__quote p {
  font-size: .975rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  color: rgba(255,255,255,.92);
}
.card__reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}
.card__reviewer strong {
  display: block;
  font-size: .9rem;
}
.card__reviewer span {
  font-size: .8rem;
  opacity: .7;
}

/* Reviews section header */
.reviews-title { color: var(--color-white); }
.section-header--light h2 { color: var(--color-white); }
.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.reviews-stars { color: #f5c842; font-size: 1.3rem; }
.reviews-avg {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white);
}
.reviews-count {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}

/* ── CTA band ────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--color-accent-dk) 0%, #4a6a7a 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}
.cta-band__content { flex: 1; min-width: 240px; }
.cta-band__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}
.cta-band__text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-white);
  font-weight: 400;
  line-height: 1.3;
}
.cta-band__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── Over ons ────────────────────────────── */
.over-ons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.over-ons__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.over-ons__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.over-ons__image:hover img { transform: scale(1.03); }

.over-ons__content .section-label { display: block; margin-bottom: 12px; }
.over-ons__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.over-ons__content p {
  color: var(--color-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.over-ons__content strong { color: var(--color-text); }

.over-ons__badges {
  display: flex;
  gap: 24px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  min-width: 90px;
}
.badge__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.badge__label {
  font-size: .75rem;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 6px;
  text-align: center;
  white-space: nowrap;
}

.maria-nila-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  max-width: 360px;
}
.maria-nila__img {
  width: 72px; height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.maria-nila__label {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}
.maria-nila__sub {
  display: block;
  font-size: .8rem;
  color: var(--color-muted);
}

/* ── Openingstijden ──────────────────────── */
.openingstijden__wrap { max-width: 560px; margin: 0 auto; }
.openingstijden__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-row th,
.hours-row td {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: .95rem;
}
.hours-row:last-child th,
.hours-row:last-child td { border-bottom: none; }
.hours-row th {
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  width: 40%;
}
.hours-row td {
  text-align: right;
  color: var(--color-muted);
}
.hours-row--closed td { color: #b0b0a0; }
.hours-row--saturday th,
.hours-row--saturday td {
  color: var(--color-accent-dk);
  font-weight: 600;
}
.badge-closed {
  background: var(--color-sand-lt);
  color: #888;
  font-size: .78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hours-note {
  margin-top: 20px;
  font-size: .85rem;
  color: var(--color-muted);
  line-height: 1.6;
}
.hours-note a { color: var(--color-accent); }
.hours-note a:hover { text-decoration: underline; }

/* ── Contact ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 1; /* always visible */
}
.contact-icon {
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-muted);
  margin-bottom: 2px;
}
.contact-item a { color: var(--color-text); transition: color var(--transition); }
.contact-item a:hover { color: var(--color-accent); }

/* Locatie kaart (static image, always renders) */
.locatie-kaart {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
}
.locatie-kaart__link {
  display: block;
  position: relative;
}
.locatie-kaart__img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.locatie-kaart__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(44,44,44,.7) 0%, transparent 100%);
  padding: 20px 16px 14px;
}
.locatie-kaart__cta {
  color: var(--color-white);
  font-size: .85rem;
  font-weight: 600;
  display: block;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--color-text);
}
.contact-form-wrap {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: .02em;
}
.form-group label span { color: var(--color-accent); }
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(122,154,170,.2);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ──────────────────────────────── */
.footer-kit {
  background: var(--color-text);
  color: rgba(255,255,255,.8);
}
.footer-kit__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 48px;
}
.footer-brand__name { color: var(--color-white); }
.footer-brand__name .brand-m { color: var(--color-accent); }
.footer-tagline {
  font-size: .85rem;
  margin-top: 8px;
  opacity: .65;
  font-style: italic;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.footer-col p,
.footer-col address p { font-size: .85rem; line-height: 2; }
.footer-col a { opacity: .8; transition: opacity var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--color-sand); }
.footer-col ul li a {
  font-size: .85rem;
  display: block;
  padding: 4px 0;
  opacity: .8;
}
.footer-col ul li a:hover { opacity: 1; color: var(--color-sand); }

.footer-kit__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-kit__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-kit__bottom p { font-size: .78rem; opacity: .5; }
.footer-kit__bottom a { opacity: .7; transition: opacity var(--transition); }
.footer-kit__bottom a:hover { opacity: 1; color: var(--color-sand); }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */

/* ─ Tablet (≤ 900px) ─ */
@media (max-width: 900px) {
  .over-ons__grid { grid-template-columns: 1fr; }
  .over-ons__image { max-width: 540px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-kit__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .header-cta { display: none; }
  .card-grid--reviews { grid-template-columns: 1fr; }
}

/* ─ Mobile (≤ 640px) ─ */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

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

  .hero { height: 100svh; min-height: 500px; }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hero__content {
    margin-left: 0;
    padding: calc(var(--header-h) + 32px) 20px 40px;
  }

  .card-grid { grid-template-columns: 1fr; }
  .card-grid--reviews { grid-template-columns: 1fr; }

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

  .over-ons__badges { justify-content: center; }
  .maria-nila-badge { max-width: 100%; }

  .footer-kit__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-kit__bottom-inner { flex-direction: column; text-align: center; }
}

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