/* NørrebroCykler: beige ground, shop-sign blue, orange price-sticker accent */
:root {
  --bg: #efe5d3;
  --bg-deep: #e5d6bd;
  --surface: #f8f2e7;
  --surface-2: #fffdf9;
  --photo: #ffffff;
  --ink: #1b1a17;
  --ink-2: #4f473b;
  --ink-3: #645a4b;   /* dark enough for 4.5:1 on the deepest beige */
  --line: #d8c9b0;
  --line-2: #c9b797;
  --blue: #085e9f;
  --blue-hover: #084f85;
  --blue-sign: #1e9bd7;
  --blue-tint: #dce9f1;
  --night: #13222e;
  --night-2: #1b3040;
  --on-night: #f3ede2;
  --on-night-2: #b9c3c9;
  --sticker: #e8622a;
  --sticker-ink: #1b1a17;
  --ok: #1b7241;
  --closed: #a33a22;

  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 22px;
  --shadow-1: 0 1px 2px rgba(40, 30, 10, .06), 0 2px 8px rgba(40, 30, 10, .05);
  --shadow-2: 0 6px 24px rgba(40, 30, 10, .10), 0 2px 6px rgba(40, 30, 10, .06);
  --ease: cubic-bezier(.2, .7, .2, 1);

  --font-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 1rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--blue-hover); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--blue-sign); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--night); color: var(--on-night); padding: 10px 16px; border-radius: var(--radius-s); }
.skip-link:focus { top: 12px; color: var(--on-night); }

h1, h2, h3, h4 { font-family: var(--font-display); font-stretch: 108%; line-height: 1.08; margin: 0; letter-spacing: -.01em; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5.4vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 750; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--deep { background: var(--bg-deep); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: clamp(24px, 3.5vw, 40px); flex-wrap: wrap; }
.section-head p { color: var(--ink-2); max-width: 56ch; margin-top: 10px; }
.eyebrow { font: 700 .76rem/1 var(--font-display); font-stretch: 115%; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 2px; background: currentColor; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--blue); --t: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 22px; border-radius: 999px;
  background: var(--b); color: var(--t); border: 2px solid var(--b);
  font: 700 .95rem/1 var(--font-display); font-stretch: 108%; letter-spacing: .01em;
  text-decoration: none; cursor: pointer; touch-action: manipulation;
  transition: background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .12s var(--ease);
}
.btn:hover { --b: var(--blue-hover); color: var(--t); }
.btn:active { transform: scale(.97); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn--light { --b: var(--on-night); --t: var(--night); }
.btn--light:hover { --b: #fff; color: var(--night); }
.btn--ghost-light { background: transparent; color: var(--on-night); border-color: rgba(243, 237, 226, .55); }
.btn--ghost-light:hover { background: var(--on-night); color: var(--night); border-color: var(--on-night); }
.btn--small { min-height: 40px; padding: 8px 16px; font-size: .86rem; }
.btn--block { width: 100%; }
.link-arrow { font: 700 .95rem/1 var(--font-display); font-stretch: 108%; text-decoration: none; display: inline-flex; gap: 8px; align-items: center; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- top bar + header ---------- */
.topbar { background: var(--night); color: var(--on-night-2); font-size: .84rem; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { color: var(--on-night); text-decoration: none; }
.topbar a:hover { text-decoration: underline; color: #fff; }
.topbar__info { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar__item { display: inline-flex; gap: 7px; align-items: center; white-space: nowrap; }
.topbar__item svg { width: 15px; height: 15px; opacity: .8; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--closed); box-shadow: 0 0 0 3px rgba(255,255,255,.08); }
.status-dot.is-open { background: #3ecf7a; }
@media (max-width: 720px) { .topbar__hide-sm { display: none; } }
@media (max-width: 420px) {
  .topbar { font-size: .78rem; }
  .topbar .wrap { gap: 8px; }
  .topbar__info { min-width: 0; flex: 1 1 auto; flex-wrap: nowrap; }
  .topbar__info > [data-open-status] { min-width: 0; }
  .topbar__info [data-status-text] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .lang { flex: none; }
  .lang button { padding: 4px 9px; }
}

.lang { display: inline-flex; border: 1px solid rgba(243,237,226,.35); border-radius: 999px; padding: 2px; }
.lang button { background: none; border: 0; color: var(--on-night-2); padding: 4px 11px; min-height: 28px; border-radius: 999px; font: 700 .74rem/1 var(--font-display); letter-spacing: .08em; cursor: pointer; }
.lang button[aria-pressed="true"] { background: var(--on-night); color: var(--night); }

.header { position: sticky; top: 0; z-index: 50; background: rgba(239, 229, 211, .92); backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 18px rgba(40,30,10,.06); }
.header .wrap { display: flex; align-items: center; gap: 24px; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand img { width: 46px; height: 46px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font: 800 1.2rem/1 var(--font-display); font-stretch: 112%; letter-spacing: .01em; }
.brand__name span { color: var(--blue); font-weight: 650; }
.brand__tag { font: 600 .62rem/1 var(--font-display); font-stretch: 115%; letter-spacing: .22em; color: var(--ink-3); margin-top: 6px; text-transform: uppercase; }
.brand:hover { color: var(--ink); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link { white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; min-height: 44px; border-radius: 999px; font: 650 .95rem/1 var(--font-display); font-stretch: 106%; color: var(--ink); text-decoration: none; background: none; border: 0; cursor: pointer; }
.nav__link:hover, .nav__link[aria-expanded="true"] { background: var(--bg-deep); color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--blue); }
.nav__link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.nav__link[aria-expanded="true"] svg { transform: rotate(180deg); }
.nav__item { position: relative; }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  width: min(560px, 90vw); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-l);
  box-shadow: var(--shadow-2); padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
  opacity: 0; visibility: hidden; translate: 0 -6px; transition: opacity .18s var(--ease), translate .18s var(--ease), visibility .18s;
}
.mega.is-open { opacity: 1; visibility: visible; translate: 0 0; }
.mega a { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: var(--radius); text-decoration: none; color: var(--ink); }
.mega a:hover { background: var(--bg); color: var(--ink); }
.mega__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--blue-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.mega__icon svg { width: 22px; height: 22px; }
.mega__label { font: 700 .95rem/1.2 var(--font-display); font-stretch: 106%; }
.mega__count { font-size: .8rem; color: var(--ink-3); }
.mega__all { grid-column: 1 / -1; justify-content: center; border-top: 1px solid var(--line); border-radius: 0 0 var(--radius) var(--radius) !important; margin-top: 6px; padding-top: 14px !important; font: 700 .9rem/1 var(--font-display); color: var(--blue) !important; }

.header__cta { display: inline-flex; }
.menu-btn { display: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; align-items: center; justify-content: center; }
.menu-btn svg { width: 22px; height: 22px; }
@media (max-width: 1240px) {
  .header .brand__tag { display: none; }
  .nav__link { padding: 10px 11px; }
  .header .wrap { gap: 16px; }
}
@media (max-width: 1140px) {
  .nav, .header__cta { display: none; }
  .menu-btn { display: inline-flex; }
  .brand__tag { display: none; }
}
@media (max-width: 420px) {
  .header .wrap { gap: 12px; }
  .brand { gap: 8px; }
  .brand img { width: 38px; height: 38px; }
  .brand__name { font-size: 1rem; font-stretch: 104%; }
}

.drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(19, 34, 46, .5); opacity: 0; transition: opacity .25s var(--ease); border: 0; width: 100%; cursor: pointer; }
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(380px, 92vw); background: var(--bg); padding: 20px; overflow-y: auto; translate: 100% 0; transition: translate .3s var(--ease); display: flex; flex-direction: column; gap: 14px; }
.drawer.is-open .drawer__panel { translate: 0 0; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; }
.drawer__close { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--surface); cursor: pointer; display: grid; place-items: center; }
.drawer__close svg { width: 20px; height: 20px; }
.drawer__group { border-top: 1px solid var(--line); padding-top: 12px; }
.drawer__title { font: 700 .75rem/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: 4px 0 8px; }
.drawer a { display: flex; justify-content: space-between; align-items: center; padding: 12px 10px; min-height: 48px; border-radius: var(--radius-s); text-decoration: none; color: var(--ink); font: 650 1.02rem/1.1 var(--font-display); }
.drawer a:hover { background: var(--bg-deep); color: var(--ink); }
.drawer__group a > span { font: 500 .85rem/1 var(--font-body); color: var(--ink-3); }
.drawer .drawer__head .brand { padding: 0; min-height: 44px; justify-content: flex-start; font: inherit; }
.drawer .drawer__head .brand:hover { background: none; }

/* ---------- hero ---------- */
.hero { background: var(--night); color: var(--on-night); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: auto -10% -45% 35%; height: 90%; background: radial-gradient(closest-side, rgba(30,155,215,.28), transparent 70%); pointer-events: none; }
.hero > .wrap { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(28px, 5vw, 64px); align-items: center; padding-block: clamp(40px, 7vw, 88px) clamp(28px, 4vw, 48px); }
.hero .eyebrow { color: var(--blue-sign); }
.hero h1 { margin-top: 18px; color: #fff; font-size: clamp(2.1rem, 4.4vw, 3.9rem); }
.hero h1 em { font-style: normal; color: var(--blue-sign); }
.hero__lead { margin-top: 18px; font-size: clamp(1.02rem, 1.4vw, 1.15rem); color: var(--on-night-2); max-width: 46ch; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero__photo { position: relative; margin: 0; }
.hero__photo img { width: 100%; aspect-ratio: 1261 / 550; object-fit: cover; border-radius: var(--radius-l); box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.hero__photo figcaption { position: absolute; left: 16px; bottom: -18px; display: flex; gap: 10px; flex-wrap: wrap; }
.badge-float { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); color: var(--ink); border-radius: 999px; padding: 9px 14px; font: 700 .85rem/1 var(--font-display); box-shadow: var(--shadow-2); white-space: nowrap; }
.badge-float svg { width: 16px; height: 16px; }
.stars { color: #e3a21a; display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; }
.hero__strip { position: relative; border-top: 1px solid rgba(243,237,226,.14); }
.hero__strip ul { list-style: none; margin: 0; padding: 22px 0 26px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.hero__strip li { display: flex; align-items: center; gap: 12px; color: var(--on-night-2); font-size: .92rem; }
.hero__strip strong { display: block; color: #fff; font: 700 1rem/1.2 var(--font-display); font-stretch: 106%; }
.hero__strip svg { width: 26px; height: 26px; color: var(--blue-sign); flex: none; }
@media (max-width: 900px) {
  .hero > .wrap { grid-template-columns: 1fr; }
  .hero__photo { order: -1; margin-bottom: 22px; }
  .hero__strip ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- rent & repair page ---------- */
.hero--compact > .wrap { grid-template-columns: minmax(0, 1fr); padding-block: clamp(32px, 5vw, 64px) clamp(40px, 6vw, 72px); }
.hero--compact h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); max-width: 18ch; }
.crumbs.crumbs--light { color: var(--on-night-2); }
.crumbs.crumbs--light a { color: var(--on-night); }
.crumbs.crumbs--light li + li::before { color: rgba(243,237,226,.4); }
.services { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.5vw, 28px); align-items: stretch; }
@media (max-width: 860px) { .services { grid-template-columns: 1fr; } }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(22px, 3.2vw, 40px); display: flex; flex-direction: column; align-items: flex-start; gap: 18px; scroll-margin-top: calc(var(--header-h) + 16px); }
.service-card h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.service-card__text { color: var(--ink-2); font-size: 1.04rem; line-height: 1.7; max-width: 52ch; }
.service-card > .btn, .service-card__actions { margin-top: auto; }
.service-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.sticker.sticker--big { flex-direction: row; align-items: baseline; gap: 10px; padding: 14px 22px; }
.sticker.sticker--big strong { font-size: clamp(2rem, 4vw, 2.6rem); }
.sticker.sticker--big small { font-size: .8rem; }
.service-note { display: flex; gap: 14px; align-items: flex-start; background: var(--surface-2); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 16px 18px; width: 100%; }
.service-note svg { width: 26px; height: 26px; color: var(--blue); flex: none; margin-top: 2px; }
.service-note h3 { font-size: 1rem; }
.service-note p { color: var(--ink-2); margin-top: 4px; font-size: .95rem; }
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.checks svg { width: 22px; height: 22px; flex: none; color: #fff; background: var(--ok); border-radius: 50%; padding: 4px; margin-top: 1px; }
/* ---------- accessories ---------- */
.acc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)); gap: clamp(12px, 1.6vw, 20px); }
.acc-card { margin: 0; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.acc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.acc-card__img { background: var(--photo); aspect-ratio: 1 / 1; display: grid; place-items: center; }
.acc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.acc-card:hover .acc-card__img img { transform: scale(1.04); }
.acc-card figcaption { padding: 15px 16px 18px; border-top: 1px solid var(--line); }
.acc-card h3 { font: 750 1.1rem/1.2 var(--font-display); font-stretch: 106%; }
.acc-card p { margin-top: 6px; font-size: .92rem; line-height: 1.5; color: var(--ink-2); }
.acc-teaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(20px, 4vw, 48px); align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(22px, 3vw, 40px); }
.acc-teaser__thumbs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.acc-teaser__thumbs img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); background: var(--photo); border: 1px solid var(--line); }
.acc-teaser h2 { margin-bottom: 12px; }
.acc-teaser p { color: var(--ink-2); max-width: 52ch; }
.acc-teaser .btn { margin-top: 22px; }
@media (max-width: 760px) { .acc-teaser { grid-template-columns: 1fr; } .acc-teaser__thumbs { order: -1; } }
@media (max-width: 560px) { .acc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .acc-card figcaption { padding: 12px 13px 15px; } .acc-card h3 { font-size: 1rem; } .acc-card p { font-size: .85rem; } }

.workshop-photos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(12px, 2vw, 24px); }
.workshop-photos figure { margin: 0; border-radius: var(--radius-l); overflow: hidden; background: var(--bg-deep); box-shadow: var(--shadow-2); }
.workshop-photos img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.photo-note { margin-top: 14px; font-size: .82rem; color: var(--ink-3); text-align: right; }
@media (max-width: 520px) { .workshop-photos { grid-template-columns: 1fr; } .workshop-photos img { aspect-ratio: 3 / 4; } }

/* ---------- category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 1024px) { .cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 680px) { .cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .cat-grid > .cat-card:last-child:nth-child(odd) { grid-column: 1 / -1; } .cat-grid > .cat-card:last-child:nth-child(odd) .cat-card__img { aspect-ratio: 16 / 9; } }
.cat-card { position: relative; display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; text-decoration: none; color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); color: var(--ink); }
.cat-card__img { background: var(--photo); aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 10px; }
.cat-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s var(--ease); }
.cat-card:hover .cat-card__img img { transform: scale(1.04); }
.cat-card__body { padding: 14px 16px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--line); }
.cat-card__title { font: 750 clamp(.95rem, 1.4vw, 1.08rem)/1.15 var(--font-display); font-stretch: 110%; text-transform: uppercase; letter-spacing: .02em; }
.cat-card__count { font-size: .82rem; color: var(--ink-3); margin-top: 3px; }
.cat-card__go { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--ink); display: grid; place-items: center; flex: none; transition: background-color .2s, color .2s; }
.cat-card__go svg { width: 16px; height: 16px; }
.cat-card__body > div { min-width: 0; }
.cat-card__title { overflow-wrap: anywhere; hyphens: auto; }
@media (max-width: 520px) {
  .cat-card__body { padding: 12px; gap: 6px; }
  .cat-card__title { font-size: .82rem; letter-spacing: 0; }
  .cat-card__go { width: 28px; height: 28px; }
  .cat-card__go svg { width: 14px; height: 14px; }
}
.cat-card:hover .cat-card__go { background: var(--ink); color: var(--bg); }

/* ---------- feature banner ---------- */
.feature { position: relative; border-radius: var(--radius-l); overflow: hidden; background: linear-gradient(115deg, #8a3a12 0%, #3a2418 34%, var(--night) 72%); color: var(--on-night); display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: 24px; padding: clamp(28px, 4vw, 52px); min-height: 320px; }
.feature__kicker { font: 700 .76rem/1 var(--font-display); letter-spacing: .16em; text-transform: uppercase; color: #f4b48e; }
.feature h2 { color: #fff; margin-top: 12px; }
.feature p { color: var(--on-night-2); margin-top: 12px; max-width: 42ch; }
.feature__price { margin-top: 14px; font: 700 1.05rem/1 var(--font-display); color: #fff; }
.feature__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.feature__img { background: var(--photo); border-radius: var(--radius-l); aspect-ratio: 4 / 3; width: 100%; max-width: 560px; justify-self: end; display: grid; place-items: center; padding: clamp(12px, 2vw, 24px); box-shadow: 0 24px 50px rgba(0,0,0,.35); rotate: -1.5deg; }
.feature__img img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 760px) { .feature { grid-template-columns: 1fr; } .feature__img { order: -1; justify-self: stretch; rotate: 0deg; } }

/* ---------- value cards ---------- */
.values { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 960px) { .values { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }
.value { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; }
.value svg { width: 28px; height: 28px; color: var(--sticker); }
.value h3 { margin-top: 14px; font-size: 1.02rem; }
.value p { margin-top: 6px; color: var(--ink-2); font-size: .92rem; line-height: 1.55; }

/* ---------- brands ---------- */
.brands { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
@media (max-width: 900px) { .brands { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 520px) { .brands { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.brand-tile { display: flex; flex-direction: column; justify-content: space-between; gap: 18px; min-height: 132px; padding: 18px; border-radius: var(--radius); border: 1.5px solid var(--ink); text-decoration: none; color: var(--ink); background: transparent; transition: background-color .2s var(--ease), color .2s var(--ease); }
.brand-tile:hover { background: var(--ink); color: var(--bg); }
.brand-tile__name { font: 800 1.35rem/1 var(--font-display); font-stretch: 118%; text-transform: uppercase; letter-spacing: .03em; }
.brand-tile__meta { display: flex; justify-content: space-between; align-items: center; font-size: .85rem; }
.brand-tile__meta svg { width: 18px; height: 18px; }
.brand-tile { min-width: 0; }
@media (max-width: 520px) {
  .brand-tile { min-height: 104px; padding: 14px; }
  .brand-tile__name { font-size: clamp(.95rem, 5vw, 1.2rem); font-stretch: 105%; letter-spacing: .01em; }
}

/* ---------- bike cards ---------- */
.bike-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: clamp(12px, 1.6vw, 20px); }
@media (max-width: 640px) {
  .bike-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bike-card__img { padding: 6px; }
  .bike-card__body { padding: 10px 12px 14px; }
  .bike-card__model { font-size: 1rem; }
  .bike-card__line { font-size: .8rem; }
}
.bike-card { position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; content-visibility: auto; contain-intrinsic-size: 300px 320px; }
.bike-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); color: var(--ink); }
.bike-card__img { position: relative; background: var(--photo); aspect-ratio: 4 / 3; display: grid; place-items: center; padding: 12px; }
.bike-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s var(--ease); }
.bike-card:hover .bike-card__img img { transform: scale(1.045); }
.bike-card__year { position: absolute; top: 12px; right: 12px; font: 750 .78rem/1 var(--font-display); font-stretch: 110%; letter-spacing: .06em; padding: 7px 9px; border-radius: 999px; background: var(--night); color: var(--on-night); }
.bike-card__body { padding: 14px 16px 18px; border-top: 1px solid var(--line); }
.bike-card__make { font: 700 .72rem/1 var(--font-display); font-stretch: 115%; letter-spacing: .16em; text-transform: uppercase; color: var(--blue); }
.bike-card__model { margin-top: 7px; font: 750 1.14rem/1.2 var(--font-display); font-stretch: 106%; }
.bike-card__line { margin-top: 4px; font-size: .88rem; color: var(--ink-3); }
.no-photo { display: grid; place-items: center; text-align: center; gap: 6px; color: var(--ink-3); font-size: .86rem; padding: 20px; width: 100%; height: 100%; background: repeating-linear-gradient(135deg, #fbf8f2 0 12px, #f4eee3 12px 24px); border-radius: var(--radius); }
.no-photo svg { width: 36px; height: 36px; margin-inline: auto; opacity: .6; }

/* ---------- reviews ---------- */
.reviews { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(20px, 4vw, 48px); align-items: stretch; }
@media (max-width: 860px) { .reviews { grid-template-columns: minmax(0, 1fr); } }
.score { background: var(--night); color: var(--on-night); border-radius: var(--radius-l); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.score__num { font: 800 clamp(4rem, 9vw, 6rem)/.9 var(--font-display); font-stretch: 112%; color: #fff; }
.score .stars svg { width: 24px; height: 24px; }
.score__meta { color: var(--on-night-2); margin-top: 8px; }
.score__bars { display: grid; gap: 7px; }
.bar { display: grid; grid-template-columns: 14px 1fr; gap: 10px; align-items: center; font-size: .82rem; color: var(--on-night-2); }
.bar span { height: 7px; border-radius: 4px; background: rgba(243,237,226,.15); overflow: hidden; }
.bar span i { display: block; height: 100%; background: #e3a21a; border-radius: 4px; }
/* Six real Google reviews, each shown in the language the customer wrote it in. */
.review-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-content: start; }
.review { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.review .stars svg { width: 14px; height: 14px; }
.review blockquote { margin: 0; font: 500 1rem/1.5 var(--font-body); text-wrap: pretty; }
.review blockquote p { margin: 0; }
.review figcaption { margin-top: auto; display: flex; flex-direction: column; gap: 1px; font-size: .84rem; color: var(--ink-3); }
.review figcaption b { font: 650 .95rem/1.3 var(--font-display); color: var(--ink); }
.reviews__foot { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 18px 32px; }
/* On phones the cards become a swipeable row so the section stays short. */
@media (max-width: 680px) {
  .review-cards { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 12px; padding: 2px var(--gutter) 10px; margin-inline: calc(var(--gutter) * -1); scrollbar-width: none; overscroll-behavior-x: contain; }
  .review-cards::-webkit-scrollbar { display: none; }
  .review { flex: 0 0 82%; scroll-snap-align: center; }
}
.themes { display: flex; flex-wrap: wrap; gap: 8px; }
.theme { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 12px; font-size: .88rem; background: var(--surface-2); }
.theme b { font: 700 .78rem/1 var(--font-display); background: var(--bg-deep); border-radius: 999px; padding: 4px 7px; }

/* ---------- visit ---------- */
.visit { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(16px, 3vw, 32px); }
@media (max-width: 860px) { .visit { grid-template-columns: 1fr; } }
.visit__card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(22px, 3vw, 34px); display: flex; flex-direction: column; gap: 22px; }
.open-pill { display: inline-flex; align-items: center; gap: 8px; font: 700 .86rem/1 var(--font-display); padding: 8px 12px; border-radius: 999px; background: #f7e3dc; color: var(--closed); align-self: flex-start; }
.open-pill.is-open { background: #dcefe3; color: var(--ok); }
.open-pill .status-dot { box-shadow: none; }
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th, .hours td { text-align: left; padding: 9px 0; border-bottom: 1px dashed var(--line-2); font-weight: 500; }
.hours td { text-align: right; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 800; color: var(--blue); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.contact-list { display: grid; gap: 14px; }
.contact-list a, .contact-list div { display: flex; gap: 12px; align-items: flex-start; text-decoration: none; color: var(--ink); }
.contact-list svg { width: 22px; height: 22px; color: var(--blue); flex: none; margin-top: 2px; }
.contact-list strong { display: block; font: 700 1rem/1.3 var(--font-display); overflow-wrap: anywhere; }
.contact-list small { color: var(--ink-3); font-size: .86rem; }
.map { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); min-height: 380px; background: var(--bg-deep); position: relative; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- footer ---------- */
.footer { background: var(--night); color: var(--on-night-2); padding-top: clamp(48px, 6vw, 72px); font-size: .92rem; }
.footer a { color: var(--on-night); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand { color: var(--on-night); }
.footer .brand__name span { color: var(--blue-sign); }
.footer .brand__tag { color: var(--on-night-2); }
.footer .brand img { background: var(--bg); border-radius: 50%; padding: 3px; }
.footer h3 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer__about { margin-top: 16px; max-width: 34ch; line-height: 1.6; }
.footer__bottom { margin-top: 44px; border-top: 1px solid rgba(243,237,226,.12); padding-block: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .8rem; }

/* ---------- catalogue page ---------- */
.page-hero { padding-block: clamp(32px, 5vw, 56px) clamp(20px, 3vw, 28px); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: .86rem; color: var(--ink-3); margin: 0 0 14px; padding: 0; list-style: none; }
.crumbs { align-items: center; }
.crumbs li { display: inline-flex; align-items: center; min-height: 24px; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-2); }
.crumbs a { color: var(--ink-2); }
.page-hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.page-hero p { margin-top: 12px; color: var(--ink-2); max-width: 62ch; }

.filters { background: var(--bg); border-block: 1px solid var(--line); }
.filters .wrap { display: flex; flex-wrap: wrap; gap: 10px 14px; align-items: center; padding-block: 12px; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1 1 100%; padding-bottom: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { flex: none; display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--surface); color: var(--ink); font: 650 .9rem/1 var(--font-display); font-stretch: 104%; text-decoration: none; cursor: pointer; white-space: nowrap; transition: background-color .15s, border-color .15s, color .15s; }
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip[aria-current="true"], .chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.chip small { font: 600 .78rem/1 var(--font-body); opacity: .75; }
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; flex: 1 1 auto; }
.field { display: inline-flex; flex-direction: column; gap: 4px; }
.field label { font: 700 .68rem/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.select, .input { min-height: 42px; border-radius: 12px; border: 1.5px solid var(--line-2); background: var(--surface-2); color: var(--ink); padding: 8px 12px; font: 500 .95rem/1.2 var(--font-body); }
.select { padding-right: 34px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b1a17' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 10px center; background-size: 16px; }
.input { min-width: min(240px, 100%); }
.select:hover, .input:hover { border-color: var(--ink-3); }
.result-count { margin-left: auto; font-size: .9rem; color: var(--ink-2); font-variant-numeric: tabular-nums; }
@media (max-width: 640px) { .result-count { margin-left: 0; width: 100%; } .field { flex: 1 1 140px; } .input { width: 100%; } }
.empty { text-align: center; padding: 64px 16px; color: var(--ink-2); }
.empty h2 { font-size: 1.4rem; margin-bottom: 8px; color: var(--ink); }

/* ---------- bike detail ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: clamp(20px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }
.gallery { position: sticky; top: calc(var(--header-h) + 16px); }
@media (max-width: 900px) { .gallery { position: static; } }
.gallery__main { background: var(--photo); border-radius: var(--radius-l); border: 1px solid var(--line); aspect-ratio: 4 / 3; display: grid; place-items: center; padding: clamp(10px, 2vw, 24px); overflow: hidden; }
.gallery__main img { width: 100%; height: 100%; object-fit: contain; animation: fadeIn .35s var(--ease); }
.gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.thumb { width: 88px; aspect-ratio: 4/3; border-radius: 10px; border: 2px solid var(--line); background: var(--photo); padding: 4px; cursor: pointer; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.thumb[aria-pressed="true"] { border-color: var(--blue); }
.gallery__credit { margin-top: 10px; font-size: .78rem; color: var(--ink-3); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.pdp__make { font: 700 .8rem/1 var(--font-display); font-stretch: 115%; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); }
.pdp h1 { font-size: clamp(2.1rem, 4.4vw, 3.3rem); margin-top: 10px; }
.pdp__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tag { display: inline-flex; align-items: center; gap: 6px; font: 700 .78rem/1 var(--font-display); letter-spacing: .04em; padding: 7px 10px; border-radius: 999px; background: var(--bg-deep); color: var(--ink); text-decoration: none; }
.tag--year { background: var(--night); color: var(--on-night); }
a.tag:hover { background: var(--ink); color: var(--bg); }
.opt { margin-top: 26px; }
.opt__label { display: flex; gap: 8px; align-items: baseline; font: 700 .76rem/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.opt__label span { font: 600 .95rem/1 var(--font-body); letter-spacing: 0; text-transform: none; color: var(--ink); }
.seg { display: inline-flex; background: var(--bg-deep); padding: 4px; border-radius: 999px; gap: 4px; flex-wrap: wrap; }
.seg button { border: 0; background: none; min-height: 40px; padding: 8px 16px; border-radius: 999px; font: 700 .9rem/1 var(--font-display); cursor: pointer; color: var(--ink-2); }
.seg button[aria-pressed="true"] { background: var(--surface-2); color: var(--ink); box-shadow: var(--shadow-1); }
.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch { display: inline-flex; align-items: center; gap: 9px; min-height: 44px; padding: 6px 14px 6px 6px; border-radius: 999px; border: 1.5px solid var(--line-2); background: var(--surface); cursor: pointer; font: 600 .88rem/1.1 var(--font-body); text-align: left; }
.swatch i { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); box-shadow: inset 0 0 0 2px rgba(255,255,255,.5); flex: none; }
.swatch:hover { border-color: var(--ink-3); }
.swatch[aria-pressed="true"] { border-color: var(--ink); background: var(--surface-2); box-shadow: 0 0 0 1px var(--ink); }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size { border: 1px solid var(--line-2); border-radius: 10px; padding: 8px 11px; font: 600 .88rem/1 var(--font-body); background: var(--surface-2); font-variant-numeric: tabular-nums; }

.price-row { margin-top: 28px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.sticker { position: relative; display: inline-flex; flex-direction: column; gap: 4px; background: var(--sticker); color: var(--sticker-ink); padding: 12px 18px 12px; border-radius: 6px; transform: rotate(-2.5deg); box-shadow: 0 6px 14px rgba(160, 60, 20, .25); }
.sticker small { font: 700 .66rem/1 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.sticker strong { font: 800 1.7rem/1 var(--font-display); font-stretch: 108%; font-variant-numeric: tabular-nums; }
.pdp__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

.reveal-btn { margin-top: 28px; width: 100%; min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 22px; border-radius: var(--radius); border: 2px solid var(--ink); background: var(--ink); color: var(--bg); font: 750 1.02rem/1.1 var(--font-display); font-stretch: 106%; cursor: pointer; transition: background-color .2s, color .2s; text-align: left; }
.reveal-btn:hover { background: var(--night-2); border-color: var(--night-2); }
.reveal-btn[aria-expanded="true"] { background: transparent; color: var(--ink); }
.reveal-btn svg { width: 22px; height: 22px; transition: transform .25s var(--ease); flex: none; }
.reveal-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.details { scroll-margin-top: calc(var(--header-h) + 16px); margin-top: clamp(28px, 4vw, 48px); display: grid; gap: clamp(20px, 3vw, 32px); animation: rise .4s var(--ease); }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(20px, 3vw, 36px); }
.panel h2 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.panel h2 svg { width: 26px; height: 26px; color: var(--sticker); }
.desc { font-size: 1.06rem; line-height: 1.75; max-width: 70ch; }
.facts { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 180px), 1fr)); gap: 12px; }
@media (max-width: 520px) { .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; } .fact { padding: 12px; } .fact strong { font-size: .92rem; overflow-wrap: anywhere; } }
.fact { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; }
.fact small { display: block; font: 700 .68rem/1 var(--font-display); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.fact strong { display: block; margin-top: 8px; font: 700 1rem/1.3 var(--font-display); font-stretch: 102%; }
.spec-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 32px; }
@media (max-width: 760px) { .spec-groups { grid-template-columns: 1fr; } }
.spec-group h3 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); padding-bottom: 8px; border-bottom: 2px solid var(--ink); }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; vertical-align: top; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .93rem; }
.spec-table th { width: 42%; color: var(--ink-2); font-weight: 500; padding-right: 12px; }
.spec-table td { font-weight: 600; overflow-wrap: anywhere; }
.source-note { font-size: .84rem; color: var(--ink-3); display: flex; gap: 10px; align-items: flex-start; }
.source-note svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }

.skeleton { height: 18px; border-radius: 6px; background: linear-gradient(90deg, var(--bg-deep), var(--surface-2), var(--bg-deep)); background-size: 200% 100%; animation: shimmer 1.1s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- meet the owner ---------- */
.owner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(20px, 4vw, 56px); align-items: center; scroll-margin-top: calc(var(--header-h) + 16px); }
@media (max-width: 860px) { .owner { grid-template-columns: 1fr; } }
.owner__badge { background: var(--night); color: var(--on-night); border-radius: var(--radius-l); padding: clamp(24px, 3.5vw, 40px); text-align: center; position: relative; overflow: hidden; }
.owner__badge::before { content: ""; position: absolute; inset: -40% -30% auto auto; width: 80%; aspect-ratio: 1; background: radial-gradient(closest-side, rgba(30,155,215,.25), transparent 70%); pointer-events: none; }
.owner__monogram { width: clamp(110px, 22vw, 150px); margin: 0 auto; position: relative; }
.owner__monogram svg { width: 100%; height: auto; display: block; }
.owner__name { margin-top: 14px; font: 800 1.9rem/1.1 var(--font-display); font-stretch: 110%; color: #fff; }
.owner__role { margin-top: 4px; color: var(--blue-sign); font: 700 .8rem/1.2 var(--font-display); letter-spacing: .14em; text-transform: uppercase; }
.owner__stats { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; text-align: left; position: relative; }
.owner__stats li { background: rgba(243, 237, 226, .07); border: 1px solid rgba(243, 237, 226, .14); border-radius: var(--radius); padding: 14px 16px; }
.owner__stats strong { display: block; font: 800 2.4rem/1 var(--font-display); color: #fff; font-variant-numeric: tabular-nums; }
.owner__stats span { display: block; margin-top: 6px; color: var(--on-night-2); font-size: .9rem; line-height: 1.35; }
.owner__stats .owner__cert { grid-column: 1 / -1; display: flex; gap: 12px; align-items: center; }
.owner__stats .owner__years { grid-column: 1 / -1; display: flex; gap: 14px; align-items: center; }
.owner__years span { margin-top: 0 !important; font-size: 1rem !important; color: var(--on-night) !important; }
.owner__cert svg { width: 34px; height: 34px; color: #e3a21a; flex: none; }
.owner__langs svg { color: var(--blue-sign); }
.owner__cert b { display: block; color: #fff; font: 700 1rem/1.25 var(--font-display); }
.owner__cert span span { margin-top: 2px; }
.owner__text { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.owner__text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.owner__text > p { color: var(--ink-2); font-size: 1.05rem; line-height: 1.75; max-width: 60ch; }
.owner__skills-title { font: 700 .76rem/1 var(--font-display) !important; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3) !important; margin-top: 4px; }
.owner__skills { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 20px; width: 100%; max-width: 560px; }
.owner__skills li { display: flex; gap: 10px; align-items: center; font-weight: 600; }
.owner__skills svg { width: 22px; height: 22px; flex: none; color: #fff; background: var(--ok); border-radius: 50%; padding: 4px; }
@media (max-width: 420px) { .owner__skills { grid-template-columns: 1fr; } }

/* ---------- phone polish (most visitors are on mobile) ---------- */
html { -webkit-tap-highlight-color: rgba(11, 99, 165, .14); scroll-padding-top: calc(var(--header-h) + 12px); color-scheme: light; }
.select, .input { font-size: 16px; min-height: 44px; }        /* 16px stops iPhones zooming in on focus */
.chip, .seg button { min-height: 44px; }
.lang button { min-width: 44px; min-height: 32px; font-size: .78rem; }
.bike-card__make, .field label, .fact small, .sticker small { font-size: .75rem; }
.brand { min-height: 44px; }

/* hover lifts only where a real mouse exists; touch gets a press effect instead */
@media (hover: none) {
  .cat-card:hover, .bike-card:hover { transform: none; box-shadow: none; border-color: var(--line); }
  .cat-card:hover .cat-card__img img, .bike-card:hover .bike-card__img img { transform: none; }
  .cat-card:hover .cat-card__go { background: transparent; color: var(--ink); }
  .brand-tile:hover { background: transparent; color: var(--ink); }
}
.cat-card:active, .bike-card:active, .brand-tile:active { transform: scale(.98); transition-duration: .08s; }

.mobile-bar { display: none; }
@media (max-width: 900px) {
  body.has-mobile-bar { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  html:has(body.has-mobile-bar) { scroll-padding-bottom: 96px; }
  .mobile-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    background: rgba(248, 242, 231, .97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(40, 30, 10, .08);
  }
  .mobile-bar__price { min-width: 0; }
  .mobile-bar__price small { display: block; font: 700 .76rem/1.1 var(--font-display); letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .mobile-bar__price strong { display: block; margin-top: 3px; font: 800 1.25rem/1.1 var(--font-display); font-variant-numeric: tabular-nums; white-space: nowrap; }
  .mobile-bar .btn { flex: none; min-height: 48px; padding-inline: 20px; }
}

@media (max-width: 760px) {
  :root { --header-h: 64px; }
  .topbar .wrap { min-height: 48px; }
  .lang button { min-height: 38px; }
  .crumbs a { display: inline-flex; align-items: center; min-height: 44px; }
  .crumbs { margin-bottom: 2px; }
  .link-arrow { min-height: 44px; }
  a.tag { min-height: 36px; padding: 9px 12px; }
  .footer ul { gap: 0; }
  .footer ul a { display: inline-flex; align-items: center; min-height: 44px; }
  .chips { -webkit-mask-image: linear-gradient(to right, #000 82%, transparent); mask-image: linear-gradient(to right, #000 82%, transparent); padding-right: 28px; }
  .section { padding-block: 48px; }
  .section-head { margin-bottom: 20px; }
  .pdp h1 { font-size: 2.1rem; }
  .opt { margin-top: 20px; }
  .swatch { min-height: 46px; }
}

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