/*
Theme Name: TerrainHopper
Theme URI: https://terrainhopper.com
Author: TerrainHopper
Description: All-terrain mobility scooter site for TerrainHopper, converted from the static rebuild into a classic WordPress theme.
Version: 1.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: terrainhopper
*/

/* TerrainHopper — static rebuild
   Design tokens taken from the original site:
   primary  #F86111
   font     Inter
   headings weight 700
   button radius 6px
------------------------------------------------------------------ */

:root {
  --primary:        #f86111;
  --primary-dark:   #d44f06;
  --primary-tint:   #fee8dc;
  --ink:            #1b1d22;
  --ink-soft:       #4b4f57;
  --muted:          #6b7280;
  --line:           #e7e8ea;
  --bg:             #ffffff;
  --bg-soft:        #f7f7f8;
  --dark:           #131417;
  --dark-2:         #1c1d21;
  --radius:         6px;
  --radius-lg:      14px;
  --maxw:           1200px;
  --font:           "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

@font-face {
  font-family: "Dodger Laser";
  src: url("fonts/dodger3_1laser.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-weight: 700; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.25rem; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c9ccd2; }

.eyebrow {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.lead { font-size: 1.15rem; max-width: 720px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .98rem; cursor: pointer;
  border: 2px solid transparent; transition: .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); }
.btn--outline { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--outline:hover { border-color: var(--ink); }
.btn--outline-primary { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn--outline-primary:hover { background: var(--primary); color: #fff; }
.btn--bk-hover:hover { background: #000; color: #fff; border-color: #000; }
.btn--outline-dark { background: transparent; border-color: #000; color: var(--ink); }
.btn--outline-dark:hover { background: #000; color: #fff; border-color: #000; }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.5); color: #fff; }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); }
.btn--lg { padding: 16px 30px; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
/* keep the blur only on wider screens, where the mobile fixed-panel isn't used,
   so it can't trap the menu's fixed positioning inside the header */
@media (min-width: 941px) {
  .site-header { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-family: "Dodger Laser", var(--font); font-weight: 800; font-size: calc(1.7rem - 2px); letter-spacing: 0; }
.logo .a { color: var(--ink); }
.logo .b { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.has-menu > a { display: inline-flex; align-items: center; gap: 6px; }
.has-menu > a::after { content: ""; width: 5px; height: 5px; margin-top: -2px;
  border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg); transition: transform .18s ease, border-color .15s; }
.has-menu:hover > a::after { transform: rotate(225deg); margin-top: 2px; border-color: var(--primary); }
.dropdown {
  position: absolute; top: 130%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: .16s ease; list-style: none;
}
.has-menu:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 6px; font-size: .92rem; }
.dropdown a:hover { background: var(--bg-soft); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding-top: 8px; padding-bottom: 8px; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }
.nav-cta-mobile { display: none; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: block; margin-left: auto; }

  /* content-height dropdown panel */
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 6px 24px 22px;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(0,0,0,.12);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .nav-links.open > li { width: 100%; }
  .nav-links.open > li:not(.nav-cta-mobile) > a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 2px; font-size: 14px; color: var(--ink); font-weight: 500;
  }
  .nav-links.open > li:not(.nav-cta-mobile) > a:hover,
  .nav-links.open .dropdown a:hover { background: transparent; color: var(--primary); }

  /* right-aligned, larger accordion chevron */
  .nav-links.open .has-menu > a::after {
    margin: 0; width: 6.4px; height: 6.4px;
    border-width: 0 2px 2px 0; border-color: var(--muted);
  }
  .nav-links.open .has-menu.open > a::after { transform: rotate(225deg); }

  /* submenu accordion (indented, left rule) */
  .nav-links.open .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; border-left: 1px solid var(--line);
    margin: 0 0 10px 4px; padding: 0 0 0 18px;
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .nav-links.open .has-menu.open .dropdown { max-height: 420px; }
  .nav-links.open .dropdown a { display: block; padding: 8px 0; font-size: 14px; color: var(--ink-soft); }

  /* Book a Test Drive — in the panel flow, full width */
  .nav-links.open > li.nav-cta-mobile { display: block; border-bottom: 0; margin-top: 16px; }
  .nav-links .nav-cta-mobile .btn { display: flex; width: 100%; justify-content: center; color: #fff; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 88vh; display: flex; align-items: center;
  text-align: center; color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-img) center/cover no-repeat;
  z-index: 0;
}
.hero__video { position: absolute; inset: 0; z-index: 1; overflow: hidden; pointer-events: none; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.62));
}
.hero .container { position: relative; z-index: 3; max-width: calc(var(--maxw) + 200px); }
.hero h1 { color: #fff; max-width: 1100px; margin: 0 auto; }
.hero p { color: #eef0f3; font-size: 1.2rem; max-width: 680px; margin: 22px auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* page hero (smaller, for inner pages) */
.page-hero { background: var(--dark); color: #fff; padding: 96px 0 84px; text-align: center; }
.page-hero h1 { color: #fff; font-size: 60px; }
.page-hero p { color: #c9ccd2; max-width: 720px; margin: 20px auto 0; font-size: 1.15rem; }

/* light, left-aligned page hero */
.page-hero--light { background: var(--bg); color: var(--ink); text-align: left; padding: 80px 0 56px; }
.page-hero--light h1 { color: var(--ink); font-size: 60px; font-weight: 700; }
.page-hero--light p { color: var(--ink-soft); margin: 20px 0 0; }

/* try-or-buy hero centred */
.page-trybuy .page-hero { text-align: center; }
.page-trybuy .page-hero p { margin-left: auto; margin-right: auto; }

/* dark gradient page hero (orange glow, left-aligned) */
.page-hero--gradient { background: radial-gradient(80% 100% at 0% 0%, #b8500f 0%, #5a2c0d 16%, #1a1207 38%, #0a0805 62%); text-align: left; }
.page-hero--gradient p { margin: 20px 0 0; }

/* ---------- trust bar ---------- */
.trustbar { background: var(--bg-soft); }
.trustbar .container { display: flex; flex-wrap: wrap; gap: 18px 32px; justify-content: space-between; align-items: center; padding: 20px 24px; }
.trustbar__item { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 1rem; color: var(--ink); }
.trustbar__item b { font-weight: 700; color: var(--ink); }
.trustbar__icon { width: 22px; height: 22px; flex: none; color: var(--primary); }

/* ---------- grids / cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
@media (min-width: 901px) and (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* product rows: image sits at top, contained (not stretched) */
.split--product { align-items: start; }
.split--product img { height: auto; aspect-ratio: 4/3; object-fit: cover; }
/* how-we-grew: image below text on mobile */
@media (max-width: 900px){ .howgrew img { order: 2; } }
.split--product .price { font-size: 24px; }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.card__img { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.card__body { padding: 22px; }
.card h3 { margin-bottom: 8px; }
.price { color: var(--primary); font-weight: 700; font-size: 1.15rem; margin: 14px 0 6px; }
.meta { font-size: .85rem; color: var(--muted); }
.card-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }

.bar-quote { border-left: 3px solid var(--primary); padding-left: 18px; margin: 20px 0; }
.bar-quote p { font-size: 18px; }

/* 2x2 image grid (homepage intro) */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.intro-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 12px; display: block; }

/* full-bleed image strip */
.img-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 5px; }
.img-strip img { width: 100%; height: clamp(170px, 18vw, 250px); object-fit: cover; display: block; }
@media (max-width: 700px){ .img-strip { grid-template-columns: repeat(2, 1fr); } }

/* orange stat boxes */
.stat-boxes { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.stat-box { flex: 1; min-width: 160px; background: var(--primary); color: #fff; border-radius: var(--radius); padding: 22px 24px; text-align: center; }
.stat-box b { display: block; font-size: 36px; font-weight: 800; line-height: 1; }
.stat-box span { display: block; margin-top: 8px; font-size: 12px; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.88); }

/* "why" cards (no icon, bordered) */
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 26px; }
.why-card h3 { margin-bottom: 8px; }

/* terrain icon cards (dark) */
.terrain-cards { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; max-width: 940px; margin: 0 auto; }
.terrain-cards .terrain-card { flex: 1; min-width: 140px; background: #1f2024; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 22px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.terrain-card__icon { width: 30px; height: 30px; color: var(--primary); }
.terrain-card strong { color: #fff; font-size: .9rem; font-weight: 600; }

/* accessory cards (photo placeholder, centred) */
.photo-ph { width: 64px; height: 64px; border-radius: 50%; background: var(--bg-soft);
  display: grid; place-items: center; margin: 0 auto 16px;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.acc-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; margin-bottom: 16px; display: block; background: var(--bg-soft); }
.card--accessory .card__body { text-align: center; padding: 26px 22px; }
.card--accessory h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card--accessory p { font-size: 14px; }

/* "something unique" dark cards */
.unique-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 680px; margin: 34px auto 0; }
@media (max-width: 600px){ .unique-cards { grid-template-columns: 1fr; } }
.unique-card { background: #1f2024; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px 22px; text-align: left; }
.unique-card h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 6px; }
.unique-card p { color: #c9ccd2; font-size: .92rem; }

/* feature blocks */
.feature__icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--primary-tint);
  display: grid; place-items: center; color: var(--primary); margin-bottom: 18px;
}
.section--dark .feature__icon { background: rgba(248,97,17,.18); }
.feature__icon svg { width: 26px; height: 26px; }
/* consistent spacing between an icon-box heading and its body text */
.feature__icon + h3 { margin-bottom: 12px; }
.feature__icon--peach, .section--dark .feature__icon--peach { background: var(--primary-tint); color: var(--primary); }

/* terrain chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { background: var(--primary-tint); color: var(--primary-dark); font-weight: 600;
  padding: 8px 16px; border-radius: 999px; font-size: .9rem; }
.section--dark .chip { background: rgba(248,97,17,.16); color: #f7b189; }

/* stat row */
.stats { display: flex; flex-wrap: wrap; gap: 48px; justify-content: center; }
.stat { text-align: center; }
.stat b { display: block; font-size: 2.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat span { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* capability cards (black media + white body) */
.cap-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; text-align: left; }
.cap-card__media { background: #000; aspect-ratio: 16/9; }
.cap-card__media img { width: 100%; height: 100%; object-fit: contain; }
.cap-card__media iframe { width: 100%; height: 100%; border: 0; display: block; }
.cap-card__body { padding: 22px 24px; }
.cap-card__body h3 { color: var(--ink); margin-bottom: 8px; }
.cap-card__body p { color: var(--ink-soft); font-size: .95rem; }

/* product gallery — portrait tiles */
.product-gallery img { aspect-ratio: 3/4; height: auto; object-fit: cover; }
/* keep the gallery as a single 4-column row on mobile */
@media (max-width: 900px){ .product-gallery { grid-template-columns: repeat(4, 1fr); gap: 8px; } }

/* terrain capability banner */
.terrain-banner { background: var(--dark); border-radius: var(--radius-lg); padding: 28px 32px; }
.terrain-banner .eyebrow { display: block; margin-bottom: 22px; }
.terrain-row { display: flex; flex-wrap: wrap; gap: 24px 16px; }
.terrain-item { flex: 1; min-width: 90px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.terrain-item strong { color: #fff; font-size: .92rem; font-weight: 600; }
.terrain-banner .feature__icon { background: #3B2519; border: 0; border-radius: 8px; color: var(--primary); }

/* spec grid */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; margin-top: 10px; }
.spec-item { padding: 11px 0; border-bottom: 1px solid var(--line); }
.spec-item__label { display: block; color: var(--muted); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 3px; }
.spec-item__value { font-weight: 600; font-size: .95rem; }
@media (max-width: 560px){ .spec-grid { grid-template-columns: 1fr 1fr; gap: 0 20px; } }

/* spec table */
.spec { width: 100%; border-collapse: collapse; margin-top: 8px; }
.spec td { padding: 11px 0; border-bottom: 1px solid var(--line); vertical-align: top; font-size: .95rem; }
.spec td:first-child { color: var(--muted); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; width: 42%; padding-right: 18px; }
.spec td:last-child { font-weight: 600; }

/* testimonial cards */
.quote-card { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--primary); border-radius: var(--radius-lg); padding: 24px; }
.stars { color: var(--primary); letter-spacing: 2px; margin-bottom: 12px; }
.quote-card p { color: var(--ink); font-style: italic; font-size: 18px; font-weight: 400; }
.quote-card .who { margin-top: 14px; font-weight: 700; color: var(--ink); font-style: normal; }
.quote-card .where { font-size: .85rem; color: var(--muted); }

/* customer story cards (image + review) */
.story-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; }
.story-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.story-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.story-card .stars { color: var(--primary); letter-spacing: 2px; margin-bottom: 12px; }
.story-card p { color: var(--ink); font-style: italic; font-size: 14px; }
.story-card .who { margin-top: auto; padding-top: 16px; font-weight: 700; color: var(--ink); }
.story-card .where { font-size: .8rem; color: var(--muted); margin-top: 2px; }

/* slim dark stat bar */
.stat-bar { padding: 34px 0; }
.stat-bar .stat b { font-size: 48px; }
.stat-bar .stat span { font-size: 14px; }
.stat-bar .stats { max-width: 1000px; margin: 0 auto; justify-content: space-between; }

/* servicing — icon cards */
.svc-icon { width: 30px; height: 30px; color: var(--primary); margin-bottom: 16px; }

/* check lists */
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; max-width: 800px; margin: 0 auto; }
@media (max-width: 600px){ .check-list { grid-template-columns: 1fr; } }
.check-item { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: .95rem; }
.check-item svg { width: 18px; height: 18px; color: var(--primary); flex: none; margin-top: 3px; }

/* orange-bordered info box */
.info-box { border: 1px solid var(--primary); border-radius: var(--radius-lg); padding: 26px 28px; }
.info-box h3 { margin-bottom: 18px; }
.info-box .check-list { grid-template-columns: 1fr; gap: 16px; max-width: none; }

/* card header (icon + tag) */
.card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.card-head .svc-icon { margin-bottom: 0; }
.card-tag { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--primary); }

/* centered section icon */
.icon-center { width: 36px; height: 36px; color: var(--primary); margin: 0 auto 18px; display: block; }

/* finance calculator */
.calc { --calc: #15a094; max-width: 720px; margin: 34px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; text-align: left; }
.calc__step { font-size: .8rem; color: var(--muted); margin-bottom: 8px; }
.calc__bar { height: 8px; border-radius: 999px; background: var(--line); overflow: hidden; margin-bottom: 22px; }
.calc__bar span { display: block; height: 100%; background: var(--calc); }
.calc label { display: block; font-weight: 600; font-size: .92rem; margin: 18px 0 8px; }
.calc select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius); font-family: var(--font); font-size: .95rem; background: #fff; }
.calc__val { display: inline-block; background: var(--calc); color: #fff; font-weight: 700; font-size: .82rem; padding: 4px 10px; border-radius: 6px; margin-bottom: 6px; }
.calc input[type=range] { width: 100%; accent-color: var(--calc); }
.calc__hint { font-size: .82rem; color: var(--muted); margin-top: 10px; }
.calc .req { color: var(--primary); font-style: italic; font-weight: 500; }
.calc__radios { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.calc__radios label { display: flex; align-items: center; gap: 8px; font-weight: 400; margin: 0; accent-color: var(--calc); }
.btn--calc { background: var(--calc); color: #fff; width: 100%; justify-content: center; margin-top: 22px; }
.btn--calc:hover { filter: brightness(.95); }

/* transparent pricing — pair of customer photos */
.pricing-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pricing-imgs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; display: block; }

/* Moorgate finance calculator iframe */
.finance-frame { max-width: 720px; margin: 34px auto 0; }
.finance-frame iframe { width: 100%; height: 760px; border: 0; display: block; }

/* dark price boxes */
.price-boxes { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; max-width: 620px; margin: 34px auto 0; }
.price-box { flex: 1; min-width: 200px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: 24px 28px; text-align: center; }
.price-box b { display: block; color: var(--primary); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.price-box span { display: block; margin-top: 8px; font-size: 16px; color: #c9ccd2; }

/* gallery — uniform 4-col square grid */
.gallery-grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid4 img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform .2s, filter .2s; }
.gallery-grid4 img:hover { transform: scale(1.01); filter: brightness(1.05); }
@media (max-width: 900px){ .gallery-grid4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .gallery-grid4 { grid-template-columns: repeat(2, 1fr); } }

/* gallery masonry */
.gallery-grid { columns: 3; column-gap: 16px; }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }
.gallery-grid img { width: 100%; margin-bottom: 16px; border-radius: 10px; cursor: pointer; transition: transform .2s, filter .2s; }
.gallery-grid img:hover { transform: scale(1.01); filter: brightness(1.05); }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.9); display: none; align-items: center; justify-content: center; z-index: 100; padding: 28px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 28px; color: #fff; font-size: 2.4rem; cursor: pointer; line-height: 1; }

/* accordion (FAQ) */
.faq-group { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 56px; }
.faq-group .eyebrow { display: block; font-size: 24px; font-weight: 700; letter-spacing: .02em; }
.faq-group__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.faq-group:nth-child(even) .faq-group__img { order: -1; }
@media (max-width: 900px) {
  .faq-group { grid-template-columns: 1fr; gap: 20px; }
  .faq-group__img { order: -1; aspect-ratio: 16/9; }
}
.acc { border-bottom: 1px solid var(--line); }
.acc__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 0; font-size: 18px; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--font); }
.acc__q .mark { width: 9px; height: 9px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform .2s; flex-shrink: 0; margin-top: -4px; font-size: 0; }
.acc.open .acc__q .mark { transform: rotate(225deg); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc__a p { padding: 0 0 20px; color: var(--ink-soft); }

/* forms */
.form { display: grid; gap: 16px; max-width: 640px; }
.form label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font); font-size: .98rem; background: #fff;
}
.form textarea { min-height: 130px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px){ .form .row { grid-template-columns: 1fr; } }

/* contact detail list */
.contact-list { list-style: none; display: grid; gap: 22px; }
.contact-list b { display: block; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }

/* contact rows with peach icons */
.contact-rows { display: grid; gap: 22px; margin-top: 24px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; flex: none; }
.ci-icon svg { width: 20px; height: 20px; }
.contact-row b { display: block; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.contact-row span, .contact-row a { color: var(--ink-soft); font-size: 16px; }

/* social squares (light) */
.social-squares { display: flex; gap: 10px; margin-top: 14px; }
.social-squares a { width: 38px; height: 38px; border-radius: 8px; background: var(--bg-soft); display: grid; place-items: center; color: var(--ink-soft); transition: color .15s, background .15s; }
.social-squares a:hover { color: var(--primary); }
.social-squares svg { width: 17px; height: 17px; }

/* map embed */
.map-embed { width: 100%; height: 440px; border: 0; display: block; }

/* contact "Not Sure Where to Start" tiles — space the orange link below body text */
.page-contact .grid-3 .card__body a { display: inline-block; margin-top: 12px; }

/* blog cards */
.blog-ph { background: linear-gradient(160deg, #eef0f2, #e2e4e7); aspect-ratio: 16/11; display: grid; place-items: center; padding: 24px; text-align: center; }
.blog-ph span { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; line-height: 1.7; }
.blog-date { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.blog-card h3 { margin: 8px 0; font-size: 1.15rem; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card__img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; display: block; }
.blog-card .read-more { display: inline-block; margin-top: 16px; font-weight: 700; color: var(--ink); }
.blog-card .read-more:hover { color: var(--primary); }

/* blog post (single) */
.blog-byline { color: var(--muted); font-size: .9rem; margin-top: 14px; }
.post-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: var(--radius-lg); display: block; margin-bottom: 34px; }
.blog-article { font-size: 1.02rem; }
.blog-article h2 { font-size: 28px; margin: 34px 0 12px; }
.blog-article h3 { font-size: 20px; margin: 26px 0 10px; }
.blog-article h4 { font-size: 16px; margin: 20px 0 8px; }
.blog-article p { color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.blog-article ul { margin: 0 0 18px 20px; }
.blog-article li { color: var(--ink-soft); line-height: 1.6; margin-bottom: 8px; }
.blog-article strong { color: var(--ink); }
.blog-article a { color: var(--primary); text-decoration: underline; }
@media (max-width: 700px) { .blog-article h2 { font-size: 24px; } }
@media (max-width: 700px) { .post-hero { height: 340px; aspect-ratio: auto; } }

/* CTA band */
.cta-band { background: linear-gradient(120deg,#1a1207,#2a1a0a); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e6cdb6; max-width: 560px; margin: 16px auto 28px; }

/* video placeholder */
.video-wrap { max-width: 880px; margin: 0 auto; }
.video-embed { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--radius-lg); display: block; }
/* full-bleed video hero — full width, height reduced to 80% (cropped top/bottom) */
.video-hero { position: relative; aspect-ratio: 16 / 7.2; overflow: hidden; background: #000; line-height: 0; }
.video-hero__embed { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; aspect-ratio: 16/9; border: 0; display: block; }
.video-frame { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  background: #000 var(--hero-img) center/cover; display: grid; place-items: center; }
.video-frame::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.35); }
.play { position: relative; z-index: 1; width: 76px; height: 54px; border-radius: 12px; background: #e02d2d;
  display: grid; place-items: center; }
.play::before { content: ""; border-left: 20px solid #fff; border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 4px; }

/* footer */
.site-footer { background: radial-gradient(80% 90% at 0% 0%, #b8500f 0%, #5a2c0d 18%, #1a1207 38%, #0a0805 58%); color: #c9ccd2; padding: 0 0 28px; }
.footer-cta { text-align: center; padding: 84px 0 106px; }
.footer-cta h2 { color: #fff; }
.footer-cta p { color: #e6cdb6; max-width: 560px; margin: 16px auto 28px; }
.container--cta { max-width: calc(var(--maxw) + 400px); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.3fr 1fr; gap: 40px; font-size: 14px; }
@media (max-width: 800px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-grid p { color: inherit; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: #c9ccd2; transition: color .15s; }
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 20px; height: 20px; display: block; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer .logo { display: inline-block; margin-bottom: 14px; }
.site-footer .logo .a { color: #fff; }
.site-footer ul { list-style: none; display: grid; gap: 10px; }
.site-footer a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; font-size: 12px; color: var(--muted); }
.footer-bottom ul { display: flex; gap: 22px; list-style: none; }

/* narrowed / widened section containers */
.container--narrow { max-width: calc(var(--maxw) - 400px); }

/* video caption (See It In Action) */
.video-caption { font-size: 16px; font-weight: 400; color: #c9ccd2; max-width: 720px; margin: 24px auto 0; }

/* range section intro */
.range-intro { text-align: left; max-width: 50%; margin-bottom: 44px; }
@media (max-width: 900px) { .range-intro { max-width: 100%; } }
.price-note {
  display: block; margin-top: 16px;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px; font-size: 14px; font-weight: 500;
}
.price-note a { color: #fff; text-decoration: underline; font-weight: 600; }

/* generic subtext */
.subtext { font-size: 16px; font-weight: 400; max-width: 720px; }

/* ship-worldwide row tile */
.ship-tile {
  display: flex; gap: 28px; align-items: center; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; margin-top: 28px;
}
.ship-tile__text { flex: 1; min-width: 260px; }
.ship-tile__text h3 { margin-bottom: 8px; }

/* ---------- mobile polish ---------- */
@media (max-width: 700px) {
  .section { padding: 56px 0; }
  /* USP / trust bar: tidy centred wrap */
  .trustbar .container { justify-content: center; gap: 16px 26px; }
  .trustbar__item { font-size: .92rem; }
  /* terrain icons 2-up instead of a tall single stack */
  .section--dark .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  /* full-screen hero on mobile */
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 1.05rem; }
  /* centre the We Ship Worldwide tile */
  .ship-tile { flex-direction: column; align-items: center; text-align: center; }
  /* accessories page H2s on mobile */
  .page-accessories h2 { font-size: 30px !important; }
  /* who we are page H1 on mobile */
  .page-who h1 { font-size: 30px !important; }
  /* inner-page hero H1s on mobile */
  .page-hero h1 { font-size: 30px !important; }
  /* who-we-are body text drops back to default on mobile */
  .body-18 { font-size: 16px; }
  /* who we are page H2s (incl. footer CTA) on mobile */
  .page-who h2 { font-size: 30px !important; }
  /* customer-stories stat bar on mobile */
  .stat-bar .stats { flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
  .stat-bar .stat b { font-size: 36px; font-weight: 700; }
  .stat-bar .stat span { color: #fff; }
  /* customer-stories: review quotes + bottom pull-quote on mobile */
  .page-stories .story-card p { font-size: 16px; }
  .page-stories .section--dark h2 { font-size: 24px !important; font-weight: 500; }
  /* servicing page H2s on mobile */
  .page-servicing h2 { font-size: 30px !important; }
  .page-servicing .whats-covered { text-align: left; }
  /* FAQ category headings on mobile */
  .faq-group .eyebrow { font-size: 20px; letter-spacing: .04em; }
  /* FAQ accordion question headings on mobile */
  .acc__q { font-size: 16px; }
  /* try or buy page H2s on mobile */
  .page-trybuy h2 { font-size: 30px !important; }
  /* full-width Send Enquiry button on mobile */
  .page-trybuy .form button[type="submit"] { width: 100%; }
  /* contact page H2s on mobile */
  .page-contact h2 { font-size: 30px !important; }
  .page-contact .send-msg { font-size: 24px !important; }
}

.body-18 { font-size: 18px; }

.mt-0{margin-top:0}.mb-0{margin-bottom:0}

/* Contact form status notices */
.form-notice{margin:0 0 20px;padding:14px 16px;border-radius:10px;font-size:.95rem;line-height:1.45}
.form-notice--ok{background:#E8F6EC;border:1px solid #BBE5C6;color:#1B6B33}
.form-notice--err{background:#FDECEC;border:1px solid #F5C2C2;color:#8E1F1F}
.form-notice a{color:inherit;text-decoration:underline}
