/* ============================================================
   AMI Kappers 's-Gravenland — Demo Site CSS
   Palet: #C8A882 zand | #2D2D2D donker | #E8E0D5 licht | #C0392B accent
   Fonts: Nunito (body/UI) + Playfair Display (display)
   ============================================================ */

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

:root {
  --sand:       #C8A882;
  --sand-light: #D4B896;
  --dark:       #2D2D2D;
  --dark-2:     #3D3D3D;
  --bg-light:   #E8E0D5;
  --bg-cream:   #F5F1EB;
  --accent:     #C0392B;
  --white:      #FFFFFF;
  --text:       #2D2D2D;
  --text-muted: #6B6459;

  --font-body:    'Nunito', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius:   12px;
  --radius-sm: 8px;
  --shadow:   0 2px 16px rgba(45,45,45,.10);
  --shadow-lg:0 8px 32px rgba(45,45,45,.14);

  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

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

body.menu-open { overflow: hidden; }

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

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

address { font-style: normal; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 88px 0; }

/* ─── Media fill utility ──────────────────────────────────── */
.media, .img-fill, figure.photo { position: relative; overflow: hidden; }
.media > img, .img-fill > img, figure.photo > img,
.gallery img, .card__img-wrap img, .hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ─── Typography ──────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; font-weight: 700; font-family: var(--font-body); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

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

.section-header h2 { color: var(--dark); margin-bottom: 14px; }
.section-header p  { color: var(--text-muted); font-size: 1.05rem; }

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

.btn--primary {
  background: var(--sand);
  color: var(--white);
  border-color: var(--sand);
}
.btn--primary:hover { background: #b8976e; border-color: #b8976e; transform: translateY(-1px); box-shadow: var(--shadow); }

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

.btn--outline {
  background: transparent;
  color: var(--sand);
  border-color: var(--sand);
}
.btn--outline:hover { background: var(--sand); color: var(--white); }

.btn--sand {
  background: var(--sand);
  color: var(--white);
  border-color: var(--sand);
  font-size: 1.1rem;
}
.btn--sand:hover { background: #b8976e; transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--sm  { padding: 10px 20px; font-size: .9rem; min-height: 40px; }
.btn--lg  { padding: 16px 34px; font-size: 1.05rem; }
.btn--xl  { padding: 20px 40px; font-size: 1.15rem; }

/* ─── NAV ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(45,45,45,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,130,.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}
.logo-ami     { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--sand); }
.logo-kappers { font-family: var(--font-body); font-size: 1rem; font-weight: 700; color: var(--white); }
.logo-location{
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
  margin-left: 4px;
  align-self: center;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-desktop ul {
  display: flex;
  gap: 28px;
}
.nav-desktop ul a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  padding: 4px 0;
}
.nav-desktop ul a:hover { color: var(--sand); }

/* Mobile trigger */
.mobile-menu__trigger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.mobile-menu__trigger:hover { background: rgba(255,255,255,.08); }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.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); }

/* ─── MOBILE MENU OVERLAY (fullscreen kit) ───────────────── */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile-menu__overlay[aria-hidden="false"] {
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .mobile-menu__overlay { transition: none; }
}

.mobile-menu__panel { padding: 0 28px 40px; }

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 24px;
  border-bottom: 1px solid rgba(200,168,130,.2);
  margin-bottom: 16px;
}

.mobile-menu__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sand);
}

.mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: background .2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,.08); }
.mobile-menu__close svg { width: 24px; height: 24px; }

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.mobile-menu__item {
  display: block;
  padding: 16px 4px;
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .2s;
  min-height: 56px;
  line-height: 1.3;
  font-family: var(--font-display);
}
.mobile-menu__item:hover { color: var(--sand); padding-left: 8px; }

.mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.mobile-menu__cta .btn { justify-content: center; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  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;
  object-position: center;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,45,45,.72) 0%, rgba(45,45,45,.40) 60%, rgba(200,168,130,.15) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
  margin: 0 auto;
  text-align: center;
  padding-top: var(--nav-h);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,168,130,.25);
  border: 1px solid rgba(200,168,130,.5);
  color: #f0d9b8;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__badge svg { width: 14px; height: 14px; color: #f0c060; }

.hero__title {
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.hero__sub {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__scroll svg { width: 32px; height: 32px; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ─── USP STRIP ───────────────────────────────────────────── */
.usp-strip {
  background: var(--dark);
  padding: 56px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  border-right: 1px solid rgba(200,168,130,.18);
}
.usp-item:last-child { border-right: none; }

.usp-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(200,168,130,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}
.usp-icon svg { width: 24px; height: 24px; }

.usp-text { display: flex; flex-direction: column; gap: 4px; }
.usp-text strong { color: var(--white); font-size: 1rem; font-weight: 700; }
.usp-text span   { color: rgba(255,255,255,.55); font-size: .85rem; }

/* ─── DIENSTEN CARDS ──────────────────────────────────────── */
.diensten { background: var(--bg-cream); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.card:hover .card__img-wrap img { transform: scale(1.04); }

.card__body {
  padding: 20px 24px 24px;
}
.card__body h3 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.card__body p  { color: var(--text-muted); font-size: .9rem; line-height: 1.55; }

/* ─── OVER NATASJA ────────────────────────────────────────── */
.over { background: var(--bg-light); }

.over__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.over__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.over__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.over__content .section-label { display: block; }
.over__content h2 { color: var(--dark); margin-bottom: 20px; }

.over__quote {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-2);
  font-style: italic;
  border-left: 4px solid var(--sand);
  padding-left: 20px;
  margin-bottom: 20px;
}

.over__content > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.over__facts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.over__fact {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark);
  font-size: .95rem;
  font-weight: 600;
}
.over__fact svg {
  width: 20px; height: 20px;
  color: var(--sand);
  flex-shrink: 0;
}

/* ─── PRIJZEN ─────────────────────────────────────────────── */
.prijzen { background: var(--white); }

.prijzen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.prijs-card {
  background: var(--bg-cream);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(200,168,130,.25);
  transition: box-shadow .2s, transform .2s;
}
.prijs-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

.prijs-card--note { background: var(--bg-light); border-color: var(--sand); }

.prijs-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(200,168,130,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}
.prijs-card__icon svg { width: 22px; height: 22px; }

.prijs-card__info { display: flex; flex-direction: column; gap: 4px; }
.prijs-card__naam  { font-weight: 700; color: var(--dark); font-size: .95rem; }
.prijs-card__prijs { font-size: 1.3rem; font-weight: 800; color: var(--sand); font-family: var(--font-display); }
.prijs-card__note  { font-size: .85rem; color: var(--text-muted); line-height: 1.4; }

.prijzen__cta { text-align: center; }

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews { background: var(--bg-light); }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(200,168,130,.3);
  padding: 12px 22px;
  border-radius: 50px;
  margin-top: 16px;
  box-shadow: var(--shadow);
}

.google-badge__stars {
  display: flex;
  gap: 3px;
}
.google-badge__stars svg { width: 18px; height: 18px; color: #f0c060; }
.google-badge__score { font-weight: 800; color: var(--dark); font-size: 1rem; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sand);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg { width: 18px; height: 18px; color: #f0c060; }

.review-card blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-2);
  font-style: italic;
  flex: 1;
}

.review-card cite {
  font-size: .85rem;
  font-weight: 700;
  color: var(--sand);
  font-style: normal;
}

/* ─── OPENINGSTIJDEN ──────────────────────────────────────── */
.openingstijden { background: var(--bg-cream); }

.openingstijden__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.openingstijden__header { margin-bottom: 48px; }
.openingstijden__header h2 { color: var(--dark); margin-bottom: 12px; }
.openingstijden__header p  { color: var(--text-muted); }

.uren-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.uren-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-top: 4px solid var(--sand);
}

.uren-card--gesloten { border-top-color: #bbb; opacity: .75; }

.uren-card__dag {
  font-weight: 800;
  font-size: 1rem;
  color: var(--dark);
  font-family: var(--font-display);
}
.uren-card__tijd {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-2);
}

.uren-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.uren-badge--open    { background: rgba(200,168,130,.15); color: #7a6040; }
.uren-badge--gesloten{ background: rgba(0,0,0,.06); color: #888; }

.openingstijden__cta { margin-top: 8px; }

/* ─── CONTACT ─────────────────────────────────────────────── */
.contact { background: var(--white); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(200,168,130,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}
.contact__icon svg { width: 20px; height: 20px; }

.contact__item strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 4px;
}
.contact__item a {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
}
.contact__item a:hover { color: var(--sand); }
.contact__item address { font-size: .95rem; color: var(--text-muted); line-height: 1.6; }

.contact__walkin {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(200,168,130,.1);
  border: 1px solid rgba(200,168,130,.35);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--dark);
  font-weight: 700;
  font-size: .95rem;
}
.contact__walkin svg { width: 22px; height: 22px; color: var(--sand); flex-shrink: 0; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ─── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--dark);
  padding: 80px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band__text h2 { color: var(--white); margin-bottom: 10px; font-size: clamp(1.5rem,3vw,2.2rem); }
.cta-band__text p  { color: rgba(255,255,255,.6); font-size: 1rem; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer-kit {
  background: #1e1e1e;
  padding: 64px 0 0;
  color: rgba(255,255,255,.7);
}

.footer-kit__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-kit__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-kit__brand .logo-ami { font-size: 1.8rem; }
.footer-kit__brand p { font-size: .95rem; color: rgba(255,255,255,.5); margin-top: -6px; }
.footer-kit__brand address { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.6; }

.footer-kit__col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.footer-kit__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-kit__col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-kit__col ul a:hover { color: var(--sand); }

.footer-kit__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-kit__bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid,
  .prijzen__grid { grid-template-columns: repeat(2,1fr); }

  .usp-grid { gap: 0; }
  .usp-item { padding: 16px 20px; }

  .over__grid { gap: 40px; }

  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Nav */
  .nav-desktop { display: none; }
  .mobile-menu__trigger { display: flex; }
  .logo-location { display: none; }

  /* Hero */
  .hero__content { padding: 0 20px; padding-top: var(--nav-h); }

  /* USP */
  .usp-grid { grid-template-columns: 1fr; gap: 0; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(200,168,130,.15); }
  .usp-item:last-child { border-bottom: none; }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Over */
  .over__grid { grid-template-columns: 1fr; gap: 32px; }
  .over__img-wrap { aspect-ratio: 16/9; }

  /* Prijzen */
  .prijzen__grid { grid-template-columns: 1fr; gap: 14px; }

  /* Reviews */
  .reviews__grid { grid-template-columns: 1fr; gap: 20px; }

  /* Uren */
  .uren-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Contact */
  .contact__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact__map { aspect-ratio: 4/3; }

  /* CTA band */
  .cta-band__inner { flex-direction: column; text-align: center; }
  .cta-band .btn--xl { font-size: 1rem; padding: 16px 28px; }

  /* Footer */
  .footer-kit__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  .footer-kit__grid { grid-template-columns: 1fr; }
}

/* ─── Map wrapper (static fallback + OSM overlay) ─────── */
.map-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-static {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.map-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  z-index: 2;
}

.map-link {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.map-link svg { width: 16px; height: 16px; color: var(--sand); }
.map-link:hover { background: var(--sand); color: var(--white); }
.map-link:hover svg { color: var(--white); }

/* remove old .contact__map sizing (now handled by .map-wrapper) */
.contact__map {
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  aspect-ratio: unset;
}
.contact__map iframe { position: static; }
