/* ============================================================
   920 DETAIL — Complete Redesign
   Concept: Bold, slash-forward, red as primary not accent
   Light body / dark hero / red as FULL section color
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --white:    #FFFFFF;
  --off:      #F7F6F3;
  --light:    #EEEDE9;
  --border:   #E2E0DB;
  --red:      #CC0000;
  --red-dk:   #A80000;
  --red-lt:   rgba(204,0,0,0.06);
  --charcoal: #181818;
  --dark:     #111111;
  --text:     #181818;
  --text-md:  #555555;
  --text-lt:  #999999;
  --display:  'Montserrat', system-ui, sans-serif;
  --body:     'Inter', system-ui, sans-serif;
  --nav-h:    76px;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display:block; max-width:100%; }
a   { color:inherit; text-decoration:none; }
ul  { list-style:none; }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.at-top  { background: transparent; }
.nav.scrolled {
  background: rgba(24,24,24,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  width: 100%; max-width: 1240px;
  margin: 0 auto; padding: 0 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}

.nav-logo img { height: 40px; width: auto; transition: opacity .2s; }
.nav-logo:hover img { opacity: .8; }

.nav-links { display:flex; align-items:center; gap:36px; }
.nav-links a {
  font-family: var(--display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color .2s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content:''; position:absolute;
  bottom:-2px; left:0; width:0; height:1.5px;
  background:var(--red);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color:#fff; }
.nav-links a:hover::after { width:100%; }

.nav-btn {
  font-family: var(--display);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 11px 24px; flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.nav-btn:hover { background:var(--red-dk); transform:translateY(-1px); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff; transition: all .3s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mob-nav {
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: var(--charcoal);
  z-index: 190;
  display: flex; flex-direction: column;
  padding: 48px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}
.mob-nav.open { opacity:1; pointer-events:all; transform:translateY(0); }
.mob-nav a {
  font-family: var(--display);
  font-size: clamp(1.8rem,6vw,3rem);
  font-weight: 900; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 14px 0; letter-spacing: -0.5px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s, padding-left .2s;
}
.mob-nav a:hover { color:#fff; padding-left:12px; }
.mob-nav .nav-btn {
  display:inline-block; margin-top:32px;
  text-align:center; padding:16px 40px;
  font-size:0.72rem; border-bottom:none;
}

/* ============================================================
   HERO — Dark charcoal, diagonal bottom edge
   ============================================================ */
.hero {
  background: var(--charcoal);
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Diagonal bottom — white triangle cuts into hero */
.hero-cut {
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  margin-top: auto;
  flex-shrink: 0;
}

/* Red slash accent — the big diagonal */
.hero-slash-bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    165deg,
    transparent 48%,
    rgba(204,0,0,0.05) 48%,
    rgba(204,0,0,0.05) 52%,
    transparent 52%
  );
  pointer-events: none;
}

/* Ghost 920 */
.hero-ghost {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-55%);
  font-family: var(--display);
  font-size: min(40vw, 560px);
  font-weight: 900; line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.04);
  letter-spacing: -12px;
  user-select: none; pointer-events: none;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 0 60px;
}

/* Red slash badge — mirrors the logo mark */
.hero-tag {
  display: inline-flex; align-items: center;
  gap: 12px; margin-bottom: 32px;
}
.hero-tag-slash {
  display: block;
  width: 3px; height: 28px;
  background: var(--red);
  transform: rotate(-20deg);
  flex-shrink: 0;
}
.hero-tag-text {
  font-family: var(--display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.hero-tag-cert {
  font-family: var(--display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 4px 10px;
}

/* Main headline */
.hero-hl {
  font-family: var(--display);
  font-size: clamp(4rem, 9.5vw, 9.5rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 32px;
}
.hero-hl .slash-word {
  display: inline-block;
  position: relative;
  color: #fff;
}
/* Red slash through "Detailing" — matches the 920 logo mark */
.hero-hl .slashed::after {
  content: '';
  position: absolute;
  left: -4%; top: 10%;
  width: 108%; height: 14%;
  background: var(--red);
  transform: rotate(-3deg);
  z-index: -1;
  opacity: 0.85;
}
.hero-hl .dim { color: rgba(255,255,255,0.18); }

.hero-sub {
  font-size: 1rem; font-weight: 400;
  color: rgba(255,255,255,0.4);
  max-width: 440px; line-height: 1.8;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex; align-items: center;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 64px;
}

.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: var(--display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 30px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-red:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(204,0,0,0.4);
}

.btn-stroke {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(255,255,255,0.55);
  font-family: var(--display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid rgba(255,255,255,0.14);
  transition: border-color .2s, color .2s;
}
.btn-stroke:hover { border-color: rgba(255,255,255,0.4); color:#fff; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 36px;
}
.hs {
  padding-right: 44px; margin-right: 44px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hs:last-child { border-right:none; margin-right:0; padding-right:0; }
.hs-num {
  font-family: var(--display);
  font-size: 2.4rem; font-weight: 900;
  color: #fff; line-height: 1; letter-spacing: -1px;
}
.hs-num em { color: var(--red); font-style: normal; }
.hs-label {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); margin-top: 4px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--red);
  padding: 13px 0;
  overflow: hidden;
  position: relative; z-index: 5;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner:hover { animation-play-state: paused; }
.mi {
  display: inline-flex; align-items: center; gap: 24px;
  padding: 0 32px; flex-shrink: 0;
  font-family: var(--display);
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.mi-slash {
  font-weight: 900; font-size: 1rem;
  color: rgba(255,255,255,0.35);
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}

/* ============================================================
   SHARED — LIGHT SECTIONS
   ============================================================ */
.section { padding: 104px 0; }
.bg-white { background: var(--white); }
.bg-off   { background: var(--off); }
.bg-red   { background: var(--red); }
.bg-dark  { background: var(--charcoal); }

/* Section label — slash prefix from logo */
.s-tag {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.s-tag-slash {
  width: 2.5px; height: 22px;
  background: var(--red); transform: rotate(-18deg);
  flex-shrink: 0;
}
.s-tag-text {
  font-family: var(--display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--red);
}
/* On dark/red backgrounds */
.bg-dark .s-tag-text,
.bg-red  .s-tag-text { color: rgba(255,255,255,0.55); }
.bg-dark .s-tag-slash,
.bg-red  .s-tag-slash { background: rgba(255,255,255,0.3); }

.s-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900; line-height: 1.0;
  text-transform: uppercase;
  color: var(--text); letter-spacing: -1.5px;
}
.s-title .red { color: var(--red); }
.s-title .dim { color: var(--text-lt); }
.bg-dark .s-title,
.bg-red  .s-title  { color: #fff; }
.bg-red  .s-title .dim { color: rgba(255,255,255,0.45); }

.s-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 32px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.s-head .s-title { margin-bottom: 0; }

.s-link {
  font-family: var(--display);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-lt); white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color .2s, gap .2s, border-color .2s;
}
.s-link:hover { color:var(--red); gap:14px; border-bottom-color:var(--red); }
.bg-dark .s-link { color:rgba(255,255,255,0.3); }
.bg-dark .s-link:hover { color:#fff; border-bottom-color:#fff; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}

.svc-card {
  background: var(--white);
  padding: 44px 36px 36px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: background .2s var(--ease);
}
/* Red left-border reveal */
.svc-card::before {
  content:''; position:absolute;
  top:0; left:0; bottom:0; width:3px;
  background: var(--red);
  transform: scaleY(0); transform-origin:bottom;
  transition: transform .4s var(--ease);
}
.svc-card:hover { background: var(--off); }
.svc-card:hover::before { transform:scaleY(1); }

.card-num {
  font-family: var(--display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: 20px;
}
.card-title {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 800;
  text-transform: uppercase; line-height: 1.1;
  color: var(--text); letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.card-desc {
  font-size: 0.85rem; color: var(--text-md);
  line-height: 1.75; flex: 1; margin-bottom: 28px;
}
.card-price {
  font-family: var(--display);
  font-size: 1.8rem; font-weight: 900;
  letter-spacing: -1px; color: var(--text);
  margin-bottom: 14px;
}
.card-price span {
  font-family: var(--body);
  font-size: 0.78rem; font-weight: 400;
  color: var(--text-lt); letter-spacing: 0;
}
.card-cta {
  font-family: var(--display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red);
  display: inline-flex; align-items: center; gap: 8px;
  transition: gap .2s var(--ease);
}
.svc-card:hover .card-cta { gap: 14px; }

/* ============================================================
   HOW IT WORKS — PROCESS STRIP
   ============================================================ */
.process { padding: 0; }
.process-inner {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-step {
  padding: 52px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .2s;
}
.process-step:last-child { border-right:none; }
.process-step:hover { background: var(--off); }

/* Connector line between steps */
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -14px; top: 52px;
  font-size: 0.9rem; color: var(--red);
  z-index: 2; font-weight: 700;
  background: var(--white);
  padding: 2px 0;
  line-height: 1;
}
.process-step:hover::after { background: var(--off); }

.step-num {
  font-family: var(--display);
  font-size: 3.5rem; font-weight: 900;
  color: var(--red); line-height: 1;
  letter-spacing: -2px; margin-bottom: 16px;
  opacity: 0.15;
}
.step-title {
  font-family: var(--display);
  font-size: 0.95rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--text); margin-bottom: 10px;
}
.step-desc {
  font-size: 0.83rem; color: var(--text-lt);
  line-height: 1.7;
}

/* ============================================================
   CERT — FULL RED SECTION
   ============================================================ */
.cert {
  background: var(--red);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
/* Diagonal cut top */
.cert-cut-top {
  height: 80px;
  background: var(--off);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  margin-bottom: -1px;
}
/* Diagonal cut bottom */
.cert-cut-bot {
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  margin-top: -1px;
}

.cert::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cert-bg-text {
  position: absolute;
  right: -40px; bottom: -40px;
  font-family: var(--display);
  font-size: 28vw; font-weight: 900;
  color: rgba(0,0,0,0.08);
  line-height: 1; letter-spacing: -8px;
  user-select: none; pointer-events: none;
  text-transform: uppercase;
}

.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.cert-kicker {
  display: inline-flex; align-items: center;
  gap: 0; margin-bottom: 24px;
  background: rgba(0,0,0,0.2);
  overflow: hidden;
}
.cert-kicker-label {
  font-family: var(--display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6); padding: 8px 14px;
}
.cert-kicker-val {
  font-family: var(--display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; padding: 8px 14px;
  background: rgba(0,0,0,0.2);
}

.cert-title {
  font-family: var(--display);
  font-size: clamp(2.5rem,5vw,5rem);
  font-weight: 900; text-transform: uppercase;
  color: #fff; line-height: 0.95;
  letter-spacing: -2px; margin-bottom: 20px;
}
.cert-title .soft { color: rgba(255,255,255,0.45); }
.cert-body {
  font-size: 0.92rem; color: rgba(255,255,255,0.65);
  line-height: 1.8; max-width: 440px; margin-bottom: 32px;
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--charcoal); color: #fff;
  font-family: var(--display);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 15px 30px;
  transition: background .2s, transform .15s;
}
.btn-dark:hover { background: #000; transform: translateY(-1px); }

.cert-facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.15);
}
.cf {
  background: rgba(0,0,0,0.12);
  padding: 32px 28px;
  transition: background .2s;
}
.cf:hover { background: rgba(0,0,0,0.2); }
.cf-num {
  font-family: var(--display);
  font-size: 2rem; font-weight: 900;
  color: #fff; letter-spacing: -1px;
  line-height: 1; margin-bottom: 6px;
}
.cf-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}
.why-item {
  background: var(--white);
  padding: 52px 44px;
  transition: background .2s;
  position: relative;
}
.why-item:hover { background: var(--off); }
/* Slash decoration */
.why-item-slash {
  position: absolute;
  top: 28px; right: 32px;
  width: 2px; height: 32px;
  background: rgba(204,0,0,0.12);
  transform: rotate(-18deg);
  transition: background .2s;
}
.why-item:hover .why-item-slash { background: rgba(204,0,0,0.3); }

.why-icon {
  width: 44px; height: 44px;
  background: var(--red-lt);
  border: 1px solid rgba(204,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); margin-bottom: 22px;
  transition: background .2s, border-color .2s;
}
.why-item:hover .why-icon {
  background: rgba(204,0,0,0.1);
  border-color: rgba(204,0,0,0.3);
}
.why-title {
  font-family: var(--display);
  font-size: 1.1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: -0.3px;
  color: var(--text); margin-bottom: 10px;
}
.why-body {
  font-size: 0.87rem; color: var(--text-md); line-height: 1.8;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px; align-items: center;
}
.s-body-text {
  font-size: 0.95rem; color: var(--text-md);
  line-height: 1.8; margin: 20px 0 28px;
  max-width: 480px;
}
.tags {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.tag {
  font-family: var(--display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-md);
  border: 1px solid var(--border);
  padding: 7px 14px; background: var(--white);
  cursor: default;
  transition: border-color .2s, color .2s;
}
.tag:hover { border-color: var(--red); color: var(--red); }

.travel-note {
  font-size: 0.82rem; color: var(--text-lt);
  padding: 12px 16px;
  border-left: 3px solid var(--red);
  background: var(--red-lt);
  line-height: 1.6;
}

.area-box {
  background: var(--charcoal);
  padding: 64px 44px; text-align: center;
  position: relative; overflow: hidden;
}
.area-box::before {
  content:'';
  position:absolute; top:0;left:0;right:0; height:3px;
  background:var(--red);
}
.area-big {
  font-family: var(--display);
  font-size: 7rem; font-weight: 900;
  color: #fff; line-height: 1;
  letter-spacing: -4px;
}
.area-big em { color:var(--red); font-style:normal; }
.area-label {
  font-family: var(--display);
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-top:8px;
}
.area-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.2);
  margin-top:18px; line-height:1.6;
}

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-section {
  background: var(--charcoal);
  padding: 88px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content:'920';
  position:absolute; right:-60px; top:50%;
  transform:translateY(-50%);
  font-family:var(--display);
  font-size:35vw; font-weight:900;
  color:rgba(255,255,255,0.025);
  line-height:1; pointer-events:none;
  user-select:none; letter-spacing:-10px;
}
.cta-flex {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cta-hl {
  font-family: var(--display);
  font-size: clamp(2.2rem,5.5vw,5rem);
  font-weight: 900; text-transform: uppercase;
  color: #fff; line-height: 0.95;
  letter-spacing: -2px;
}
.cta-hl .soft { color: rgba(255,255,255,0.2); }
.cta-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.4);
  margin-top: 12px; line-height: 1.7; max-width:400px;
}
.cta-right {
  display:flex; flex-direction:column;
  align-items:flex-end; gap:14px; flex-shrink:0;
}
.cta-phone {
  font-family: var(--display);
  font-size: 1rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing:1px; transition:color .2s;
}
.cta-phone:hover { color:#fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo img { height:36px; margin-bottom:18px; opacity:.75; }
.footer-desc {
  font-size: 0.83rem; color:rgba(255,255,255,0.25);
  line-height:1.8; max-width:260px; margin-bottom:24px;
}
.footer-ph {
  font-family: var(--display);
  font-size: 1.5rem; font-weight: 900;
  color: var(--red); display:block; margin-bottom:4px;
  letter-spacing:-0.5px; transition:color .2s;
}
.footer-ph:hover { color:#e00000; }
.footer-loc { font-size:0.73rem; color:rgba(255,255,255,0.18); letter-spacing:1px; }
.footer-col-head {
  font-family: var(--display);
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a {
  font-size:0.83rem; color:rgba(255,255,255,0.25);
  transition: color .2s, padding-left .2s;
}
.footer-links a:hover { color:rgba(255,255,255,0.7); padding-left:4px; }
.footer-bottom {
  padding: 20px 0;
  display:flex; align-items:center;
  justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.footer-copy { font-size:0.72rem; color:rgba(255,255,255,0.18); }
.footer-copy a { color:var(--red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .svc-grid      { grid-template-columns:repeat(2,1fr); }
  .process-inner { grid-template-columns:repeat(2,1fr); }
  .cert-inner    { grid-template-columns:1fr; gap:48px; }
  .cert-facts    { grid-template-columns:repeat(4,1fr); }
  .footer-top    { grid-template-columns:1fr 1fr; gap:40px; }
  .area-grid     { grid-template-columns:1fr; gap:40px; }
}

@media (max-width: 768px) {
  :root { --nav-h:68px; }
  .nav-links,.nav-btn { display:none; }
  .hamburger { display:flex; }
  .wrap { padding:0 24px; }
  .nav-inner { padding:0 24px; }
  .section { padding:72px 0; }
  .svc-grid      { grid-template-columns:1fr; }
  .process-inner { grid-template-columns:1fr; }
  .process-step::after { display:none; }
  .why-grid      { grid-template-columns:1fr; }
  .cert-facts    { grid-template-columns:1fr 1fr; }
  .footer-top    { grid-template-columns:1fr; }
  .cta-flex      { flex-direction:column; }
  .cta-right     { align-items:flex-start; }
  .hero-stats    { flex-direction:column; }
  .hs { border-right:none; margin-right:0; padding-right:0;
        padding-bottom:20px;
        border-bottom:1px solid rgba(255,255,255,0.07); }
  .hs:last-child { border-bottom:none; }
  .hero-ghost    { font-size:72vw; right:-10px; }
  .footer-bottom { flex-direction:column; }
  .s-head        { flex-direction:column; align-items:flex-start; }
}

@media (max-width:480px) {
  .hero-hl { font-size:clamp(3rem,17vw,5.5rem); letter-spacing:-2px; }
  .hero-btns { flex-direction:column; align-items:flex-start; }
  .btn-red,.btn-stroke { width:100%; justify-content:center; }
  .cert-facts { grid-template-columns:1fr 1fr; }
}


/* ============================================================
   SUB-PAGE STYLES
   ============================================================ */

/* Small hero (inner pages) */
.hero-sm {
  background: var(--charcoal);
  padding: 140px 0 72px;
  position: relative;
  border-bottom: 3px solid var(--red);
}
.hero-sm::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(204,0,0,.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-sm-title {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0 0 16px;
  max-width: 700px;
}
.hero-sm-sub {
  color: #999;
  font-size: 1rem;
  max-width: 560px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 28px;
}
.breadcrumb a { color: #666; text-decoration: none; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { margin: 0 8px; color: #444; }

/* Content layout (1fr + sidebar) */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* Sidebar */
.sidebar { position: sticky; top: 100px; }
.sidebar-box {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  margin-bottom: 2px;
}
.sidebar-head {
  background: var(--red);
  padding: 20px 28px;
  color: var(--white);
}
.sidebar-head .sh-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 4px;
}
.sidebar-head .sh-title {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
}
.sidebar-body { padding: 28px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.price-row:last-of-type { border-bottom: none; }
.price-label { font-size: .82rem; color: #777; font-weight: 500; }
.price-val {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--charcoal);
}
.price-val .price-plus { font-size: .9rem; color: #aaa; }
.price-note {
  font-size: .78rem;
  color: #999;
  line-height: 1.6;
  margin: 16px 0 24px;
}
.sidebar-phone {
  display: block;
  border: 1px solid var(--border);
  border-top: none;
  padding: 20px 28px;
  background: var(--off);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}
.sidebar-phone:hover { background: var(--light); }

/* Included checklist */
.section-label {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--charcoal);
  letter-spacing: .06em;
  margin: 0 0 6px;
}
.section-rule {
  width: 36px;
  height: 3px;
  background: var(--red);
  margin-bottom: 28px;
}
.included-list { list-style: none; margin: 0; padding: 0; }
.included-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.included-item:last-child { border-bottom: none; }
.included-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.included-check svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.included-text h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.included-text p { font-size: .85rem; color: #777; line-height: 1.6; margin: 0; }

/* Process step list */
.step-list { list-style: none; margin: 0; padding: 0; counter-reset: steps; }
.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: steps;
}
.step-item:last-child { border-bottom: none; }
.step-n {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  width: 36px;
  line-height: 1;
}
.step-text h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 5px;
}
.step-text p { font-size: .85rem; color: #777; line-height: 1.6; margin: 0; }

/* Tier grid (ceramic / paint correction) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}
@media (max-width: 700px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background: var(--white);
  position: relative;
}
.tier-card.featured {
  border-color: var(--red);
  background: var(--off);
}
.tier-badge {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 16px;
}
.tier-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 8px;
  letter-spacing: .04em;
}
.tier-price {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  margin: 0 0 20px;
}
.tier-price span { font-size: 1rem; color: #aaa; }
.tier-ul { list-style: none; margin: 0; padding: 0; }
.tier-ul li {
  font-size: .85rem;
  color: #666;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.tier-ul li::before {
  content: '/';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-ul li:last-child { border-bottom: none; }

/* Surface grid (pressure washing) */
.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
@media (max-width: 700px) { .surface-grid { grid-template-columns: repeat(2, 1fr); } }
.surface-item {
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  background: var(--white);
  transition: background .25s, border-color .25s;
}
.surface-item:hover { background: var(--off); border-color: var(--red); }
.surface-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.surface-name {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--charcoal);
}

/* Vehicle grid (marine) */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}
@media (max-width: 700px) { .vehicle-grid { grid-template-columns: 1fr; } }
.vehicle-card {
  border: 1px solid var(--border);
  padding: 32px 28px;
  background: var(--white);
}
.vehicle-card-icon {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 14px;
}
.vehicle-card-name {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.vehicle-card ul { list-style: none; margin: 0; padding: 0; }
.vehicle-card li {
  font-size: .84rem;
  color: #777;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.vehicle-card li:last-child { border-bottom: none; }
.vehicle-card .vc-price { color: var(--red); font-weight: 700; }

/* Pricing page: package cards */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}
@media (max-width: 700px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg-card {
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--white);
}
.pkg-card.featured { border-color: var(--red); }
.pkg-card-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--off);
}
.pkg-card.featured .pkg-card-head { background: var(--red); }
.pkg-name {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.pkg-card.featured .pkg-name { color: var(--white); }
.pkg-price {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--red);
}
.pkg-card.featured .pkg-price { color: var(--white); }
.pkg-price span { font-size: 1rem; color: #aaa; font-weight: 400; }
.pkg-card.featured .pkg-price span { color: rgba(255,255,255,.6); }
.pkg-card-body { padding: 24px 28px 28px; }
.pkg-ul { list-style: none; margin: 0; padding: 0; }
.pkg-ul li {
  font-size: .85rem;
  color: #666;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.pkg-ul li::before { content: '/'; color: var(--red); font-weight: 700; }
.pkg-ul li:last-child { border-bottom: none; }

/* Pricing tables */
.price-section { margin-bottom: 56px; }
.price-section-title {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--charcoal);
  margin: 0 0 2px;
}
.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); }
.price-table th {
  background: var(--charcoal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 18px;
  text-align: left;
}
.price-table td {
  padding: 14px 18px;
  font-size: .88rem;
  color: #555;
  border-bottom: 1px solid var(--border);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td:last-child { color: var(--charcoal); font-weight: 700; }
.price-table tr:nth-child(even) td { background: var(--off); }

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #777;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 12px 16px;
  font-family: var(--body);
  font-size: .92rem;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.form-msg { font-size: .85rem; font-weight: 600; display: none; }
.form-msg.ok { color: #1a7c3e; display: block; }
.form-msg.err { color: var(--red); display: block; }

/* Contact info sidebar */
.contact-info-box {
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.ci-head {
  background: var(--charcoal);
  padding: 22px 28px;
  font-family: var(--display);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
}
.ci-body { padding: 24px 28px; }
.ci-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ci-row:last-child { border-bottom: none; }
.ci-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aaa;
}
.ci-val {
  font-size: .92rem;
  color: var(--charcoal);
  font-weight: 500;
}
.ci-val a { color: var(--red); text-decoration: none; font-weight: 700; }

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text p { color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-visual {
  position: relative;
  background: var(--off);
  border: 1px solid var(--border);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-visual-ghost {
  font-family: var(--display);
  font-size: 12rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--border);
  line-height: 1;
  user-select: none;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 72px;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
.value-item {
  border: 1px solid var(--border);
  padding: 36px 28px;
  background: var(--white);
}
.value-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  opacity: .15;
  line-height: 1;
  margin-bottom: 8px;
}
.value-title {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--charcoal);
  margin: 0 0 10px;
}
.value-desc { font-size: .85rem; color: #777; line-height: 1.6; margin: 0; }

/* Travel note */
.travel-note {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 18px 24px;
  font-size: .85rem;
  color: #666;
  line-height: 1.6;
  margin-top: 40px;
}
.travel-note strong { color: var(--charcoal); }

/* Cert callout (inline red block) */
.cert-callout {
  background: var(--red);
  padding: 36px 40px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cert-callout-icon {
  font-size: 3rem;
  flex-shrink: 0;
}
.cert-callout-text h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: .05em;
}
.cert-callout-text p { font-size: .88rem; color: rgba(255,255,255,.75); margin: 0; line-height: 1.6; }


/* ============================================================
   PHOTO PLACEHOLDERS
   ============================================================ */
.photo-ph {
  background: var(--light);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #aaa;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.photo-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,.025) 10px,
    rgba(0,0,0,.025) 11px
  );
}
.photo-ph svg { position: relative; z-index: 1; opacity: .4; }
.photo-ph span { position: relative; z-index: 1; }
.photo-ph.dark {
  background: #1c1c1c;
  border-color: #333;
  color: #444;
}
.photo-ph.dark::before {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,.015) 10px,
    rgba(255,255,255,.015) 11px
  );
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 40px;
}
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 24px 16px 12px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.ba-section {
  background: var(--charcoal);
  padding: 88px 0;
  position: relative;
}
.ba-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.ba-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 12px;
}
.ba-sub { color: #666; font-size: .9rem; line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
@media (max-width: 700px) { .ba-grid { grid-template-columns: 1fr; } }
.ba-item { position: relative; }
.ba-item-photo { aspect-ratio: 16/10; width: 100%; }
.ba-item-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
  z-index: 2;
}
.ba-item-tag.after { background: var(--charcoal); border: 1px solid #333; }
.ba-caption {
  padding: 16px;
  background: #111;
  font-size: .82rem;
  color: #666;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--off);
  padding: 88px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
@media (max-width: 800px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 900;
  color: var(--red);
  opacity: .08;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}
.t-stars span { color: var(--red); font-size: 1rem; }
.t-quote {
  font-size: .92rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--light);
  border: 2px dashed var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #aaa;
  font-weight: 700;
  letter-spacing: .05em;
  overflow: hidden;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}
.t-detail { font-size: .78rem; color: #aaa; }

/* ============================================================
   OWNER / ABOUT CALLOUT
   ============================================================ */
.owner-section {
  background: var(--white);
  padding: 88px 0;
}
.owner-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) { .owner-grid { grid-template-columns: 1fr; gap: 48px; } }
.owner-photo-wrap {
  position: relative;
}
.owner-photo {
  aspect-ratio: 4/5;
  width: 100%;
}
.owner-photo-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  background: var(--red);
  z-index: -1;
}
.owner-text .eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.owner-text h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.15;
  margin: 0 0 24px;
}
.owner-text p {
  font-size: .95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
}
.owner-text p:last-of-type { margin-bottom: 32px; }
.owner-sig {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--charcoal);
  letter-spacing: .02em;
}
.owner-sig-title {
  font-size: .78rem;
  color: #aaa;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   ENHANCED WHY US
   ============================================================ */
.why-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 56px;
}
@media (max-width: 700px) { .why-photo-row { grid-template-columns: 1fr; } }
.why-photo-item { aspect-ratio: 3/2; }

/* ============================================================
   SERVICE AREA MAP PLACEHOLDER
   ============================================================ */
.area-map-ph {
  aspect-ratio: 16/7;
  width: 100%;
  margin-bottom: 40px;
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--charcoal);
  padding: 40px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
@media (max-width: 700px) { .stat-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 0; } }
.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid #222;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num em { color: var(--red); font-style: normal; }
.stat-label { font-size: .75rem; color: #555; letter-spacing: .08em; text-transform: uppercase; }


/* ============================================================
   MISSING / ALIAS CLASSES — FIX
   ============================================================ */

/* content-wrap alias */
.content-wrap { max-width:1240px; margin:0 auto; padding:0 48px; }
@media (max-width:768px) { .content-wrap { padding:0 24px; } }

/* cta aliases */
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; position:relative; z-index:2; }
.cta-left  { flex:1; min-width:260px; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size:.68rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  background: var(--red); color: #fff;
  padding: 14px 28px; transition: background .2s, transform .15s;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size:.68rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  background: var(--charcoal); color: #fff;
  padding: 14px 28px; transition: background .2s, transform .15s;
  cursor: pointer; border: none; text-decoration: none;
}
.btn-secondary:hover { background: #000; transform: translateY(-1px); }

.btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size:.68rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  background: transparent; color: rgba(255,255,255,.6);
  padding: 13px 28px; border: 1px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s; text-decoration: none;
}
.btn-outline-light:hover { border-color: rgba(255,255,255,.6); color: #fff; }

/* ============================================================
   FOOTER FIX — classes used in page templates
   ============================================================ */
.footer-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
@media (max-width:1100px) { .footer-inner { grid-template-columns:1fr 1fr; gap:40px; } }
@media (max-width:768px)  { .footer-inner { grid-template-columns:1fr; padding:0 24px 48px; } }

.footer-brand p {
  font-size:.83rem; color:rgba(255,255,255,.25);
  line-height:1.8; max-width:260px; margin-bottom:20px;
}
.footer-logo { height:36px; width:auto; margin-bottom:18px; display:block; opacity:.75; }
.footer-phone {
  font-family:var(--display); font-size:1.4rem; font-weight:900;
  color:var(--red); display:block; margin-bottom:4px;
  letter-spacing:-.5px; transition:color .2s; text-decoration:none;
}
.footer-phone:hover { color:#e00000; }

.footer-col h4 {
  font-family:var(--display); font-size:.58rem; font-weight:700;
  letter-spacing:3px; text-transform:uppercase;
  color:rgba(255,255,255,.2);
  margin-bottom:18px; padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.footer-col ul { display:flex; flex-direction:column; gap:10px; }
.footer-col li a {
  font-size:.83rem; color:rgba(255,255,255,.25);
  transition:color .2s, padding-left .2s; text-decoration:none;
}
.footer-col li a:hover { color:rgba(255,255,255,.7); padding-left:4px; }
.footer-col p.footer-area {
  font-size:.83rem; color:rgba(255,255,255,.25); line-height:1.8;
}
.footer-col p.footer-radius {
  font-size:.75rem; color:rgba(255,255,255,.15); margin-top:8px; letter-spacing:.04em;
}

.footer-bar {
  max-width:1240px; margin:0 auto; padding:20px 48px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:12px;
  font-size:.72rem; color:rgba(255,255,255,.18);
}
@media (max-width:768px) { .footer-bar { padding:20px 24px; flex-direction:column; align-items:flex-start; } }

/* ============================================================
   BOOKING PAGE STYLES
   ============================================================ */

/* Progress steps */
.booking-progress {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 56px; overflow-x: auto;
}
.bp-step {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px; cursor: pointer;
  border-bottom: 2px solid var(--border);
  transition: border-color .2s, color .2s;
  white-space: nowrap; flex-shrink: 0;
}
.bp-step .bp-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: .72rem; font-weight: 900;
  color: #aaa; transition: all .2s; flex-shrink: 0;
}
.bp-step .bp-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: #aaa; transition: color .2s;
}
.bp-step.active { border-color: var(--red); }
.bp-step.active .bp-num { background: var(--red); border-color: var(--red); color: #fff; }
.bp-step.active .bp-label { color: var(--charcoal); }
.bp-step.done .bp-num { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.bp-step.done .bp-label { color: #555; }

/* Booking step panels */
.booking-step { display: none; }
.booking-step.active { display: block; }

/* Booking form grid */
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.booking-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .booking-grid { grid-template-columns: 1fr; } }

.booking-field { display: flex; flex-direction: column; gap: 7px; }
.booking-field label {
  font-size: .74rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #777;
}
.booking-field label .req { color: var(--red); margin-left: 2px; }
.booking-field input,
.booking-field select,
.booking-field textarea {
  border: 1px solid var(--border); background: var(--white);
  padding: 13px 16px; font-family: var(--body); font-size: .92rem;
  color: var(--charcoal); outline: none; transition: border-color .2s;
  width: 100%; box-sizing: border-box; appearance: none; -webkit-appearance: none;
  border-radius: 0;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-color: var(--red); }
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: #bbb; }
.booking-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aaa' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.booking-field textarea { resize: vertical; min-height: 110px; }
.booking-field .field-hint { font-size: .78rem; color: #aaa; line-height: 1.5; }

/* Service card selector */
.service-selector {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-bottom: 8px;
}
@media (max-width: 800px) { .service-selector { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .service-selector { grid-template-columns: 1fr; } }

.svc-option { display: none; }
.svc-option-label {
  display: block; padding: 22px 20px; border: 1px solid var(--border);
  background: var(--white); cursor: pointer; position: relative;
  transition: border-color .2s, background .2s; user-select: none;
}
.svc-option-label:hover { border-color: #bbb; }
.svc-option-label .so-check {
  position: absolute; top: 14px; right: 14px;
  width: 20px; height: 20px; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; border-radius: 2px;
}
.svc-option-label .so-num {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #bbb; margin-bottom: 8px;
}
.svc-option-label .so-name {
  font-family: var(--display); font-size: .9rem; font-weight: 900;
  text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px;
  letter-spacing: .03em; line-height: 1.2;
}
.svc-option-label .so-price {
  font-size: .8rem; font-weight: 700; color: var(--red);
}
.svc-option-label .so-desc {
  font-size: .78rem; color: #888; line-height: 1.5; margin-top: 6px;
}
.svc-option:checked + .svc-option-label {
  border-color: var(--red); background: #fff8f8;
}
.svc-option:checked + .svc-option-label .so-check {
  background: var(--red); border-color: var(--red);
}
.svc-option:checked + .svc-option-label .so-check::after {
  content: ''; display: block; width: 5px; height: 9px;
  border-right: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(40deg) translate(-1px, -1px);
}

/* Time preference radio */
.time-options { display: flex; gap: 2px; flex-wrap: wrap; }
.time-opt { display: none; }
.time-opt-label {
  padding: 12px 20px; border: 1px solid var(--border); background: var(--white);
  font-size: .8rem; font-weight: 700; color: #666; cursor: pointer;
  transition: all .2s; text-transform: uppercase; letter-spacing: .06em;
}
.time-opt-label:hover { border-color: #bbb; }
.time-opt:checked + .time-opt-label { border-color: var(--red); background: #fff8f8; color: var(--red); }

/* Condition slider-style select */
.condition-options { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
@media (max-width:600px) { .condition-options { grid-template-columns:1fr 1fr; } }
.cond-opt { display: none; }
.cond-opt-label {
  padding: 14px 8px; border: 1px solid var(--border); background: var(--white);
  text-align: center; cursor: pointer; transition: all .2s;
}
.cond-opt-label .cond-name { font-size: .8rem; font-weight: 700; color: #666; text-transform:uppercase; letter-spacing:.05em; display:block; margin-bottom:4px; }
.cond-opt-label .cond-desc { font-size: .72rem; color: #aaa; line-height: 1.4; }
.cond-opt:checked + .cond-opt-label { border-color: var(--red); background:#fff8f8; }
.cond-opt:checked + .cond-opt-label .cond-name { color: var(--red); }

/* Step navigation buttons */
.step-nav { display:flex; align-items:center; justify-content:space-between; margin-top:40px; padding-top:32px; border-top:1px solid var(--border); flex-wrap:wrap; gap:16px; }
.step-nav .btn-prev { font-family:var(--display); font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#999; background:none; border:1px solid var(--border); padding:13px 24px; cursor:pointer; transition:all .2s; }
.step-nav .btn-prev:hover { color:var(--charcoal); border-color:#999; }
.step-nav .btn-next, .step-nav .btn-submit { font-family:var(--display); font-size:.7rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; background:var(--red); color:#fff; border:none; padding:15px 36px; cursor:pointer; transition:all .2s; display:inline-flex; align-items:center; gap:10px; }
.step-nav .btn-next:hover, .step-nav .btn-submit:hover { background:var(--red-dk); transform:translateY(-1px); }

/* Booking summary sidebar */
.booking-layout { display:grid; grid-template-columns:1fr 320px; gap:48px; align-items:start; }
@media (max-width:900px) { .booking-layout { grid-template-columns:1fr; } }
.booking-summary { position:sticky; top:100px; border:1px solid var(--border); background:var(--white); overflow:hidden; }
.bs-head { background:var(--charcoal); padding:20px 24px; }
.bs-head-title { font-family:var(--display); font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; color:rgba(255,255,255,.5); margin-bottom:4px; }
.bs-head-sub { font-size:.82rem; color:rgba(255,255,255,.3); }
.bs-body { padding:20px 24px; }
.bs-row { display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px solid var(--border); font-size:.84rem; }
.bs-row:last-child { border-bottom:none; }
.bs-key { color:#aaa; }
.bs-val { color:var(--charcoal); font-weight:600; text-align:right; max-width:60%; }
.bs-val.empty { color:#ccc; font-style:italic; font-weight:400; }
.bs-note { font-size:.78rem; color:#aaa; line-height:1.6; padding:16px 24px; border-top:1px solid var(--border); background:var(--off); }

/* Form validation feedback */
.field-err { border-color: var(--red) !important; }
.field-err-msg { font-size:.75rem; color:var(--red); margin-top:4px; display:none; }
.field-err-msg.show { display:block; }

/* Booking success message */
.booking-success { display:none; text-align:center; padding:72px 40px; }
.booking-success.show { display:block; }
.bs-icon { font-size:3rem; margin-bottom:20px; }
.bs-title { font-family:var(--display); font-size:2rem; font-weight:900; text-transform:uppercase; color:var(--charcoal); margin-bottom:12px; }
.bs-msg { color:#666; font-size:.95rem; line-height:1.7; max-width:480px; margin:0 auto 28px; }
