:root {
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #152131;
  --text: #3c4857;
  --muted: #657182;
  --paper: #fffaf1;
  --surface: #ffffff;
  --soft: #f2eadc;
  --line: #e1d6c5;
  --teal: #17686b;
  --gold: #b47b4d;
  --navy: #17344a;
  --green: #087a3d;
  --line-green: #057f45;
  --shadow: 0 18px 42px rgba(31, 43, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.94);
  box-shadow: 0 1px 0 rgba(23, 52, 74, 0.12);
  backdrop-filter: blur(14px);
}

.nav-inner {
  width: min(1120px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--gold));
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.site-header.is-scrolled .brand small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
}

.site-header.is-scrolled .nav-links {
  color: var(--text);
}

.nav-links a,
.footer-inner a,
.inline-actions a {
  text-decoration: none;
}

.nav-links a:hover,
.footer-inner a:hover,
.inline-actions a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-cta {
  flex: 0 0 auto;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 800;
}

.site-header.is-scrolled .nav-cta {
  background: var(--navy);
  border-color: var(--navy);
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 26, 39, 0.9) 0%, rgba(14, 26, 39, 0.68) 42%, rgba(35, 122, 125, 0.42) 100%),
    linear-gradient(0deg, rgba(14, 26, 39, 0.5), rgba(14, 26, 39, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 148px 0 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffe6be;
  background: rgba(180, 123, 77, 0.36);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  color: var(--ink);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 68px;
  line-height: 1.02;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

.hero-copy span {
  display: block;
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 128px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--green);
}

.btn-line {
  color: #fff;
  background: var(--line-green);
}

.btn-dark {
  color: #fff;
  background: var(--navy);
}

.btn-light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.42);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 960px;
  margin: 40px 0 0;
}

.trust-strip div {
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.trust-strip dt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
}

.trust-strip dd {
  margin: 4px 0 0;
  color: #fff;
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding-top: 44px;
}

.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.split h2,
.confidence h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1.08;
}

.section-heading p:last-child,
.lead {
  font-size: 17px;
  line-height: 1.7;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route,
.bike-card,
.info-panel,
.location-card,
.confidence-grid article,
.policy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(31, 43, 57, 0.08);
}

.route {
  overflow: hidden;
}

.route img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.route div {
  padding: 18px;
}

.route h2,
.bike-card h3,
.location-card h3,
.info-panel h3,
.confidence-grid h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 22px;
}

.route p,
.bike-card p,
.location-card p,
.info-panel p,
.confidence-grid p {
  margin: 0;
  line-height: 1.6;
}

.bikes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bike-card {
  overflow: hidden;
}

.bike-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 255px;
  padding: 16px;
  background: #f8f4ec;
}

.bike-media img {
  height: 230px;
  width: 100%;
  object-fit: contain;
}

.tier {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bike-body {
  padding: 18px;
}

.tagline {
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
}

.period-toggle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  margin: 16px 0;
  padding: 4px;
  border-radius: 8px;
  background: #eee5d7;
}

.period-toggle button {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.period-toggle button[aria-pressed="true"] {
  color: #fff;
  background: var(--navy);
}

.price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}

.price {
  color: var(--ink);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.per {
  color: var(--muted);
  font-size: 14px;
}

.save {
  color: #0d5630;
  background: #dff5e8;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 13px;
}

.features li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.card-actions .btn {
  min-width: 0;
  min-height: 42px;
  padding: 10px;
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 40px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.check-list p {
  margin: 0;
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(31, 43, 57, 0.06);
}

.info-panel,
.location-card,
.policy-card {
  padding: 24px;
}

.info-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
  line-height: 1.7;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 900;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 22px;
  align-items: stretch;
}

.shop-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.shop-photo img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.stacked-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.map-frame {
  height: 330px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.google-reviews {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(31, 43, 57, 0.08);
}

.google-reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
}

.google-reviews-head h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.12;
}

.google-reviews-head p:not(.eyebrow),
.review-card p {
  margin: 0;
  line-height: 1.65;
}

.google-reviews-head > div {
  max-width: 650px;
}

.google-reviews-head .btn {
  flex: 0 0 auto;
}

.rating-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 8px;
  background: #f8f4ec;
}

.rating-score strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 46px;
  line-height: 1;
}

.review-stars {
  display: block;
  margin-top: 4px;
  color: #f6a400;
  letter-spacing: 1px;
}

.rating-score span:last-child {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.rating-bars {
  display: grid;
  gap: 8px;
}

.rating-bars span {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #ece1d2;
}

.rating-bars b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #f6a400;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.review-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.review-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.review-card-head strong {
  color: var(--ink);
}

.review-card-head span,
.review-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.review-card p {
  color: var(--ink);
  font-weight: 700;
}

.review-card small {
  display: block;
  margin-top: 14px;
  line-height: 1.5;
}

.confidence {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.confidence-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.confidence-grid article {
  padding: 20px;
}

.final-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 52, 74, 0.92), rgba(35, 122, 125, 0.68));
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 32px));
}

.final-cta h2 {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 48px;
}

.final-cta p {
  margin: 14px auto 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

.final-cta .hero-actions {
  justify-content: center;
}

.facebook-section {
  padding: 56px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.facebook-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: 28px;
  align-items: center;
}

.facebook-copy h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.12;
}

.facebook-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
}

.facebook-copy .btn {
  margin-top: 24px;
}

.facebook-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(31, 43, 57, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.facebook-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.facebook-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.facebook-card-body {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
}

.facebook-badge {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: #fff;
  background: #1877f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.facebook-card-body strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.1;
}

.facebook-card-body span:not(.facebook-badge) {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.facebook-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.facebook-card-footer strong {
  color: #1877f2;
}

.site-footer {
  padding: 28px 0 92px;
  color: #5c6777;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.mobile-action-bar {
  display: none;
}

.policy-page {
  padding-top: 120px;
}

.policy-card {
  max-width: 860px;
  margin: 0 auto 56px;
}

.policy-card h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: 44px;
}

.policy-card h2 {
  margin-top: 28px;
  font-size: 24px;
}

.policy-card p,
.policy-card li {
  line-height: 1.75;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 54px;
  }

  .trust-strip,
  .route-grid,
  .bikes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .location-layout,
  .facebook-layout,
  .confidence {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .nav-inner {
    min-height: 64px;
  }

  .brand strong {
    font-size: 20px;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    max-width: 128px;
    padding: 9px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 42px;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 38px;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 330px;
  }

  .hero-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .hero-actions .btn-ghost {
    grid-column: 1 / -1;
  }

  .trust-strip,
  .route-grid,
  .bikes-grid,
  .reviews-grid,
  .confidence-grid,
  .features {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 52px 0;
  }

  .section-heading h2,
  .split h2,
  .confidence h2 {
    font-size: 34px;
  }

  .google-reviews {
    padding: 18px;
  }

  .google-reviews-head,
  .rating-panel {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .google-reviews-head h3 {
    font-size: 24px;
  }

  .facebook-section {
    padding: 42px 0;
  }

  .facebook-copy h2 {
    font-size: 30px;
  }

  .facebook-card img {
    aspect-ratio: 16 / 9;
  }

  .facebook-card-body,
  .facebook-card-footer {
    padding-inline: 16px;
  }

  .facebook-card-body strong {
    font-size: 22px;
  }

  .bike-media {
    min-height: 230px;
  }

  .bike-media img {
    height: 210px;
  }

  .footer-inner {
    display: grid;
  }

  .mobile-action-bar {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 10px;
    z-index: 50;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 4px;
    width: calc(100% - 16px);
    max-width: 344px;
    transform: none;
    padding: 8px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: rgba(23, 52, 74, 0.94);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
    overflow: hidden;
  }

  .mobile-action-bar a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 42px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-action-bar a:first-child {
    background: var(--green);
  }

  .mobile-action-bar a:nth-child(2) {
    background: var(--line-green);
  }

  .mobile-action-bar a:last-child {
    background: rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 420px) {
  .container,
  .nav-inner,
  .hero-content {
    width: min(100% - 24px, 1120px);
  }

  .hero h1 {
    max-width: 300px;
    font-size: 34px;
  }

  .trust-strip div {
    min-height: 64px;
  }
}
