:root {
  --ink: #15181c;
  --ink-soft: #1a1f3a;
  --slate: #5c646d;
  --line: #dfe3e7;
  --paper: #ffffff;
  --mist: #f0f2f8;
  --accent: #0707b4;
  --accent-dark: #05058a;
  --accent-soft: #1dcaff;
  /* Merkgeel uit hun site (kenteken/APK) + logo-accent */
  --brand-yellow: #f4be04;
  --brand-yellow-dark: #d39f02;
  --brand-yellow-bright: #ffcc00;
  --success: #20834b;
  --shadow: 0 18px 45px rgba(7, 7, 180, 0.12);
  --radius: 18px;
  --max: 1180px;
  --font: "Univia Pro", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Univia Pro";
  src: url("assets/fonts/UniviaPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Univia Pro";
  src: url("assets/fonts/UniviaPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Univia Pro";
  src: url("assets/fonts/UniviaPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Univia Pro";
  src: url("assets/fonts/UniviaPro-Black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Univia Pro";
  src: url("assets/fonts/UniviaPro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(7, 7, 180, .35); outline-offset: 3px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 88px 0; }
.section-soft { background: var(--mist); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 2px; background: var(--brand-yellow); content: ""; }
h1, h2, h3 { margin-top: 0; line-height: 1.13; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 20px; font-size: clamp(2.65rem, 7vw, 5.7rem); }
h2 { margin-bottom: 18px; font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3 { margin-bottom: 9px; font-size: 1.25rem; }
p { margin-top: 0; }
.lead { max-width: 680px; color: var(--slate); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 38px; }
.section-head > div:first-child { max-width: 700px; }
.section-head h2 { margin-bottom: 10px; }

.topbar {
  padding: 8px 0;
  color: #e8ecef;
  background: #0f1114;
  border-bottom: 3px solid var(--brand-yellow);
  font-size: .86rem;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-list { display: flex; gap: 24px; margin: 0; padding: 0; list-style: none; }
.topbar a { text-decoration: none; }
.open-indicator { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #9ba2aa; }
.open-indicator.is-open .status-dot { background: #38c975; box-shadow: 0 0 0 4px rgba(56,201,117,.13); }
.open-indicator.is-closed .status-dot { background: #ff735f; }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(223,227,231,.9); backdrop-filter: blur(12px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 10px 10px 10px 3px;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -.07em;
  transform: skew(-5deg);
  box-shadow: inset 0 -3px 0 var(--brand-yellow);
}
.brand-mark::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--brand-yellow);
  transform: skew(5deg);
  content: "";
}
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: 1.08rem; letter-spacing: -.025em; }
.brand-text span { margin-top: 5px; color: var(--slate); font-size: .67rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > a { padding: 11px 14px; border-radius: 9px; font-size: .93rem; font-weight: 650; text-decoration: none; }
.nav-links > a:hover, .nav-links > a[aria-current="page"] { background: var(--mist); color: var(--accent); }
.menu-toggle { display: none; padding: 9px; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
.menu-toggle svg { display: block; width: 28px; height: 28px; }

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--accent); box-shadow: 0 10px 22px rgba(7,7,180,.25); }
.btn-primary:hover { background: var(--brand-yellow); color: var(--ink); box-shadow: 0 10px 22px rgba(244,190,4,.35); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-dark:hover { background: #30363d; }
.btn-light { color: var(--ink); background: #fff; border-color: var(--line); }
.btn-light:hover { border-color: #aeb5bc; }
.btn-yellow {
  color: var(--ink);
  background: var(--brand-yellow);
  border-color: var(--brand-yellow-dark);
  box-shadow: 0 10px 22px rgba(211,159,2,.28);
}
.btn-yellow:hover { background: var(--brand-yellow-dark); color: #fff; }
.btn-small { min-height: 44px; padding: 10px 16px; font-size: .9rem; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.icon { width: 20px; height: 20px; flex: 0 0 auto; }

.hero { position: relative; min-height: 690px; display: grid; align-items: center; overflow: hidden; color: white; background: #111418; }
.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,14,17,.96) 0%, rgba(12,14,17,.86) 42%, rgba(12,14,17,.25) 72%, rgba(12,14,17,.12) 100%),
    url("https://images.unsplash.com/photo-1625047509248-ec889cbff17f?auto=format&fit=crop&w=2000&q=85") center/cover;
  content: "";
}
.hero::after { position: absolute; inset: auto 0 0; height: 110px; background: linear-gradient(transparent, rgba(0,0,0,.35)); content: ""; }
.hero-content { position: relative; z-index: 1; padding: 90px 0 135px; }
.hero .eyebrow { color: var(--accent-soft); }
.hero p { max-width: 620px; margin-bottom: 30px; color: #d9dde1; font-size: clamp(1.05rem, 2vw, 1.27rem); }
.hero .button-row { margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; margin: 0; padding: 0; color: #f5f6f7; list-style: none; font-size: .94rem; font-weight: 700; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--brand-yellow); }
.quick-info { position: relative; z-index: 3; margin-top: -78px; }
.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.quick-item { display: flex; gap: 15px; padding: 25px 28px; border-right: 1px solid var(--line); text-decoration: none; }
.quick-item:last-child { border: 0; }
.quick-item:hover strong { color: var(--accent); }
.quick-icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; color: var(--accent); background: #e8e9ff; border-radius: 11px; }
.quick-item span { display: block; color: var(--slate); font-size: .82rem; }
.quick-item strong { display: block; margin-top: 2px; font-size: .98rem; transition: color .2s; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 15px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.service-card:hover { transform: translateY(-4px); border-color: #c9ced3; box-shadow: 0 15px 30px rgba(25,31,37,.08); }
.service-icon { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; color: var(--accent); background: #e8e9ff; border-radius: 12px; }
.service-card p { margin-bottom: 0; color: var(--slate); font-size: .94rem; }
.service-card a { display: inline-block; margin-top: 15px; color: var(--accent); font-size: .9rem; font-weight: 800; text-decoration: none; }

.services-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.services-head h2 { margin: 0; color: var(--ink-soft); }
.services-all-link {
  color: var(--ink-soft);
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}
.services-all-link:hover { color: var(--accent); }
.services-carousel-wrap { position: relative; }
.services-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 0;
  scrollbar-width: none;
}
.services-track::-webkit-scrollbar { display: none; }
.service-slide {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 360px;
  padding: 18px;
  border-radius: 28px;
  overflow: hidden;
  background: #1a1f3a center/cover no-repeat;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(15, 20, 40, .14);
}
.service-slide::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 14, 30, .45) 100%);
  content: "";
}
.service-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 12px;
  color: var(--ink-soft);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.service-pill-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--accent);
}
.service-pill-icon .icon { width: 18px; height: 18px; }
.service-pill-label {
  overflow: hidden;
  font-size: .92rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.service-pill-go {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  font-size: 1.15rem;
  line-height: 1;
}
.services-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
}
.services-dots {
  display: flex;
  gap: 8px;
}
.services-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d5d9e2;
  cursor: pointer;
}
.services-dots button.is-active { background: var(--accent); }
.services-nav-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.services-nav {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(7,7,180,.28);
  transition: background .2s, transform .2s, opacity .2s;
}
.services-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}
.services-nav:disabled {
  opacity: .35;
  cursor: default;
  transform: none;
  box-shadow: none;
}
.services-nav .icon { width: 22px; height: 22px; }
.services-prev .icon { transform: rotate(180deg); }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(40px, 7vw, 90px); }
.photo-wrap { position: relative; }
.photo-wrap img { width: 100%; min-height: 530px; object-fit: cover; border-radius: 18px; }
.photo-badge {
  position: absolute;
  right: -20px;
  bottom: 30px;
  max-width: 205px;
  padding: 20px;
  color: var(--ink);
  background: var(--brand-yellow);
  border: 2px solid var(--brand-yellow-dark);
  border-radius: 13px;
  box-shadow: var(--shadow);
}
.photo-badge strong { display: block; font-size: 2rem; line-height: 1; }
.check-list { display: grid; gap: 17px; margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: 11px; }
.check-list svg { margin-top: 2px; color: var(--accent); }
.check-list strong { display: block; }
.check-list span { color: var(--slate); font-size: .93rem; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; color: white; background: #3b4046; border-radius: 15px; }
.stat { padding: 28px 20px; text-align: center; background: var(--ink-soft); }
.stat strong { display: block; margin-bottom: 4px; font-size: 1.9rem; }
.stat span { color: #c9ced3; font-size: .85rem; }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { margin: 0; padding: 28px; background: white; border: 1px solid var(--line); border-radius: 15px; }
.stars { margin-bottom: 15px; color: var(--brand-yellow); letter-spacing: .12em; }
.review blockquote { margin: 0 0 20px; font-size: .98rem; }
.review figcaption { color: var(--slate); font-size: .88rem; font-weight: 700; }

.faq-list { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}
.faq-item button svg { flex: 0 0 auto; transition: transform .2s; }
.faq-item.open button svg { transform: rotate(45deg); }
.faq-answer { display: none; max-width: 780px; padding: 0 0 22px; color: var(--slate); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { margin: 0; }

.cta-band {
  padding: 64px 0;
  color: white;
  background:
    linear-gradient(var(--brand-yellow), var(--brand-yellow)) top / 100% 4px no-repeat,
    var(--accent);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cta-band h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-band p { margin: 0; color: #c8e8ff; }
.cta-band .btn-light {
  color: var(--ink);
  background: var(--brand-yellow);
  border: 1px solid var(--brand-yellow-dark);
}
.cta-band .btn-light:hover {
  background: var(--brand-yellow-dark);
  color: #fff;
  border-color: var(--brand-yellow-dark);
}

.page-hero { padding: 75px 0 70px; color: white; background: var(--ink); }
.page-hero .eyebrow { color: var(--accent-soft); }
.page-hero h1 { margin-bottom: 16px; font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero p { max-width: 680px; margin-bottom: 0; color: #cbd0d5; font-size: 1.15rem; }
.service-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-detail { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding: 30px; border: 1px solid var(--line); border-radius: 16px; }
.service-detail .service-icon { margin: 0; width: 60px; height: 60px; }
.service-detail p { margin-bottom: 0; color: var(--slate); }

.form-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(290px, .75fr); align-items: start; gap: 32px; }
.form-card { padding: clamp(24px, 4vw, 42px); background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .9rem; font-weight: 800; }
.field label span { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #cdd2d7;
  border-radius: 9px;
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(7,7,180,.12); }
.consent { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: var(--slate); font-size: .84rem; }
.consent input { width: 18px; min-height: 18px; margin: 3px 0 0; accent-color: var(--accent); }
.occasion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.occasion-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.occasion-media { position: relative; min-height: 210px; background: linear-gradient(145deg, #e8e9ff, #d7dbf5); }
.occasion-media img { width: 100%; height: 210px; object-fit: cover; }
.occasion-media-empty { display: grid; height: 210px; place-items: center; color: var(--accent); font-weight: 800; }
.occasion-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  color: var(--ink);
  background: var(--brand-yellow);
  border: 1px solid var(--brand-yellow-dark);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
}
.occasion-badge.sold { color: #fff; background: #5c646d; border-color: #5c646d; }
.occasion-body { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 22px; }
.occasion-body h3 { margin: 0; font-size: 1.2rem; }
.occasion-price { margin: 0; color: var(--accent); font-size: 1.35rem; font-weight: 900; letter-spacing: -.03em; }
.occasion-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.occasion-meta li { padding: 5px 9px; color: var(--slate); background: var(--mist); border-radius: 999px; font-size: .78rem; font-weight: 700; }
.occasion-body p { margin: 0; color: var(--slate); font-size: .92rem; }
.occasion-body .button-row { margin-top: auto; padding-top: 8px; }
.occasion-loading, .occasion-empty { grid-column: 1 / -1; margin: 0; color: var(--slate); }
.consent a { color: var(--ink); font-weight: 750; }
.form-note { margin: 18px 0 0; color: var(--slate); font-size: .82rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-error { display: none; margin: 16px 0 0; padding: 13px 15px; color: #8b1f17; background: #fff0ee; border: 1px solid #efb1ab; border-radius: 9px; font-size: .9rem; }
.form-error.visible { display: block; }
.form-submit { width: 100%; margin-top: 24px; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-success { display: none; padding: 28px; background: #edf8f1; border: 1px solid #a7d9ba; border-radius: 14px; }
.form-success.visible { display: block; }
.form-success h2 { margin-bottom: 8px; color: #166839; font-size: 1.7rem; }
.form-success p { margin-bottom: 0; color: #2d6643; }
.side-card { padding: 27px; background: var(--ink); color: white; border-radius: 16px; }
.side-card + .side-card { margin-top: 18px; }
.side-card p, .side-card li { color: #cbd0d5; }
.side-card ul { margin: 18px 0 0; padding-left: 20px; }
.side-card a { color: white; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.3fr; gap: 32px; }
.contact-stack { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 17px; padding: 23px; border: 1px solid var(--line); border-radius: 14px; }
.contact-card .quick-icon { margin-top: 2px; }
.contact-card h3 { margin-bottom: 5px; }
.contact-card p { margin: 0; color: var(--slate); }
.contact-card a { font-weight: 750; text-decoration: none; }
.map-wrap { min-height: 520px; overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 520px; border: 0; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 750; }
.hours-table tr.today td { color: var(--accent); font-weight: 850; }
.notice { margin-top: 20px; padding: 15px 17px; color: #634c08; background: #fff7d9; border-radius: 9px; font-size: .9rem; }

.site-footer { padding: 64px 0 24px; color: #d3d7db; background: #111418; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 45px; }
.footer-brand { margin-bottom: 18px; color: white; }
.footer-intro { max-width: 340px; color: #9da5ad; font-size: .92rem; }
.site-footer h3 { color: white; font-size: 1rem; letter-spacing: 0; }
.footer-links { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: #bdc3c9; text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-hours { display: grid; grid-template-columns: 1fr auto; gap: 7px 15px; margin: 0; color: #bdc3c9; font-size: .9rem; }
.footer-hours dt, .footer-hours dd { margin: 0; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; color: #7f8891; border-top: 1px solid #2b3035; font-size: .79rem; }
.mobile-cta { display: none; }

@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .topbar-list li:nth-child(2) { display: none; }
  .menu-toggle { display: block; }
  .nav > .btn { display: none; }
  .nav-links {
    position: fixed;
    inset: 116px 0 auto;
    display: none;
    align-items: stretch;
    padding: 14px 20px 24px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 22px rgba(0,0,0,.08);
  }
  .nav-links.open { display: grid; }
  .nav-links > a { padding: 14px; }
  .hero { min-height: 650px; }
  .hero::before { background-position: 62% center; }
  .hero-content { padding-top: 80px; }
  .quick-grid, .card-grid, .review-grid, .occasion-grid { grid-template-columns: 1fr; }
  .services-track { grid-auto-columns: calc((100% - 18px) / 2); width: min(calc(100% - 40px), var(--max)); }
  .service-slide { min-height: 320px; border-radius: 22px; }
  .quick-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .photo-wrap { order: -1; }
  .photo-wrap img { min-height: 420px; }
  .photo-badge { right: 20px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .form-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 56px 0; }
  .topbar { font-size: .77rem; }
  .topbar-list { gap: 12px; }
  .topbar-list li:first-child { display: none; }
  .nav { min-height: 68px; }
  .nav-links { inset-block-start: 100px; }
  .brand-text span { display: none; }
  .hero { min-height: 625px; }
  .hero::before { background-position: 66% center; }
  .hero::after { inset: 0; height: auto; background: rgba(0,0,0,.12); }
  .hero-content { padding: 68px 0 115px; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 4rem); }
  .hero .button-row .btn { width: 100%; }
  .hero-trust { display: grid; gap: 11px; }
  .quick-info { margin-top: -70px; }
  .quick-item { padding: 20px; }
  .section-head, .cta-inner { align-items: stretch; flex-direction: column; }
  .section-head .btn { width: 100%; }
  .service-card { padding: 24px; }
  .services-head { align-items: center; }
  .services-track { grid-auto-columns: 85%; }
  .services-nav { width: 52px; height: 52px; }
  .split { gap: 34px; }
  .photo-wrap img { min-height: 340px; }
  .photo-badge { right: 10px; bottom: 12px; padding: 15px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 22px 10px; }
  .stat strong { font-size: 1.5rem; }
  .review-grid { grid-auto-flow: column; grid-auto-columns: 87%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .review { scroll-snap-align: start; }
  .cta-band .btn { width: 100%; }
  .page-hero { padding: 55px 0; }
  .service-detail { grid-template-columns: 48px 1fr; padding: 22px 18px; gap: 14px; }
  .service-detail .service-icon { width: 48px; height: 48px; }
  .form-card { padding: 22px 17px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; margin-bottom: 68px; }
  .mobile-cta {
    position: fixed;
    z-index: 30;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 53px;
    align-items: center;
    justify-content: center;
    color: white;
    background: var(--accent);
    border-radius: 11px;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    font-weight: 850;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
