/* ============================================================
   HAPPY FOOT CARE — modern wellness design
   Palette: deep teal + warm cream + terracotta accent
   ============================================================ */
:root {
  --teal-950: #0b3d3b;
  --teal-900: #115e59;
  --teal-800: #134e4a;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-100: #ccfbf1;
  --teal-50: #f0fdfa;
  --cream: #faf6f0;
  --sand: #f1e9dd;
  --coral: #e07a5f;
  --coral-soft: #f7e1d8;
  --ink: #22302f;
  --muted: #5c6b6a;
  --faint: #93a1a0;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 8px 24px -8px rgba(15, 118, 110, 0.18);
  --shadow-lg: 0 24px 48px -16px rgba(15, 118, 110, 0.28);
  --font-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--teal-950); font-weight: 800; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.05rem; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.icon { width: 1em; height: 1em; flex-shrink: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--teal-700); color: #fff; box-shadow: 0 8px 20px -8px rgba(15, 118, 110, 0.55); }
.btn-primary:hover { background: var(--teal-800); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; color: var(--teal-800); border-color: var(--teal-700); }
.btn-ghost:hover { background: var(--teal-50); }
.btn-light { background: #fff; color: var(--teal-800); }
.btn-light:hover { background: var(--teal-50); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Eyebrow / section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-700);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }

.section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .lead { margin-top: 14px; }
.lead { font-size: 1.1rem; color: var(--muted); }
.body { color: var(--muted); margin-top: 10px; }

/* ---------- Topbar ---------- */
.topbar { background: var(--teal-950); color: #cfe3e1; font-size: 0.82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 16px; }
.topbar-links { display: flex; gap: 22px; }
.topbar-link { display: inline-flex; align-items: center; gap: 7px; transition: color 0.15s; }
.topbar-link:hover { color: #fff; }
.topbar-link .icon { width: 13px; height: 13px; color: var(--teal-100); }
.topbar-note { display: flex; align-items: center; gap: 7px; }
.topbar-note .icon { width: 13px; height: 13px; color: var(--teal-100); }
.topbar-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--coral); margin: 0 6px; }

/* ---------- Navbar ---------- */
.navbar { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid #eee5d8; position: sticky; top: 0; z-index: 50; transition: box-shadow 0.2s; }
.navbar.scrolled { box-shadow: 0 4px 20px rgba(16, 24, 40, 0.08); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--teal-900); letter-spacing: -0.01em; }
.brand-tag { font-size: 0.7rem; font-weight: 600; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 9px 14px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: var(--ink);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover { background: var(--teal-50); color: var(--teal-800); }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--teal-900); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--cream) 0%, #fdfaf5 100%); padding: 84px 0 110px; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy h1 { margin: 18px 0 20px; }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 30em; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.badge-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 1px solid #e7ddcd; border-radius: 999px;
  padding: 8px 15px; font-size: 0.82rem; font-weight: 600; color: var(--teal-900);
  box-shadow: var(--shadow-sm);
}
.badge-chip .icon { width: 14px; height: 14px; color: var(--teal-600); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-frame { position: relative; width: min(400px, 88vw); }
.hero-slider { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 999px 999px 28px 28px; box-shadow: var(--shadow-lg); border: 6px solid #fff; background: var(--cream); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
/* Certificate/plaque slide: frame the full square image on a soft backdrop
   instead of cropping it into the 4:5 frame. */
.hero-slide-cert { background: linear-gradient(180deg, #fdfbf7 0%, #f2ecdf 100%); display: flex; align-items: center; justify-content: center; padding: 18px; }
.hero-slide-cert img { object-fit: contain; border-radius: 10px; box-shadow: 0 18px 40px -14px rgba(22, 32, 36, 0.4); }
.hero-slider-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.hero-slider-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.65); transition: background 0.3s, transform 0.3s; cursor: pointer; }
.hero-slider-dots .dot.is-active { background: #fff; transform: scale(1.25); }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 14px; padding: 11px 16px;
  box-shadow: var(--shadow-md); font-size: 0.8rem;
  animation: float 5s ease-in-out infinite;
}
.float-card small { display: block; color: var(--faint); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.float-card strong { color: var(--teal-900); font-family: var(--font-head); }
.float-icon { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: var(--teal-50); color: var(--teal-700); }
.float-icon .icon { width: 18px; height: 18px; }
.float-card-1 { top: 14%; left: -18px; animation-delay: 0.4s; }
.float-card-2 { bottom: 10%; right: -14px; animation-delay: 1.1s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.5; z-index: 1; }
.hero-blob-1 { width: 420px; height: 420px; background: var(--teal-100); top: -120px; right: -80px; }
.hero-blob-2 { width: 320px; height: 320px; background: var(--coral-soft); bottom: -120px; left: -60px; }

/* ---------- About ---------- */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-photo { position: relative; width: min(380px, 90%); }
.about-slider { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-md); background: var(--cream); }
.about-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; }
.about-slide.is-active { opacity: 1; }
.about-slide img { width: 100%; height: 100%; object-fit: cover; }
/* Certificate/plaque slides: frame fully instead of cropping. */
.about-slide-cert { background: linear-gradient(180deg, #fdfbf7 0%, #f2ecdf 100%); display: flex; align-items: center; justify-content: center; padding: 16px; }
.about-slide-cert img { object-fit: contain; border-radius: 10px; box-shadow: 0 14px 32px -14px rgba(22, 32, 36, 0.4); }
.about-slider-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; z-index: 3; }
.about-slider-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.65); border: 1px solid rgba(15, 118, 110, 0.25); transition: background 0.3s, transform 0.3s; cursor: pointer; }
.about-slider-dots .dot.is-active { background: var(--teal-700); transform: scale(1.25); }
.about-stamp {
  position: absolute; bottom: -22px; right: -16px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--coral); color: #fff; border-radius: 18px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.about-stamp .icon { width: 22px; height: 22px; }
.about-stamp strong { font-family: var(--font-head); font-size: 0.82rem; line-height: 1.25; }

.about-copy h2 { margin: 14px 0 16px; }
.credential-list { margin-top: 24px; display: grid; gap: 12px; }
.credential-list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink); font-size: 0.95rem; font-weight: 500; }
.credential-list .icon { width: 19px; height: 19px; color: var(--teal-600); margin-top: 2px; }
.about-sign { margin-top: 28px; padding-top: 20px; border-top: 2px solid var(--sand); }
.about-sign strong { font-family: var(--font-head); display: block; color: var(--teal-900); }
.about-sign span { font-size: 0.85rem; color: var(--faint); }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid #eee5d8; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.service-icon {
  display: grid; place-items: center; width: 54px; height: 54px;
  border-radius: 16px; background: var(--teal-50); color: var(--teal-700);
  margin-bottom: 18px;
}
.service-icon .icon { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--muted); }
.services-cta { margin-top: 40px; text-align: center; color: var(--muted); }
.services-cta a { color: var(--teal-700); font-weight: 700; }

/* ---------- Reflex band ---------- */
.reflex { background: linear-gradient(120deg, var(--teal-900), var(--teal-700)); position: relative; overflow: hidden; }
.reflex::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 45%); }
.reflex-inner { position: relative; z-index: 2; display: flex; gap: 34px; align-items: center; color: #e6f4f2; }
.reflex-icon {
  flex-shrink: 0; display: grid; place-items: center;
  width: 84px; height: 84px; border-radius: 24px;
  background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2);
}
.reflex-icon .icon { width: 40px; height: 40px; }
.reflex-badge {
  display: inline-block; background: var(--coral); color: #fff;
  border-radius: 999px; padding: 5px 14px; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.reflex h2 { color: #fff; margin-bottom: 10px; }
.reflex p { max-width: 62ch; color: #d3e8e5; }
.reflex .btn { margin-top: 22px; }

/* ---------- Home visit ---------- */
.homevisit { background: #fff; }
.homevisit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card {
  background: var(--cream); border-radius: var(--radius); padding: 32px 30px;
  border: 1px solid #eee5d8;
}
.info-icon {
  display: grid; place-items: center; width: 48px; height: 48px;
  border-radius: 14px; background: #fff; color: var(--teal-700);
  box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.info-icon .icon { width: 22px; height: 22px; }
.info-card h3 { margin-bottom: 8px; }
.info-card p { font-size: 0.92rem; color: var(--muted); }
.tel-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-weight: 700; color: var(--teal-800); font-family: var(--font-head); }
.tel-link .icon { width: 16px; height: 16px; }

.note-banner {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px; background: #fef6e9; border: 1px solid #f3dfb8;
  border-radius: var(--radius-sm); padding: 16px 22px; color: #8a6420;
  font-weight: 600; font-size: 0.95rem;
}
.note-banner .icon { width: 22px; height: 22px; color: #d99a2b; flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 14px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #eee5d8; border-radius: var(--radius-sm);
  padding: 16px 20px; transition: transform 0.15s, box-shadow 0.2s;
}
.contact-row:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact-row-icon {
  display: grid; place-items: center; width: 42px; height: 42px;
  border-radius: 12px; background: var(--teal-50); color: var(--teal-700);
}
.contact-row-icon .icon { width: 20px; height: 20px; }
.contact-row strong { display: block; font-family: var(--font-head); color: var(--teal-900); font-size: 0.9rem; }
.contact-row small { color: var(--muted); font-size: 0.92rem; }
.contact-map { margin-top: 6px; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid #eee5d8; }
.contact-map iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form {
  background: #fff; border-radius: var(--radius); padding: 34px;
  border: 1px solid #eee5d8; box-shadow: var(--shadow-md);
  display: grid; gap: 18px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field label { display: block; font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; margin-bottom: 7px; color: var(--teal-900); }
.form-field input, .form-field textarea {
  width: 100%; border: 1.5px solid #e3d9c9; border-radius: 10px;
  padding: 11px 14px; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: #fdfbf8; transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15); background: #fff;
}
.form-field textarea { resize: vertical; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }

/* ---------- Alerts ---------- */
.alert { border-radius: var(--radius-sm); padding: 14px 18px; margin-bottom: 22px; font-weight: 600; font-size: 0.92rem; }
.alert-success { background: #e7f6ee; border: 1px solid #bcdcc9; color: #1d6b41; }
.alert-error { background: #fdeeee; border: 1px solid #f2c9c9; color: #a33a3a; }

/* ---------- Page hero (subpages) ---------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(160deg, var(--cream), #fdfaf5); padding: 64px 0 72px; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { margin: 14px 0 10px; }
.page-hero-blob { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: var(--teal-100); filter: blur(50px); opacity: 0.5; top: -90px; right: -60px; }

/* ---------- Producten page ---------- */
.product-section { max-width: none; }
.product-section h2 { margin: 14px 0 16px; }
.product-points { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0 22px; }

/* ---------- Reflex page ---------- */
.reflex-page { max-width: none; }
.reflex-page h2 { margin: 14px 0 16px; }
.reflex-row { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 48px; align-items: start; margin-top: 40px; }
.reflex-benefits { background: var(--cream); border: 1px solid #eee5d8; border-radius: var(--radius); padding: 28px 30px; }
.reflex-benefits h3 { margin-bottom: 18px; color: var(--teal-900); }
.reflex-aside { position: sticky; top: 96px; }
.reflex-card { border-radius: var(--radius); overflow: hidden; border: 1px solid #eee5d8; box-shadow: var(--shadow-md); }
.reflex-card img { width: 100%; height: auto; display: block; }
@media (max-width: 980px) {
  .reflex-row { grid-template-columns: 1fr; }
  .reflex-aside { position: static; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--teal-950);
  color: #d9e8e5;
  padding: 72px 0 0;
  position: relative;
}
.site-footer > .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.brand-footer .brand-name { color: #fff; }
.brand-footer .brand-tag { color: #7fa8a3; }
.footer-about { margin-top: 18px; font-size: 0.9rem; max-width: 34ch; }
.footer-col { display: grid; gap: 12px; align-content: start; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.footer-col a { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-col .icon { width: 15px; height: 15px; color: var(--teal-100); }
.footer-col small { color: #7fa8a3; }
.footer-meta { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9rem; color: #7fa8a3; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.8rem; color: #7fa8a3; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 100;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid #eee5d8; padding: 18px 22px;
  transform: translateY(140%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 16px; max-width: 900px; margin: 0 auto; }
.cookie-icon { color: var(--coral); flex-shrink: 0; }
.cookie-icon .icon { width: 26px; height: 26px; }
.cookie-inner p { flex: 1; font-size: 0.9rem; color: var(--muted); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }

/* ---------- Reviews page ---------- */
.reviews-banner {
  width: 100%;
  height: 260px;
  background: var(--teal-950) url('../img/footer-bg.jpg') center / cover no-repeat;
}
@media (max-width: 720px) { .reviews-banner { height: 150px; } }
.reviews-embed {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #eee5d8;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.reviews-embed iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
}
.reviews-cta {
  margin: 48px auto 0;
  max-width: 640px;
  text-align: center;
}
.reviews-cta-text {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.reviews-cta-actions .btn { gap: 10px; }
.reviews-cta-actions .btn .icon { width: 20px; height: 20px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    background: #fff; border-bottom: 1px solid #eee5d8;
    padding: 16px 24px 22px; box-shadow: var(--shadow-md);
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-link { padding: 12px 14px; }
  .nav-cta { margin: 8px 0 0; justify-content: center; }
  .topbar-note { display: none; }
  .services-grid, .homevisit-grid, .product-points, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .float-card-1 { left: 0; }
  .float-card-2 { right: 0; }
  .about-stamp { right: 0; }
  .cookie-inner { flex-wrap: wrap; }
  /* Hide the hero photo slider on mobile (text-first layout). */
  .hero-visual { display: none; }
}
