/* self-hosted fonts (Google Fonts latin subsets, OFL) */
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/schibsted-grotesk-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/schibsted-grotesk-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/schibsted-grotesk-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Schibsted Grotesk';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(fonts/schibsted-grotesk-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* end fonts */

/* Kintaro Detailing — V1 "Daylight"
   White base, cool grey rhythm, ink text. One accent, the wordmark orange (#E86410), on actions,
   rules, stars, the active nav item, the open FAQ and the header wordmark. Orange fills carry ink
   text, never white; orange is never body text on the light ground.
   Schibsted Grotesk throughout. Square corners, hairline rules, generous whitespace. */

:root {
  --white: #ffffff;
  --grey: #f2f4f7;
  --ink: #121417;
  --slate: #5a6472;
  --accent: #e86410;
  --accent-hover: #d3590a;
  --rule: #dce0e6;
  --white-rgb: 255 255 255;
  --ink-rgb: 18 20 23;
  --accent-rgb: 232 100 16;
  --font: "Schibsted Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --measure: 1200px;
  --gutter: clamp(16px, 4vw, 32px);
  --nav-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-color: var(--accent); }
h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }
p { margin: 0 0 1em; }
ul { margin: 0; }
.wrap { max-width: var(--measure); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
section { padding: clamp(56px, 8vw, 112px) 0; }
.alt { background: var(--grey); }
.intro { font-size: 1.15rem; max-width: 60ch; color: var(--slate); margin-top: .75em; }
.note { color: var(--slate); font-size: .95rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; padding: .6em 1em; background: var(--ink); color: var(--white); font-weight: 700; text-decoration: none; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* Buttons: ink on orange (5.6:1), never white on orange */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 1.5rem;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  border: 2px solid var(--ink); background: var(--white); color: var(--ink);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary { background: var(--accent); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--white); }

/* Header: solid white bar, always legible over the hero sky */
.site-head { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--rule); }
.nav { position: relative; max-width: var(--measure); margin: 0 auto; padding: 0 var(--gutter); min-height: var(--nav-h); display: flex; align-items: center; gap: 20px; }
.brand { display: inline-flex; }
.brand img { height: 22px; width: auto; }
.social { list-style: none; padding: 0; display: flex; gap: 2px; }
.social a { display: grid; place-items: center; width: 40px; height: 40px; color: var(--ink); }
.social a:hover { color: var(--accent); }
.menu { list-style: none; margin-left: auto; padding: 0; display: flex; gap: 28px; align-items: center; }
.menu a { text-decoration: none; font-weight: 500; }
.menu a:not(.btn):hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.menu a:not(.btn)[aria-current="true"] { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 6px; text-decoration-thickness: 3px; }
.menu a { white-space: nowrap; }
.menu .btn { min-height: 42px; padding: 0 1.1rem; }
@media (min-width: 900px) and (max-width: 1099px) { .menu { gap: 18px; } .menu a { font-size: .95rem; } .menu .btn { padding: 0 .9rem; } }
.nav-toggle { display: none; }
@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex; align-items: center; margin-left: auto; min-height: 42px; padding: 0 14px;
    font: inherit; font-weight: 700; background: none; border: 2px solid var(--ink); color: var(--ink); cursor: pointer;
  }
  .nav-toggle[aria-expanded="true"] { background: var(--ink); color: var(--white); }
  .menu {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--rule); padding: 8px var(--gutter) 20px;
  }
  .menu.open { display: flex; }
  .menu li a:not(.btn) { display: block; padding: 12px 0; border-bottom: 1px solid var(--rule); }
  .menu li a:not(.btn)[aria-current="true"] { text-decoration: none; box-shadow: inset 3px 0 0 var(--accent); padding-left: 12px; }
  .menu li .btn { margin-top: 16px; width: 100%; }
}

/* Hero: the client's full artboard, full-bleed.
   Below 900px the image stands alone at its native 3:2, uncropped, and the copy stacks beneath it, with the
   buttons and trust strip last.
   From 900px the hero fits the screen: the photo keeps its full width but never grows taller than the space
   under the header, so the headline and the action row are always above the fold. On a screen wider than
   3:2 that trims the photo top and bottom (client decision, 2026-09-11). The copy overlays the grass; the
   scrim starts at the horizon so the wordmark in the sky is never tinted. */
.hero { position: relative; padding: 0; }
.hero-media { position: relative; width: 100%; aspect-ratio: 3 / 2; background: var(--grey); overflow: hidden; }
#hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { display: none; }
.hero-overlay { padding: clamp(24px, 4vw, 40px) 0 clamp(24px, 4vw, 44px); border-bottom: 1px solid var(--rule); }
.hero h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 2.75rem); line-height: 1; letter-spacing: -0.035em; max-width: 16ch; margin-bottom: .45em; }
.lead { font-size: clamp(1.15rem, 1rem + .7vw, 1.5rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; max-width: 30ch; margin: 0; }
.hero-actions { margin-top: 20px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-strip { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; font-weight: 600; }
.trust-strip li { display: flex; align-items: center; gap: 10px; }
.trust-strip a { text-decoration-thickness: 2px; text-underline-offset: 4px; }
@media (min-width: 900px) {
  /* Fit the screen. The 1px is the header's bottom border. --hh is the hero's height: full-width 3:2, or the
     space under the header when that is shorter. The hero text scales with it as well as with the width, so
     on a short window the text block shrinks with the photo and stays on the grass below the horizon instead
     of riding up into the pale sky under the wordmark. object-position 46% splits the trim close to evenly,
     which keeps the horizon low enough for the headline and still leaves the wordmark at least ~30px under
     the header at a 1280x610 laptop window. */
  .hero { --hh: min(66.667vw, calc(100svh - var(--nav-h) - 1px)); }
  .hero-media { max-height: calc(100vh - var(--nav-h) - 1px); max-height: calc(100svh - var(--nav-h) - 1px); }
  #hero-img { object-position: 50% 46%; }
  .hero-scrim {
    display: block; position: absolute; left: 0; right: 0; bottom: 0; height: 50%; pointer-events: none;
    background: linear-gradient(to top, rgb(var(--ink-rgb) / .9) 0%, rgb(var(--ink-rgb) / .72) 30%, rgb(var(--ink-rgb) / .4) 65%, rgb(var(--ink-rgb) / 0) 100%);
  }
  .hero-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 0 0 clamp(24px, min(3.5vw, var(--hh) * .045), 52px); border-bottom: 0; color: var(--white); text-shadow: 0 1px 2px rgb(var(--ink-rgb) / .5), 0 0 22px rgb(var(--ink-rgb) / .35); }
  .hero h1 { font-size: clamp(1.9rem, min(.55rem + 2.6vw, var(--hh) * .058), 3.6rem); margin-bottom: .4em; }
  /* one sentence per line, which also retires the lone "centre." the 30ch measure left on a third line */
  .lead { font-size: clamp(1.1rem, min(.7rem + .7vw, var(--hh) * .024), 1.5rem); max-width: none; }
  .lead-line { display: block; }
  .hero .stars svg { filter: drop-shadow(0 1px 2px rgb(var(--ink-rgb) / .5)); }
  .hero .btn { text-shadow: none; }
  .hero .btn-secondary { background: transparent; border-color: var(--white); color: var(--white); }
  .hero .btn-secondary:hover { background: var(--white); color: var(--ink); }
  .hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; margin-top: clamp(16px, min(2.5vw, var(--hh) * .03), 32px); }
  .trust-strip { margin: 0; }
}

/* Trust: reviews, about, e-bike */
.rating { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; font-size: 1.15rem; font-weight: 600; margin-top: .8em; }
.rating a { text-decoration-thickness: 2px; text-underline-offset: 4px; }
.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 20px; height: 20px; fill: var(--accent); }
.reviews { list-style: none; padding: 0; margin: 36px 0 24px; display: grid; gap: 28px; }
@media (min-width: 800px) {
  /* The first review is several times longer than the other two. On three equal columns it set the row
     height and left the right-hand pair sitting over a column of white. It now holds the left column on
     its own and the two short ones stack beside it. */
  .reviews { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 36px 48px; align-items: start; }
  .reviews li:first-child { grid-row: span 2; }
}
.reviews blockquote { margin: 0; padding-left: 20px; border-left: 3px solid var(--accent); }
.reviews .stars { display: flex; margin-bottom: 10px; }
.reviews blockquote p { font-size: 1.12rem; margin-bottom: .6em; max-width: 64ch; }
.reviews footer a { color: var(--slate); font-weight: 500; }
.review-links { display: flex; gap: 28px; flex-wrap: wrap; font-weight: 700; }
.review-links a { text-decoration-thickness: 2px; text-underline-offset: 4px; }
.about, .ebike { display: grid; gap: 28px; margin-top: clamp(48px, 7vw, 88px); padding-top: clamp(40px, 5vw, 64px); border-top: 1px solid var(--accent); }
@media (min-width: 800px) {
  .about { grid-template-columns: minmax(180px, 215px) 1fr; align-items: start; gap: 48px; }
  .ebike { grid-template-columns: 1fr minmax(320px, 560px); align-items: center; gap: 56px; }
}
.about img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.about h3, .ebike h3 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem); margin-bottom: .6em; }
.about p { font-size: 1.12rem; max-width: 58ch; }
.ebike > div > p { color: var(--slate); max-width: 52ch; }
.ebike ul { list-style: none; padding: 0; border-top: 1px solid var(--rule); }
.ebike li { padding: 16px 0; border-bottom: 1px solid var(--rule); color: var(--slate); }
.ebike li strong { display: block; color: var(--ink); font-size: 1.12rem; margin-bottom: 2px; }
.ebike img { width: 100%; }

/* Services: a ruled list, not a card kit. No prices; every job is quoted. */
.packages { list-style: none; padding: 0; margin: 40px 0 0; display: grid; border-top: 2px solid var(--accent); }
@media (min-width: 800px) { .packages { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.package { padding: 28px 0; border-bottom: 1px solid var(--rule); display: flex; flex-direction: column; gap: 14px; }
@media (min-width: 800px) {
  .package { padding: 32px 28px 32px 0; }
  .package + .package { padding-left: 28px; border-left: 1px solid var(--rule); }
}
.package h3 { font-size: 1.3rem; }
.package ul { padding: 0; list-style: none; color: var(--slate); }
.package li { padding: 6px 0 6px 18px; position: relative; }
.package li::before { content: ""; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--accent); }
.package .link { margin-top: auto; font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 5px; }

/* Evidence: before and after as plain side-by-side pairs (before left, after right), then four photos */
.pairs { display: grid; gap: 28px; margin: 40px 0; }
@media (min-width: 800px) { .pairs { grid-template-columns: 1fr 1fr; gap: 32px; } }
.pairs figure { margin: 0; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pair-shot { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--rule); }
.pair-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
figcaption { margin-top: 10px; color: var(--slate); font-weight: 500; font-size: .95rem; }
.grid { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 800px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.grid a { display: block; aspect-ratio: 1; overflow: hidden; background: var(--rule); }
.grid img { width: 100%; height: 100%; object-fit: cover; }
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(96vw, 1200px); max-height: 96vh; color: var(--white); }
.lightbox::backdrop { background: rgb(var(--ink-rgb) / .93); }
.lightbox figure { margin: 0; }
.lightbox img { max-height: 84vh; width: auto; max-width: 100%; margin: 0 auto; }
.lightbox figcaption { color: var(--white); text-align: center; margin-top: 12px; }
.lightbox-close {
  position: fixed; top: 14px; right: 14px; min-height: 44px; padding: 0 16px;
  font: inherit; font-weight: 700; background: var(--white); color: var(--ink); border: 0; cursor: pointer;
}

/* Service area */
.area-grid { display: grid; gap: 40px; margin-top: 8px; }
@media (min-width: 900px) { .area-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; } }
.suburbs { list-style: none; padding: 0; margin: 24px 0 16px; columns: 2; column-gap: 28px; }
@media (min-width: 600px) { .suburbs { columns: 3; } }
.suburbs li { padding: 7px 0; border-bottom: 1px solid var(--rule); break-inside: avoid; font-weight: 500; }
.map-wrap { display: grid; gap: 14px; justify-items: start; }
.map { width: 100%; aspect-ratio: 4 / 3; border: 1px solid var(--rule); background: var(--grey); }
.map-wrap a { font-weight: 700; text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* FAQ: the open item draws an orange rule down its left edge */
.faq-list { max-width: 820px; margin-top: 32px; border-top: 2px solid var(--accent); }
.faq-item { position: relative; border-bottom: 1px solid var(--rule); padding-left: 18px; }
.faq-item::before { content: ""; position: absolute; left: 0; top: 0; bottom: -1px; width: 3px; background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .3s var(--ease); }
.faq-item.open::before { transform: scaleY(1); }
.faq-item h3 { font-size: 1.15rem; }
.faq-q {
  position: relative; width: 100%; text-align: left; padding: 20px 48px 20px 0;
  font: inherit; font-weight: 700; font-size: 1.15rem; line-height: 1.3;
  background: none; border: 0; color: inherit; cursor: pointer;
}
.faq-q::before, .faq-q::after { content: ""; position: absolute; right: 10px; top: 50%; width: 18px; height: 2px; background: var(--ink); transform: translateY(-50%); transition: transform .25s var(--ease), background-color .25s var(--ease); }
.faq-q::after { transform: translateY(-50%) rotate(90deg); }
.faq-q[aria-expanded="true"]::before, .faq-q[aria-expanded="true"]::after { background: var(--accent); }
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(0deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; visibility: visible; transition: visibility 0s; }
.faq-a[aria-hidden="true"] > div { visibility: hidden; transition: visibility 0s .3s; }
.faq-a p { margin: 0; padding: 0 0 22px; max-width: 65ch; color: var(--slate); }

/* Quote form */
.form { display: grid; gap: 20px; max-width: 860px; margin-top: 32px; }
@media (min-width: 700px) { .form { grid-template-columns: repeat(2, minmax(0, 1fr)); } .form .full { grid-column: 1 / -1; } }
.field label { display: block; font-weight: 700; margin-bottom: 6px; }
.field .hint { display: block; font-weight: 400; color: var(--slate); font-size: .92rem; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; padding: 12px 14px; min-height: 52px;
  border: 2px solid var(--ink); border-radius: 0; background: var(--white); color: var(--ink);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field textarea { min-height: 150px; resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { grid-column: 1 / -1; margin: 0; font-weight: 700; min-height: 1.5em; }
.form-status.err { border-left: 3px solid var(--accent); padding-left: 12px; }

/* Footer */
.site-foot { border-top: 2px solid var(--accent); padding: clamp(40px, 6vw, 72px) 0 32px; }
.foot-grid { display: grid; gap: 32px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.foot-mark { height: 20px; width: auto; margin-bottom: 16px; }
.foot-grid h3 { font-size: 1rem; margin-bottom: 10px; }
.foot-grid ul { list-style: none; padding: 0; }
.foot-grid li { padding: 4px 0; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
@media (min-width: 800px) { .foot-links-2 { margin-top: 30px; } }
.foot-legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--rule); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--slate); font-size: .95rem; }
.foot-legal p { margin: 0; }

/* Sticky mobile bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: var(--white); border-top: 1px solid var(--rule);
  transition: transform .3s var(--ease);
}
.mobile-bar.hide { transform: translateY(110%); }
.mobile-bar .btn { min-height: 48px; }
@media (min-width: 900px) { .mobile-bar { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 78px; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
