/* Cogwheel — friendly neighbourhood bike shop */

:root {
  --ink: #1c1916;
  --ink-soft: #3d3832;
  --muted: #6b635a;
  --cream: #f6f0e6;
  --cream-dark: #ebe3d4;
  --paper: #fffdf8;
  --copper: #b85c38;
  --copper-deep: #8f4528;
  --copper-soft: #e8c4b0;
  --moss: #3d5c45;
  --moss-soft: #dce8df;
  --rust: #a33b2a;
  --line: #ddd4c6;
  --shadow: 0 12px 40px rgba(28, 25, 22, 0.08);
  --shadow-sm: 0 4px 16px rgba(28, 25, 22, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "Cascadia Code", "Segoe UI Mono", Menlo, monospace;
  --header-h: 72px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 100% -20%, rgba(184, 92, 56, 0.08), transparent 50%),
    radial-gradient(ellipse 80% 60% at -10% 40%, rgba(61, 92, 69, 0.06), transparent 45%),
    var(--cream);
  min-height: 100vh;
}

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

a {
  color: var(--copper-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

a:hover { color: var(--copper); }

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(1.85rem, 5vw, 2.75rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.45rem, 3.5vw, 1.9rem); margin: 0 0 0.5em; }
h3 { font-size: 1.15rem; margin: 0 0 0.4em; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1000;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.muted { color: var(--muted); }
.small { font-size: 0.92rem; }
.optional { color: var(--muted); font-weight: 400; font-size: 0.9em; }
.hidden { display: none !important; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 240, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.brand small {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.1rem;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.35rem 0.15rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--copper-deep);
  border-bottom-color: var(--copper);
}

.site-nav a.nav-cta {
  background: var(--copper);
  color: #fff;
  border-bottom: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: 0 2px 0 var(--copper-deep);
}

.site-nav a.nav-cta:hover {
  background: var(--copper-deep);
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font: inherit;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
}

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

.btn-primary {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 3px 0 var(--copper-deep);
}

.btn-primary:hover {
  background: var(--copper-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--copper);
  color: var(--copper-deep);
  background: rgba(184, 92, 56, 0.06);
}

.btn-lg { padding: 0.9rem 1.5rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Hero home */
.hero {
  display: grid;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  min-height: 220px;
  max-height: 420px;
  overflow: hidden;
  background: var(--cream-dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  max-height: 420px;
}

.hero-copy {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  width: min(100%, 640px);
  margin: 0 auto;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--moss);
  background: var(--moss-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin: 0 0 1rem;
}

.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges li {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Hours */
.hours-strip {
  background: var(--moss);
  color: #f3f7f4;
  padding: 2rem 0;
}

.hours-strip h2 { color: #fff; }
.hours-strip .muted { color: rgba(243, 247, 244, 0.8); }

.hours-grid {
  display: grid;
  gap: 1.5rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-weight: 600;
}

.hours-table th { font-weight: 500; color: rgba(243,247,244,0.85); width: 50%; }
.hours-table td { text-align: right; }

.hours-note {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(255,255,255,0.15) !important;
  color: #fff;
}

.hours-note p { color: rgba(243,247,244,0.88); margin-top: 0.35rem; }

/* Sections */
.section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.section-alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.section-foot {
  margin-top: 1.75rem;
  font-weight: 700;
}

.section-foot a { font-size: 1.05rem; }

/* Cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}

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

.card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  background: var(--cream-dark);
}

.card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.card-soft {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}

/* Split layouts */
.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split-center { align-items: center; }

.media-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.media-frame figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  counter-reset: step;
  display: grid;
  gap: 1rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.steps li::before {
  content: counter(step);
  grid-row: 1 / span 2;
  align-self: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps strong { grid-column: 2; }
.steps span {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pills */
.pill-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.pill-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--copper);
}

.pill-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, rgba(184, 92, 56, 0.12), rgba(61, 92, 69, 0.1)),
    var(--cream-dark);
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cta-inner p {
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0;
}

.cta-inner h2 { margin-bottom: 0.35rem; }

/* Page hero */
.page-hero {
  padding: clamp(2rem, 5vw, 3rem) 0 0.5rem;
  border-bottom: 1px solid transparent;
}

.page-hero-inner { max-width: 40rem; }

/* Services prices */
.notice {
  margin-bottom: 2rem;
}

.notice p { margin-top: 0.4rem; color: var(--ink-soft); }

.price-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(246, 240, 230, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  margin-inline: calc(50% - 50vw);
  padding-inline: max(1rem, calc((100vw - var(--max)) / 2));
}

#price-filter {
  width: 100%;
  font: inherit;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
}

#price-filter:focus {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
  border-color: var(--copper);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.chip {
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  cursor: pointer;
}

.chip:hover { border-color: var(--copper-soft); }
.chip.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.price-block {
  margin-bottom: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-block.is-dimmed { display: none; }

.price-block-head {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.price-block-head img {
  width: 100px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.price-block-head h2 { margin: 0 0 0.2rem; font-size: 1.25rem; }
.price-block-head p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.price-rows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-rows li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.price-rows li:last-child { border-bottom: none; }

.price-rows li.is-hidden { display: none; }

.price-rows strong {
  display: block;
  margin-bottom: 0.2rem;
}

.price-rows span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--moss);
  white-space: nowrap;
  font-size: 1.05rem;
  padding-top: 0.1rem;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.fine-print {
  margin-top: 1rem;
}

.fine-print ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.fine-print li { margin-bottom: 0.4rem; }

/* About mechanics */
.mechanic-grid {
  display: grid;
  gap: 2rem;
}

.mechanic-card {
  display: grid;
  gap: 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.mechanic-card > img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  max-height: 420px;
  background: var(--cream-dark);
}

.mechanic-body {
  padding: 0 1.35rem 1.5rem;
}

.mechanic-body .role {
  color: var(--copper-deep);
  font-weight: 700;
  font-size: 0.95rem;
  margin: -0.35rem 0 1rem;
}

.mechanic-body p { color: var(--ink-soft); }

.tag-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag-list li {
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--moss-soft);
  color: var(--moss);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.values h2 { margin-bottom: 1.25rem; }

/* Contact */
.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.address {
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0.5rem 0 1.25rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-details .label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.contact-details a {
  font-weight: 700;
  text-decoration: none;
  color: var(--copper-deep);
}

.contact-details a:hover { text-decoration: underline; }

.plain-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.plain-list li { margin-bottom: 0.55rem; }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.form-card h2 { margin-bottom: 0.35rem; }

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s, background 0.15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--copper);
  outline-offset: 2px;
  border-color: var(--copper);
  background: #fff;
}

.field textarea { resize: vertical; min-height: 140px; }

.field-row {
  display: grid;
  gap: 1rem;
}

.checkbox-field label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-weight: 600;
  cursor: pointer;
}

.checkbox-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--copper);
  flex-shrink: 0;
}

.form-status {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-status.error {
  background: #fde8e4;
  color: var(--rust);
  border: 1px solid #f0c2b8;
}

.form-status.info {
  background: var(--moss-soft);
  color: var(--moss);
  border: 1px solid #b7d0be;
}

.fine-note {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.form-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--moss-soft);
  color: var(--moss);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success h3 { color: var(--moss); }
.form-success p { color: var(--ink-soft); margin-bottom: 1.25rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(246, 240, 230, 0.85);
  padding: 3rem 0 0;
  margin-top: auto;
}

.site-footer a { color: #f0d2c2; }
.site-footer a:hover { color: #fff; }

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-grid h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.footer-grid p { margin: 0; font-size: 0.95rem; }

.brand-footer { color: #fff; margin-bottom: 0.75rem; }
.brand-footer strong { color: #fff; }
.brand-footer img {
  background: var(--cream);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li { margin-bottom: 0.4rem; }
.footer-links a { text-decoration: none; font-weight: 600; }
.footer-links a:hover { text-decoration: underline; }

.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0 1.25rem;
  font-size: 0.85rem;
  color: rgba(246, 240, 230, 0.55);
}

.footer-base p { margin: 0; }

/* Responsive */
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.three { grid-template-columns: repeat(2, 1fr); }
  .pill-grid { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1.2fr 1fr; }
  .hours-note { grid-column: 1 / -1; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .price-block-head { grid-template-columns: 140px 1fr; padding: 1.15rem 1.25rem; }
  .price-block-head img { width: 140px; height: 90px; }
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: 1.15fr 1fr;
    min-height: 480px;
    align-items: stretch;
  }

  .hero-media {
    max-height: none;
    min-height: 100%;
  }

  .hero-media img {
    max-height: none;
    min-height: 100%;
    height: 100%;
  }

  .hero-copy {
    margin: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.5rem 2.5rem 2.5rem 1.5rem;
  }

  .hours-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    align-items: start;
  }

  .hours-note { grid-column: auto; }

  .card-grid.fix-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid.three { grid-template-columns: repeat(3, 1fr); }

  .split { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split > .media-frame:first-child { order: 0; }

  .mechanic-grid { grid-template-columns: 1fr 1fr; }

  .mechanic-card {
    grid-template-rows: auto 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr 1.05fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1rem 1.1rem;
    gap: 0.15rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    border-bottom: none;
    border-radius: 10px;
  }

  .site-nav a[aria-current="page"] {
    background: var(--cream);
  }

  .site-nav a.nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }

  .brand small { display: none; }

  .price-rows li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .price { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card, .btn { transition: none; }
}