/* Klenzegen — Asphalt & Chartreuse */
:root {
  --ink: #0e1410;
  --ink-soft: #2a322c;
  --paper: #e7eae3;
  --paper-deep: #d5d9cf;
  --sage: #a8b39a;
  --forest: #1a4735;
  --forest-deep: #0f2d22;
  --signal: #c45c26;
  --chartreuse: #c8e04a;
  --chartreuse-dim: #a8bc3a;
  --asphalt: #1c211e;
  --line: rgba(14, 20, 16, 0.14);
  --white: #f7f8f4;
  --radius: 2px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* keeps the responsive <picture> wrapper out of the box tree so that the
   absolute positioning and percentage heights below still target the parent */
picture {
  display: contents;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--forest);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2rem, 1360px);
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.logo-mark span {
  color: var(--forest);
}

.logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.7;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav a:hover,
.nav a.active {
  color: var(--forest);
  text-decoration: underline;
}

.nav-cta {
  background: var(--ink);
  color: var(--chartreuse) !important;
  padding: 0.55rem 1rem;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-cta:hover {
  background: var(--forest) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink);
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
  position: relative;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--asphalt);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.62) contrast(1.08) saturate(0.92);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 20, 16, 0.88) 0%, rgba(14, 20, 16, 0.35) 48%, rgba(26, 71, 53, 0.25) 100%),
    linear-gradient(to top, rgba(14, 20, 16, 0.75) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3.5rem;
  max-width: 780px;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-brand em {
  font-style: normal;
  color: var(--chartreuse);
}

.hero-lead {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  max-width: 34ch;
  line-height: 1.45;
  margin-bottom: 1.75rem;
  color: rgba(247, 248, 244, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--chartreuse);
  color: var(--ink) !important;
}

.btn-primary:hover {
  background: var(--white);
  color: var(--ink) !important;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(247, 248, 244, 0.55);
  color: var(--white) !important;
}

.btn-ghost:hover {
  border-color: var(--chartreuse);
  color: var(--chartreuse) !important;
}

.btn-dark {
  background: var(--ink);
  color: var(--chartreuse) !important;
}

.btn-dark:hover {
  background: var(--forest);
  color: var(--white) !important;
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink) !important;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--chartreuse) !important;
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-dark {
  background: var(--asphalt);
  color: var(--white);
}

.section-forest {
  background: var(--forest);
  color: var(--white);
}

.section-band {
  background: var(--paper-deep);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.75rem;
}

.section-dark .section-label,
.section-forest .section-label {
  color: var(--chartreuse);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.section-lead {
  font-size: 1.12rem;
  max-width: 48ch;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.section-dark .section-lead,
.section-forest .section-lead {
  color: rgba(247, 248, 244, 0.78);
}

/* ——— Split layouts ——— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-reverse > :first-child {
  order: 2;
}

.frame-photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.frame-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.frame-photo::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  border: 2px solid var(--chartreuse);
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: difference;
  opacity: 0.55;
}

.section-dark .frame-photo::before {
  border-color: var(--chartreuse);
  mix-blend-mode: normal;
  opacity: 0.7;
}

/* ——— Feature rail ——— */
.feature-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-item {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--line);
}

.feature-item:last-child {
  border-right: none;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--forest);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ——— Bike type grid ——— */
.bike-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.bike-tile {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  display: block;
}

.bike-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: brightness(0.55);
}

.bike-tile:hover img {
  transform: scale(1.06);
}

.bike-tile-body {
  position: relative;
  z-index: 2;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(14, 20, 16, 0.85), transparent 60%);
  min-height: 320px;
}

.bike-tile h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

.bike-tile p {
  font-size: 0.95rem;
  opacity: 0.88;
  max-width: 32ch;
}

/* ——— Editorial strip ——— */
.editorial {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 520px;
}

.editorial-copy {
  background: var(--forest-deep);
  color: var(--white);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.editorial-copy p {
  color: rgba(247, 248, 244, 0.8);
  margin-bottom: 1rem;
  max-width: 42ch;
}

.editorial-media {
  position: relative;
  overflow: hidden;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

/* ——— Blog ——— */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.blog-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--asphalt);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.65s;
  filter: saturate(0.9) contrast(1.05);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
  filter: saturate(1) contrast(1.08);
}

.blog-card-body {
  padding: 1.15rem 0 0.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.45rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.55rem;
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
}

.blog-more {
  margin-top: 0.9rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: inherit;
}

.blog-featured-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.blog-featured:hover .blog-featured-media img {
  transform: scale(1.04);
}

.blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: 4.75rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, color-mix(in srgb, var(--chartreuse) 22%, transparent), transparent 55%),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-deep) 55%, color-mix(in srgb, var(--chartreuse) 14%, var(--paper)) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: 1rem;
}

.page-hero p {
  max-width: 48ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ——— Content prose ——— */
.prose {
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  letter-spacing: -0.03em;
  margin: 2.25rem 0 0.85rem;
  line-height: 1.15;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.65rem;
}

.prose p,
.prose ul,
.prose ol {
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: 0.4rem;
}

.prose a {
  color: var(--forest);
  font-weight: 600;
}

.prose strong {
  color: var(--ink);
}

.prose blockquote {
  border-left: 3px solid var(--chartreuse);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1.75rem 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.35;
  color: var(--ink);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  background: var(--asphalt);
  color: var(--chartreuse);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.compare-table tr:nth-child(even) td {
  background: color-mix(in srgb, var(--paper-deep) 55%, transparent);
}

/* fixed layout keeps four-column comparisons inside the viewport on phones
   instead of forcing the page to scroll sideways */
@media (max-width: 700px) {
  .compare-table {
    table-layout: fixed;
    font-size: 0.84rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 0.6rem 0.5rem;
    overflow-wrap: break-word;
    hyphens: auto;
  }
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-block a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}

.contact-block a:hover {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea,
.form-row select {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.8rem 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--forest);
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.form-success {
  display: none;
  padding: 1rem;
  background: color-mix(in srgb, var(--chartreuse) 35%, var(--paper));
  border-left: 3px solid var(--forest);
  margin-bottom: 1rem;
}

.form-success.show {
  display: block;
}

.map-embed {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 320px;
  background: var(--paper-deep);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
}

/* ——— Legal ——— */
.legal-body {
  padding: 3.5rem 0 5rem;
}

.legal-body .prose {
  max-width: 75ch;
}

/* ——— Post page ——— */
.post-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  background: var(--asphalt);
  color: var(--white);
  overflow: hidden;
}

.post-hero-media {
  position: absolute;
  inset: 0;
}

.post-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.05);
}

.post-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 20, 16, 0.92) 0%, rgba(14, 20, 16, 0.25) 55%, transparent 100%);
}

.post-hero-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 2.75rem;
  max-width: 820px;
}

.post-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 0.6rem 0 1rem;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  padding: 3.5rem 0 5rem;
  align-items: start;
}

.post-aside {
  position: sticky;
  top: 5.5rem;
  padding: 1.35rem;
  background: var(--paper-deep);
  border-left: 3px solid var(--chartreuse);
}

.post-aside h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.post-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.post-aside a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.post-aside a:hover {
  color: var(--forest);
  text-decoration: underline;
}

/* ——— CTA band ——— */
.cta-band {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.75rem 0;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 18ch;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(247, 248, 244, 0.82);
  padding: 3.5rem 0 1.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-mark {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand .logo-mark span {
  color: var(--chartreuse);
}

.footer-brand p {
  max-width: 32ch;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--chartreuse);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 248, 244, 0.12);
  font-size: 0.85rem;
}

.footer-bottom a {
  text-decoration: none;
  margin-left: 1rem;
}

.footer-bottom a:hover {
  color: var(--chartreuse);
}

/* ——— Cookie bar ——— */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 1.1rem 0;
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  border-top: 2px solid var(--chartreuse);
}

.cookie-bar.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-inner p {
  flex: 1;
  min-width: 240px;
  font-size: 0.92rem;
  color: rgba(247, 248, 244, 0.85);
}

.cookie-inner a {
  color: var(--chartreuse);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

/* ——— Reveal motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ——— Utilities ——— */
.text-chartreuse { color: var(--chartreuse); }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .split,
  .editorial,
  .blog-featured,
  .contact-grid,
  .post-layout,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .split-reverse > :first-child {
    order: 0;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-rail {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-copy {
    padding: 2.5rem 1.75rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 64px;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

  .bike-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 3.5rem 0 2.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* ——— Accessibility helper ——— */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ——— Hero headline ——— */
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  max-width: 26ch;
  margin: -0.35rem 0 1rem;
  color: var(--white);
}

/* ——— Breadcrumbs ——— */
.breadcrumbs {
  margin-bottom: 1.1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.breadcrumbs a {
  text-decoration: none;
  color: var(--ink-soft);
}

.breadcrumbs a:hover {
  color: var(--forest);
  text-decoration: underline;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  opacity: 0.5;
}

.breadcrumbs [aria-current="page"] {
  color: var(--signal);
}

.post-hero .breadcrumbs ol,
.post-hero .breadcrumbs a {
  color: rgba(247, 248, 244, 0.72);
}

.post-hero .breadcrumbs a:hover,
.post-hero .breadcrumbs [aria-current="page"] {
  color: var(--chartreuse);
}

/* ——— Type profile blocks (Bike Types page) ——— */
.type-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.type-jump a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--forest);
  border-bottom: 2px solid var(--chartreuse);
  padding-bottom: 0.15rem;
}

.type-jump a:hover {
  color: var(--ink);
}

.type-profile {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--line);
}

.type-profile:last-of-type {
  border-bottom: none;
}

.type-profile-reverse {
  direction: rtl;
}

.type-profile-reverse > * {
  direction: ltr;
}

.type-profile-media {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: var(--asphalt);
}

.type-profile-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.type-profile-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--chartreuse);
}

.type-profile-body .type-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.55rem;
}

.type-profile-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 1rem;
}

.type-profile-body p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.type-facts {
  display: grid;
  gap: 0.55rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.type-facts li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
}

.type-facts strong {
  color: var(--ink);
  font-weight: 700;
}

.type-facts span {
  color: var(--ink-soft);
}

.topic-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2rem;
}

.topic-strip a {
  background: var(--paper);
  padding: 1.35rem 1.2rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease);
}

.topic-strip a:hover {
  background: var(--white);
}

.topic-strip .topic-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 0.4rem;
}

.topic-strip h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.topic-strip p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

.visit-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.visit-band .frame-photo {
  min-height: 320px;
}

.contact-aside-note {
  margin-top: 1.75rem;
  padding: 1.35rem 1.4rem;
  background: var(--paper-deep);
  border-left: 3px solid var(--chartreuse);
}

.contact-aside-note h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.contact-aside-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.page-hero-wide h1 {
  max-width: 18ch;
}

.page-hero-wide p {
  max-width: 56ch;
}

@media (max-width: 980px) {
  .type-profile,
  .type-profile-reverse,
  .visit-band,
  .topic-strip {
    grid-template-columns: 1fr;
  }

  .type-profile-reverse {
    direction: ltr;
  }

  .type-facts li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }
}

@media (max-width: 700px) {
  .topic-strip {
    grid-template-columns: 1fr 1fr;
  }
}

/* ——— FAQ ——— */
.faq {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.35rem 0;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink-soft);
}
