:root {
  --ink: #101110;
  --ink-2: #181a18;
  --paper: #f2f1ed;
  --white: #ffffff;
  --muted: #a8aaa5;
  --line-dark: rgba(255,255,255,.16);
  --line-light: rgba(16,17,16,.16);
  --max: 1240px;
  --nav-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }
::selection { background: var(--ink); color: var(--white); }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.section-dark { background: var(--ink); color: var(--white); }
.section-light { background: var(--paper); color: var(--ink); }
.section-paper { background: #e8e7e2; color: var(--ink); }

.skip-link { position: fixed; left: 16px; top: -100px; z-index: 999; background: #fff; padding: 10px 16px; }
.skip-link:focus { top: 10px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(16,17,16,.91);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  height: 100%;
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
}
.brand { justify-self: start; }
.brand img { width: 208px; }
.main-nav { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.main-nav a { transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: #fff; }
.nav-cta { justify-self: end; border: 1px solid var(--line-dark); color: #fff; padding: 11px 16px; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; transition: .2s ease; }
.nav-cta:hover { background: #fff; color: #111; }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; color: #fff; }
.menu-toggle span { width: 24px; height: 2px; display: block; background: currentColor; margin: 5px 0; }

.hero { min-height: 760px; padding: calc(var(--nav-h) + 80px) 0 34px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  inset: var(--nav-h) 0 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-grid { flex: 1; position: relative; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 60px; }
.eyebrow { margin: 0 0 26px; color: #c4c6c0; font-size: .72rem; font-weight: 800; letter-spacing: .17em; }
.eyebrow span { color: #fff; padding: 0 7px; }
.hero h1 { margin: 0; max-width: 820px; font-family: "Space Grotesk", sans-serif; font-size: clamp(3.7rem, 7vw, 7.2rem); line-height: .88; letter-spacing: -.065em; text-transform: uppercase; }
.hero h1 span { color: #8e918a; }
.hero-lead { max-width: 670px; margin: 34px 0 0; color: #c7c9c4; font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 52px; padding: 0 20px; border: 1px solid transparent; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: .2s ease; }
.btn-light { background: #fff; color: #111; }
.btn-light:hover { background: #d8dad4; }
.btn-ghost { color: #fff; border-color: var(--line-dark); }
.btn-ghost:hover { border-color: #fff; }
.btn.full { width: 100%; margin-top: 10px; }
.hero-mark { position: relative; min-height: 460px; display: grid; place-items: center; }

/* Bike animation: the original mark stays intact, while subtle spokes rotate behind it. */
.bike-stage {
  position: relative;
  width: min(390px, 88%);
  aspect-ratio: 290 / 160;
  z-index: 2;
  transform-origin: 50% 72%;
  animation: bikeFloat 5s ease-in-out infinite;
  will-change: transform;
}
.bike-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,.3));
  pointer-events: none;
}
.bike-wheel {
  position: absolute;
  width: 33.2%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 1;
  opacity: .28;
  background:
    linear-gradient(90deg, transparent 48.8%, rgba(255,255,255,.72) 49.2% 50.8%, transparent 51.2%),
    linear-gradient(0deg, transparent 48.8%, rgba(255,255,255,.72) 49.2% 50.8%, transparent 51.2%),
    linear-gradient(45deg, transparent 48.95%, rgba(255,255,255,.46) 49.3% 50.7%, transparent 51.05%),
    linear-gradient(-45deg, transparent 48.95%, rgba(255,255,255,.46) 49.3% 50.7%, transparent 51.05%);
  animation: wheelSpin 2.4s linear infinite;
  will-change: transform;
}
.bike-wheel--rear { left: 2.8%; top: 34.2%; }
.bike-wheel--front { left: 64.1%; top: 34.7%; opacity: .34; }

.bike-stage:hover { animation: bikePedal .72s ease-in-out infinite; }
.bike-stage:hover .bike-wheel { animation-duration: .62s; opacity: .48; }

.mark-orbit { position: absolute; width: 420px; aspect-ratio: 1; border: 1px solid var(--line-dark); border-radius: 50%; }
.mark-orbit::before, .mark-orbit::after { content: ""; position: absolute; inset: 38px; border: 1px dashed rgba(255,255,255,.12); border-radius: 50%; }
.mark-orbit::before { animation: orbitSpin 28s linear infinite; }
.mark-orbit::after { inset: 94px; border-style: solid; animation: orbitPulse 5s ease-in-out infinite; }
.bosch-chip { position: absolute; right: 8%; bottom: 6%; z-index: 3; background: #fff; color: #111; padding: 10px 12px 9px; min-width: 125px; transform: rotate(5deg); box-shadow: 10px 10px 0 rgba(255,255,255,.08); }
.bosch-chip strong, .bosch-chip span { display: block; }
.bosch-chip strong { font-size: 1.05rem; letter-spacing: .08em; }
.bosch-chip span { margin-top: 2px; font-size: .58rem; font-weight: 800; letter-spacing: .11em; }
@keyframes bikeFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}
@keyframes bikePedal {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  35% { transform: translateY(-4px) rotate(-2.8deg); }
  70% { transform: translateY(1px) rotate(-1.2deg); }
}
@keyframes wheelSpin { to { transform: rotate(360deg); } }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
@keyframes orbitPulse {
  0%,100% { opacity: .65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.035); }
}

/* 10-second hover easter egg: the bike leaves the hero, laps the viewport and returns. */
.bike-stage.is-away { opacity: 0; }
.bike-easteregg-rider {
  position: fixed !important;
  left: 0;
  top: 0;
  margin: 0 !important;
  z-index: 99999;
  pointer-events: none;
  animation: none !important;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.32));
}
.bike-easteregg-rider .bike-logo { filter: none; }
.bike-easteregg-rider .bike-wheel { animation-duration: .34s; opacity: .56; }

.ticker { background: #fff; color: #111; overflow: hidden; border-bottom: 1px solid var(--line-light); }
.ticker-track { width: max-content; display: flex; animation: ticker 28s linear infinite; }
.ticker span { display: block; white-space: nowrap; padding: 13px 0; font-family: "Space Grotesk", sans-serif; font-size: .84rem; font-weight: 700; letter-spacing: .08em; }
@keyframes ticker { to { transform: translateX(-50%); } }

.services, .process, .reviews { padding: 120px 0; }
.section-head { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; margin-bottom: 58px; }
.section-head.compact { grid-template-columns: 1fr; }
.section-index { margin: 0 0 20px; color: #686a65; font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.section-index.inverse { color: #888b84; }
.section-head h2, .contact-top h2, .statement h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.7rem, 5vw, 5.1rem); line-height: .95; letter-spacing: -.055em; text-transform: uppercase; }
.section-head > p { margin: 0 0 4px; color: #585a55; font-size: 1rem; line-height: 1.75; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.service-card { min-height: 390px; padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.service-card-dark { background: var(--ink); color: #fff; }
.card-no { color: #7d8079; font-size: .65rem; font-weight: 800; letter-spacing: .12em; }
.card-icon { margin: 42px 0 46px; font-family: "Space Grotesk", sans-serif; font-size: 2.4rem; }
.service-card h3 { margin: 0 0 12px; font-family: "Space Grotesk", sans-serif; font-size: 1.45rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: #666862; line-height: 1.65; font-size: .92rem; }
.service-card-dark p { color: #b8bbb4; }
.service-card ul { margin: auto 0 0; padding: 18px 0 0; list-style: none; border-top: 1px solid var(--line-light); color: #5c5e59; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.service-card li + li { margin-top: 8px; }
.mini-badge { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-dark); color: #fff; font-size: .65rem; font-weight: 800; letter-spacing: .09em; }


.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  transition:
    background-color .28s ease,
    color .28s ease,
    transform .28s cubic-bezier(.2,.75,.25,1);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.2,.75,.25,1);
  opacity: .72;
}
.service-card:not(.service-card-dark):hover,
.service-card:not(.service-card-dark):focus-visible,
.service-card:not(.service-card-dark).is-active {
  background: #e8e7e1;
}
.service-card:hover::before,
.service-card:focus-visible::before,
.service-card.is-active::before {
  transform: scaleX(1);
}
.service-card:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ink);
}
.service-card .card-icon {
  transition: transform .38s cubic-bezier(.2,.75,.25,1);
}
.service-card:hover .card-icon,
.service-card:focus-visible .card-icon,
.service-card.is-active .card-icon {
  transform: translateY(-5px) rotate(-4deg);
}
.card-peek {
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6c6f68;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .11em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}
.service-card-dark .card-peek { color: rgba(255,255,255,.62); }
.service-card:hover .card-peek,
.service-card:focus-visible .card-peek,
.service-card.is-active .card-peek {
  opacity: 1;
  transform: none;
}
.card-peek b {
  font-size: .9rem;
  font-weight: 600;
  transition: transform .25s ease;
}
.service-card:hover .card-peek b,
.service-card.is-active .card-peek b { transform: translate(2px, 2px); }

/* Expanding service preview */
.service-preview-shell {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows .62s cubic-bezier(.18,.8,.22,1),
    opacity .32s ease;
}
.service-preview-shell.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}
.service-preview-clip { overflow: hidden; }
.service-preview {
  min-height: 390px;
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--line-dark);
  transform: translateY(-24px);
  opacity: 0;
  transition:
    transform .58s cubic-bezier(.18,.8,.22,1),
    opacity .35s ease;
}
.service-preview-shell.is-open .service-preview {
  transform: none;
  opacity: 1;
}
.service-preview-media {
  min-height: 390px;
  position: relative;
  overflow: hidden;
  background: #1a1b1a;
}
.service-preview-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 58%, rgba(16,17,16,.22)),
    linear-gradient(0deg, rgba(16,17,16,.18), transparent 55%);
}
.service-preview-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 50% 50%;
  filter: grayscale(1) contrast(1.06);
  transform: scale(1.01);
  transition: opacity .22s ease, transform .8s cubic-bezier(.2,.75,.25,1);
}
.service-preview-media img.is-changing {
  opacity: .08;
  transform: scale(1.045);
}
.service-preview-count {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 20px;
  padding: 8px 10px;
  background: #fff;
  color: var(--ink);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.service-preview-copy {
  position: relative;
  min-width: 0;
  padding: 24px 26px 28px;
  border-left: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
}
.service-preview-close {
  align-self: flex-end;
  border: 0;
  background: transparent;
  color: #878a83;
  padding: 0;
  cursor: pointer;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
}
.service-preview-close span {
  display: inline-block;
  margin-left: 8px;
  color: #fff;
  font-size: 1rem;
  transition: transform .25s ease;
}
.service-preview-close:hover span { transform: rotate(90deg); }
.service-preview-copy-inner { margin: auto 0 0; }
.service-preview-kicker {
  margin: 0 0 18px;
  color: #8e918a;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .13em;
}
.service-preview-copy h3 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.75rem, 2.7vw, 2.8rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.service-preview-copy p:not(.service-preview-kicker) {
  margin: 0;
  color: #b9bbb6;
  font-size: .9rem;
  line-height: 1.7;
}
.service-preview-note {
  display: block;
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: #777a73;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.5;
}

@media (max-width: 1020px) {
  .service-preview { grid-template-columns: 1.2fr .8fr; }
}
@media (max-width: 680px) {
  .service-card { min-height: 330px; }
  .card-peek {
    opacity: 1;
    transform: none;
    top: 18px;
    right: 16px;
  }
  .service-preview {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .service-preview-media { min-height: 260px; }
  .service-preview-media img { min-height: 260px; }
  .service-preview-copy {
    min-height: 285px;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }
}

.statement { padding: 130px 0; }
.statement-grid { display: grid; grid-template-columns: .4fr 1.6fr; gap: 70px; }
.bolt { margin-top: 60px; width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-dark); font-size: 2.4rem; }
.statement-copy h2 span { color: #7f827b; }
.statement-copy > p { max-width: 820px; margin: 38px 0; color: #b8bbb4; font-size: 1.05rem; line-height: 1.8; }
.statement-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.statement-tags span { border: 1px solid var(--line-dark); padding: 9px 12px; color: #c5c7c2; font-size: .65rem; font-weight: 800; letter-spacing: .1em; }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); }
.process-step { min-height: 250px; padding: 30px 28px 20px 0; border-right: 1px solid var(--line-light); }
.process-step + .process-step { padding-left: 28px; }
.process-step span { color: #7f817c; font-size: .68rem; font-weight: 800; }
.process-step h3 { margin: 62px 0 10px; font-family: "Space Grotesk", sans-serif; font-size: 1.45rem; }
.process-step p { max-width: 330px; margin: 0; color: #666862; line-height: 1.65; font-size: .92rem; }

.review-grid { display: grid; grid-template-columns: 1.25fr 1fr .8fr; gap: 14px; align-items: stretch; }
.review-card { margin: 0; min-height: 350px; background: #f7f6f2; border: 1px solid var(--line-light); padding: 28px; display: flex; flex-direction: column; }
.quote-mark { font-family: Georgia, serif; font-size: 4rem; line-height: .7; }
.review-card p { margin: auto 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.08rem, 1.8vw, 1.55rem); line-height: 1.35; letter-spacing: -.025em; }
.review-card footer { color: #777a73; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.contact { padding: 120px 0 70px; }
.contact-top { margin-bottom: 60px; }
.contact-top h2 span { color: #7f827b; }
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 18px; }
.contact-panel { border: 1px solid var(--line-dark); padding: 30px; display: flex; flex-direction: column; }
.contact-block { padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.contact-block:first-child { padding-top: 0; }
.contact-block.split { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-label { display: block; color: #888b84; margin-bottom: 10px; font-size: .62rem; font-weight: 800; letter-spacing: .13em; }
.contact-block p, .contact-block a { margin: 0; color: #fff; font-size: 1.05rem; line-height: 1.6; }
.contact-block a { display: inline-block; border-bottom: 1px solid transparent; }
.contact-block a:hover { border-color: currentColor; }
.map-wrap { min-height: 520px; position: relative; overflow: hidden; background: #2a2c29; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(1) contrast(1.08) invert(.92); }
.map-stamp { position: absolute; top: 20px; right: 20px; z-index: 2; background: #111; color: #fff; padding: 12px 14px; font-size: .62rem; font-weight: 800; letter-spacing: .08em; line-height: 1.45; }

.site-footer { background: #0a0b0a; color: #fff; padding: 42px 0; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 40px; }
.footer-brand img { width: 210px; }
.footer-brand p { margin: 10px 0 0; color: #777a73; font-size: .75rem; }
.footer-details { display: flex; gap: 14px; flex-wrap: wrap; color: #858881; font-size: .68rem; }
.footer-details span:not(:last-child)::after { content: " /"; padding-left: 14px; }
.studio-link { color: #8b8e87; font-size: .72rem; }
.studio-link strong { color: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1); }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1020px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; justify-self: end; }
  .main-nav.open { display: flex; position: fixed; top: var(--nav-h); left: 0; right: 0; height: calc(100vh - var(--nav-h)); background: #111; padding: 36px 24px; flex-direction: column; align-items: flex-start; gap: 18px; font-size: 1.4rem; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-mark { min-height: 350px; }
  .mark-orbit { width: 340px; }
  .section-head { grid-template-columns: 1fr; gap: 26px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .statement-grid { grid-template-columns: 1fr; }
  .statement-kicker { display: flex; justify-content: space-between; align-items: center; }
  .bolt { margin-top: 0; width: 72px; height: 72px; }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .review-card:first-child { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .studio-link { justify-self: end; }
  .footer-details { grid-column: span 2; }
}

@media (max-width: 680px) {
  :root { --nav-h: 68px; }
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 176px; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 54px); }
  .hero-grid { gap: 26px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-lead { margin-top: 24px; font-size: .98rem; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-mark { min-height: 290px; }
  .bike-stage { width: 285px; }
  .mark-orbit { width: 280px; }
  .bosch-chip { right: 2%; bottom: 7%; transform: scale(.86) rotate(3deg); transform-origin: bottom right; }
  .services, .process, .reviews { padding: 84px 0; }
  .statement, .contact { padding: 84px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2, .contact-top h2, .statement h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .statement-copy > p { font-size: .96rem; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step, .process-step + .process-step { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line-light); min-height: 0; }
  .process-step h3 { margin-top: 34px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card:first-child { grid-column: auto; }
  .review-card { min-height: 290px; }
  .contact-block.split { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .studio-link { justify-self: start; }
  .footer-details { grid-column: auto; }
}

/* ===== v2: prodej-first layout ===== */
.hero-lead strong { color: #fff; font-weight: 800; }

/* Seamless carousel in the same continuous style as KAFKA//STUDIO */
.ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerLoop 26s linear infinite;
  will-change: transform;
}
.ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.ticker-group span,
.ticker-group b {
  display: block;
  padding: 14px 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
}
.ticker-group b { padding-inline: 4px; font-size: .7rem; }
@keyframes tickerLoop {
  from { transform: translate3d(0,0,0); }
  to { transform: translate3d(-50%,0,0); }
}

.featured-card { position: relative; overflow: hidden; }
.featured-card::after {
  content: "eBIKE";
  position: absolute;
  right: -8px;
  bottom: -28px;
  color: rgba(255,255,255,.045);
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -.08em;
}

.experience { padding: 130px 0; }
.experience-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
  align-items: center;
}
.experience-number {
  min-height: 390px;
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.experience-number::after {
  content: "+";
  position: absolute;
  right: -14px;
  bottom: -72px;
  color: rgba(255,255,255,.04);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18rem;
  line-height: 1;
}
.experience-number strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(6.5rem, 13vw, 11rem);
  line-height: .78;
  letter-spacing: -.09em;
}
.experience-number span {
  color: #a4a7a0;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
}
.experience-copy h2,
.service-support h2,
.hours h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.experience-copy h2 span { color: #7f827b; }
.experience-copy > p {
  max-width: 790px;
  margin: 38px 0;
  color: #b8bbb4;
  font-size: 1.05rem;
  line-height: 1.8;
}

.service-support { padding: 110px 0; }
.service-support-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 90px;
  align-items: start;
}
.service-support h2 span { color: #7b7e77; }
.service-support-copy > p:not(.section-index) {
  max-width: 700px;
  margin: 30px 0 26px;
  color: #5f615c;
  line-height: 1.8;
}
.text-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.service-list { border-top: 1px solid var(--line-light); }
.service-list div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
}
.service-list span { color: #8a8c86; font-size: .65rem; font-weight: 800; }
.service-list strong { font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; }

.hours { padding: 110px 0; }
.hours-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}
.hours h2 span { color: #858881; }
.hours-copy > p:not(.section-index) {
  max-width: 630px;
  margin: 28px 0 0;
  color: #656761;
  line-height: 1.75;
}
.hours-copy code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .82em;
  background: rgba(16,17,16,.07);
  padding: 2px 5px;
}
.hours-card {
  background: #111;
  color: #fff;
  border: 1px solid #111;
  padding: 28px;
  box-shadow: 18px 18px 0 rgba(16,17,16,.08);
}
.live-status {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line-dark);
}
.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #8e918a;
  box-shadow: 0 0 0 6px rgba(255,255,255,.06);
  flex: 0 0 auto;
}
.live-status.is-open .status-dot {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255,255,255,.12), 0 0 24px rgba(255,255,255,.28);
}
.live-status.is-closed .status-dot { opacity: .6; }
.status-label {
  display: block;
  color: #8f928b;
  margin-bottom: 2px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.live-status strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.05;
}
.live-status small {
  display: block;
  margin-top: 5px;
  color: #aeb1aa;
  font-size: .75rem;
}
.special-notice {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.2);
  background: #fff;
  color: #111;
}
.special-notice span,
.special-notice strong { display: block; }
.special-notice span { font-size: .6rem; font-weight: 800; letter-spacing: .14em; }
.special-notice strong { margin-top: 4px; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.hours-list { margin-top: 12px; }
.hours-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: baseline;
}
.hours-list span { color: #a9aca5; font-size: .78rem; }
.hours-list strong { font-family: "Space Grotesk", sans-serif; font-size: .94rem; }
.hours-list em { padding: 0 7px; color: #62655f; font-style: normal; }
.hours-list .closed-day strong { color: #777a73; }

@media (max-width: 1020px) {
  .main-nav { gap: 18px; }
  .experience-grid, .service-support-grid, .hours-grid { grid-template-columns: 1fr; gap: 48px; }
  .experience-number { min-height: 300px; }
  .hours-card { max-width: 720px; }
}

@media (max-width: 680px) {
  .ticker-track { animation-duration: 18s; }
  .ticker-group span, .ticker-group b { padding-block: 12px; }
  .experience, .service-support, .hours { padding: 84px 0; }
  .experience-number { min-height: 250px; }
  .experience-copy h2, .service-support h2, .hours h2 { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  .hours-card { padding: 20px; box-shadow: 10px 10px 0 rgba(16,17,16,.08); }
  .hours-list > div { grid-template-columns: 1fr; gap: 5px; }
  .hours-list strong { font-size: 1rem; }
}


/* Připravené jemné centrování pro budoucí vlastní fotografie. */
.service-preview-media img {
  object-position: center center;
}
