/* =========================================================
   RUSTIEZ COMPANY LLC — Rust and Restoration Bay theme
   Light automotive-primer palette with leaf-red accents.
   ========================================================= */

:root {
  --primer-grey: #F1F2EF;      /* fresh automotive primer body */
  --chassis-charcoal: #262A28; /* rolling chassis text */
  --leaf-red: #B3402E;         /* fallen maple leaf deep red */
  --garage-slate: #2C332F;     /* dark garage green-grey panels */
  --pit-deep: #1A1F1D;         /* deeper under-floor panels */
  --weld-brass: #B98F3E;       /* fasteners and trim */
  --primer-card: #FAFBF8;      /* card panels */
  --garage-body: #565E58;      /* body text on light panels */
  --slate-mist: #B7C1BA;       /* body text on dark panels */
  --panel-gap: #3D4541;        /* thin separators */
  --pit-brown: #6E4A38;        /* rust blister patches */
  --cream: #FBF4E8;            /* cream text on leaf-red */
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primer-grey);
  color: var(--garage-body);
  font-family: Georgia, Cambria, 'Times New Roman', serif;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* ---------- Layout columns ---------- */
.page-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Home page wrapper ---------- */
.home-page {
  width: 100%;
}

/* =========================================================
   CENTER-STACK NAV (.centerstacknav)
   Two-row centered navigation. ROW ONE brand glyph + wordmark.
   ROW TWO a single centered menu line. Directly on the primer
   body with a thin panel-gap rule below.
   ========================================================= */
.centerstacknav {
  width: 100%;
  background-color: var(--primer-grey);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--panel-gap);
}

.centerstacknav .nav-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 22px 28px 14px;
}

.centerstacknav .brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  cursor: pointer;
}

.centerstacknav .leafgear-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--leaf-red);
}

.centerstacknav .leafgear-glyph svg {
  width: 26px;
  height: 26px;
  display: block;
}

.centerstacknav .wordmark {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--chassis-charcoal);
  text-decoration: none;
}

.centerstacknav .menu-row {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 40px;
  row-gap: 8px;
}

.centerstacknav .menu-link {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--garage-body);
  text-decoration: none;
  position: relative;
  padding: 2px 0;
  white-space: nowrap;
}

.centerstacknav .menu-link:hover,
.centerstacknav .menu-link.is-active {
  color: var(--leaf-red);
}

.centerstacknav .menu-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--weld-brass);
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.centerstacknav .menu-link:hover::after,
.centerstacknav .menu-link.is-active::after {
  opacity: 1;
}

.centerstacknav .menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background-color: var(--leaf-red);
  transition: width 0.25s ease;
}

.centerstacknav .menu-link:hover::before {
  width: 100%;
}

/* =========================================================
   BEFORE-AFTER BAY HERO (.beforeafterhero)
   Full-width immersive garage bay. Flat CSS shapes only.
   ========================================================= */
.beforeafterhero {
  position: relative;
  min-height: 78vh;
  background-color: var(--primer-grey);
  overflow: hidden;
}

.bay-floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 118px;
  background-color: var(--garage-slate);
  z-index: 0;
}

.bay-glow {
  position: absolute;
  top: 14px;
  right: 10%;
  width: 0;
  height: 0;
  border-left: 460px solid transparent;
  border-right: 460px solid transparent;
  border-top: 520px solid rgba(185,143,62,0.12);
  pointer-events: none;
  z-index: 0;
}

/* Car body silhouette in profile */
.car-scene {
  position: absolute;
  top: 120px;
  right: -3%;
  width: 74%;
  height: 330px;
  z-index: 1;
  pointer-events: none;
}

.car-scene .car-body {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 180px;
}

.car-scene .car-main {
  position: absolute;
  left: 0;
  top: 30px;
  width: 100%;
  height: 96px;
  background-color: var(--chassis-charcoal);
  border-radius: 42px 66px 8px 10px;
  z-index: 1;
}

.car-scene .car-hood {
  position: absolute;
  left: 4%;
  top: 12px;
  width: 30%;
  height: 40px;
  background-color: var(--chassis-charcoal);
  border-radius: 60% 60% 8px 8px;
  transform: perspective(300px) rotateX(14deg);
  z-index: 0;
}

.car-scene .car-roof {
  position: absolute;
  left: 34%;
  top: -6px;
  width: 32%;
  height: 52px;
  background-color: var(--chassis-charcoal);
  border-radius: 18px 18px 4px 4px;
  z-index: 2;
}

.car-scene .car-cabin {
  position: absolute;
  left: 30%;
  top: 16px;
  width: 42%;
  height: 30px;
  background: transparent;
  border-radius: 40% 58% 6px 6px;
  border-left: 0;
  background: var(--chassis-charcoal);
  z-index: 1;
}

/* wheel wells */
.car-scene .wheel-well-front {
  position: absolute;
  left: 16%;
  bottom: 8px;
  width: 96px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--garage-slate);
  z-index: 3;
}

.car-scene .wheel-well-rear {
  position: absolute;
  left: 70%;
  bottom: 8px;
  width: 96px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--garage-slate);
  z-index: 3;
}

.car-scene .tyre-front,
.car-scene .tyre-rear {
  position: absolute;
  bottom: -8px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background-color: var(--pit-deep);
  z-index: 4;
}

.car-scene .tyre-front { left: 17%; }
.car-scene .tyre-rear  { left: 71%; }

.car-scene .tyre-ring {
  position: absolute;
  bottom: 2px;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: 3px solid var(--weld-brass);
  box-sizing: border-box;
  z-index: 5;
}

.car-scene .ring-front { left: 17%; }
.car-scene .ring-rear  { left: 71%; }

/* Rust blisters */
.car-scene .blister {
  position: absolute;
  background-color: var(--pit-brown);
  border-radius: 50% 50% 46% 48%;
  z-index: 6;
}

.car-scene .blister-arch {
  width: 58px;
  height: 26px;
  top: 92px;
  left: 72%;
  clip-path: polygon(4% 0, 96% 4%, 100% 60%, 76% 100%, 50% 46%, 30% 100%, 8% 70%, 0 30%);
}

.car-scene .blister-door {
  width: 60px;
  height: 22px;
  top: 96px;
  left: 50%;
  clip-path: polygon(6% 10%, 30% 0, 70% 8%, 96% 20%, 90% 70%, 60% 100%, 30% 84%, 8% 60%);
}

.car-scene .blister-trunk {
  width: 52px;
  height: 20px;
  top: 92px;
  left: 46%;
  clip-path: polygon(2% 20%, 40% 0, 100% 30%, 92% 78%, 60% 100%, 24% 80%, 0 48%);
}

/* weld spark burst at rear arch */
.car-scene .weld-spark {
  position: absolute;
  top: 120px;
  left: 66%;
  width: 84px;
  height: 84px;
  z-index: 7;
}

.car-scene .spark-ray {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 2px;
  height: 22px;
  background-color: var(--weld-brass);
  transform-origin: 50% 100%;
}

.car-scene .r1 { transform: rotate(0deg) translateY(-2px); }
.car-scene .r2 { transform: rotate(45deg) translateY(-2px); }
.car-scene .r3 { transform: rotate(90deg) translateY(-2px); }
.car-scene .r4 { transform: rotate(135deg) translateY(-2px); }
.car-scene .r5 { transform: rotate(180deg) translateY(-2px); }
.car-scene .r6 { transform: rotate(225deg) translateY(-2px); }
.car-scene .r7 { transform: rotate(270deg) translateY(-2px); }
.car-scene .r8 { transform: rotate(315deg) translateY(-2px); }
.car-scene .r9 { transform: rotate(22deg) translateY(-14px) scale(0.7); }
.car-scene .r10 { transform: rotate(112deg) translateY(-12px) scale(0.6); }

.car-scene .spark-core {
  position: absolute;
  left: 38px;
  top: 46px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cream);
}

/* Sanding block + dust cloud at mid-panel */
.car-scene .sander {
  position: absolute;
  top: 150px;
  left: 45%;
  width: 70px;
  height: 20px;
  border-radius: 4px;
  background-color: var(--garage-slate);
  z-index: 8;
  transform: rotate(-12deg);
}

.car-scene .sander::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 2px;
  width: 76px;
  height: 6px;
  background: rgba(110,74,56,0.55);
  border-radius: 2px;
}

.car-scene .dust {
  position: absolute;
  top: 116px;
  left: 49%;
  width: 130px;
  height: 26px;
  border-radius: 50%;
  background: rgba(185,143,62,0.4);
  filter: blur(3px);
  z-index: 8;
}

/* Paint gun priming front fender */
.car-scene .paint-gun {
  position: absolute;
  top: -10px;
  left: 14%;
  width: 12px;
  height: 96px;
  border-radius: 5px 5px 8px 14px;
  background-color: var(--garage-slate);
  transform: rotate(24deg);
  transform-origin: 50% 88%;
  z-index: 9;
}

.car-scene .gun-handle {
  position: absolute;
  top: 60px;
  left: 10px;
  width: 10px;
  height: 30px;
  background-color: var(--weld-brass);
  border-radius: 4px;
  transform: rotate(-38deg);
}

.car-scene .fan-spray {
  position: absolute;
  top: 34px;
  left: 30px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 120px solid rgba(179,64,46,0.28);
  transform: rotate(24deg);
  z-index: 8;
}

/* content card over the bay on left third */
.hero-card {
  position: absolute;
  top: 240px;
  left: 5%;
  width: 460px;
  max-width: 90%;
  background-color: var(--primer-card);
  border: 1px solid var(--panel-gap);
  border-radius: 4px;
  box-shadow: 18px 22px 50px var(--panel-gap);
  transform: rotate(-1deg);
  padding: 42px 40px 40px;
  z-index: 12;
}

.hero-card .workorder-tag {
  display: inline-block;
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--leaf-red);
  border: 1px solid var(--weld-brass);
  border-radius: 24px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.hero-card .tag-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--leaf-red);
  margin-right: 8px;
  vertical-align: 1px;
}

.hero-card h1 {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--chassis-charcoal);
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-card h1 .accent {
  color: var(--leaf-red);
}

.hero-card .subline {
  font-size: 17px;
  color: var(--garage-body);
  margin-bottom: 28px;
}

.hero-card .cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-primary {
  display: inline-block;
  background-color: var(--leaf-red);
  color: var(--cream);
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.cta-primary:hover {
  background-color: var(--pit-brown);
  transform: translateY(-1px);
}

.cta-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--chassis-charcoal);
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 24px;
  border: 1px solid var(--chassis-charcoal);
  border-radius: 3px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-secondary:hover {
  background-color: var(--chassis-charcoal);
  color: var(--primer-card);
}

.hero-wiggle {
  height: 30px;
}

/* =========================================================
   BAY-SERVICE SCROLLER
   Full-width section, horizontal scroller of six tall cards,
   then a three-value statement line on garage-slate.
   ========================================================= */
.bay-scroller {
  background-color: var(--primer-grey);
  border-top: 1px solid var(--panel-gap);
  border-bottom: 1px solid var(--panel-gap);
  padding: 80px 0 64px;
  position: relative;
}

.scroller-head {
  max-width: 1220px;
  margin: 0 auto 40px;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.scroller-head h2 {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 34px;
  color: var(--leaf-red);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.scroller-head .head-note {
  font-size: 16px;
  color: var(--garage-body);
  max-width: 46ch;
}

.scroll-arrows {
  display: flex;
  gap: 10px;
}

.scroll-arrows button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--panel-gap);
  background-color: var(--primer-card);
  color: var(--chassis-charcoal);
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.scroll-arrows button:hover {
  background-color: var(--chassis-charcoal);
  color: var(--primer-card);
}

.scroller-track {
  max-width: 100vw;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 28px 28px;
  display: flex;
  gap: 22px;
}

.scroller-track::-webkit-scrollbar {
  height: 10px;
}

.scroller-track::-webkit-scrollbar-track {
  background: var(--primer-grey);
}

.scroller-track::-webkit-scrollbar-thumb {
  background: var(--garage-slate);
  border-radius: 10px;
}

.service-card {
  flex: 0 0 312px;
  scroll-snap-align: start;
  background-color: var(--primer-card);
  border: 1px solid var(--panel-gap);
  border-top: none;
  border-radius: 3px;
  padding: 0 0 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(38, 42, 40, 0.16);
}

.service-card .tabbar {
  background-color: var(--weld-brass);
  color: var(--pit-deep);
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 10px 20px;
  border-radius: 3px 3px 0 0;
}

.service-card h3 {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 21px;
  color: var(--chassis-charcoal);
  font-weight: 700;
  line-height: 1.25;
  margin: 20px 20px 14px;
}

.service-card p {
  font-size: 15.5px;
  color: var(--garage-body);
  margin: 0 20px 24px;
  flex: 1;
}

.service-card .spot-map {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
}

.spot-map-wrap {
  display: inline-block;
  margin: 0 20px;
}

.spot-map-wrap .car-mini {
  position: relative;
  width: 150px;
  height: 26px;
  background-color: var(--garage-slate);
  border-radius: 12px 20px 3px 3px;
}

.spot-map-wrap .spot-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--leaf-red);
  background-color: var(--primer-card);
  top: 5px;
  left: 118px;
  box-shadow: 0 0 0 1px rgba(179, 64, 46, 0.3);
}

.spot-map-wrap .spot-note {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--leaf-red);
  text-transform: uppercase;
  margin-top: 8px;
}

/* three-value statement line */
.value-strip {
  background-color: var(--garage-slate);
  margin-top: 8px;
}

.value-strip .value-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 34px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.value-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 40px;
  min-height: 110px;
  position: relative;
}

.value-cell:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background-color: var(--panel-gap);
}

.value-cell .numeral {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--weld-brass);
  line-height: 1;
}

.value-cell .value-text {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate-mist);
  margin-top: 12px;
}

.value-cell:first-child {
  padding-left: 0;
}

/* =========================================================
   STATEMENT STRIP on pit-deep before footer
   ========================================================= */
.statement-strip {
  background-color: var(--pit-deep);
  padding: 90px 0;
  position: relative;
}

.statement-strip .strip-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  position: relative;
  z-index: 1;
}

.statement-strip .bar-lab {
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: none;
  border-left: 4px solid var(--leaf-red);
}

.statement-strip .strip-copy {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 34px;
  line-height: 1.42;
  color: var(--primer-card);
  font-weight: 300;
  max-width: 60ch;
  border-left: 4px solid var(--leaf-red);
  padding-left: 30px;
}

.statement-strip .strip-attrib {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate-mist);
  padding-left: 34px;
}

/* =========================================================
   GARAGE-DOOR SPLIT FOOTER
   Left block slab-slate 60%, right block leaf-red 40%.
   ========================================================= */
.split-footer {
  background-color: var(--garage-slate);
}

.split-footer .footer-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  width: 100%;
}

.footer-left {
  background-color: var(--garage-slate);
  padding: 66px 60px 54px 64px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
}

.footer-brand .leafgear-glyph {
  color: var(--weld-brass);
}

.footer-brand .footer-wordmark {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--primer-card);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--slate-mist);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--panel-gap);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--slate-mist);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primer-card);
  border-bottom-color: var(--weld-brass);
}

.contact-stack {
  margin-top: 6px;
  border-top: 1px solid var(--panel-gap);
  padding-top: 28px;
  display: grid;
  gap: 8px;
}

.contact-stack .contact-line {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--garage-body);
}

.contact-stack a {
  color: var(--primer-card);
  text-decoration: none;
}

.contact-stack a:hover {
  color: var(--weld-brass);
}

.footer-right {
  background-color: var(--leaf-red);
  padding: 66px 58px 48px 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-right .panel-glyph {
  position: absolute;
  right: -30px;
  top: 60px;
  visibility: hidden;
  pointer-events: none;
}

.footer-right .right-word {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -1px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.right-car {
  position: relative;
  z-index: 1;
  color: var(--cream);
  margin-bottom: 46px;
}

.right-car .silhouette {
  width: 190px;
  height: 34px;
  position: relative;
}

.right-car .s-body {
  position: absolute;
  left: 0;
  top: 0;
  width: 190px;
  height: 24px;
  background-color: var(--cream);
  border-radius: 20px 30px 3px 3px;
}

.right-car .s-tyre-a,
.right-car .s-tyre-b {
  position: absolute;
  bottom: -8px;
  width: 30px;
  height: 14px;
  background-color: var(--cream);
  border-radius: 8px;
}

.right-car .s-tyre-a { left: 30px; }
.right-car .s-tyre-b { left: 132px; }

.footer-copyline {
  font-family: 'Trebuchet MS', 'Arial Narrow', Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--cream);
  position: absolute;
  bottom: 34px;
  left: 60px;
  right: 58px;
  padding-top: 14px;
  border-top: 1px solid rgba(251, 244, 232, 0.5);
  z-index: 1;
}

/* =========================================================
   Fade-up scroll reveal — default visible fallback
   ========================================================= */
.fade-up {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-hidden {
  opacity: 0;
  transform: translateY(26px);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-right .copyline {
    position: static;
    margin-top: 40px;
  }

  .footer-left,
  .footer-right {
    padding: 50px 40px;
  }

  .value-strip .value-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .value-cell::after {
    display: none;
  }

  .value-cell:first-child {
    padding-left: 40px;
  }
}

@media (max-width: 760px) {
  .car-scene {
    top: auto;
    bottom: 40px;
    right: -20%;
    width: 100%;
  }

  .hero-card {
    top: 70vh;
    left: 4%;
    width: 92%;
    padding: 32px 26px;
  }

  .beforeafterhero {
    min-height: 900px;
  }

  .hero-card h1 {
    font-size: 34px;
  }

  .scroller-head h2 {
    font-size: 28px;
  }

  .statement-strip .strip-copy {
    font-size: 26px;
  }

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

  .centerstacknav .menu-row {
    column-gap: 22px;
  }
  .centerstacknav .menu-row {
    row-gap: 6px;
  }
}

/* decorative watermark visibility rule */
.watermark-ghost {
  position: absolute;
  visibility: hidden;
}

.footer-content-layer {
  position: relative;
  z-index: 1;
}
