/* ==========================================================================
   JJW Bicycle Repairs — stylesheet
   ========================================================================== */

:root {
  --bg: #111111;
  --bg-alt: #0a0a0a;
  --panel: #1a1a1a;
  --panel-alt: #1f1f1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --red: #dc0a1e;
  --red-dark: #a80816;
  --red-bright: #ef1a2e;

  --white: #ffffff;
  --grey: #a3a3a3;
  --grey-dim: #7a7a7a;

  --font-display: "Archivo", "Arial Black", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --radius-s: 6px;
  --radius-m: 10px;
  --radius-pill: 999px;

  --shadow-card: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--grey);
}

button {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 900px) {
  .container {
    padding: 0 2rem;
  }
}

section {
  position: relative;
}

section[id],
#top {
  scroll-margin-top: 120px;
}

.section-pad {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.section-head {
  max-width: 640px;
  margin: 0 0 2.75rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 0.9em;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-lede {
  font-size: 1.05rem;
  max-width: 52ch;
}

.center .section-lede {
  margin-inline: auto;
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  border-radius: var(--radius-pill);
  padding: 0.95em 1.9em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--red);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--red-bright);
}

.btn--outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--white);
}

.btn--outline:hover {
  border-color: var(--white);
}

.btn--ghost-red {
  background: transparent;
  border-color: var(--red);
  color: var(--red-bright);
}

.btn--ghost-red:hover {
  background: rgba(220, 10, 30, 0.1);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 1.1em 2.3em;
  font-size: 0.98rem;
}

.btn--sm {
  padding: 0.6em 1.3em;
  font-size: 0.82rem;
}

/* -------------------------------------------------------------------------
   Cookie consent banner
   ------------------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1600;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  padding: 1.1rem 1.3rem;
}

.cookie-banner p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 0.86rem;
  color: var(--grey);
}

.cookie-banner a {
  color: var(--red-bright);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  flex: none;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 56px;
  width: auto;
}

@media (min-width: 640px) {
  .brand img {
    height: 72px;
  }
}

.main-nav {
  display: none;
}

@media (min-width: 980px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2.1rem;
  }

  .main-nav a:not(.btn) {
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--grey);
    position: relative;
    padding: 0.3rem 0;
  }

  .main-nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--red);
    transition: right 0.2s ease;
  }

  .main-nav a:not(.btn):hover {
    color: var(--white);
  }

  .main-nav a:not(.btn):hover::after {
    right: 0;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.header-actions .btn {
  padding: 0.72em 1.4em;
  font-size: 0.8rem;
}

@media (min-width: 980px) {
  .header-actions__cta {
    display: none;
  }
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-s);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.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);
}

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

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--bg-alt);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 6.5rem 1.5rem 2.5rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}

.mobile-nav .btn {
  margin-top: 2rem;
}

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

body.nav-open {
  overflow: hidden;
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero {
  padding-top: clamp(7.5rem, 14vw, 10.5rem);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(220, 10, 30, 0.14), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 6vw, 3.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.hero__title {
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  color: var(--white);
}

.hero__title .accent {
  color: var(--red-bright);
}

.hero__lede {
  font-size: 1.1rem;
  max-width: 46ch;
  color: var(--grey);
}

.hero__lede strong {
  color: var(--white);
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1rem;
  margin: 1.9rem 0 2.2rem;
  max-width: 460px;
}

.hero__point {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.hero__point svg {
  flex: none;
  color: var(--red-bright);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__media {
  position: relative;
}

.hero__media-frame {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  aspect-ratio: 4 / 5;
}

.hero__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__media-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  right: 1.1rem;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-s);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero__media-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
}

.hero__media-badge span {
  display: block;
  font-size: 0.78rem;
  color: var(--grey);
}

/* -------------------------------------------------------------------------
   How it works
   ------------------------------------------------------------------------- */
.steps {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}

@media (min-width: 700px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.9rem 1.6rem;
}

.step__num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--red);
  -webkit-text-stroke: 1px var(--red);
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.section-cta {
  margin-top: 2.5rem;
  text-align: center;
}

/* -------------------------------------------------------------------------
   Repair not replace
   ------------------------------------------------------------------------- */
.repair-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.repair-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .repair-grid {
    grid-template-columns: 1fr 1fr;
  }
  .repair-grid.reverse .repair-copy {
    order: 2;
  }
}

.repair-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
}

.repair-highlight {
  margin-top: 1.75rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-m);
  padding: 1.4rem 1.6rem;
}

.repair-highlight .tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.repair-highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
}

.repair-visual {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border-strong);
}

.repair-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.repair-visual .icon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid var(--red);
  background: rgba(10, 10, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
}

/* -------------------------------------------------------------------------
   Pricing
   ------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 4px solid var(--grey-dim);
  border-radius: var(--radius-m);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-card);
}

.price-card--featured {
  border-left-color: var(--red);
  background: var(--panel-alt);
  position: relative;
}

@media (min-width: 780px) {
  .price-card--featured {
    transform: translateY(-0.9rem);
  }
}

.price-card--premium {
  border-left-color: var(--white);
}

.price-card__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.price-card__tier {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.badge-popular {
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28em 0.65em;
  border-radius: var(--radius-pill);
}

.price-card__name {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.15em;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.9rem;
}

.price-card--featured .price-card__amount {
  color: var(--red-bright);
}

.price-card__desc {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.price-card__note {
  font-size: 0.88rem;
  color: var(--grey-dim);
  font-style: italic;
  margin-bottom: 1.6rem;
}

.price-card .btn {
  margin-top: auto;
}

.addons {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 620px) {
  .addons {
    grid-template-columns: 1fr 1fr;
  }
}

.addon-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.addon-card__name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.94rem;
}

.addon-card__sub {
  font-size: 0.8rem;
  color: var(--grey-dim);
}

.addon-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--red-bright);
  white-space: nowrap;
}

.pricing-footnote {
  margin-top: 1.6rem;
  font-size: 0.85rem;
  color: var(--grey-dim);
  text-align: center;
}

/* -------------------------------------------------------------------------
   Problems we fix
   ------------------------------------------------------------------------- */
.problems-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .problems-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .problems-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.problem-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--white);
}

.problem-chip svg {
  flex: none;
  color: var(--red-bright);
}

.problems-foot {
  margin-top: 2.25rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.problems-foot p {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.3rem;
}

/* -------------------------------------------------------------------------
   Gallery
   ------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  background: var(--panel);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.8rem 0.6rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover .gallery-item__label,
.gallery-item:focus-visible .gallery-item__label {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  max-width: min(92vw, 900px);
  max-height: 86vh;
  position: relative;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: 86vh;
  border-radius: var(--radius-s);
  border: 1px solid var(--border-strong);
}

.lightbox__caption {
  text-align: center;
  color: var(--grey);
  font-size: 0.85rem;
  margin-top: 0.8rem;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(20, 20, 20, 0.85);
  border: 1px solid var(--border-strong);
  color: var(--white);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox__close {
  top: -1.4rem;
  right: -1.4rem;
}

.lightbox__nav--prev {
  left: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox__nav--next {
  right: -1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 640px) {
  .lightbox__close {
    top: -3rem;
    right: 0;
  }
  .lightbox__nav--prev {
    left: -0.3rem;
  }
  .lightbox__nav--next {
    right: -0.3rem;
  }
}

/* -------------------------------------------------------------------------
   Why JJW
   ------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.why-copy h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
}

.why-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.why-highlight {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 1rem 1.1rem;
}

.why-highlight strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.why-highlight span {
  font-size: 0.78rem;
  color: var(--grey-dim);
}

.why-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.why-media img {
  border-radius: var(--radius-m);
  border: 1px solid var(--border-strong);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.why-media .span-full {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8;
}

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

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  color: var(--red-bright);
  margin-bottom: 0.9rem;
}

.review-quote {
  color: var(--white);
  font-size: 0.96rem;
  margin-bottom: 1.3rem;
  flex: 1;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.review-source {
  font-size: 0.78rem;
  color: var(--grey-dim);
}

/* -------------------------------------------------------------------------
   Quote form
   ------------------------------------------------------------------------- */
.quote-section {
  background:
    radial-gradient(ellipse 55% 60% at 10% 10%, rgba(220, 10, 30, 0.12), transparent 60%),
    var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 960px) {
  .quote-grid {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.quote-info__list {
  margin-top: 1.75rem;
  display: grid;
  gap: 0.9rem;
}

.quote-info__item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.quote-info__item svg {
  flex: none;
  color: var(--red-bright);
  margin-top: 0.15rem;
}

.quote-info__item strong {
  display: block;
  color: var(--white);
  font-size: 0.94rem;
}

.quote-info__item span {
  font-size: 0.84rem;
  color: var(--grey-dim);
}

.quote-form {
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-m);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.field .required {
  color: var(--red-bright);
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-s);
  padding: 0.8em 0.9em;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color 0.15s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
}

.field-error {
  display: none;
  font-size: 0.78rem;
  color: var(--red-bright);
  margin-top: 0.35rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: var(--red-bright);
}

.field.has-error .field-error {
  display: block;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a3a3a3' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  padding-right: 2.2em;
}

.file-drop {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-s);
  padding: 1.4rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
  position: relative;
}

.file-drop:hover,
.file-drop.is-dragover {
  border-color: var(--red);
  background: rgba(220, 10, 30, 0.05);
}

.file-drop input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-drop__label {
  font-size: 0.86rem;
  color: var(--grey);
}

.file-drop__label strong {
  color: var(--red-bright);
}

.file-drop__filename {
  margin-top: 0.5rem;
  font-size: 0.82rem;
  color: var(--white);
  font-weight: 600;
  word-break: break-all;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.checkbox-row input {
  margin-top: 0.2rem;
  accent-color: var(--red);
  width: 17px;
  height: 17px;
  flex: none;
}

.checkbox-row label {
  font-size: 0.88rem;
  color: var(--grey);
}

.cf-turnstile {
  margin-bottom: 1.4rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin-top: 1.1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-s);
  font-size: 0.9rem;
  display: none;
  align-items: center;
  gap: 0.6rem;
}

.form-status.is-visible {
  display: flex;
}

.form-status--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.form-status--error {
  background: rgba(220, 10, 30, 0.12);
  border: 1px solid rgba(220, 10, 30, 0.4);
  color: #ff9aa5;
}

/* -------------------------------------------------------------------------
   Final CTA
   ------------------------------------------------------------------------- */
.final-cta {
  text-align: center;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  max-width: 18ch;
  margin-inline: auto;
}

.final-cta p {
  max-width: 54ch;
  margin: 1rem auto 2.25rem;
  font-size: 1.05rem;
}

.final-cta__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.75rem;
}

.footer-top {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 780px) {
  .footer-top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 64px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  max-width: 32ch;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-list li {
  margin-bottom: 0.65rem;
}

.footer-list a {
  font-size: 0.88rem;
  color: var(--grey);
}

.footer-list a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--red-bright);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--grey-dim);
}

.footer-bottom a {
  color: var(--grey-dim);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-legal-links {
  display: flex;
  gap: 1.2rem;
}

/* -------------------------------------------------------------------------
   Reveal-on-scroll (subtle)
   ------------------------------------------------------------------------- */
/* Only hide .reveal content once JS has confirmed it can animate it back
   in — keeps the page fully visible for no-JS, slow-JS and reduced-motion
   contexts instead of depending on a script running correctly. */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* -------------------------------------------------------------------------
   Skip link / accessibility
   ------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -60px;
  background: var(--red);
  color: var(--white);
  padding: 0.7em 1.2em;
  border-radius: var(--radius-s);
  z-index: 300;
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 2px;
}

/* -------------------------------------------------------------------------
   Utility
   ------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.tel-link {
  color: inherit;
}
