:root {
  --ink: #20211e;
  --deep-ink: #151613;
  --orange: #c9682c;
  --orange-hover: #a94f1e;
  --cream: #f3efe5;
  --paper: #fbf9f4;
  --green: #687b54;
  --text: #363731;
  --muted: #696a63;
  --border: #d8d1c2;
  --white: #fff;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
  --shadow: 0 18px 55px rgba(32, 33, 30, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; background: var(--paper); color: var(--text); font-family: "Inter", Arial, sans-serif; line-height: 1.65; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { margin-bottom: var(--space-sm); color: var(--ink); font-family: "Archivo", Arial, sans-serif; line-height: 1.04; letter-spacing: -.035em; text-wrap: balance; }
h1 { font-size: clamp(3.3rem, 7vw, 6.6rem); }
h2 { font-size: clamp(2.45rem, 4.8vw, 4.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
p { max-width: 65ch; margin-bottom: var(--space-sm); text-wrap: pretty; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
section { padding-block: var(--space-xl); }
.container { width: min(100%, 1160px); margin-inline: auto; padding-inline: var(--space-md); }
.text-center { text-align: center; }
.text-center > * { margin-inline: auto; }
.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; }
.skip-link { position: fixed; top: var(--space-sm); left: var(--space-sm); z-index: 1000; transform: translateY(-200%); padding: .7rem 1rem; background: var(--orange); color: var(--white); font-weight: 700; }
.skip-link:focus { transform: none; }
.eyebrow { margin-bottom: var(--space-sm); color: var(--orange); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: .85rem 1.3rem; border: 2px solid transparent; border-radius: 8px; font-weight: 800; line-height: 1.1; text-decoration: none; cursor: pointer; transition: background .18s ease, color .18s ease, transform .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover { background: var(--orange-hover); }
.button-secondary { border-color: var(--ink); color: var(--ink); }
.button-secondary:hover { background: var(--ink); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--deep-ink); }
.button-full { width: 100%; border: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: var(--space-sm); }
.text-link { display: inline-flex; gap: var(--space-xs); align-items: center; color: var(--orange); font-weight: 800; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(216,209,194,.7); background: rgba(251,249,244,.96); backdrop-filter: blur(12px); }
.nav-shell { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: var(--space-md); }
.brand { display: block; width: min(290px, 58vw); }
.brand img { width: 100%; }
.primary-nav { display: flex; align-items: center; gap: var(--space-md); }
.primary-nav a { min-height: 44px; display: inline-flex; align-items: center; font-size: .92rem; font-weight: 700; text-decoration: none; }
.primary-nav a:hover { color: var(--orange); }
.primary-nav .nav-action { padding-inline: 1.15rem; border-radius: 7px; background: var(--ink); color: var(--white); }
.primary-nav .nav-action:hover { background: var(--orange); color: var(--white); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 7px; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero { min-height: 730px; display: flex; align-items: center; overflow: hidden; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: .9fr 1.2fr; align-items: center; gap: var(--space-md); }
.hero-copy { position: relative; z-index: 2; padding-block: var(--space-md); }
.hero h1 span { color: var(--orange); }
.hero-lede { max-width: 570px; color: #4d4e48; font-size: clamp(1.05rem, 2vw, 1.27rem); }
.hero .button-row { margin-top: var(--space-md); }
.service-note { display: inline-flex; margin-top: var(--space-md); padding-top: var(--space-sm); border-top: 1px solid var(--border); color: var(--muted); font-size: .9rem; font-weight: 700; }
.hero-visual { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero-visual::before { content: ""; position: absolute; width: min(32vw, 380px); aspect-ratio: 1; border: 2px solid var(--orange); border-radius: 50%; opacity: .55; }
.hero-visual img { position: relative; z-index: 1; width: 118%; max-width: none; transform: translateX(2%); mix-blend-mode: multiply; }

.proof-strip { padding-block: 0; background: var(--ink); color: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding-block: var(--space-md); }
.proof-grid > div { min-height: 84px; display: grid; align-content: center; padding-inline: var(--space-md); border-left: 1px solid rgba(255,255,255,.16); }
.proof-grid > div:first-child { border-left: 0; }
.proof-grid strong { color: var(--orange); font-family: "Archivo", sans-serif; font-size: 2rem; line-height: 1; }
.proof-grid span { margin-top: .35rem; color: #e5e0d6; font-size: .8rem; font-weight: 600; }

.services-section { background: var(--paper); }
.section-heading { max-width: 770px; margin-bottom: var(--space-lg); }
.section-heading > p:last-child { color: var(--muted); font-size: 1.06rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.service-card { min-height: 270px; padding: var(--space-md); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.service-card > span { display: inline-block; margin-bottom: var(--space-md); color: var(--orange); font-family: "Archivo", sans-serif; font-weight: 800; }
.service-card p { margin-bottom: 0; color: var(--muted); }

.process-section { background: var(--green); color: var(--white); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-xl); align-items: start; }
.process-section h2, .process-section h3 { color: var(--white); }
.process-section .eyebrow, .process-section .text-link { color: #ffd4b3; }
.process-intro { position: sticky; top: 8rem; }
.process-intro > p:not(.eyebrow) { color: #edf0e8; }
.repair-ticket { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.repair-ticket li { display: grid; grid-template-columns: 80px 1fr; gap: var(--space-sm); padding-block: var(--space-md); border-bottom: 1px solid rgba(255,255,255,.3); }
.repair-ticket li > span { color: #ffd4b3; font-family: "Archivo", sans-serif; font-size: 1.3rem; font-weight: 800; }
.repair-ticket h3 { margin-bottom: .4rem; }
.repair-ticket p { margin-bottom: 0; color: #edf0e8; }

.work-section { background: var(--deep-ink); color: var(--white); }
.work-section h2 { color: var(--white); }
.work-section .section-heading { margin-inline: auto; }
.work-section .section-heading > p:last-child { color: #c7c6bf; }
.work-grid { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 260px); gap: var(--space-sm); }
.work-grid figure { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 10px; background: #2b2c28; }
.work-grid .work-large { grid-row: 1 / 3; }
.work-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.work-grid .work-large img { object-position: center; }
.work-grid figure:nth-child(2) img { object-position: center 55%; }
.work-grid figure:nth-child(3) img { object-position: center 65%; }
.work-grid figure:hover img { transform: scale(1.025); }
.work-grid figcaption { position: absolute; inset: auto var(--space-sm) var(--space-sm) var(--space-sm); padding: .7rem .85rem; border-radius: 6px; background: rgba(21,22,19,.86); color: var(--white); font-size: .86rem; font-weight: 700; }

.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: var(--space-xl); }
.about-photo { position: relative; max-width: 430px; padding: var(--space-sm); border: 1px solid var(--border); background: var(--paper); box-shadow: var(--shadow); }
.about-photo::after { content: "20+ YEARS ON BIKES"; position: absolute; right: calc(var(--space-sm) * -1); bottom: var(--space-md); padding: .75rem 1rem; background: var(--orange); color: var(--white); font-family: "Archivo", sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .08em; }
.about-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 24%; filter: saturate(.82); }
.about-copy p:not(.eyebrow) { color: #55564f; font-size: 1.04rem; }
.about-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-md); margin-top: var(--space-md); }
.email-link { color: var(--orange); font-weight: 700; }

.contact-section { background: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--space-xl); align-items: start; }
.contact-copy { position: sticky; top: 8rem; }
.contact-links { display: grid; margin-top: var(--space-md); border-top: 1px solid var(--border); }
.contact-links a { display: grid; grid-template-columns: 60px 1fr; gap: var(--space-sm); padding-block: var(--space-sm); border-bottom: 1px solid var(--border); text-decoration: none; font-weight: 700; overflow-wrap: anywhere; }
.contact-links a:hover { color: var(--orange); }
.contact-links span { color: var(--muted); font-size: .77rem; letter-spacing: .08em; text-transform: uppercase; }
.request-form { padding: var(--space-lg); border-top: 6px solid var(--orange); border-radius: 10px; background: var(--white); box-shadow: var(--shadow); }
.form-heading { margin-bottom: var(--space-md); }
.form-heading > span { display: block; margin-bottom: .35rem; color: var(--orange); font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
.field-group { display: grid; gap: .4rem; margin-bottom: var(--space-sm); }
.field-group label { color: var(--ink); font-size: .85rem; font-weight: 700; }
.field-group input, .field-group select, .field-group textarea { width: 100%; min-height: 48px; padding: .78rem .9rem; border: 1px solid var(--border); border-radius: 6px; background: var(--paper); color: var(--ink); }
.field-group textarea { resize: vertical; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus { outline: 3px solid rgba(201,104,44,.18); border-color: var(--orange); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.site-footer { padding-block: var(--space-lg) var(--space-md); background: var(--ink); color: #dddcd5; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-lg); }
.footer-brand img { width: min(300px, 100%); margin-bottom: var(--space-sm); filter: brightness(0) invert(1); }
.site-footer h2 { margin-bottom: var(--space-sm); color: var(--white); font-family: "Inter", sans-serif; font-size: .85rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer a { display: block; min-height: 34px; color: #dddcd5; text-decoration: none; overflow-wrap: anywhere; }
.site-footer a:hover { color: #ffd4b3; }
.footer-bottom { display: flex; justify-content: space-between; gap: var(--space-md); margin-top: var(--space-lg); padding-top: var(--space-md); border-top: 1px solid rgba(255,255,255,.13); color: #aeadA7; font-size: .8rem; }
.footer-bottom p { margin-bottom: 0; }

.cookie-notice { position: fixed; right: var(--space-sm); bottom: var(--space-sm); left: var(--space-sm); z-index: 500; display: flex; max-width: 760px; align-items: center; justify-content: space-between; gap: var(--space-sm); margin-inline: auto; padding: var(--space-sm); border: 1px solid #3a3b36; border-radius: 8px; background: var(--deep-ink); color: var(--white); box-shadow: 0 14px 38px rgba(0,0,0,.24); }
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: .8rem; }
.cookie-notice a { color: #ffd4b3; }
.cookie-notice button { min-width: 76px; min-height: 44px; border: 0; border-radius: 6px; background: var(--orange); color: var(--white); font-weight: 800; cursor: pointer; }
.legal-copy { max-width: 800px; }
.legal-copy h1 { font-size: clamp(3rem, 8vw, 5rem); }
.legal-copy h2 { margin-top: var(--space-md); font-size: clamp(1.7rem, 4vw, 2.4rem); }
.legal-copy a { color: var(--orange); }
.thanks-page { min-height: 100vh; display: grid; place-items: center; background: var(--cream); }
.thanks-logo { width: min(360px, 80vw); margin: 0 auto var(--space-lg); }
.thanks-page h1 { max-width: 800px; margin-inline: auto; }
.thanks-page p { margin-inline: auto; }
.thanks-actions { justify-content: center; margin-top: var(--space-md); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 82px 0 auto; display: none; padding: var(--space-sm) var(--space-md) var(--space-md); background: var(--paper); border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { justify-content: center; border-bottom: 1px solid var(--border); }
  .primary-nav .nav-action { margin-top: var(--space-xs); border-bottom: 0; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy { padding-top: var(--space-lg); }
  .hero-visual { min-height: 430px; }
  .hero-visual img { width: 100%; transform: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.16); }
  .proof-grid > div:nth-child(4) { border-top: 1px solid rgba(255,255,255,.16); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .process-intro, .contact-copy { position: static; }
  .about-photo { margin-inline: auto; }
}

@media (max-width: 640px) {
  :root { --space-lg: 3rem; --space-xl: 4.5rem; }
  .container { padding-inline: var(--space-sm); }
  section { padding-block: var(--space-lg); }
  .nav-shell { min-height: 72px; }
  .brand { width: min(245px, 68vw); }
  .primary-nav { inset-block-start: 72px; }
  h1 { font-size: clamp(3rem, 16vw, 4.45rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.5rem); }
  .hero-copy { padding-top: var(--space-md); }
  .hero-lede { font-size: 1rem; }
  .button-row .button { flex: 1 1 130px; }
  .hero-visual { min-height: 290px; }
  .hero-visual::before { width: 58vw; }
  .proof-grid > div { min-height: 104px; padding: var(--space-sm); }
  .proof-grid strong { font-size: 1.65rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .repair-ticket li { grid-template-columns: 52px 1fr; }
  .work-grid { grid-template-columns: 1fr; grid-template-rows: 290px 220px 220px; }
  .work-grid .work-large { grid-row: auto; }
  .about-photo::after { right: calc(var(--space-xs) * -1); bottom: var(--space-sm); }
  .about-actions { align-items: stretch; }
  .about-actions .button, .about-actions .email-link { width: 100%; text-align: center; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: var(--space-md) var(--space-sm); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .footer-bottom { display: grid; }
  .cookie-notice { align-items: stretch; flex-direction: column; }
}

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