/* =============================================
   HPM GROUNDWORKS & SURFACING
   Design tokens: Near-black base + concrete white + HPM cyan accent
   Palette matched to hpm.im (cyan #43d5e9 primary, red #c5213e secondary)
   Typefaces: Inter (utility/body) + display weight manipulation
   ============================================= */

:root {
  --black:    #050505;
  --slate:    #0d0d0f;
  --mid:      #18181b;
  --border:   #242427;
  --muted:    #6b7280;
  --light:    #b8b8b8;
  --white:    #f7f7f7;
  /* Brand accent — HPM cyan (kept under the --orange token names so every
     existing reference picks up the new colour without further edits) */
  --orange:   #43d5e9;
  --orange-d: #1aabb8;
  --hitachi:  #7ef3ff;
  /* Secondary accent — HPM red */
  --red:      #c5213e;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 4px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

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

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.tag-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

p { color: var(--light); line-height: 1.7; }
.muted { color: var(--muted); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-d); border-color: var(--orange-d); }

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

.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--white); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(5,5,5,0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.nav__logo span { color: var(--orange); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__phone {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* ─── MOBILE NAV ─── */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .mobile-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #050505 0%, #0d0d0f 50%, #070708 100%);
}

/* Concrete texture overlay */
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255,255,255,0.01) 2px,
      rgba(255,255,255,0.01) 4px
    );
  pointer-events: none;
}

/* Cinematic photo montage — a crossfading, slow-zooming sequence of the
   studio's best work that reads like a premium video backdrop while staying
   crisp (no upscaled footage) and lightweight. */
.hero__slideshow {
  position: absolute;
  inset: 0;
  background: #050505;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroMontage 35s infinite;
  will-change: opacity, transform;
}
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 7s; }
.hero__slide:nth-child(3) { animation-delay: 14s; }
.hero__slide:nth-child(4) { animation-delay: 21s; }
.hero__slide:nth-child(5) { animation-delay: 28s; }

@keyframes heroMontage {
  0%   { opacity: 0; transform: scale(1.04); }
  3%   { opacity: 1; }
  17%  { opacity: 1; }
  20%  { opacity: 0; transform: scale(1.14); }
  100% { opacity: 0; transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide { animation: none; }
  .hero__slide:first-child { opacity: 1; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.45) 60%, rgba(5,5,5,0.25) 100%),
    linear-gradient(to top, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0) 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.hero__location::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--orange);
}

.hero__headline {
  max-width: 750px;
  margin-bottom: 12px;
}

/* The signature: GROUNDWORKS in orange, rest in white */
.hero__headline .accent { color: var(--orange); }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  color: var(--light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ─── TICKER ─── */
.ticker {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  animation: ticker 30s linear infinite;
  gap: 0;
}

.ticker__track span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 32px;
}

.ticker__track span::after {
  content: '·';
  margin-left: 32px;
}

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

/* ─── TRUST BAR ─── */
.trust {
  background: var(--slate);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust__icon {
  width: 40px;
  height: 40px;
  background: var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.trust__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.trust__text span {
  font-size: 11px;
  color: var(--muted);
}

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text h2 { margin-bottom: 24px; }
.about__text p { margin-bottom: 20px; }

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.pillar strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pillar span {
  font-size: 12px;
  color: var(--muted);
}

/* Fleet gallery */
.fleet-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px 180px;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
}

.fleet-gallery__main {
  grid-column: 1 / -1;
  position: relative;
}

.fleet-gallery__item {
  position: relative;
  overflow: hidden;
}

.fleet-gallery__item img {
  transition: transform 0.4s ease;
}
.fleet-gallery__item:hover img { transform: scale(1.04); }

/* ─── SERVICES ─── */
.services { background: var(--slate); }

.services__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  background: var(--mid);
  padding: 36px 32px;
  position: relative;
  transition: background var(--transition);
  border-radius: 0;
}

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

.service-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 14px; margin-bottom: 24px; }

.service-card__img {
  width: 100%;
  height: 160px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
}

/* ─── RESIN SPOTLIGHT ─── */
.resin { background: var(--black); }

.resin__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.resin__checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 36px;
}

.resin__checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--light);
}

.resin__checklist li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.resin__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 6px;
  border-radius: var(--radius);
  overflow: hidden;
}

.resin__gallery-main {
  grid-column: 1 / -1;
  overflow: hidden;
}

.resin__gallery-main img,
.resin__gallery-item img {
  transition: transform 0.4s ease;
}
.resin__gallery-main:hover img,
.resin__gallery-item:hover img { transform: scale(1.04); }

.resin__gallery-item { overflow: hidden; }

/* ─── WORK GALLERY ─── */
.work { background: var(--slate); }

.gallery-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mid);
  color: var(--muted);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

.gallery-tab.active,
.gallery-tab:hover {
  background: var(--orange);
  color: var(--black);
}

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.gallery-grid__item {
  height: 220px;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.gallery-grid__item img {
  transition: transform 0.4s ease;
}
.gallery-grid__item:hover img { transform: scale(1.06); }

/* ─── HOW IT WORKS ─── */
.process { background: var(--black); }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.process__step {
  background: var(--slate);
  padding: 36px 28px;
  position: relative;
}

.process__step::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 36px;
  font-size: 18px;
  color: var(--orange);
  z-index: 1;
}
.process__step:last-child::after { display: none; }

.process__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}

.process__step h3 { margin-bottom: 12px; }
.process__step p { font-size: 14px; }

/* ─── REVIEWS ─── */
.reviews { background: var(--slate); }

.reviews__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.reviews__score {
  text-align: right;
}

.reviews__score .big {
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
}

.reviews__score .label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.review-card {
  background: var(--mid);
  padding: 32px;
}

.review-card__stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--light);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--black);
  flex-shrink: 0;
}

.review-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}
.review-card__meta {
  font-size: 11px;
  color: var(--muted);
}

/* ─── AREAS ─── */
.areas { background: var(--black); }

.areas__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.area-tag {
  background: var(--slate);
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
  border-radius: 2px;
  transition: all var(--transition);
}
.area-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--orange);
  padding: 80px 0;
}

.cta-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.cta-banner h2 { color: var(--black); }
.cta-banner p { color: rgba(5,5,5,0.75); margin-top: 8px; }

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.btn-white {
  background: var(--black);
  color: var(--orange);
  border-color: var(--black);
}
.btn-white:hover { background: var(--slate); border-color: var(--slate); }

.btn-white-outline {
  background: transparent;
  color: var(--black);
  border-color: rgba(5,5,5,0.4);
}
.btn-white-outline:hover { border-color: var(--black); }

/* ─── FOOTER ─── */
.footer {
  background: var(--slate);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--muted);
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__badge {
  background: var(--mid);
  border: 1px solid var(--border);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
}

.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 14px;
  color: var(--light);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 12px;
  color: var(--muted);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 24px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background var(--transition);
  border-radius: var(--radius);
}
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }

/* ─── CONTACT PAGE ─── */
.contact-hero {
  padding: 140px 0 80px;
  background: var(--slate);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
}

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

.form-group select option { background: var(--slate); }
.form-group textarea { resize: vertical; min-height: 140px; }

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.contact-info__item:last-of-type { border-bottom: none; }

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info__text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-info__text a,
.contact-info__text span {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.contact-info__text a:hover { color: var(--orange); }

/* ─── THANK YOU ─── */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.thankyou__icon {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
}

.thankyou h1 { margin-bottom: 16px; font-size: 2.5rem; }
.thankyou p { color: var(--muted); margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }

/* ─── RESIN PAGE ─── */
.resin-hero {
  padding: 140px 0 80px;
  background: var(--slate);
  border-bottom: 1px solid var(--border);
}

.resin-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.colour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 24px;
}

.colour-swatch {
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
}

.colour-swatch__block {
  height: 56px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.colour-swatch__name {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  padding: 6px 4px;
  background: var(--slate);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  display: block;
}

.faq { background: var(--black); }

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font);
}

.faq__question::after {
  content: '+';
  font-size: 24px;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__item.open .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--light);
  line-height: 1.7;
  max-width: 680px;
}

.faq__item.open .faq__answer { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__step::after { display: none; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }

  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }

  .about__grid,
  .resin__grid,
  .contact-grid,
  .resin-page-grid,
  .cta-banner__inner { grid-template-columns: 1fr; gap: 40px; }

  .fleet-gallery {
    grid-template-rows: 220px 160px;
    grid-template-columns: 1fr 1fr;
  }

  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid__item { height: 180px; }

  .hero__stats { gap: 24px; }
  .cta-banner__actions { align-items: flex-start; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .resin__gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .resin__gallery-main { grid-column: auto; }
  .colour-grid { grid-template-columns: repeat(3, 1fr); }

  .contact-form { padding: 24px; }
  .reviews__header { grid-template-columns: 1fr; }
  .reviews__score { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
