/* ===========================
   KEVIN'S SEALING & COATING
   Palette: Charcoal · Deep black · Burnt orange
   Fonts: Barlow Condensed (display) + Barlow (body)
   Aesthetic: Industrial · Tough · Sleek · Confident
   =========================== */

:root {
  --black:     #0a0a0a;
  --dark:      #111111;
  --dark-2:    #1a1a1a;
  --dark-3:    #222222;
  --charcoal:  #2c2c2c;
  --orange:    #e05c1a;
  --orange-2:  #c44d12;
  --orange-lt: rgba(224, 92, 26, 0.12);
  --orange-glow: rgba(224, 92, 26, 0.25);
  --white:     #ffffff;
  --off-white: #f5f4f1;
  --slate-50:  #eeece8;
  --slate-100: #dedad3;
  --slate-300: #a8a49b;
  --slate-500: #6e6a62;
  --slate-700: #3a3731;
  --text:      #1a1815;
  --font-body:    'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --nav-h:   88px;
  --max-w:   1180px;
  --r:       4px;
  --r-lg:    8px;
  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  /* Hard colour — no CSS variable so it resolves before custom props load */
  background-color: #000000;
  /* Stop elastic/rubber-band scroll revealing background above page */
  overscroll-behavior: none;
}
body {
  background: #000000;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overscroll-behavior: none;
}
.hero { margin-top: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes dotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  z-index: 200;
  /* Transparent over hero — gradient in hero overlay handles contrast */
  background: transparent;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.5);
}
.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav-logo-img {
  height: 117px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(224,92,26,0.4));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 16px rgba(224,92,26,0.75));
  transform: scale(1.05);
}
.logo-icon {
  width: 38px; height: 38px;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.3s;
}
.nav.scrolled .logo-icon { color: var(--orange); }
.logo-text { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}
.logo-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.logo-amp { color: var(--orange); }

.nav-links {
  display: flex;
  gap: 36px;
  margin-right: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  border-radius: 6px;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta:hover {
  background: var(--orange-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224,92,26,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--black);
  border-bottom: 2px solid var(--orange);
  z-index: 199;
  padding: 24px 48px 36px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 2px; }
.mm-link {
  display: block;
  padding: 13px 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mm-link:hover { color: var(--white); }
.mm-cta { margin-top: 12px; color: var(--orange) !important; border-bottom: none !important; }

/* HERO */
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-10px) scale(1.015); }
}
@keyframes heroLogoGlowPulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(224,92,26,0.55)) drop-shadow(0 0 40px rgba(224,92,26,0.25)); }
  50%       { filter: drop-shadow(0 0 32px rgba(224,92,26,0.85)) drop-shadow(0 0 70px rgba(224,92,26,0.45)); }
}
@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Top: darken sky for nav readability */
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 20%),
    /* Left: heavy dark for title legibility, fades right */
    linear-gradient(to right,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.75) 30%,
      rgba(0,0,0,0.30) 60%,
      rgba(0,0,0,0.08) 100%
    );
}

/* Hero content — left-aligned, vertically centered */
.hero-content {
  position: relative;
  z-index: 4;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 64px 64px;
  max-width: 720px;
}
/* QUOTE BUTTON ANIMATION */
@keyframes quoteSpark {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.8; }
  80%  { opacity: 0.2; }
  100% { transform: translate(-50%, -50%) scale(3.5); opacity: 0; }
}
@keyframes quoteShimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

.btn-quote {
  position: relative;
  overflow: hidden;
  /* Animated glow ring */
  transition: background 0.25s, transform 0.25s var(--ease),
              box-shadow 0.25s, letter-spacing 0.25s;
}
.btn-quote::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  skewX: -20deg;
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}
.btn-quote:hover::before {
  animation: quoteShimmer 0.55s ease forwards;
}
.btn-quote-spark {
  position: absolute;
  top: 50%; left: 50%;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55) 0%, rgba(224,92,26,0.3) 40%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
}
.btn-quote:hover .btn-quote-spark {
  animation: quoteSpark 0.6s ease-out forwards;
}
.btn-quote:hover {
  letter-spacing: 0.18em;
  box-shadow: 0 0 0 3px rgba(224,92,26,0.35),
              0 12px 36px rgba(224,92,26,0.55),
              0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-4px) scale(1.03);
}

/* NAV CTA quote animation inherits the above; override clip-path reset */
.nav-cta.btn-quote:hover {
  transform: translateY(-2px) scale(1.03);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.65vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: left;
}
.title-line {
  display: block;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.title-line.visible { opacity: 1; transform: translateY(0); }
.title-accent { color: var(--orange); }
.hero-sub {
  max-width: 420px;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 36px;
  text-align: left;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 30px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
  border-radius: 6px;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.55s ease, height 0.55s ease, opacity 0.55s ease;
  opacity: 0;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active::after { width: 260px; height: 260px; opacity: 0; }
.btn-primary:hover {
  background: var(--orange-2);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(224,92,26,0.45), 0 2px 8px rgba(0,0,0,0.2);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-primary.btn-full { width: 100%; justify-content: center; }
.btn-arrow {
  font-size: 1rem;
  transition: transform 0.25s var(--ease);
}
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 26px;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: var(--r);
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255,255,255,0.18);
}
.btn-ghost-light .btn-arrow {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.btn-ghost-light:hover .btn-arrow { transform: translateX(5px); }

/* STAT BAR */
.hero-stat-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  border-top: 2px solid var(--orange);
  padding: 28px 64px;
  gap: 0;
}
.stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: #1e1e1e;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.stat-icon svg {
  width: 22px;
  height: 22px;
}
.stat-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-val {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-left: 4px;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0;
  text-transform: none;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
  margin: 0 48px;
  flex-shrink: 0;
}

/* SECTION COMMON */
.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 48px;
}
.title-em { color: var(--orange); }
.section-header {
  max-width: var(--max-w);
  margin: 0 auto 56px;
  padding: 0 48px;
}

/* SERVICES */
.services {
  padding: 110px 48px;
  background: var(--off-white);
}
.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: var(--white);
  padding: 38px 34px;
  position: relative;
  border-top: 3px solid transparent;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: var(--dark);
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  z-index: 2;
}
.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,0.55); }
.service-card:hover .service-tag { color: rgba(255,255,255,0.3); }
.service-card:hover .service-icon { color: var(--orange); }
.service-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-icon {
  width: 44px; height: 44px;
  color: var(--charcoal);
  margin-bottom: 22px;
  transition: color 0.3s;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 18px;
  transition: color 0.3s;
}
.service-card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 4px;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.service-card:hover .service-card-img { opacity: 1; }

.service-tag {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-300);
  transition: color 0.3s;
}

/* WHY US */
.why {
  padding: 110px 48px;
  background: var(--white);
}
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.why-left { position: sticky; top: 110px; }
.why-lead {
  font-size: 1rem;
  color: var(--slate-500);
  line-height: 1.8;
  margin-bottom: 36px;
}
.why-items { display: flex; flex-direction: column; gap: 2px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 24px;
  border: 1px solid var(--slate-100);
  border-left: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}
.why-item {
  cursor: default;
}
.why-item:hover {
  border-left-color: var(--orange);
  background: var(--off-white);
  transform: translateX(4px);
}
.why-icon-wrap {
  width: 44px; height: 44px;
  background: var(--orange-lt);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  color: var(--orange);
  flex-shrink: 0;
}
.why-icon-wrap svg { width: 100%; height: 100%; }
.why-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}
.why-item p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.7; }

/* PROCESS */
.process {
  padding: 110px 48px;
  background: var(--black);
}
.process .section-label { color: var(--orange); }
.process .section-title { color: var(--white); }
.process-steps {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step { padding: 0 32px 0 0; position: relative; }
.process-step:not(:first-child) { padding-left: 32px; }
.step-bubble {
  width: 54px; height: 54px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: 0 4px 20px var(--orange-glow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.step-bubble.last { background: transparent; border: 2px solid var(--orange); clip-path: none; }
.process-step:hover .step-bubble {
  transform: scale(1.08);
  box-shadow: 0 8px 28px var(--orange-glow);
}
.step-connector {
  position: absolute;
  top: 27px; left: 54px; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,0.08));
}
.step-connector.invisible { background: transparent; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.855rem; color: rgba(255,255,255,0.45); line-height: 1.75; }

/* QUOTE BAND */
.quote-band {
  padding: 90px 48px;
  background: var(--dark);
  text-align: center;
}
.qb-inner { max-width: 800px; margin: 0 auto; }
.qb-rule {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  margin: 28px 0;
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.quote-attr {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* CONTACT */
.contact {
  padding: 110px 48px;
  background: var(--off-white);
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-left { position: sticky; top: 110px; }
.contact .section-title { color: var(--dark); }
.contact-sub { font-size: 1rem; color: var(--slate-500); line-height: 1.8; margin-bottom: 36px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-700);
}
.ci-icon {
  width: 38px; height: 38px;
  background: var(--orange-lt);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  padding: 9px; color: var(--orange); flex-shrink: 0;
}
.ci-icon svg { width: 100%; height: 100%; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-top: 3px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate-500);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--off-white);
  border: 1.5px solid var(--slate-100);
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-300); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-lt);
  background: var(--white);
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a49b' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--off-white);
}
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: rgba(34,139,34,0.07);
  border: 1.5px solid rgba(34,139,34,0.25);
  border-radius: var(--r);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2a7a2a;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; color: #2a7a2a; }

/* FOOTER */
.footer {
  background: var(--black);
  border-top: 3px solid var(--dark-3);
  padding: 56px 48px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo-wrap { display: flex; align-items: center; gap: 14px; }
.footer-logo-icon { width: 36px; height: 36px; color: var(--orange); flex-shrink: 0; }
.footer-logo-icon-img {
  width: auto;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(224,92,26,0.4));
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.footer-logo em { font-style: normal; color: var(--orange); }
.footer-brand p {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.footer-links { display: flex; gap: 28px; }
.footer-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { text-align: right; }
.footer-copy p { font-size: 0.75rem; color: rgba(255,255,255,0.22); line-height: 1.8; }
.footer-tagline {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: rgba(224,92,26,0.45) !important;
  font-size: 0.68rem !important;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 52px; }
  .why-left { position: static; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .step-connector { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .contact-left { position: static; }
}
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 20px 24px 32px; }
  .nav-logo-img { height: 91px; }
  .hero-content { padding: calc(var(--nav-h) + 32px) 24px 40px; }
  .hero-stat-bar { padding: 20px 24px; gap: 0; }
  .stat-divider { margin: 0 20px; }
  .stat-val, .stat-num { font-size: 1.6rem; }
  .stat-unit { font-size: 1.1rem; }
  .stat-icon { width: 40px; height: 40px; min-width: 40px; }
  .stat-icon svg { width: 17px; height: 17px; }
  .hero-stat-bar { flex-direction: row; }
  .stat { padding: 10px 8px; }
  .stat-num { font-size: 1.3rem; }
  .stat-label { font-size: 0.5rem; letter-spacing: 0.08em; }
  .services { padding: 72px 24px; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .section-header { padding: 0 24px; }
  .why { padding: 72px 24px; }
  .process { padding: 72px 24px; }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    padding-left: 0;
  }
  /* Vertical timeline line */
  .process-steps::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 54px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, rgba(255,255,255,0.08) 100%);
    z-index: 0;
  }
  /* Each step: bubble left, content right */
  .process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    padding: 0 0 36px 0 !important;
    position: relative;
    z-index: 1;
  }
  .process-step:last-child { padding-bottom: 0 !important; }
  .step-bubble {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: start;
    position: relative;
    z-index: 2;
  }
  .step-connector { display: none; }
  .process-step h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    padding-top: 12px;
  }
  .process-step p {
    grid-column: 2;
    grid-row: 2;
    margin-top: 6px;
    padding-bottom: 0;
  }
  .quote-band { padding: 60px 24px; }
  .contact { padding: 72px 24px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 44px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .footer-copy { text-align: left; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(3.2rem, 12vw, 5rem); }
  .hero-stat-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { width: 100%; height: 1px; margin: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; width: 100%; }
  .btn-primary, .btn-ghost-light { width: 100%; justify-content: center; text-align: center; }
  .service-card { padding: 28px 22px; }
  .why-item { padding: 22px 20px; }
}
