/* ==========================================================================
   Lebacify — shared stylesheet
   Single light theme. Mobile-first. RTL-safe via CSS logical properties.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Fonts — self-hosted in /fonts (SIL OFL 1.1; latin + latin-ext subsets with
   unicode-range so a page only downloads what it uses). No CDN requests.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/InstrumentSerif-Regular-latin-9b8dd1ecf641700bf1caa9d17da6374e.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("/fonts/InstrumentSerif-Regular-latin-ext-b160c869d0b2cbc37621701ff7a85cc6.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/fonts/SchibstedGrotesk-Variable-latin-ba4038fc5cb57fda692c7fcae5662de1.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Schibsted Grotesk";
  src: url("/fonts/SchibstedGrotesk-Variable-latin-ext-65233324c91259d651c60a49417128b0.woff2") format("woff2");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Color tokens — all derived from the logo (see HANDOVER.md) */
  --violet: #7C3AED;
  --violet-dark: #6427D6;   /* hover / AA-safe on light tints */
  --violet-tint: #EDE9FE;
  --violet-wash: #F7F5FF;
  --teal: #00C2B2;
  --teal-dark: #00857A;     /* AA-safe teal for text/icons on white */
  --teal-tint: #CCFBF1;
  --ink: #0F172A;
  --ink-soft: #47546B;      /* secondary text, AA on white */
  --line: #E5E3F2;
  --white: #FFFFFF;

  /* Type — display face is Latin-only; long fallback chains cover other scripts */
  --font-display: "Instrument Serif", "Iowan Old Style", Georgia,
    "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", "Noto Serif KR",
    "Noto Serif SC", "Noto Naskh Arabic", "Tahoma", serif;
  --font-text: "Schibsted Grotesk", "Segoe UI", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo",
    "Malgun Gothic", "Microsoft YaHei", "Noto Sans Thai", "Noto Sans Devanagari",
    Tahoma, Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --header-h: 4.25rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  text-wrap: pretty;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin-block: 0 0.5em;
  text-wrap: balance;
  overflow-wrap: break-word; /* survives long compound words (de/nl) */
}

p { margin-block: 0 1em; }

a { color: var(--violet-dark); text-underline-offset: 0.15em; }
a:hover { color: var(--ink); }

img, svg { display: block; max-inline-size: 100%; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  max-inline-size: 70rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.skip-link {
  position: absolute;
  inset-block-start: -100%;
  inset-inline-start: 1rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 100;
}
.skip-link:focus { inset-block-start: 0; color: var(--white); }

/* ------------------------------------------------- buttons --------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-block-size: 3rem; /* comfortable touch target */
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--violet); color: var(--white); }
.btn-primary:hover { background: var(--violet-dark); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--violet-dark); border-color: var(--violet); }
.btn-secondary:hover { background: var(--violet-tint); color: var(--violet-dark); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

/* ------------------------------------------------- header ---------------- */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-block-end: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-block-size: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  block-size: 3rem;
  inline-size: 3rem;
}
.brand-wordmark {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.env-badge:not(:empty) {
  background: var(--teal-tint);
  color: var(--teal-dark);
  border: 1px solid var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}

.site-nav { margin-inline-start: auto; }
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  min-block-size: 2.75rem;
  padding-inline: 0.85rem;
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.site-nav a:not(.btn):hover { background: var(--violet-tint); color: var(--ink); }

.nav-toggle {
  display: none;
  margin-inline-start: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
}

/* Language switcher — <details> based, works without JS, entries are links */
.lang-switcher { position: relative; }
.lang-switcher summary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-block-size: 2.75rem;
  padding-inline: 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  border: 1px solid var(--line);
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher summary:hover { background: var(--violet-tint); }
.lang-switcher[open] summary { background: var(--violet-tint); border-color: var(--violet); }
.site-nav .lang-menu {
  position: absolute;
  inset-inline-end: 0;
  inset-block-start: calc(100% + 0.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(8.5rem, 1fr));
  gap: 0.1rem;
  max-block-size: 60vh;
  overflow-y: auto;
  z-index: 60;
}
.lang-menu a {
  display: block;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 400;
}
.lang-menu a:hover { background: var(--violet-tint); color: var(--ink); }
.lang-menu a[aria-current="true"] {
  background: var(--violet);
  color: var(--white);
  font-weight: 700;
}

/* ------------------------------------------------- hero ------------------ */
.hero {
  background:
    radial-gradient(60rem 30rem at 85% -10%, var(--teal-tint) 0%, transparent 60%),
    radial-gradient(50rem 28rem at 0% 10%, var(--violet-tint) 0%, transparent 65%),
    var(--white);
  padding-block: clamp(3rem, 8vw, 6rem) clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero .container {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
/* The visual hero headline — a div, not the h1 (the crawlable h1 is visually hidden;
   the rotating display copy should not be the document heading) */
.hero-heading {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin-block: 0 0.5em;
  text-wrap: balance;
  overflow-wrap: break-word;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
/* Rotating hero messages: without JS only the first shows; with .js they
   grid-stack and crossfade. All strings stay real text nodes. */
.rotator { display: grid; }
.rotator .rot { grid-area: 1 / 1; }
.hero-rotator:not(.js) .rot:not(:first-child) { display: none; }
.hero-rotator.js .rot {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}
.hero-rotator.js .rot.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.55s ease 0.1s, transform 0.55s ease 0.1s;
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator.js .rot { transition: none; }
}
.hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-soft);
  max-inline-size: 34em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-block-start: 1.5rem; }
/* Slideshow controls (hero + feature show) — only shown once JS actually rotates */
.slide-nav { display: none; gap: 0.6rem; margin-block-start: 1.5rem; }
.hero-rotator.js ~ .slide-nav { display: flex; }
.feature-show.js .slide-nav { display: flex; }
.slide-nav-btn {
  inline-size: 2.75rem;
  block-size: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}
.slide-nav-btn:hover { border-color: var(--violet); color: var(--violet-dark); background: var(--violet-tint); }
.slide-nav-btn svg { display: block; }
/* Pause button shows its state: bars while rotating, triangle while paused */
.slide-nav-btn .icon-play { display: none; }
.slide-nav-btn.paused .icon-pause { display: none; }
.slide-nav-btn.paused .icon-play { display: block; }
.hero-art {
  position: relative;
  display: grid;
  max-inline-size: 30rem;
  margin-inline: auto;
}
/* Illustrations crossfade in sync with the rotating question (data-scene 1-7) */
.hero-art img {
  grid-area: 1 / 1;
  inline-size: 100%;
  block-size: auto;
  border-radius: var(--radius-lg);
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.hero-art img:first-child,
.hero-art[data-scene="1"] img:nth-child(1),
.hero-art[data-scene="2"] img:nth-child(2),
.hero-art[data-scene="3"] img:nth-child(3),
.hero-art[data-scene="4"] img:nth-child(4),
.hero-art[data-scene="5"] img:nth-child(5),
.hero-art[data-scene="6"] img:nth-child(6),
.hero-art[data-scene="7"] img:nth-child(7) { opacity: 1; transform: none; }
.hero-art[data-scene]:not([data-scene="1"]) img:first-child { opacity: 0; transform: scale(0.97); }
@media (prefers-reduced-motion: reduce) {
  .hero-art img { transition: none; }
}

/* ------------------------------------------------- sections -------------- */
.section { padding-block: clamp(3rem, 8vw, 5.5rem); }
.section-alt { background: var(--violet-wash); }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.section .section-intro { color: var(--ink-soft); max-inline-size: 38em; margin-block-end: 2.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-block-end: 1rem;
}

/* How it works */
.steps {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  border-radius: 50%;
  background: var(--violet);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-block-end: 1rem;
}
.step h3 { font-size: 1.5rem; }
.step p { color: var(--ink-soft); margin-block-end: 0; }
.step-art { margin-block-start: 1.25rem; }
/* Only the last step carries a call to action: an inline link continuing the sentence. */
.step-cta { color: var(--violet); font-weight: 700; white-space: nowrap; }

/* Features — grid fallback (no JS) */
.features {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.feature h3 { font-size: 1.4rem; }
.feature p { color: var(--ink-soft); margin-block-end: 0; }
.slide-art { display: none; }

/* Features — slideshow mode (site.js adds .js) */
.feature-show.js .features { display: grid; }
.feature-show.js .feature {
  grid-area: 1 / 1;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0s linear 0.45s;
}
.feature-show.js .feature.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.5s ease 0.12s, transform 0.5s ease 0.12s;
}
.feature-show.js .feature h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.feature-show.js .slide-art {
  display: block;
  inline-size: min(100%, 21rem);
  margin-inline: auto;
}
@media (min-width: 48em) {
  .feature-show.js .feature { grid-template-columns: 1.1fr 0.9fr; }
}
@media (prefers-reduced-motion: reduce) {
  .feature-show.js .feature { transition: none; }
}

/* Intro video */
.video-section { padding-block: 0 clamp(2rem, 5vw, 3.5rem); }
.video-frame {
  position: relative;
  max-inline-size: 52rem;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--violet-wash);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* Label sits behind the video; visible only while the video shows no frames.
   Engineer: remove .video-placeholder (and this rule) once intro.mp4 ships,
   or leave it — a loaded video/poster fully covers it. */
.video-placeholder {
  position: absolute;
  inset: 0;
  margin: 0;
  display: grid;
  place-content: center;
  gap: 0.25rem;
  text-align: center;
  color: var(--ink-soft);
  padding: 1rem;
}
.video-placeholder strong { color: var(--violet-dark); }
.video-frame video {
  position: relative;
  display: block;
  inline-size: 100%;
  block-size: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--violet) 0%, #5B21B6 100%);
  color: var(--white);
  text-align: center;
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); }
.cta-band p { color: var(--violet-tint); max-inline-size: 34em; margin-inline: auto; }
.cta-band .btn-primary { background: var(--white); color: var(--violet-dark); margin-block-start: 1rem; }
.cta-band .btn-primary:hover { background: var(--violet-tint); }

/* ------------------------------------------------- legal pages ----------- */
.page-head {
  background: var(--violet-wash);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-block-end: 1px solid var(--line);
}
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-block-end: 0.25em; }
.page-head .page-meta { color: var(--ink-soft); margin: 0; }

.legal {
  padding-block: clamp(2.5rem, 6vw, 4rem);
  max-inline-size: 44rem;
}
.legal h2 { font-size: 1.7rem; margin-block-start: 2.2em; }
.legal h3 { font-size: 1.25rem; font-family: var(--font-text); font-weight: 700; margin-block-start: 1.8em; }
.legal ul { padding-inline-start: 1.25rem; }
.legal li { margin-block-end: 0.4em; }
.legal table { border-collapse: collapse; inline-size: 100%; font-size: 0.95rem; }
.legal th, .legal td {
  text-align: start;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  vertical-align: top;
}
.legal th { background: var(--violet-wash); }
mark.ph {
  background: var(--teal-tint);
  color: var(--teal-dark);
  font-weight: 700;
  padding: 0.05em 0.3em;
  border-radius: 4px;
}

/* ------------------------------------------------- error page ------------ */
.error-page {
  min-block-size: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 4rem;
}
.error-page svg { margin-inline: auto; }
.error-page h1 { font-size: clamp(2.4rem, 6vw, 3.5rem); }
.error-page p { color: var(--ink-soft); max-inline-size: 30em; }

/* ------------------------------------------------- footer ---------------- */
.site-footer {
  background: var(--ink);
  color: #C7CEDD;
  padding-block: 3rem 2rem;
  margin-block-start: 0;
}
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--teal); }
.footer-grid {
  display: grid;
  gap: 2rem;
  padding-block-end: 2rem;
  border-block-end: 1px solid rgba(255, 255, 255, 0.15);
}
.footer-brand p { max-inline-size: 26em; }
.footer-logo {
  /* dark footer: wordmark is dark slate, so it sits on a light chip */
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  border-radius: 10px;
  padding: 0.4rem 0.75rem;
  margin-block-end: 1rem;
}
.footer-logo-mark {
  block-size: 1.8rem;
  inline-size: 1.8rem;
}
.footer-logo-wordmark {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}
.site-footer h2 { font-family: var(--font-text); font-size: 0.95rem; font-weight: 700; color: var(--white); }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-legal {
  padding-block-start: 1.5rem;
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.footer-legal p { margin: 0; }

/* ------------------------------------------------- WhatsApp float -------- */
/* Mirrors the ariamax.nl button; WhatsApp brand green on purpose. Sits below the
   consent banner (z 90) so the legally required prompt always wins. */
.whatsapp-float {
  position: fixed;
  inset-inline-end: 1.25rem;
  inset-block-end: 1.25rem;
  inline-size: 3.6rem;
  block-size: 3.6rem;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  z-index: 80;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.whatsapp-float:hover {
  background: #20BA5A;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}
.whatsapp-float svg {
  inline-size: 1.9rem;
  block-size: 1.9rem;
  fill: currentColor;
}

/* ------------------------------------------------- consent banner -------- */
.consent-banner {
  position: fixed;
  inset-block-end: 1rem;
  inset-inline: 1rem;
  z-index: 90;
  max-inline-size: 42rem;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
  padding: 1.25rem 1.5rem;
}
.consent-banner[hidden] { display: none; }
.consent-banner p { margin-block-end: 1rem; font-size: 0.95rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.consent-actions .btn { min-block-size: 2.6rem; padding-block: 0.4rem; font-size: 0.95rem; }

/* ------------------------------------------------- responsive ------------ */
@media (max-width: 47.99em) {
  /* Hero: fit the first viewport on small phones — tighter spacing and type, the
     CTA pair on one line, and the slideshow controls below the hero image. The
     copy wrapper becomes display:contents so its pieces are grid items that can
     reorder around the art; desktop keeps the two-column layout untouched. */
  .hero { padding-block: 1.5rem 2.5rem; }
  .hero .container { gap: 1.25rem; }
  .hero-heading { font-size: clamp(1.65rem, 7.5vw, 2.6rem); }
  .hero .lede { font-size: 1rem; margin-block-end: 0; }
  .hero-copy { display: contents; }
  .hero-rotator { order: 1; }
  .hero-actions { order: 2; margin-block-start: 0; gap: 0.6rem; }
  .hero-actions .btn { min-block-size: 2.75rem; padding-inline: 1.15rem; }
  .hero-art { order: 3; }
  .hero-copy .slide-nav { order: 4; margin-block-start: 0; }
  .slide-nav { justify-content: center; }

  .whatsapp-float {
    inset-inline-end: 0.9rem;
    inset-block-end: 0.9rem;
    inline-size: 3.2rem;
    block-size: 3.2rem;
  }
  .whatsapp-float svg { inline-size: 1.7rem; block-size: 1.7rem; }

  .nav-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    inset-block-start: 100%;
    background: var(--white);
    border-block-end: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem 1.25rem 1.5rem;
  }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .site-nav a:not(.btn) { min-block-size: 3rem; }
  .site-nav .btn { inline-size: 100%; }
  .site-nav .lang-menu { position: static; grid-template-columns: repeat(2, 1fr); box-shadow: none; }
}

@media (min-width: 48em) {
  .hero .container { grid-template-columns: 1.1fr 0.9fr; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feature-show:not(.js) .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (min-width: 64em) {
  .feature-show:not(.js) .features { grid-template-columns: repeat(4, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* utility */
.visually-hidden {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.placeholder-shot { min-block-size: 22rem; }
