@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ────────────────────────────────────────────────────────────────
   COLOUR SCHEMES
   ----------------------------------------------------------------
   The whole site is themed through the variables in :root below.
   To switch palettes, replace the values in the ACTIVE block with
   one of the alternative schemes listed underneath it.

   The previous look (black + orange) is preserved as "Classic
   Orange" at the bottom should it ever be needed again.
   ──────────────────────────────────────────────────────────────── */

/* ACTIVE — Midnight Navy & Azure (corporate, trustworthy) */
:root {
  --bg: #0a0e16;
  --surface: #0f141f;
  --surface-2: #151c2a;
  --surface-3: #1c2536;
  --accent: #2f81f7;
  --accent-light: #58a6ff;
  --accent-rgb: 47, 129, 247;       /* --accent as r,g,b for translucent glows */
  --text: #eef2f8;
  --text-muted: #8b95a7;
  --text-dim: #3a4254;
  --border: #1e2632;
  --border-light: #2a3444;
  --hero-grad-end: #0a1018;          /* far corner of the hero background */
}

/* ── ALTERNATIVE SCHEMES — swap any block into :root above ─────────

   Slate & Teal (modern, clean)
     --bg: #0c1112;  --surface: #11181a;  --surface-2: #172123;
     --surface-3: #1f2c2e;  --accent: #14b8a6;  --accent-light: #2dd4bf;
     --accent-rgb: 20, 184, 166;  --text: #ecf2f1;  --text-muted: #7d8c8a;
     --text-dim: #38423f;  --border: #1d2729;  --border-light: #283537;
     --hero-grad-end: #08110f;

   Graphite & Royal Indigo (premium, distinctive)
     --bg: #0b0b10;  --surface: #111118;  --surface-2: #181822;
     --surface-3: #20202e;  --accent: #6366f1;  --accent-light: #818cf8;
     --accent-rgb: 99, 102, 241;  --text: #efeff5;  --text-muted: #84849a;
     --text-dim: #383848;  --border: #1f1f2a;  --border-light: #2a2a3a;
     --hero-grad-end: #0c0a16;

   Charcoal & Emerald (confident, understated)
     --bg: #0a0d0b;  --surface: #0f1411;  --surface-2: #151c17;
     --surface-3: #1d261f;  --accent: #10b981;  --accent-light: #34d399;
     --accent-rgb: 16, 185, 129;  --text: #edf2ee;  --text-muted: #7e8c84;
     --text-dim: #36423b;  --border: #1c2620;  --border-light: #27332b;
     --hero-grad-end: #08110c;

   Classic Orange (the original look)
     --bg: #080808;  --surface: #0f0f10;  --surface-2: #151517;
     --surface-3: #1c1c1f;  --accent: #e8630a;  --accent-light: #ff7e28;
     --accent-rgb: 232, 99, 10;  --text: #f0ede8;  --text-muted: #7a7774;
     --text-dim: #3e3d3b;  --border: #222224;  --border-light: #2c2c30;
     --hero-grad-end: #0e0804;
   ──────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────── */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo-text .secondary {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 9px 22px;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  color: #fff !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child {
  color: var(--accent);
  border-bottom: none;
  padding-bottom: 0;
}

.mobile-menu a:hover {
  color: var(--text);
}

/* ── HERO ────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(140deg, var(--bg) 55%, var(--hero-grad-end) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -48deg,
    transparent,
    transparent 50px,
    rgba(var(--accent-rgb), 0.018) 50px,
    rgba(var(--accent-rgb), 0.018) 100px
  );
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.055) 0%, transparent 65%);
  pointer-events: none;
}

/* Decorative car-transporter line art, tinted with the active accent.
   The SVG defines the shape; mask + background-color let it follow the theme. */
.hero-art {
  position: absolute;
  right: 0;
  bottom: 7%;
  width: min(880px, 74%);
  aspect-ratio: 1120 / 340;
  background-color: var(--accent);
  -webkit-mask: url("../img/car-transporter.svg") right bottom / contain no-repeat;
  mask: url("../img/car-transporter.svg") right bottom / contain no-repeat;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-title .line-1 {
  font-size: clamp(68px, 10.5vw, 148px);
  color: var(--text);
  display: block;
}

.hero-title .line-2 {
  font-size: clamp(68px, 10.5vw, 148px);
  color: var(--accent);
  display: block;
}

.hero-title .line-3 {
  font-size: clamp(36px, 5.2vw, 72px);
  color: var(--text-muted);
  display: block;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 0.1em;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 34px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 14px 34px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--border-light);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, transform 0.15s;
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  border-left: 1px solid var(--border-light);
  padding-left: 3rem;
  min-width: 200px;
}

.hero-stat-item {
  text-align: right;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-num em {
  color: var(--accent);
  font-style: normal;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 5px;
}

/* ── TICKER ──────────────────────────────── */

.ticker {
  background: var(--accent);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  animation: ticker-scroll 36s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.ticker-item::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTIONS: BASE ──────────────────────── */

section {
  padding: 6rem 3rem;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── SERVICES ────────────────────────────── */

.services {
  background: var(--surface);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.services-desc {
  max-width: 360px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
}

.service-card {
  background: var(--surface-2);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.service-card:hover {
  background: var(--surface-3);
}

.service-card:hover .service-arrow {
  transform: translate(5px, -5px);
}

.service-card:hover .service-num {
  color: rgba(var(--accent-rgb), 0.08);
}

.service-card--large {
  grid-column: span 2;
}

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 88px;
  color: var(--border-light);
  line-height: 1;
  position: absolute;
  top: 1.25rem;
  right: 1.75rem;
  letter-spacing: -0.05em;
  transition: color 0.25s;
  user-select: none;
  pointer-events: none;
}

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 420px;
}

.service-arrow {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent);
  font-size: 22px;
  transition: transform 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

/* ── WHY CHOOSE US ───────────────────────── */

.why {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.035) 0%, transparent 65%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.why-item {
  background: var(--bg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}

.why-item:hover {
  background: var(--surface);
}

.why-item:hover .why-num {
  color: var(--border-light);
}

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 100px;
  color: var(--border);
  line-height: 1;
  position: absolute;
  bottom: -0.25em;
  right: 1.5rem;
  letter-spacing: -0.06em;
  user-select: none;
  pointer-events: none;
  transition: color 0.25s;
}

.why-icon {
  width: 38px;
  height: 38px;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.why-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.why-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
}

/* ── CONTACT ─────────────────────────────── */

.contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}

.contact-info-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  max-width: 380px;
  margin-top: 1rem;
}

.contact-divider {
  width: 52px;
  height: 2px;
  background: var(--accent);
  margin: 2rem 0;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-info-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.contact-info-value {
  font-size: 15px;
  color: var(--text);
}

.contact-info-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info-value a:hover {
  color: var(--accent);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
  padding: 10px 0;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'%3E%3Cpath fill='%237a7774' d='M0 0l5 7 5-7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}

.form-group select option {
  background: var(--surface-2);
  color: var(--text);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--accent);
}

.form-group textarea {
  resize: none;
  height: 90px;
  line-height: 1.6;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

.form-success {
  display: none;
  padding: 14px 22px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ── FOOTER ──────────────────────────────── */

footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 4.5rem 3rem 2rem;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.25rem;
}

.footer-about p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 1.25rem;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item .fc-label {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.footer-contact-item a,
.footer-contact-item .fc-value {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--text);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.footer-badge {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SCROLL ANIMATIONS ───────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* ── ABOUT PAGE ──────────────────────────── */

.page-hero {
  padding: 155px 3rem 72px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero .hero-art {
  bottom: 0;
  width: min(720px, 60%);
  opacity: 0.16;
}

.page-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent);
}

.page-hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(64px, 9vw, 118px);
  line-height: 0.93;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.page-hero-title em {
  color: var(--accent);
  font-style: normal;
}

.page-hero-right {
  padding-bottom: 0.5rem;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

/* Story */

.story {
  background: var(--surface);
  padding: 6rem 3rem;
}

.story-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.story-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.5vw, 56px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.story-text h2 em {
  color: var(--accent);
  font-style: normal;
}

.story-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.story-text p:last-child {
  margin-bottom: 0;
}

/* Timeline */

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 0;
  width: 1px;
  background: var(--border-light);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-2rem - 4px);
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  line-height: 1.4;
}

.timeline-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 0 !important;
}

/* Values */

.values {
  padding: 6rem 3rem;
  background: var(--bg);
}

.values-grid {
  max-width: 1240px;
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.value-card {
  background: var(--bg);
  padding: 2.75rem 2.5rem;
  position: relative;
  border-top: 2px solid var(--accent);
  transition: background 0.2s;
}

.value-card:hover {
  background: var(--surface);
}

.value-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 64px;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.value-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.value-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Trust metrics */

.trust {
  padding: 6rem 3rem;
  background: var(--surface);
}

.trust-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-top: 3rem;
  border: 1px solid var(--border);
}

.trust-metric {
  background: var(--surface-2);
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background 0.2s;
}

.trust-metric:hover {
  background: var(--surface-3);
}

.trust-metric-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 58px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.trust-metric-num em {
  color: var(--accent);
  font-style: normal;
}

.trust-metric-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

/* About CTA bar */

.about-cta {
  background: var(--accent);
  padding: 4rem 3rem;
}

.about-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-cta h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.1;
}

.about-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 0.4rem;
  font-weight: 300;
}

.btn-cta-white {
  background: #fff;
  color: var(--accent);
  padding: 14px 34px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
  font-family: 'DM Sans', sans-serif;
  flex-shrink: 0;
}

.btn-cta-white:hover {
  background: var(--bg);
  color: #fff;
}

/* ── RESPONSIVE ──────────────────────────── */

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-stats {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-left: 0;
    padding-top: 2.5rem;
    min-width: unset;
    gap: 3rem;
  }

  .hero-stat-item {
    text-align: left;
  }

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

  .service-card--large {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .footer-about {
    grid-column: span 2;
  }

  .footer-about p {
    max-width: 420px;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section,
  .hero,
  .story,
  .values,
  .trust {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding-top: 96px;
  }

  .hero-art {
    width: min(560px, 96%);
    bottom: 2%;
    opacity: 0.08;
  }

  .page-hero .hero-art {
    width: min(520px, 92%);
    opacity: 0.07;
  }

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

  .service-card--large {
    grid-column: span 1;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-about {
    grid-column: span 1;
  }

  footer {
    padding: 3rem 1.5rem 2rem;
  }

  .page-hero {
    padding: 120px 1.5rem 56px;
  }

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

  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .about-cta {
    padding: 3rem 1.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .trust-metrics {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 1.5rem;
  }
}

/* Legal / prose pages */

.legal {
  background: var(--surface);
  padding: 5rem 3rem 6rem;
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-block {
  margin-bottom: 2.75rem;
}

.legal-block:last-child {
  margin-bottom: 0;
}

.legal-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.legal-block h2 em {
  color: var(--accent);
  font-style: normal;
}

.legal-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
}

.legal-block ul li {
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
}

.legal-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  background: var(--accent);
}

.legal-block a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal-block a:hover {
  border-bottom-color: var(--accent);
}

/* Privacy note beside the quote form */

.form-privacy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 1.5rem;
}

.form-privacy a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.form-privacy a:hover {
  border-bottom-color: var(--accent);
}

@media (max-width: 768px) {
  .legal {
    padding: 3.5rem 1.5rem 4.5rem;
  }
}
