/* ===================================================================
   חישור (Chishur) — bicycle workshop demo
   Standalone stylesheet. Deliberately its own visual identity:
   warm workshop paper + graphite ink + safety-orange accent,
   monoline "blueprint" illustration language, mechanical motion.
   =================================================================== */

:root {
  --paper: #f1ece1;
  --paper-soft: #e8e0cd;
  --surface: #ffffff;
  --surface-soft: #f7f2e6;
  --ink: #17140f;
  --text: #1d1a14;
  --muted: #6b6357;
  --line: #ddd3bd;
  --line-strong: #c7b99c;
  --accent: #dd5417;
  --accent-deep: #b9440f;
  --accent-soft: #ffe2c7;
  --safety: #e2a400;
  --on-accent: #fff9f2;
  --shadow: 0 26px 64px rgba(23, 18, 10, 0.16);
  --shadow-soft: 0 10px 28px rgba(23, 18, 10, 0.1);
  --container: 1220px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --section-space: clamp(4.5rem, 8vw, 7.5rem);
  --font-body: -apple-system, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans Hebrew", "Arial Hebrew", sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", "DejaVu Sans Mono", monospace;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --paper: #16130e;
  --paper-soft: #1c1811;
  --surface: #221c14;
  --surface-soft: #292219;
  --ink: #0b0a07;
  --text: #f3ece0;
  --muted: #a89c86;
  --line: #362d20;
  --line-strong: #493c29;
  --accent: #ff7c34;
  --accent-deep: #ff9558;
  --accent-soft: rgba(255, 124, 52, 0.16);
  --safety: #ffcf52;
  --on-accent: #1a1108;
  --shadow: 0 32px 76px rgba(0, 0, 0, 0.5);
  --shadow-soft: 0 16px 36px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.25s ease, color 0.25s ease;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent-soft); color: var(--accent-deep); }

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

.skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1.1rem;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  transform: translateY(-120%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.wrap { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section-space); }
[id] { scroll-margin-top: 92px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; font-weight: 780; letter-spacing: -0.02em; }

h1 {
  margin-bottom: 1.4rem;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.06;
}
h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; }
h3 { font-size: 1.2rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
[dir="ltr"] .eyebrow { letter-spacing: 0.08em; text-transform: uppercase; }
/* Hebrew has no monospaced face in the mono stack and must never be letter-spaced */
[dir="rtl"] .eyebrow, [dir="rtl"] .hours-label, [dir="rtl"] .footer-col h3 { font-family: var(--font-body); letter-spacing: 0; }
.eyebrow > span:first-child { width: 26px; height: 2px; flex: none; background: var(--accent); }
.eyebrow-light { color: var(--accent-soft); }
.eyebrow-light > span:first-child { background: var(--accent-soft); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.7; max-width: 620px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.7rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 12px 28px rgba(221, 84, 23, 0.28); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 16px 34px rgba(221, 84, 23, 0.34); }
.btn-ghost { border-color: var(--line-strong); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); background: var(--surface); }
.btn-light { background: var(--on-accent); color: var(--accent-deep); box-shadow: var(--shadow-soft); }
.btn-light:hover { background: #fff; }
.btn-lg { min-height: 56px; padding-inline: 1.6rem; font-size: 0.95rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 1.25rem; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; }
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  color: var(--accent);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text b { font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.brand-text i { font-style: normal; font-size: 0.66rem; color: var(--muted); font-weight: 600; }

.desktop-nav { display: flex; align-items: center; gap: clamp(1rem, 1.6vw, 1.9rem); margin-inline: auto; }
.desktop-nav a { position: relative; font-size: 0.86rem; font-weight: 650; color: var(--muted); transition: color 0.2s ease; }
.desktop-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -8px; height: 2px;
  background: var(--accent); border-radius: 1px; transform: scaleX(0); transition: transform 0.2s ease;
}
.desktop-nav a:hover { color: var(--text); }
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.lang-switch {
  display: flex; align-items: center; gap: 0.28rem;
  font-family: var(--font-mono); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.03em;
  color: var(--muted); padding: 0.4rem;
}
.lang-switch .lang-on { color: var(--text); }
.lang-switch .lang-div { color: var(--line-strong); }

.theme-toggle {
  position: relative;
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.theme-toggle:hover { border-color: var(--accent); transform: rotate(-14deg); }
.theme-toggle .icon { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.theme-toggle .icon-moon { display: none; fill: currentColor; }
[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: block; }

.menu-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface);
}
.menu-toggle span { width: 17px; height: 1.5px; background: var(--text); transition: transform 0.25s ease, opacity 0.2s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: absolute; top: 100%; inset-inline: 0; z-index: 99;
  height: calc(100svh - 78px);
  overflow-y: auto;
  background: var(--paper);
  visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.mobile-nav { display: flex; flex-direction: column; padding-block: 1.25rem 2.25rem; }
.mobile-nav a:not(.btn) {
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
  font-size: clamp(1.4rem, 6vw, 1.9rem); font-weight: 700;
}
.mobile-nav .mobile-whatsapp { margin-top: 1.4rem; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(7.5rem, 13vw, 10.5rem) 0 clamp(3.5rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 12% 20%, color-mix(in srgb, var(--accent) 10%, transparent) 0, transparent 32%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.hero-copy { position: relative; z-index: 2; }
.hero-desc { max-width: 560px; margin-bottom: 2rem; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.85rem; }
.hero-note { display: flex; align-items: center; gap: 0.6rem; margin: 1.5rem 0 0; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none; }

.hero-stage {
  position: relative;
  min-height: 480px;
  isolation: isolate;
}
.stage-backdrop {
  position: absolute; inset: 4% 0 0 6%;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(color-mix(in srgb, var(--text) 6%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--text) 6%, transparent) 1px, transparent 1px),
    var(--surface-soft);
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid var(--line);
  z-index: -1;
}

.bike-illustration {
  width: 100%;
  height: auto;
  overflow: visible;
  color: var(--text);
}
.bike-illustration .ground-line {
  stroke: var(--line-strong);
  stroke-width: 2;
  stroke-dasharray: 1 13;
  stroke-linecap: round;
}
.bike-illustration .tube {
  fill: none; stroke: currentColor; stroke-width: 9;
  stroke-linecap: round; stroke-linejoin: round;
}
.bike-illustration .joint { fill: var(--accent); }
.bike-illustration .saddle { fill: currentColor; }
.bike-illustration .tire { fill: none; stroke: currentColor; stroke-width: 9; }
.bike-illustration .rim { fill: none; stroke: currentColor; stroke-width: 3; opacity: 0.55; }
.bike-illustration .spoke line { stroke: currentColor; stroke-width: 2.4; opacity: 0.5; }
.bike-illustration .hub { fill: var(--paper); stroke: var(--accent); stroke-width: 4; }
.bike-illustration .cassette { fill: none; stroke: var(--accent); stroke-width: 3; }
.bike-illustration .teeth line { stroke: var(--accent); stroke-width: 3; stroke-linecap: round; }
.bike-illustration .pad { fill: var(--ink); opacity: 0.7; }
.bike-illustration .chainring { fill: none; stroke: var(--accent); stroke-width: 5; }
.bike-illustration .crank-arm { stroke: var(--accent); stroke-width: 8; stroke-linecap: round; }
.bike-illustration .pedal { fill: var(--accent); }
.bike-illustration .chain-run {
  stroke: var(--accent); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 1.5 9;
}

/* explode -> assemble */
.bike-illustration .bike-part {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  transition: transform 0.85s cubic-bezier(0.16, 0.9, 0.22, 1), opacity 0.6s ease;
}
.hero-bike:not(.is-assembled) [data-part="wheel-rear"] { transform: translate(-70px, 55px) rotate(-40deg); }
.hero-bike:not(.is-assembled) [data-part="wheel-front"] { transform: translate(70px, 55px) rotate(40deg); }
.hero-bike:not(.is-assembled) [data-part="frame"] { transform: translateY(-46px) scale(0.95); opacity: 0; transition-delay: 0.08s; }
.hero-bike:not(.is-assembled) [data-part="saddle"] { transform: translate(-16px, -70px) rotate(-24deg); opacity: 0; transition-delay: 0.22s; }
.hero-bike:not(.is-assembled) [data-part="handlebar"] { transform: translate(50px, -66px) rotate(30deg); opacity: 0; transition-delay: 0.18s; }
.hero-bike:not(.is-assembled) [data-part="crank"] { transform: translate(-34px, 62px) rotate(-50deg); opacity: 0; transition-delay: 0.26s; }
.hero-bike:not(.is-assembled) [data-part="brakes"] { opacity: 0; transition-delay: 0.3s; }
.hero-bike:not(.is-assembled) [data-part="chain"] { opacity: 0; transition-delay: 0.42s; }
.hero-bike.is-assembled [data-part] { transform: translate(0, 0) rotate(0) scale(1); opacity: 1; }

/* idle motion once assembled */
.bike-illustration .wheel-spin,
.bike-illustration .crank-spin {
  transform-box: fill-box;
  transform-origin: 50% 50%;
}
.hero-bike.is-assembled.is-idle .wheel-spin { animation: bike-spin 9s linear infinite; }
.hero-bike.is-assembled.is-idle [data-part="wheel-front"] .wheel-spin { animation-duration: 8.4s; }
.hero-bike.is-assembled.is-idle .crank-spin { animation: bike-spin 6s linear infinite; }
.hero-bike.is-assembled.is-idle .chain-run { animation: chain-move 1.1s linear infinite; }

@keyframes bike-spin { to { transform: rotate(360deg); } }
@keyframes chain-move { to { stroke-dashoffset: -21; } }

.hero-stage[data-parallax] .bike-illustration {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  transform: rotate(calc(var(--py, 0) * -2.2deg)) translate(calc(var(--px, 0) * 10px), calc(var(--py, 0) * 6px));
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.service-card {
  position: relative;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  background: var(--surface);
  min-height: 230px;
  display: flex; flex-direction: column;
  transition: background-color 0.25s ease;
}
.service-card:hover { background: var(--surface-soft); }
.service-icon { width: 34px; height: 34px; margin-bottom: 1.6rem; color: var(--accent); fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; }
.service-icon .fill { fill: currentColor; stroke: none; }
.service-icon .fill-none { fill: none; }
.service-num { font-family: var(--font-mono); font-size: 0.7rem; color: var(--muted); margin-bottom: 0.5rem; }
.service-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }

/* ---------- Workshop scroll-spy ---------- */
.workshop { background: var(--ink); color: var(--paper); }
.workshop .eyebrow-light { color: var(--accent-soft); }
.workshop h2 { color: var(--paper); }
.workshop-grid { display: grid; grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 6vw, 6rem); }
.workshop-heading { position: sticky; top: 108px; align-self: start; }
.workshop-heading > p:not(.eyebrow) { color: color-mix(in srgb, var(--paper) 68%, transparent); max-width: 480px; margin-bottom: 2rem; }

.workshop-stage { border: 1px solid color-mix(in srgb, var(--paper) 16%, transparent); border-radius: var(--radius-lg); background: color-mix(in srgb, var(--paper) 5%, transparent); padding: 1.5rem; }
.bike-illustration-mini { color: color-mix(in srgb, var(--paper) 55%, transparent); }
.bike-illustration-mini .hub { fill: var(--ink); }
.bike-illustration-mini [data-part] { transition: opacity 0.35s ease, filter 0.35s ease; opacity: 0.42; }
.bike-illustration-mini [data-part].is-active { opacity: 1; }
.bike-illustration-mini [data-part="wheels"].is-active .wheel-spin,
.bike-illustration-mini [data-part="drivetrain"].is-active .crank-spin { animation: bike-spin 5s linear infinite; }
.bike-illustration-mini [data-part="drivetrain"].is-active .chain-run { animation: chain-move 0.9s linear infinite; }
.bike-illustration-mini.is-final [data-part] { opacity: 1; }

.checkpoint-list { margin: 0; padding: 0; list-style: none; }
.checkpoint-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 1.25rem;
  padding: 1.8rem 0; border-top: 1px solid color-mix(in srgb, var(--paper) 14%, transparent);
  opacity: 0.55; transition: opacity 0.35s ease;
}
.checkpoint-item:last-child { border-bottom: 1px solid color-mix(in srgb, var(--paper) 14%, transparent); }
.checkpoint-item.is-active { opacity: 1; }
.checkpoint-num { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent); }
.checkpoint-item h3 { color: var(--paper); margin-bottom: 0.4rem; }
.checkpoint-item p { margin: 0; color: color-mix(in srgb, var(--paper) 66%, transparent); font-size: 0.92rem; }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.why-item { background: var(--surface-soft); padding: clamp(1.5rem, 2.4vw, 2rem); min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; }
.why-item .why-mark {
  display: grid; place-items: center;
  width: 30px; height: 30px; margin-bottom: auto;
  border: 1.5px solid var(--accent); border-radius: 8px;
  color: var(--accent);
}
.why-item .why-mark svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.why-item h3 { margin-top: 2.2rem; }
.why-item h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.why-item p { margin: 0; color: var(--muted); font-size: 0.88rem; }

/* ---------- Process ---------- */
.process-list { margin: 0; padding: 0; list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.process-item { position: relative; padding-top: 1.6rem; border-top: 3px solid var(--accent); }
.step-num { display: block; font-family: var(--font-mono); font-size: 0.78rem; color: var(--accent); margin-bottom: 0.9rem; }
.process-item h3 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.process-item p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.6; }
.process-item:not(:last-child)::after {
  content: ""; position: absolute; top: -3px; inset-inline-end: -0.9rem;
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  display: none;
}
@media (min-width: 900px) { .process-item:not(:last-child)::after { display: block; } }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 6vw, 6rem); }
.faq-heading { align-self: start; }
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-list details { border-bottom: 1px solid var(--line-strong); }
.faq-list summary {
  display: grid; grid-template-columns: 44px 1fr 22px; align-items: center; gap: 1rem;
  min-height: 76px; padding-block: 1rem; cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span.q-num { font-family: var(--font-mono); color: var(--accent); font-size: 0.72rem; }
.faq-list summary strong { font-size: 1.02rem; font-weight: 650; }
.faq-list summary i { position: relative; width: 18px; height: 18px; font-style: normal; }
.faq-list summary i::before, .faq-list summary i::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 1.6px;
  background: currentColor; transform: translate(-50%, -50%); transition: transform 0.2s ease;
}
.faq-list summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-list details > p { max-width: 640px; margin: -0.25rem 44px 1.4rem; color: var(--muted); font-size: 0.94rem; line-height: 1.65; }

/* ---------- Contact ---------- */
.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--on-accent);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact-copy { padding: clamp(2rem, 5vw, 4rem); }
.contact-copy h2 { color: var(--on-accent); max-width: 560px; }
.contact-copy p { color: color-mix(in srgb, var(--on-accent) 86%, transparent); max-width: 460px; margin-bottom: 1.8rem; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.contact-email { margin: 0; font-size: 0.82rem; color: color-mix(in srgb, var(--on-accent) 78%, transparent); }
.contact-email a { text-decoration: underline; text-underline-offset: 3px; color: var(--on-accent); font-weight: 600; }
.contact-hours {
  display: flex; flex-direction: column; justify-content: center; gap: 0.5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-inline-start: 1px solid color-mix(in srgb, var(--on-accent) 24%, transparent);
}
.hours-label { font-family: var(--font-mono); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.75; }
.hours-value { font-weight: 700; font-size: 1.05rem; font-variant-numeric: tabular-nums; }

/* ---------- Footer ---------- */
.site-footer { padding: clamp(3rem, 6vw, 4.5rem) 0 1.75rem; background: var(--ink); color: var(--paper); }
.footer-inner { display: grid; grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(140px, 0.6fr)); gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { max-width: 320px; margin: 1.1rem 0 0; color: color-mix(in srgb, var(--paper) 62%, transparent); font-size: 0.88rem; line-height: 1.6; }
.footer-brand .brand-mark { color: var(--accent); }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
.footer-col h3 { margin: 0 0 0.4rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: color-mix(in srgb, var(--paper) 45%, transparent); }
.footer-col a { color: color-mix(in srgb, var(--paper) 78%, transparent); font-size: 0.86rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--paper) 14%, transparent); }
.footer-bottom p { margin: 0; color: color-mix(in srgb, var(--paper) 48%, transparent); font-size: 0.72rem; }
.footer-bottom .credit a { color: var(--accent); font-weight: 700; }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed; inset-inline-end: 1.1rem; bottom: 1.1rem; z-index: 80;
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1e9e56; color: #fff;
  box-shadow: 0 14px 34px rgba(15, 90, 50, 0.35);
  font-weight: 800; font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 42px rgba(15, 90, 50, 0.42); }
.floating-whatsapp .wa-icon { width: 26px; height: 26px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .header-whatsapp { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
  .hero-stage { width: min(100%, 620px); margin-inline: auto; min-height: 420px; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-heading { position: static; }
  .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-hours { border-inline-start: 0; border-top: 1px solid color-mix(in srgb, var(--on-accent) 24%, transparent); }
}

@media (max-width: 640px) {
  .wrap { width: min(calc(100% - 2.5rem), var(--container)); }
  .header-inner { height: 66px; }
  .mobile-menu { height: calc(100svh - 66px); }
  html { scroll-padding-top: 74px; }
  [id] { scroll-margin-top: 74px; }
  .hero { padding-top: 7.6rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .services-grid, .why-grid, .process-list { grid-template-columns: 1fr; }
  .service-card, .why-item { min-height: 0; }
  .service-card { display: grid; grid-template-columns: 34px 1fr; column-gap: 1rem; padding: 1.4rem 1.25rem; }
  .service-card .service-icon { grid-row: span 3; margin-bottom: 0; }
  .why-item h3 { margin-top: 1.25rem; }
  .footer-bottom { padding-bottom: 4.5rem; }
  .checkpoint-item { grid-template-columns: 44px 1fr; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .brand-text i { display: none; }
  .header-actions { gap: 0.35rem; }
  .lang-switch { padding: 0.4rem 0.2rem; }
}

/* Dark mode: the always-dark workshop band and footer need light text in both themes
   (their text is derived from --paper, which turns dark in dark mode) */
:root[data-theme="dark"] .workshop, :root[data-theme="dark"] .site-footer { --paper: #f3ece0; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .bike-illustration .bike-part { transform: none !important; opacity: 1 !important; }
}
