/* ==========================================================================
   BenCars Oy — landing page
   Dark, technical, restrained yellow accent.
   ========================================================================== */

:root {
  --bg:          #0B0B0B;
  --surface:     #151515;
  --surface-2:   #1A1A1A;
  --border:      #333333;
  --border-soft: #232323;
  --text:        #F5F5F5;
  --muted:       #A5A5A5;
  --accent:      #F4C430;

  --r-sm: 4px;
  --r-md: 8px;
  --r-pill: 999px;

  --wrap: 1200px;
  --section-y: 120px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  line-height: 1.1;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(40px, 8vw, 64px); font-weight: 700; }
h2 { font-size: clamp(30px, 5vw, 48px); }
h3 { font-size: clamp(20px, 2.4vw, 28px); }

p { margin: 0 0 1rem; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #0B0B0B;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}

/* --------------------------------------------------------- buttons ------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0B0B0B;
}
.btn-primary:hover { background: #FFD65A; border-color: #FFD65A; }

.btn-secondary {
  background: transparent;
  border-color: #3A3A3A;
  color: var(--text);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.btn-sm { padding: 10px 22px; font-size: 14px; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* --------------------------------------------------------- header ------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, .92);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: saturate(120%) blur(6px);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo span { color: var(--accent); }
.logo img { width: 52px; height: 52px; object-fit: contain; }

.nav {
  display: flex;
  align-items: center;
  /* Full header height, so the services menu can hang off the header's own
     bottom edge instead of off the word "Palvelut". */
  align-self: stretch;
  gap: 30px;
}
.nav a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  transition: color .18s ease;
}
/* The toggle is a button, so it also has to shed the browser's own chrome. */
.nav-dropdown-toggle {
  padding: 0;
  font-family: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav a:not(.nav-cta):hover,
.nav-dropdown-toggle:hover { color: var(--accent); text-decoration: none; }

/* Current page marker */
.nav a[aria-current="page"],
.nav-dropdown-toggle.is-current { color: var(--text); }
.nav a[aria-current="page"]::after,
.nav-dropdown-toggle.is-current::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
}

.nav-chevron {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .7;
  transition: transform .18s ease;
}
.nav-dropdown-toggle[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* ------------------------------------------------ services dropdown ----- */

/* Full header height, so the pointer never leaves the group on its way down
   to the menu — the wrapper, not the link, is what the mouse is inside. */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: stretch;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 60;
  /* Transparent bridge across the gap under the header: without it the menu
     closes the moment the pointer leaves the word "Palvelut". */
  padding-top: 12px;
  transform: translateX(-50%);
}

.nav-dropdown-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 232px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
  animation: navDropdownIn .16s ease-out;
}

/* The pointer up at the toggle, drawn as a rotated corner of the panel so it
   picks up the same border and background. */
.nav-dropdown-panel::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: 0;
  border-bottom: 0;
  transform: translateX(-50%) rotate(45deg);
}

@keyframes navDropdownIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Beats `.nav a`: these are rows in a menu, not items in a bar. */
.nav .nav-dropdown-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease;
}
.nav .nav-dropdown-panel a:hover,
.nav .nav-dropdown-panel a:focus-visible {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}
.nav .nav-dropdown-panel a[aria-current="page"] {
  color: var(--accent);
  background: var(--surface-2);
}
/* The bar's underline marker would sit under the wrong element in here. */
.nav .nav-dropdown-panel a[aria-current="page"]::after { content: none; }

/* --------------------------------------------------- service pages ------ */

/* Deliberately bare: a heading and an empty slot. The copy for each service
   is written later, one page at a time. */
.service-page { padding: calc(var(--header-h) + 64px) 0 var(--section-y); }

/* A page that has its content written: heading close above the text, then a
   two-column layout with the contact/CTA cards riding along the right. */
.service-page h1 { margin-bottom: 28px; }

/* A one-line placeholder page (Drifting today). Fills most of the viewport
   so the footer does not ride up directly under the heading, without
   hard-coding a page height that would fight the footer's own content. */
.placeholder-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h));
  padding: 64px 0;
  text-align: center;
}
.placeholder-page h1 { margin: 0; }

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}

.service-copy h2 { margin: 44px 0 16px; }
.service-copy h2:first-child { margin-top: 0; }
.service-copy h3 { margin: 32px 0 12px; }
/* Sits between an H2 and the body copy: bigger and lighter than a paragraph,
   but not a second heading — no font-weight bump, so it reads as a lead-in. */
.service-lead {
  margin: -4px 0 20px;
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--muted);
}
.service-copy p { color: var(--muted); line-height: 1.7; }
.service-copy p .accent { color: var(--accent); font-weight: 600; }
.service-copy ul {
  margin: 0 0 1rem;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}
/* A quiet accent marker instead of the default grey disc — enough to read as
   intentional without turning each line into its own card. */
.service-copy ul li::marker { color: var(--accent); }
.service-copy a:not(.btn) { color: var(--accent); }
.service-copy a:not(.btn):hover { color: var(--accent-hover, #FFD65A); }

.service-aside {
  display: grid;
  gap: 16px;
  /* Clears the sticky header when the page is scrolled and a card is tall
     enough to be worth pinning in view. */
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.service-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
}
.service-card h2 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 600;
}
.service-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.service-card a:not(.btn) { color: var(--muted); }
.service-card a:not(.btn):hover { color: var(--accent); }
.service-card .btn { width: 100%; }

/* The one CTA card is the page's single accent moment — everything else
   stays on the quiet hairline border. */
.service-card-cta { border-color: var(--accent); }

.nav .nav-cta {
  gap: 8px;
  margin-left: 6px;
  color: #0B0B0B;
}
.nav-phone {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin-inline: auto;
  background: var(--text);
}

/* --------------------------------------------------------- hero --------- */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #0B0B0B url('https://res.cloudinary.com/dmusfcrd5/image/upload/v1785247207/ChatGPT_Image_Jul_28_2026_04_59_22_PM_lcqukr.png') center / cover no-repeat;
}

.hero-inner { position: relative; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  background: rgba(6, 6, 6, .72);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}

.badge-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.badge-icon {
  flex: none;
  width: 13px;
  height: 13px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* The address and phone badges are links (Maps / tel:); the "Auki" status
   badge is a plain span and is untouched by this — .badge-link only ever
   goes on an <a>, so the hover/focus cue never appears on a non-interactive
   chip. Kept subtle on purpose: still reads as a badge, not a button. */
.badge-link {
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.badge-link:hover,
.badge-link:focus-visible {
  border-color: var(--accent);
  background: rgba(244, 196, 48, .1);
  /* Overrides the site-wide a:hover underline — this stays a badge, not a
     regular hyperlink, on hover as well as at rest. */
  text-decoration: none;
}

.hero h1 { max-width: 14ch; }

.lead {
  max-width: 52ch;
  margin-top: 24px;
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
}

/* --------------------------------------------------------- sections ----- */

.section { padding: var(--section-y) 0; }
.section-alt {
  background: var(--surface);
  border-block: 1px solid var(--border-soft);
}
.section h2 { max-width: 20ch; margin-bottom: 56px; }

/* --------------------------------------------------------- services ---- */

.services {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.services li {
  position: relative;
  background: var(--bg);
  padding: 40px 32px 44px;
  transition: background-color .2s ease;
}
.services li:hover { background: var(--surface); }

/* Sits on the same line as .idx, opposite corner. */
.svc-icon {
  position: absolute;
  top: 40px;
  right: 32px;
  width: 20px;
  height: 20px;
  color: var(--accent);
  opacity: .7;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity .2s ease;
}
.services li:hover .svc-icon { opacity: 1; }

.idx {
  display: block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.services h3 { margin-bottom: 12px; }
.services p { margin: 0; color: var(--muted); font-size: 15px; }

/* --------------------------------------------------------- about -------- */

/* Photo is a full-bleed section background; the car sits left, text right
   over the dark negative space already present in the image. */
.about-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 640px;
  background: var(--bg);
  /* The sticky header would otherwise cover the top of this section,
     whether the browser jumps here on its own or scrollIntoView eases in —
     both respect scroll-margin, so one rule covers both paths. */
  scroll-margin-top: var(--header-h);
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Deepens only the right third so the text stays legible at narrower
   desktop widths. The car itself is left untouched. */
.about-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 46%, rgba(11, 11, 11, .72) 72%);
  pointer-events: none;
}

.about-section .wrap { position: relative; z-index: 1; }

.about {
  display: flex;
  justify-content: flex-end;
}
.about-text { max-width: 460px; }
.about h2 { margin-bottom: 28px; }
.about p { color: var(--muted); max-width: 56ch; }
.about .btn { margin-top: 20px; }

/* ----------------------------------------------------- booking CTA ------ */

/* Compact conversion block between Meistä and Arviot. Shorter vertical
   rhythm than a full section — it is a nudge, not a chapter. */
.section-cta { padding: 88px 0; }

.cta-box {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.cta-copy .eyebrow { margin-bottom: 16px; }

/* Smaller than a section heading: this block sits inside the page flow
   rather than opening a new one. Also cancels .section h2's bottom margin. */
.cta-copy h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  margin-bottom: 18px;
}
.cta-copy p { margin: 0; max-width: 46ch; color: var(--muted); }

/* Hairline-separated rows, same numbering treatment as the service grid. */
.cta-steps {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--border-soft);
}
.cta-steps li {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  color: var(--text);
}
/* Fixed width so the three labels line up on a common left edge. */
.cta-steps .idx { margin-bottom: 0; min-width: 26px; }

.cta-call {
  margin: 18px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.cta-call a { white-space: nowrap; }

/* --------------------------------------------------------- reviews ----- */

.reviews {
  --speed: 120s;
  position: relative;
  overflow: hidden;
  padding-block: 4px;
  /* Feather the edges so cards enter and leave instead of being clipped. */
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: reviews-scroll var(--speed) linear infinite;
}

/* Halfway = exactly one cloned group, so the restart is invisible. */
@keyframes reviews-scroll {
  to { transform: translate3d(-50%, 0, 0); }
}

/* Pause on hover and while any card holds keyboard focus. */
.reviews:hover .reviews-track,
.reviews:focus-within .reviews-track,
.reviews:active .reviews-track {
  animation-play-state: paused;
}

.reviews-group {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 0;
  padding: 0 10px;
  list-style: none;
}

.review {
  flex: 0 0 auto;
  width: 380px;
  padding: 30px 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  transition: border-color .2s ease, background-color .2s ease;
}
.review:hover,
.review:focus-visible {
  background: var(--surface-2);
  border-color: var(--border);
}

.stars {
  display: block;
  width: 96px;
  height: 16px;
  margin-bottom: 20px;
  fill: var(--accent);
}

.review p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}

.review-by {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}
.review-by .name { font-size: 14px; font-weight: 600; }
.review-by .src {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.review-by .src::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
}

/* --------------------------------------------------------- contact ------ */

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact h2 { margin-bottom: 20px; }
.contact-info > p { color: var(--muted); }

.contact-list {
  margin: 40px 0;
  display: grid;
  gap: 1px;
  background: var(--border-soft);
  border-block: 1px solid var(--border-soft);
}
.contact-list > div {
  background: var(--surface);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 18px 0;
}
.contact-list dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-list dd { margin: 0; }

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 40px 36px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.field .opt { color: var(--muted); font-weight: 400; }

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .18s ease;
}
.field input::placeholder,
.field textarea::placeholder { color: #6A6A6A; }
.field input:focus,
.field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: #E4572E; }

.contact-form .btn { width: 100%; }

.form-note {
  margin: 16px 0 0;
  min-height: 1.4em;
  font-size: 14px;
  color: var(--muted);
}
.form-note.ok { color: var(--accent); }

/* --------------------------------------------------------- subpages ---- */

/* Compact hero for inner pages — deliberately smaller than the home hero. */
.page-hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--border-soft);
}
.page-hero h1 {
  font-size: clamp(34px, 5.5vw, 52px);
  max-width: 16ch;
}
.page-hero .lead { margin-top: 20px; }

/* ------------------------------------------------------- booking UI ---- */

.bk-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
}
.bk-steps li {
  padding: 16px 14px 18px;
  background: var(--bg);
  border-top: 2px solid transparent;
}
.bk-steps li.is-done { border-top-color: var(--border); }
.bk-steps li.is-current { border-top-color: var(--accent); background: var(--surface); }

.bk-steps-num {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.bk-steps li.is-current .bk-steps-num,
.bk-steps li.is-done .bk-steps-num { color: var(--accent); }
.bk-steps-label { font-size: 13px; font-weight: 500; color: var(--muted); }
.bk-steps li.is-current .bk-steps-label { color: var(--text); }

.bk {
  max-width: 1000px;
  margin-inline: auto;
  padding: 48px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
}
.bk h2 {
  max-width: none;
  margin-bottom: 28px;
  font-size: clamp(22px, 2.6vw, 30px);
}
.bk-sub { color: var(--muted); font-size: 15px; }
.bk-hint {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* --- step 1: services --- */
.bk-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.bk-option { position: relative; display: block; cursor: pointer; }
.bk-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.bk-option-body {
  display: block;
  padding: 20px 22px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  transition: border-color .18s ease, background-color .18s ease;
}
.bk-option:hover .bk-option-body { border-color: var(--border); }
.bk-option input:checked + .bk-option-body {
  border-color: var(--accent);
  background: var(--surface-2);
}
.bk-option input:focus-visible + .bk-option-body {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.bk-option-title {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 600;
}
.bk-option-desc { display: block; font-size: 13px; color: var(--muted); line-height: 1.5; }
.bk-option-meta {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* --- step 1: required sub-options for two of the services --- */

/* Spans the option grid so the nested choices read as belonging to the
   service card directly above them rather than as another service. */
.bk-suboptions {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border-soft);
  border-left: 2px solid var(--accent);
  border-radius: var(--r-sm);
}
.bk-suboptions legend,
.bk-subgroup-label {
  padding: 0;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-suboptions .bk-hint { margin: 10px 0 0; }
/* A second group inside one fieldset needs room above its own heading —
   enough to separate the groups, not enough to need scrolling for it. Both
   siblings occur: a bare option list, or one already wrapped in a group. */
.bk-subopts + .bk-subgroup-label,
.bk-subgroup + .bk-subgroup-label { margin-top: 14px; }

/* One full-width row per choice. Every group stacks now: a row that carries
   a price has to span the width for the price to sit at the right edge, so
   the old `.bk-subopts-stack` modifier in the markup no longer does
   anything and is kept only to avoid churning ten fieldsets. */
.bk-subopts { display: flex; flex-direction: column; gap: 6px; }

/* Real radio inputs, visually hidden but focusable — selection state is
   never carried by CSS alone. The control is redrawn on the row below. */
.bk-subopt { position: relative; display: block; }
.bk-subopt input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Direct child only. The old `.bk-subopt span` also matched the title and
   meta spans inside, so every choice grew a box inside a box inside a box;
   the name and its price now share this single row. */
.bk-subopt > span {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 2px 14px;
  padding: 9px 14px 9px 40px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  font-size: 14px;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease;
}

/* The control itself, drawn on the row so it keeps its place whatever the
   row wraps to. Position is fixed to the first line, not the baseline. */
.bk-subopt > span::before {
  content: '';
  position: absolute;
  top: 11px;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 1px solid var(--muted);
  transition: border-color .18s ease;
}
.bk-subopt input[type="radio"] + span::before { border-radius: 50%; }
.bk-subopt input[type="checkbox"] + span::before { border-radius: 3px; }
.bk-subopt input:checked + span::before { border-color: var(--accent); }

.bk-subopt input:checked + span::after { content: ''; position: absolute; }
.bk-subopt input[type="radio"]:checked + span::after {
  top: 15px;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.bk-subopt input[type="checkbox"]:checked + span::after {
  top: 14px;
  left: 19px;
  width: 8px;
  height: 4px;
  border: 2px solid var(--accent);
  border-top: 0;
  border-right: 0;
  transform: rotate(-45deg);
}

.bk-subopt:hover > span { border-color: var(--border); }
.bk-subopt input:checked + span {
  border-color: var(--accent);
  background: var(--surface);
}
.bk-subopt input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* After the hover rule on purpose: a locked row must not light up. */
.bk-subopt input:disabled + span {
  opacity: .45;
  cursor: not-allowed;
  border-color: var(--border-soft);
}

.bk-subgroup { margin-top: 14px; }

.bk-subopt-title { flex: 1 1 auto; font-weight: 500; }
.bk-subopt input:checked + span .bk-subopt-title { font-weight: 600; }
.bk-subopt-meta {
  flex: 0 0 auto;
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.bk-subopt input:checked + span .bk-subopt-meta { color: var(--text); }
/* Always its own line inside the row: this is a sentence, not a figure. */
.bk-subopt-desc {
  flex: 1 0 100%;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Starting price on the service card, above the duration line. */
.bk-option-price {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

/* One-line clarification under a card's duration, e.g. what is included. */
.bk-option-desc {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.bk-price-note { margin: -8px 0 24px; }

/* Standing note about the service the workshop always performs, e.g. the
   electronic service book. Quieter than .bk-option-desc on purpose. */
.bk-option-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

/* A card whose work is already covered by another selection, or that is over
   the per-booking limit. Reads as unavailable without disappearing. */
.bk-option input:disabled + .bk-option-body {
  opacity: 0.45;
  cursor: not-allowed;
}

.bk-option-blocked {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--accent);
}

/* --- step 1: chosen services --- */

.bk-chosen { margin-top: 28px; }

.bk-chosen-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.bk-chosen-item {
  padding: 14px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.bk-chosen-item + .bk-chosen-item { margin-top: 10px; }

.bk-chosen-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.bk-chosen-name {
  flex: 1 1 auto;
  font-size: 15px;
  font-weight: 600;
}

.bk-chosen-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.bk-chosen-meta {
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* A confirmed service is summarised, never left with its inputs open. */
.bk-chosen-summary {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.bk-chosen-summary-row { display: block; }

.bk-chosen-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.bk-chosen-edit,
.bk-chosen-remove {
  padding: 6px 14px;
  font: inherit;
  font-size: 13px;
  /* Buttons do not inherit colour, and the browser default is near-black —
     unreadable on this surface. */
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
}

.bk-chosen-edit { color: var(--text); }

.bk-chosen-edit:hover,
.bk-chosen-remove:hover {
  color: var(--text);
  border-color: var(--text);
}

.bk-chosen-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.bk-conflict-note { margin: 16px 0 0; }

/* --- step 1: per-service dialog ---
   A native <dialog> opened with showModal(): the browser gives the focus trap,
   Escape, the inert background and the top layer, so this never has to fight
   the sticky header's z-index. It is never toggled with the `hidden`
   attribute — the global [hidden] rule below would outrank dialog[open]. */

.bk-modal {
  width: min(560px, calc(100vw - 32px));
  max-height: 85vh;
  padding: 0;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.bk-modal::backdrop { background: rgba(0, 0, 0, .7); }

/* Only the body scrolls; the header and the action bar stay put. */
.bk-modal-inner {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.bk-modal-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px 14px;
  border-bottom: 1px solid var(--border);
}

.bk-modal-title {
  flex: 1 1 auto;
  margin: 0;
  font-size: 20px;
}

.bk-modal-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -8px -8px 0 0;
  padding: 0;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
}

.bk-modal-close:hover { color: var(--text); border-color: var(--border); }

.bk-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.bk-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 18px 22px;
}

.bk-modal-desc {
  margin: 0 0 14px;
  font-size: 14px;
  color: var(--muted);
}

.bk-modal-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

/* The dialog is already the container, so the fieldset frame it uses inside
   the page is one box too many here. The group labels carry the structure. */
.bk-modal-body .bk-suboptions {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
}
.bk-modal-body .bk-suboptions legend { margin-bottom: 10px; }

.bk-modal-foot {
  flex: 0 0 auto;
  padding: 14px 22px 18px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.bk-modal-foot-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bk-modal-totals {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bk-modal-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.bk-modal-duration {
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.bk-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bk-modal-actions .btn { padding: 12px 22px; font-size: 14px; }

.bk-modal-cancel {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.bk-modal-cancel:hover { border-color: var(--text); }

.bk-modal-error { margin: 0 0 12px; }

.bk-modal-actions .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* showModal() does not stop the page behind from scrolling in every browser,
   so the body is pinned for as long as the dialog is open. */
body.bk-modal-open { overflow: hidden; }

/* --- step 1: live totals --- */

.bk-totals {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.bk-totals-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
/* :not([hidden]) on both sides so the discount rows, which are hidden until a
   code is active, cannot leave a stray gap above the first visible row. */
.bk-totals-row:not([hidden]) + .bk-totals-row:not([hidden]) { margin-top: 8px; }
.bk-totals-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-totals-price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.bk-totals-duration { font-size: 15px; font-variant-numeric: tabular-nums; }
.bk-totals-note { margin: 14px 0 0; }

/* The pre-discount price: struck through and muted so the eye goes straight
   past it to the total below, which keeps the accent colour and the 20px. */
.bk-totals-original {
  font-size: 15px;
  color: var(--muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}
.bk-totals-discount { font-size: 15px; font-variant-numeric: tabular-nums; }

/* --- step 1: discount code --- */

.bk-discount { margin-top: 28px; }
.bk-discount-title {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-discount-row { display: flex; gap: 10px; }
/* min-width: 0 lets the input actually shrink inside the flex row instead of
   holding its default size and pushing the button off a narrow screen. */
.bk-discount-row input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  text-transform: uppercase;
  transition: border-color .18s ease;
}
.bk-discount-row input::placeholder { color: #6A6A6A; text-transform: none; }
.bk-discount-row input:focus { border-color: var(--accent); outline: none; }
.bk-discount-row .btn { flex: none; }

.bk-discount-active {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.bk-discount-active-text { margin: 0; font-size: 15px; font-weight: 600; }
.bk-discount-remove {
  padding: 0;
  background: none;
  border: 0;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.bk-discount-remove:hover { color: var(--accent); }
.bk-discount-note { margin: 10px 0 0; }

/* --- step 2: calendar + times side by side --- */
.bk-when {
  display: grid;
  grid-template-columns: minmax(0, 330px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.bk-when-cal .bk-hint { margin-top: 18px; }

.bk-cal { max-width: 460px; }
.bk-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bk-cal-month {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.bk-cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}
.bk-cal-nav:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.bk-cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.bk-cal-nav svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bk-cal-dow,
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.bk-cal-dow {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.bk-day {
  aspect-ratio: 1;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.bk-day:hover:not(:disabled) { border-color: var(--accent); }
.bk-day:disabled {
  background: transparent;
  border-color: transparent;
  color: #4A4A4A;
  cursor: not-allowed;
}
.bk-day.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #0B0B0B;
  font-weight: 600;
}
.bk-day-empty { visibility: hidden; }

/* --- time slots --- */
.bk-slots {
  display: grid;
  /* Wide enough for a full range label like 8.00-10.00. */
  grid-template-columns: repeat(auto-fill, minmax(124px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.bk-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 12px 8px;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}
.bk-slot:hover:not(:disabled) { border-color: var(--accent); }
.bk-slot.is-selected {
  background: var(--accent);
  border-color: var(--accent);
  color: #0B0B0B;
  font-weight: 600;
}

/* Booked: still visible so the day reads as genuinely full, but inert. */
.bk-slot.is-booked {
  background: transparent;
  border-color: var(--border-soft);
  color: #5A5A5A;
  cursor: not-allowed;
}
.bk-slot.is-booked .bk-slot-time { text-decoration: line-through; }
.bk-slot-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A5A5A;
}

/* --- step 4: form --- */
.bk-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 20px;
}

/* --- step 5: summary --- */
.bk-summary {
  margin: 0;
  display: grid;
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.bk-summary > div {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg);
}
.bk-summary dt {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.bk-summary dd { margin: 0; font-size: 15px; }

/* --- honeypot --- */

/* Taken out of the layout entirely rather than display:none — some form-filling
   bots skip anything that is literally not rendered, and the point is that they
   DO fill this one in. It is already out of the tab order (tabindex="-1") and
   out of the accessibility tree (aria-hidden), so no keyboard or screen-reader
   user can reach it either way. */
.bk-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- step 6: confirmation --- */

/* Cloudflare renders the widget in an iframe whose internals cannot be styled
   from here; the dark theme is set in booking.js instead. This only reserves
   the space so the Vahvista button does not jump when the widget appears. */
.bk-turnstile {
  margin-top: 28px;
  min-height: 65px;
}
.bk-confirm-btn { margin-top: 32px; }
.bk-done { text-align: center; }
.bk-done-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 22px;
  color: var(--accent);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bk-done .bk-sub { margin-bottom: 28px; }

/* Reuses the review-step summary component, constrained and left-aligned
   inside the centred confirmation panel. */
.bk-done-summary {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: left;
}
.bk-done .bk-hint { margin-bottom: 28px; }

/* --- navigation --- */

/* Components below set an explicit `display`, which outranks the browser's
   own [hidden] rule. Without this, elements the script hides — the whole
   action bar on the confirmation screen, Takaisin on step 01, Jatka on
   step 05 — would stay on screen. */
[hidden] { display: none !important; }

.bk-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-soft);
}
.bk-actions .btn:only-child { margin-left: auto; }

/* Explains why Jatka won't respond, since a disabled button gives no
   feedback of its own on click. Sits between the two buttons; empty
   and takes no visible space when there's nothing to explain. */
.bk-next-hint {
  align-self: center;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.booking-note {
  max-width: 1150px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* --------------------------------------------------------- footer ------- */

.site-footer {
  border-top: 1px solid var(--border-soft);
  padding-top: 72px;
  color: var(--muted);
  font-size: 15px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.site-footer h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.site-footer nav { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer nav a { color: var(--muted); }
.site-footer nav a:hover { color: var(--text); }
.site-footer .logo { display: inline-block; margin-bottom: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 13px;
}
.footer-bottom p { margin: 0; }

/* --------------------------------------------------------- responsive --- */

/* Below this the text column would land on the car, so stop overlaying:
   photo on top at its natural ratio, text underneath. */
@media (max-width: 1180px) {
  .about-section {
    display: block;
    min-height: 0;
    padding-top: 0;
  }
  .about-photo {
    position: static;
    height: auto;
    aspect-ratio: 1672 / 941;
    margin-bottom: 56px;
  }
  .about-section::after { content: none; }
  .about { display: block; }
  .about-text { max-width: 62ch; }
}

/* Five links plus the phone CTA get tight before the mobile menu kicks in. */
@media (max-width: 1024px) {
  .nav { gap: 20px; }
  .nav a { font-size: 14px; }
}

@media (max-width: 960px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .bk-steps { grid-template-columns: repeat(3, 1fr); }
  .bk-when { grid-template-columns: 1fr; gap: 32px; }
  .bk-cal { max-width: none; }
  .bk { padding: 36px 28px; }
  .bk-options { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-box { grid-template-columns: 1fr; gap: 40px; padding: 48px 40px; }

  /* Content first, cards after, one column — the aside no longer has a
     header edge worth pinning to. */
  .service-layout { grid-template-columns: 1fr; gap: 40px; }
  .service-aside { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-y: 72px; }

  .service-page { padding-top: calc(var(--header-h) + 40px); }
  .service-aside { grid-template-columns: 1fr; }

  /* Bottom sheet: the action bar has to stay within thumb reach on a phone. */
  .bk-modal {
    width: 100%;
    max-width: none;
    max-height: 90vh;
    margin: auto auto 0;
    border-width: 1px 0 0;
    border-radius: var(--r-md) var(--r-md) 0 0;
  }
  .bk-modal-inner { max-height: 90vh; }
  .bk-modal-head { padding: 16px 18px 12px; }
  .bk-modal-body { padding: 16px 18px; }
  .bk-modal-foot { padding: 12px 18px calc(14px + env(safe-area-inset-bottom)); }
  .bk-modal-foot-row { align-items: stretch; }
  .bk-modal-actions { flex: 1 1 100%; }
  .bk-modal-actions .btn { flex: 1 1 0; }

  /* No room for name and price side by side, so the price drops under the
     name — still inside the same row, never into a box of its own. */
  .bk-subopt > span { padding: 8px 12px 8px 38px; gap: 0; }
  .bk-subopt-title { flex: 1 1 100%; }
  .bk-subopt-meta {
    flex: 1 1 100%;
    margin-left: 0;
    margin-top: 1px;
    text-align: left;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--border-soft);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 16px;
  }
  /* Underline would clash with the row divider — tint the divider instead. */
  .nav a[aria-current="page"]::after { content: none; }
  .nav a[aria-current="page"] { border-bottom-color: var(--accent); }
  .nav .nav-cta {
    margin: 20px 0 0;
    border-bottom: none;
    justify-content: center;
  }
  .nav-toggle { display: flex; }

  /* In the burger menu the services are an accordion, not a popover: the row
     stays where it is and the six links open underneath it. */
  .nav-dropdown {
    display: block;
    align-self: auto;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 16px;
  }
  .nav-dropdown-toggle.is-current { border-bottom-color: var(--accent); }
  .nav-dropdown-toggle.is-current::after { content: none; }
  .nav-chevron { width: 14px; height: 14px; }

  .nav-dropdown-menu {
    position: static;
    padding-top: 0;
    transform: none;
  }
  .nav-dropdown-panel {
    min-width: 0;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    animation: none;
  }
  .nav-dropdown-panel::before { content: none; }
  .nav .nav-dropdown-panel a {
    /* Indented so the six services read as belonging to the row above, and
       tall enough to be an easy thumb target. */
    padding: 13px 0 13px 18px;
    border-bottom: 1px solid var(--border-soft);
    border-radius: 0;
    font-size: 15px;
  }
  .nav .nav-dropdown-panel a:hover,
  .nav .nav-dropdown-panel a[aria-current="page"] { background: none; }

  .hero { padding: 100px 0 72px; min-height: 100vh; }
  .services { grid-template-columns: 1fr; }
  .services li { padding: 32px 24px; }
  .svc-icon { top: 32px; right: 24px; }

  .reviews { --speed: 90s; }
  .reviews-group { gap: 16px; padding-inline: 8px; }
  .review { width: min(82vw, 340px); padding: 26px 24px 22px; }
  .hero-badges { gap: 8px; margin-bottom: 24px; }
  .badge { padding: 6px 12px; font-size: 10px; letter-spacing: 0.08em; gap: 8px; }

  .page-hero { padding: 56px 0 44px; }
  .bk-steps { grid-template-columns: repeat(2, 1fr); margin-bottom: 28px; }
  .bk-when { gap: 28px; }
  .bk-steps li { padding: 12px 12px 14px; }
  .bk { padding: 26px 20px; border-radius: var(--r-sm); }
  .bk-form-row { grid-template-columns: 1fr; }
  /* Stacked rather than side by side: on the narrowest phones the field and
     the button cannot both stay usable on one line. */
  .bk-discount-row { flex-direction: column; }
  .bk-discount-row .btn { width: 100%; }
  .bk-summary > div { grid-template-columns: 1fr; gap: 4px; }
  .bk-slots { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
  .bk-actions { flex-wrap: wrap; margin-top: 32px; }
  .bk-actions .btn { flex: 1; padding-inline: 16px; }
  .bk-next-hint { order: 3; width: 100%; margin-top: 12px; }

  .about-photo { margin-bottom: 40px; }
  .section-cta { padding: 56px 0; }
  .cta-box { padding: 34px 24px; gap: 32px; }
  .cta-action .btn { width: 100%; }
  .contact-form { padding: 28px 22px; }
  .contact-list > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

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

/* Reduced motion: stop the marquee and hand scrolling back to the user.
   Placed after the global block above so it wins on source order. */
@media (prefers-reduced-motion: reduce) {
  .reviews {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-track { animation: none !important; transform: none !important; }
  .review { scroll-snap-align: center; }
}
