/* ============================================================
   IRONCOAT PAINTING CO. — ULTRA PREMIUM v4.0
   Cormorant Garamond + Inter | 120px breathing space
   ============================================================ */

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

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --iron:        #1A1A1C;
  --ember:       #E8531E;
  --ember-hover: #CF4619;
  --ember-dim:   rgba(232,83,30,0.10);
  --fog:         #F2F2F7;
  --white:       #FFFFFF;
  --off-white:   #F7F7F9;
  --surface-dk:  #111113;
  --border-lt:   #E5E5EA;
  --border-dk:   rgba(255,255,255,0.07);
  --text-pri:    #1A1A1C;
  --text-sec:    #55555F;
  --text-muted:  #8E8E93;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-pri);
  overflow-x: hidden;
}

#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 14px 56px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              -webkit-backdrop-filter 0.35s ease, padding 0.35s ease,
              border-bottom 0.35s ease;
}
#mainNav.scrolled {
  background: rgba(12,12,14,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
#mainNav.scrolled .nav-logo img,
#mainNav.scrolled .nav-logo-img { height: 52px !important; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img,
.nav-logo-img { height: 64px; width: auto; transition: height 0.4s cubic-bezier(0.16,1,0.3,1); display: block; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,242,247,0.6); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--fog); }
.nav-cta {
  background: var(--ember) !important; color: var(--white) !important;
  padding: 10px 22px !important; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--ember-hover) !important; }

/* ─── HAMBURGER ──────────────────────────────────────────────── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { width: 22px; height: 1.5px; background: var(--fog); transition: all 0.3s; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(14,14,16,0.98); backdrop-filter: blur(24px);
  z-index: 505; flex-direction: column; align-items: center;
  justify-content: space-between; padding: 20px 28px 44px;
}
.mobile-menu.open { display: flex; }
.mm-close-btn {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--fog);
}
.mm-top { width: 100%; display: flex; justify-content: center; padding-top: 12px; }
.mm-mid { display: flex; flex-direction: column; align-items: center; width: 100%; }
.mm-mid a {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600;
  color: rgba(242,242,247,0.80); text-decoration: none;
  padding: 16px 0; width: 100%; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07); transition: color 0.15s;
}
.mm-mid a:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.mm-mid a:active { color: var(--ember); }
.mm-bot { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.mm-cta-btn {
  display: block; width: 100%;
  background: var(--ember); color: white !important;
  text-decoration: none; text-align: center;
  padding: 18px; font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ─── HERO (DARK) ────────────────────────────────────────────── */
.hero {
  min-height: auto; 
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  background: var(--iron);
  padding-top: 88px; /* offset for nav */
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 56px 60px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 16px;
  margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.15s forwards;
}
.hero-badge-line {
  width: 2px; height: 44px;
  background: linear-gradient(to bottom, var(--ember), transparent); flex-shrink: 0;
}
.hero-badge-label {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ember); font-weight: 500; margin-bottom: 3px;
}
.hero-badge-sub {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,242,247,0.45);
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 5.5vw, 84px); font-weight: 700;
  line-height: 0.98; letter-spacing: -0.02em;
  color: var(--fog); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-h1 em { font-style: italic; color: var(--ember); }
.hero-urgency {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(232,83,30,0.9); margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.8s 0.42s forwards;
}
.hero-urgency::before {
  content: ''; width: 6px; height: 6px; background: var(--ember);
  border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(242,242,247,0.58); max-width: 420px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero-actions {
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ember); color: var(--white); text-decoration: none;
  padding: 22px 56px; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.3s;
}
.btn-primary:hover {
  background: var(--ember-hover); transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(232,83,30,0.4);
}
.hero-stats {
  display: flex; margin-top: 52px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.stat-item { flex: 1; text-align: center; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 1px; background: rgba(255,255,255,0.1);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 700;
  color: var(--fog); line-height: 1;
}
.stat-num span { color: var(--ember); }
.stat-label {
  font-size: 9px; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-top: 5px;
}
.hero-right { position: relative; overflow: hidden; }
.hero-img-wrap { position: absolute; inset: 0; overflow: hidden; }
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(1.05); animation: slowZoom 16s ease-in-out infinite alternate;
  filter: brightness(0.88) contrast(1.05) saturate(0.9);
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
.hero-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(26,26,28,0.94) 0%, rgba(26,26,28,0.35) 50%, rgba(26,26,28,0.05) 100%),
    linear-gradient(to top, rgba(26,26,28,0.8) 0%, transparent 35%);
}

/* ─── HERO TRUST BAR (directly below hero, same dark tone) ───── */
.hero-trust-bar {
  background: #0C0C0E;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin-top: -1px;
}
.hero-trust-scroll {
  display: flex; align-items: center;
  animation: trustScroll 28s linear infinite; white-space: nowrap;
  width: max-content;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 9.5px; letter-spacing: 0.13em;
  text-transform: uppercase; color: rgba(255,255,255,0.32);
  flex-shrink: 0; border-right: 1px solid rgba(255,255,255,0.05);
  font-family: 'Inter', sans-serif;
}
.trust-item svg { color: var(--ember); flex-shrink: 0; }
@keyframes trustScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── ELITE AREA HIGHLIGHT ───────────────────────────────────── */
.area-elite {
  color: var(--ember) !important;
  font-weight: 600;
}

/* ─── SECTION GLOBALS ────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 16px; font-weight: 500;
}
.section-tag::before { content: ''; width: 24px; height: 1px; background: var(--ember); }
.section-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px); font-weight: 700;
  line-height: 1.04; color: var(--text-pri);
}
.section-h2 em { color: var(--ember); font-style: italic; }
.section-desc { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--text-sec); }

/* ─── WHY IRONCOAT (DARK) ────────────────────────────────────── */
.why-section {
  padding: 140px 56px;
  background-color: var(--iron);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(14,14,16,0.97) 0%,
    rgba(24,24,26,0.88) 60%,
    rgba(14,14,16,0.96) 100%);
}
.why-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.why-header { margin-bottom: 64px; }
.why-header .section-h2 { color: var(--fog); }

/* Three pillar cards */
.why-pillars {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-bottom: 2px;
}
.why-pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 40px;
  transition: background 0.3s, border-color 0.3s;
}
.why-pillar:hover { background: rgba(255,255,255,0.055); border-color: rgba(232,83,30,0.2); }
.why-pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 700;
  color: var(--ember); line-height: 1; margin-bottom: 24px;
}
.why-pillar-num span { font-size: 40px; color: rgba(232,83,30,0.6); }
.why-pillar-line { width: 28px; height: 2px; background: var(--ember); margin-bottom: 20px; }
.why-pillar-title {
  font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700;
  color: var(--fog); margin-bottom: 14px; line-height: 1.2;
}
.why-pillar-desc {
  font-size: 14px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.48); margin-bottom: 24px;
}
.why-pillar-proof {
  display: flex; align-items: center; gap: 8px;
  font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(232,83,30,0.75);
}
.why-pillar-proof svg { color: var(--ember); flex-shrink: 0; }

/* why-proof-bar removed */

/* ─── SERVICES (asymmetric premium layout) ───────────────────── */
.services { padding: 140px 56px; background: var(--white); }
.services-inner { max-width: 1280px; margin: 0 auto; }
.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 36px; align-items: end; margin-bottom: 56px;
}
.services-header-right { display: flex; flex-direction: column; justify-content: flex-end; gap: 16px; }
.sv-project-count {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); border-left: 2px solid var(--ember);
  padding-left: 12px; line-height: 1.5;
}
.sv-project-count span { color: var(--text-pri); font-weight: 500; }

/* Asymmetric grid: feature card 55% wide, stack 45% */
.sv-asymgrid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 4px;
  height: 680px;
}
.sv-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

/* Base card */
.sv-card {
  position: relative; overflow: hidden; cursor: pointer;
}
.sv-card-feature { height: 100%; }
.sv-card-half { height: 100%; }

.sv-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.9s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.62) saturate(1.05);
}
.sv-card:hover .sv-bg {
  transform: scale(1.04);
  filter: brightness(0.78) saturate(1.15);
}
.sv-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(8,8,10,0.05) 0%,
    rgba(8,8,10,0.25) 40%,
    rgba(8,8,10,0.88) 100%);
  transition: opacity 0.4s;
}
.sv-card:hover .sv-overlay { opacity: 0.85; }

/* Ghost number — top right */
.sv-index {
  position: absolute; top: 24px; right: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.07);
  pointer-events: none; user-select: none;
  transition: color 0.4s;
}
.sv-card-half .sv-index { font-size: 56px; top: 18px; right: 20px; }
.sv-card:hover .sv-index { color: rgba(255,255,255,0.12); }

/* Content bottom-left */
.sv-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.sv-eyebrow {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 10px;
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1) 0.05s;
}
.sv-card:hover .sv-eyebrow { opacity: 1; transform: translateY(0); }

.sv-title {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700;
  color: #fff; line-height: 1.0; margin-bottom: 12px;
}
.sv-card-half .sv-title { font-size: 30px; }

.sv-desc {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.65; margin-bottom: 20px;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease 0.1s;
}
.sv-card:hover .sv-desc { max-height: 80px; opacity: 1; }

.sv-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ember);
  opacity: 0; transform: translateY(6px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1) 0.15s;
  border-bottom: 1px solid rgba(232,83,30,0.35); padding-bottom: 2px;
}
.sv-card:hover .sv-cta { opacity: 1; transform: translateY(0); }
.sv-cta svg { transition: transform 0.3s ease; }
.sv-card:hover .sv-cta svg { transform: translateX(4px); }


/* ─── BEFORE / AFTER INTERACTIVE SLIDER ─────────────────────── */
.ba-slider {
  position: relative; overflow: hidden;
  height: clamp(400px, 60vh, 700px); 
  max-width: 600px; margin: 0 auto; /* Portrait-friendly shape */
  border-radius: 4px;
  cursor: col-resize; user-select: none; -webkit-user-select: none;
  background: #111;
  display: block;
}
.ba-slider-before,
.ba-slider-after {
  position: absolute; inset: 0;
}
.ba-slider-before img,
.ba-slider-after img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  pointer-events: none; display: block;
}
/* After image: show RIGHT half, clip LEFT half */
.ba-slider-after { clip-path: inset(0 0 0 50%); }
/* Labels */
.ba-slider-label {
  position: absolute; bottom: 14px;
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 14px; backdrop-filter: blur(6px); border-radius: 2px;
  pointer-events: none; z-index: 5;
}
.ba-slider-before .ba-slider-label {
  left: 14px;
  background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}
.ba-slider-after .ba-slider-label {
  left: auto; right: 14px;
  background: var(--ember); color: white;
}
/* Handle */
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; background: rgba(255,255,255,0.85);
  z-index: 20; pointer-events: none;
  transition: none;
}
.ba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  pointer-events: all; cursor: col-resize;
  border: 2px solid rgba(232,83,30,0.3);
}
.ba-handle-circle svg { color: var(--ember); }

/* ─── PROCESS (editorial alternating layout) ─────────────────── */
.process { background: var(--white); }
.process-header-wrap {
  text-align: center; padding: 120px 56px 80px;
  border-bottom: 1px solid var(--border-lt);
}
.process-header-wrap .section-tag { justify-content: center; }
.process-h2 { display: block; margin-top: 12px; }

/* Each step row */
.pstep {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; border-bottom: 1px solid var(--border-lt);
}
.pstep-img-left .pstep-img { order: 0; }
.pstep-img-left .pstep-content { order: 1; }
.pstep-img-right .pstep-img { order: 1; }
.pstep-img-right .pstep-content { order: 0; }

/* Image panel */
.pstep-img {
  position: relative; overflow: hidden; background: var(--iron);
}
.pstep-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
  filter: brightness(0.94) contrast(1.02);
}
.pstep:hover .pstep-img img { transform: scale(1.04); }
.pstep-img-num {
  position: absolute; bottom: 32px; right: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px; font-weight: 700; line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none; user-select: none;
}

/* Content panel */
.pstep-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 64px;
  background: var(--white);
}
.pstep-img-right .pstep-content { background: var(--off-white); }
.pstep-tag {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.pstep-tag::before { content: ''; width: 24px; height: 1px; background: var(--ember); }
.pstep-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px); font-weight: 700;
  color: var(--text-pri); line-height: 1.1; margin-bottom: 20px;
}
.pstep-desc {
  font-size: 15px; font-weight: 300; line-height: 1.85;
  color: var(--text-sec); margin-bottom: 32px; max-width: 440px;
}
.pstep-detail { display: flex; flex-direction: column; gap: 10px; }
.pstep-detail-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 300; color: var(--text-muted);
  letter-spacing: 0.01em;
}
.pstep-dot { width: 4px; height: 4px; background: var(--ember); border-radius: 50%; flex-shrink: 0; }

/* ─── PROMISE (dark iron) ────────────────────────────────────── */
.promise { background: var(--iron); position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.06); }
.promise::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--ember), transparent);
}
.promise-layout { display: grid; grid-template-columns: 1fr auto; min-height: 380px; max-width: 1200px; margin: 0 auto; }
.promise-text { padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; }
.promise-tag {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.promise-tag::before { content: ''; width: 24px; height: 1px; background: var(--ember); }
.promise h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 48px); font-weight: 700;
  color: var(--fog); line-height: 1.08; margin-bottom: 18px;
}
.promise p { font-size: 15px; font-weight: 300; line-height: 1.8; color: rgba(242,242,247,0.6); max-width: 520px; margin-bottom: 28px; }

/* Feature bullets */
.promise-features { display: flex; flex-direction: column; gap: 10px; }
.pf-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 300; color: rgba(242,242,247,0.5);
  letter-spacing: 0.02em;
}
.pf-dot { width: 5px; height: 5px; background: var(--ember); border-radius: 50%; flex-shrink: 0; }
.promise-badge-wrap { display: flex; align-items: center; justify-content: center; padding: 64px 80px; }
.promise-badge {
  width: 220px; height: 220px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.promise-seal-ring {
  position: absolute;
  top: 0; left: 0;
}
.promise-badge-inner {
  width: 150px; height: 150px;
  border: 1.5px solid rgba(232,83,30,0.4); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(232,83,30,0.08); backdrop-filter: blur(10px);
  position: relative; z-index: 1;
}
.promise-badge-icon { margin-bottom: 4px; }
.promise-badge-inner .promise-badge-num {
  font-family: 'Cormorant Garamond', serif; font-size: 62px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.promise-badge-inner .promise-badge-unit {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); text-align: center; margin-top: 4px; line-height: 1.5;
}
.promise-footer {
  text-align: center; padding: 0 24px 28px;
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(232,83,30,0.45); max-width: 1200px; margin: 0 auto;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials { padding: 140px 56px; background: var(--white); }
.testimonials-inner { max-width: 820px; margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-tag { justify-content: center; }
.testi-grid { display: flex; flex-direction: column; gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border-lt);
  border-top: 2px solid var(--ember); padding: 36px 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}
.testi-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); transform: translateY(-2px); }
.testi-stars { font-size: 14px; color: #F5A623; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic;
  color: var(--text-pri); line-height: 1.7; margin-bottom: 22px;
}
.testi-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 18px; border-top: 1px solid var(--border-lt);
}
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ember); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.testi-name { font-size: 13px; font-weight: 500; color: var(--text-pri); margin-bottom: 2px; }
.testi-meta { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.testi-google {
  margin-left: auto; display: flex; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: 0.08em; color: var(--text-muted);
  text-transform: uppercase; flex-shrink: 0;
}
.testi-google svg { width: 14px; height: 14px; }

/* ─── BRANDS BAR ─────────────────────────────────────────────── */
.brands-bar {
  padding: 36px; background: var(--off-white);
  border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt);
  text-align: center;
}
.brands-label {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.brands-list {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 26px);
  color: var(--text-pri); font-weight: 400; letter-spacing: 0.04em;
}
.brands-list .brand-sep {
  color: var(--ember); padding: 0 14px;
  font-family: 'Inter', sans-serif; font-size: 14px;
}

/* ─── AREAS (pure typographic) ───────────────────────────────── */
.areas { background: var(--iron); overflow: hidden; }
.areas-inner { max-width: 1280px; margin: 0 auto; }
.areas-top {
  padding: 120px 56px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.areas-top .section-tag { margin-bottom: 28px; }
.areas-mega-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 700; line-height: 0.95;
  color: var(--fog); letter-spacing: -0.02em;
}
.areas-mega-heading em { color: var(--ember); font-style: italic; }
.areas-body {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.areas-body-statement-block {
  padding: 64px 56px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 64px; align-items: center;
}
.areas-body-statement {
  font-size: 18px; font-weight: 300; line-height: 1.75;
  color: rgba(242,242,247,0.55); max-width: 520px;
}
.areas-body-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.areas-cta-btn {
  display: inline-flex; align-items: center;
  background: var(--ember); color: white; text-decoration: none;
  padding: 18px 40px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: all 0.3s; align-self: flex-start;
}
.areas-cta-btn:hover { background: var(--ember-hover); transform: translateY(-2px); }
.areas-body-right { display: none; }
.areas-coverage-line { display: flex; flex-direction: column; gap: 8px; }
.acl-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(242,242,247,0.4);
}
.acl-bar {
  height: 2px; background: rgba(255,255,255,0.08); border-radius: 1px; overflow: hidden;
}
.acl-fill {
  height: 100%; background: var(--ember); border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.16,1,0.3,1);
}
.areas-body.visible .acl-fill,
.acl-fill.animated { transform: scaleX(1); }
.areas-unsure {
  font-size: 13px; font-weight: 300;
  color: rgba(242,242,247,0.3); line-height: 1.7;
  margin-top: 8px;
}
.areas-unsure a { color: rgba(232,83,30,0.7); text-decoration: none;
  border-bottom: 1px solid rgba(232,83,30,0.25); transition: color 0.2s; }
.areas-unsure a:hover { color: var(--ember); }

/* ─── QUOTE SECTION ──────────────────────────────────────────── */
.quote-section { padding: 140px 56px; background: var(--white); }
.quote-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.quote-left .section-h2 { margin-bottom: 16px; }
.quote-left .section-desc { margin-bottom: 40px; }
/* Quote stats cards */
.quote-stats { display: flex; flex-direction: column; gap: 12px; }
.qs-card {
  position: relative; overflow: hidden;
  background: var(--off-white);
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--ember);
  padding: 28px 28px 28px 32px;
  transition: border-color 0.25s, background 0.25s;
}
.qs-card:hover {
  background: var(--white);
  border-left-color: var(--ember);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
/* Ghost number watermark */
.qs-bg-num {
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px; font-weight: 700; line-height: 1;
  color: rgba(232,83,30,0.07);
  pointer-events: none; user-select: none;
  letter-spacing: -0.02em;
}
.qs-content { position: relative; z-index: 1; }
.qs-label {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ember); margin-bottom: 6px;
}
.qs-value {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700;
  color: var(--text-pri); line-height: 1; margin-bottom: 10px;
}
.qs-sub {
  font-size: 13px; font-weight: 300; color: var(--text-sec); line-height: 1.65;
  max-width: 340px;
}
.quote-form-wrap {
  background: var(--white); border: 1px solid var(--border-lt);
  box-shadow: 0 8px 48px rgba(0,0,0,0.06);
  padding: 44px 36px; position: relative;
}
.quote-form-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--ember);
}
.form-title {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700;
  color: var(--text-pri); margin-bottom: 4px;
}
.form-subtitle { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
label {
  display: block; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
input, select, textarea {
  width: 100%; background: var(--off-white);
  border: 1px solid var(--border-lt);
  color: var(--text-pri); padding: 13px 16px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; border-radius: 0;
}
input::placeholder, textarea::placeholder { color: #AEAEB2; }
input:focus, select:focus, textarea:focus {
  border-color: var(--ember); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,83,30,0.08);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238E8E93' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  background-color: var(--off-white); padding-right: 40px; cursor: pointer;
}
select option { background: var(--white); color: var(--text-pri); }
textarea { resize: vertical; min-height: 90px; }
.upload-zone {
  border: 1.5px dashed rgba(232,83,30,0.3); padding: 24px;
  text-align: center; cursor: pointer; transition: all 0.25s;
  background: rgba(232,83,30,0.02); position: relative; border-radius: 2px;
}
.upload-zone:hover { border-color: var(--ember); background: rgba(232,83,30,0.05); }
.upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%; padding: 0; border: none;
}
.upload-icon { color: var(--ember); margin-bottom: 8px; }
.upload-text { font-size: 12px; color: var(--text-sec); line-height: 1.6; }
.upload-text strong { color: var(--text-pri); }
.upload-previews { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.upload-preview { width: 48px; height: 48px; object-fit: cover; border: 1px solid rgba(232,83,30,0.3); }
.upload-count { font-size: 10px; color: var(--ember); margin-top: 6px; }
.form-submit {
  width: 100%; background: var(--ember); border: none;
  color: var(--white); padding: 17px;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; margin-top: 4px;
}
.form-submit:hover { background: var(--ember-hover); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(232,83,30,0.3); }
.form-note { font-size: 10px; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-btn-spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: formSpin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
@keyframes formSpin { to { transform: rotate(360deg); } }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text-pri); margin-bottom: 10px; }
.form-success p { font-size: 13px; color: var(--text-sec); line-height: 1.7; }

/* ─── PHONE CTA (DARK) ───────────────────────────────────────── */
.phone-cta {
  padding: 72px 56px; background: var(--iron);
  display: flex; align-items: center; justify-content: center; gap: 56px;
}
.phone-cta-text h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 700;
  color: var(--fog); margin-bottom: 4px;
}
.phone-cta-text p { font-size: 13px; color: rgba(255,255,255,0.38); }
.phone-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(232,83,30,0.10); border: 1px solid rgba(232,83,30,0.32);
  padding: 20px 36px; text-decoration: none; transition: all 0.25s;
}
.phone-btn:hover {
  background: var(--ember); border-color: var(--ember);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,83,30,0.3);
}
.phone-btn-num {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--fog);
}
.phone-btn-label { font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); display: block; }
.phone-btn svg { color: var(--ember); flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: #0C0C0E; padding: 64px 56px 40px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.28); max-width: 280px; margin-top: 16px; }
.footer-col h5 { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.28); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--ember); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s; text-decoration: none; color: rgba(255,255,255,0.28);
}
.social-btn:hover { border-color: var(--ember); color: var(--ember); }

/* ─── FULLSCREEN GALLERY ─────────────────────────────────────── */
.gallery-overlay {
  display: none; position: fixed; inset: 0;
  background: #000; z-index: 2000; flex-direction: column;
}
.gallery-overlay.open { display: flex; }
.gallery-header {
  position: relative; z-index: 10;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,10,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.gallery-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.gallery-counter { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: rgba(255,255,255,0.38); }
.gallery-close {
  width: 40px; height: 40px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: white; transition: all 0.2s;
}
.gallery-close:hover { background: var(--ember); border-color: var(--ember); }
.gallery-main {
  flex: 1; position: relative; overflow: hidden;
  background: #090909;
  display: flex; align-items: center; justify-content: center;
  min-height: 0;
}
.gallery-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: translateX(50px);
  background: #090909;
}
.gallery-slide.active { opacity: 1; transform: translateX(0); }
.gallery-slide.prev { opacity: 0; transform: translateX(-50px); }
.gallery-slide img {
  /* Fill the slide fully, then scale down to fit — portrait photos show complete */
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.placeholder-slide {
  position: absolute; inset: 0; background: #111;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.placeholder-slide svg { color: rgba(232,83,30,0.25); }
.placeholder-slide span {
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.2);
}
.gallery-tag {
  position: absolute; top: 16px; left: 20px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 14px; z-index: 5;
}
.gallery-tag.before {
  background: rgba(0,0,0,0.65); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}
.gallery-tag.after { background: var(--ember); color: white; }
/* gallery-caption moved inside gba-slider as gba-caption */
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; color: white; transition: all 0.2s;
  backdrop-filter: blur(8px);
}
.gallery-nav:hover { background: var(--ember); border-color: var(--ember); }
.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }
.gallery-thumbs {
  display: flex; gap: 5px; padding: 12px 20px 16px;
  background: rgba(0,0,0,0.92); overflow-x: auto; scrollbar-width: none;
  justify-content: center; flex-shrink: 0;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 72px; height: 54px; border: 2px solid transparent;
  cursor: pointer; flex-shrink: 0; overflow: hidden;
  opacity: 0.45; transition: opacity 0.2s, border-color 0.2s;
  border-radius: 2px;
}
.gallery-thumb.active { border-color: var(--ember); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb .thumb-placeholder {
  width: 100%; height: 100%; background: #222;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* Gallery coming-soon placeholder */
.gallery-coming-soon {
  position: absolute; inset: 0; background: #0d0d0f;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
}
.gallery-coming-soon svg { color: rgba(232,83,30,0.2); }
.gallery-coming-soon span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* Gallery CTA bar */
.gallery-cta-bar {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  padding: 14px 24px; background: rgba(0,0,0,0.94);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.gallery-cta-bar span {
  font-size: 12px; color: rgba(255,255,255,0.42); letter-spacing: 0.06em;
}
.gallery-cta-btn {
  display: inline-flex; align-items: center;
  background: var(--ember); color: white; text-decoration: none;
  padding: 10px 24px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
}
.gallery-cta-btn:hover { background: var(--ember-hover); }

/* ─── GALLERY PROJECT SLIDE (B/A slider inside overlay) ─────── */
.gallery-project-slide {
  position: absolute; inset: 0;
  display: flex; align-items: stretch;
  background: #060608;
}
/* Gallery B/A slider — fills available space, images contained fully */
.gba-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden; cursor: col-resize; user-select: none;
  -webkit-user-select: none; background: #090909;
  clip-path: inset(0);
}
.gba-before, .gba-after {
  position: absolute; inset: 0;
}
.gba-before img, .gba-after img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  pointer-events: none; display: block;
  background: #090909;
}
.gba-after { clip-path: inset(0 0 0 50%); }
/* Gallery B/A labels — positioned relative to handle center */
.gba-label {
  position: absolute;
  bottom: 32px; /* fallback — JS overrides to image bottom */
  font-size: 8px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px; z-index: 25; pointer-events: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.before-lbl {
  /* Sits to the LEFT of center — moves with handle via JS */
  left: 50%;
  transform: translateX(calc(-100% - 28px));
  background: rgba(0,0,0,0.75); color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.22);
}
.after-lbl {
  /* Sits to the RIGHT of center */
  left: 50%;
  transform: translateX(28px);
  background: var(--ember); color: white;
}
.gba-label.hidden { opacity: 0; }
/* Caption overlays inside the slider */
.gba-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 64px 28px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 70%, transparent 100%);
  z-index: 6; pointer-events: none;
  /* bottom/left/right set by JS to match actual image area */
}
.gba-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 700; color: white;
  margin-bottom: 5px; line-height: 1.2;
}
.gba-caption-sub {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.gba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 2px; background: rgba(255,255,255,0.85);
  z-index: 20; pointer-events: none;
  will-change: left;
  /* top/bottom set by JS to match actual image area */
}
.gba-handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.6);
  pointer-events: all; cursor: col-resize;
  border: 2px solid rgba(232,83,30,0.4);
}
.gba-handle-circle svg { color: var(--ember); }
/* Hint animation for gallery slider */
.gba-slider.hint-play .gba-handle {
  animation: sliderHint 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.gba-slider.hint-play .gba-after {
  animation: sliderHintClip 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


/* ─── INTERACTIVE GTA MAP ────────────────────────────────────── */
.areas-map {
  width: 100%; max-width: 480px; display: block;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.4));
}
.map-region { cursor: pointer; }
.map-path {
  transition: fill 0.25s ease, stroke 0.25s ease;
}
.map-region:hover .map-path {
  fill: rgba(232,83,30,0.28) !important;
  stroke: rgba(232,83,30,0.7) !important;
}
.map-region:hover .map-label { fill: rgba(255,255,255,0.85) !important; }
.pulse-ring {
  animation: mapPulse 2.5s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { r: 10; opacity: 0.2; }
  50% { r: 16; opacity: 0.08; }
}



/* ─── AREAS STATEMENT (right column) ────────────────────────── */
.areas-statement {
  display: flex; flex-direction: column; justify-content: center;
}
.areas-statement-inner {}
.areas-statement-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 80px); font-weight: 700;
  color: var(--fog); line-height: 1.0; margin-bottom: 24px;
}
.areas-statement-heading em { color: var(--ember); font-style: italic; }
.areas-statement-sub {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(242,242,247,0.45); max-width: 400px; margin-bottom: 32px;
}
.areas-cities-wrap {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px;
}
.areas-city-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; font-weight: 400;
  color: rgba(242,242,247,0.38);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 4px 12px;
  transition: all 0.2s;
}
.areas-city-tag.elite {
  color: rgba(242,242,247,0.75);
  border-color: rgba(232,83,30,0.25);
}
.areas-city-tag:hover { color: var(--fog); border-color: rgba(232,83,30,0.4); }
.areas-cta {
  display: inline-flex; align-items: center;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ember); text-decoration: none;
  border-bottom: 1px solid rgba(232,83,30,0.35); padding-bottom: 2px;
  transition: color 0.2s;
}
.areas-cta:hover { color: var(--fog); }

/* ─── LEAFLET MAP ────────────────────────────────────────────── */
.leaflet-map-container {
  width: 100%; height: 440px;
  border-radius: 4px; overflow: hidden;
  filter: saturate(0.7) brightness(0.85);
}
.leaflet-ironcoat-tooltip {
  background: rgba(10,10,12,0.92) !important;
  border: 1px solid rgba(232,83,30,0.4) !important;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 11px !important;
  letter-spacing: 0.04em !important;
  padding: 5px 10px !important;
}
.leaflet-ironcoat-tooltip::before { display: none !important; }
.leaflet-control-zoom a {
  background: rgba(10,10,12,0.9) !important;
  color: rgba(255,255,255,0.6) !important;
  border-color: rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover { color: #E8531E !important; }

/* ─── SLIDER HINT ANIMATION ──────────────────────────────────── */
@keyframes sliderHint {
  0%   { left: 50%; }
  30%  { left: 32%; }
  60%  { left: 68%; }
  100% { left: 50%; }
}
@keyframes sliderHintClip {
  0%   { clip-path: inset(0 0 0 50%); }
  30%  { clip-path: inset(0 0 0 32%); }
  60%  { clip-path: inset(0 0 0 68%); }
  100% { clip-path: inset(0 0 0 50%); }
}
.ba-slider.hint-play .ba-handle {
  animation: sliderHint 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.ba-slider.hint-play .ba-slider-after {
  animation: sliderHintClip 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── RESPONSIVE (MOBILE) ────────────────────────────────────── */
@media (max-width: 900px) {
  /* Disable scroll animations on mobile for performance */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-badge, .hero-urgency, .hero-h1, .hero-sub, .hero-actions, .hero-stats { opacity: 1 !important; animation: none !important; }

  /* ── NAV ────────────────────────────────── */
  #mainNav { padding: 12px 18px; }
  #mainNav.scrolled { padding: 10px 18px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 48px !important; }
  #mainNav.scrolled .nav-logo-img { height: 44px !important; }

  /* ── HERO ───────────────────────────────── */
  .hero { grid-template-columns: 1fr; min-height: 100svh; padding-top: 0; }
  .hero-right { position: absolute !important; inset: 0; z-index: 0; }
  .hero-img-overlay { background: linear-gradient(
    to top,
    rgba(20,20,22,0.97) 0%,
    rgba(20,20,22,0.80) 40%,
    rgba(20,20,22,0.50) 70%,
    rgba(20,20,22,0.65) 100%
  ) !important; }
  .hero-left {
    position: relative; z-index: 2;
    padding: 100px 22px 40px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    justify-content: flex-end;
    min-height: 100svh;
    gap: 0;
  }
  .hero-stats-wrap { margin-top: 28px; padding-top: 20px; width: 100%; }
  .hero-badge { justify-content: center; margin-bottom: 16px; }
  .hero-badge-line { display: none; }
  .hero-h1 { font-size: clamp(38px, 10vw, 56px); line-height: 0.96; margin-bottom: 12px; }
  .hero-urgency { font-size: 9px; margin-bottom: 10px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; max-width: 100%; line-height: 1.65; }
  .hero-actions { width: 100%; }
  .btn-primary { width: 100%; justify-content: center; padding: 18px 24px; font-size: 12px; }
  .hero-stats { width: 100%; margin-top: 28px; padding-top: 20px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 8px; }

  /* ── TRUST BAR ──────────────────────────── */
  .trust-item { padding: 10px 16px; font-size: 9px; }
  .hero-trust-bar { position: relative; z-index: 2; }

  /* ── WHY IRONCOAT ───────────────────────── */
  .why-section { padding: 64px 20px; }
  .why-inner { }
  .why-header { margin-bottom: 40px; }
  .why-pillars { grid-template-columns: 1fr; gap: 2px; }
  .why-pillar { padding: 32px 24px; }
  .why-pillar-num { font-size: 52px; margin-bottom: 16px; }
  .why-pillar-title { font-size: 20px; }

  /* ── SERVICES ───────────────────────────── */
  .services { padding: 64px 20px; }
  .services-header { grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
  .services-header-right { display: none; }
  .sv-asymgrid { grid-template-columns: 1fr; height: auto; }
  .sv-stack { grid-template-rows: auto; }
  .sv-card-feature { height: 320px; }
  .sv-card-half { height: 280px; }
  .sv-title { font-size: 28px !important; }
  .sv-index { font-size: 44px !important; top: 14px; right: 14px; }
  .sv-content { padding: 24px; }
  .sv-desc { max-height: 80px !important; opacity: 1 !important; }
  .sv-eyebrow { opacity: 1 !important; transform: none !important; }
  .sv-cta { opacity: 1 !important; transform: none !important; }

  /* ── PROCESS (HOW IT WORKS) ─────────────── */
  .process-header-wrap { padding: 64px 20px 40px; }
  .process-h2 { font-size: clamp(32px, 8vw, 48px); }
  .pstep { grid-template-columns: 1fr; min-height: auto; }
  .pstep-img { height: 260px; order: 0 !important; }
  .pstep-content { order: 1 !important; padding: 32px 20px; }
  .pstep-img-num { font-size: 72px; bottom: 12px; right: 12px; }
  .pstep-title { font-size: 26px; }
  .pstep-desc { font-size: 14px; max-width: 100%; }
  .pstep-detail { gap: 8px; }
  .pstep-detail-item { font-size: 12px; }

  /* ── PROMISE ────────────────────────────── */
  .promise { overflow: hidden; }
  .promise-layout { grid-template-columns: 1fr; }
  .promise-text { padding: 48px 20px 24px; }
  .promise h2 { font-size: clamp(24px, 7vw, 40px); }
  .promise p { font-size: 14px; }
  .promise-badge-wrap { padding: 0 20px 48px; justify-content: center; }
  .promise-badge { width: 200px; height: 200px; }
  .promise-badge-inner { width: 130px; height: 130px; }
  .promise-badge-inner .promise-badge-num { font-size: 56px; }
  .promise-features { gap: 8px; }
  .pf-item { font-size: 12px; }

  /* ── TESTIMONIALS ───────────────────────── */
  .testimonials { padding: 64px 20px; }
  .testi-text { font-size: 17px; line-height: 1.6; }
  .testi-card { padding: 28px 20px; }

  /* ── AREAS ──────────────────────────────── */
  .areas-top { padding: 64px 20px 40px; }
  .areas-mega-heading { font-size: clamp(42px, 11vw, 72px); line-height: 0.95; }
  .areas-body-statement-block { grid-template-columns: 1fr; gap: 24px; padding: 32px 20px; }
  .areas-body-statement { font-size: 15px; max-width: 100%; }
  .areas-cta-btn { width: 100%; justify-content: center; padding: 16px 24px; }

  /* ── QUOTE FORM ─────────────────────────── */
  .quote-section { padding: 64px 20px; }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  .quote-left .section-h2 { font-size: clamp(32px, 8vw, 48px); }
  .quote-form-wrap { padding: 28px 20px; }
  .quote-stats { gap: 8px; }
  .qs-card { padding: 22px 22px 22px 26px; }
  .qs-value { font-size: 26px; }
  .qs-bg-num { font-size: 56px; }
  .qs-sub { font-size: 12px; }
  .form-title { font-size: 22px; }

  /* ── GALLERY ────────────────────────────── */
  .gallery-nav.prev { left: 8px; }
  .gallery-nav.next { right: 8px; }
  .gallery-nav { width: 40px; height: 40px; }
  .gallery-thumbs { padding: 8px 12px 12px; }
  .gallery-thumb { width: 56px; height: 42px; }
  .gba-handle-circle { width: 36px; height: 36px; }
  .gba-label { font-size: 8px; padding: 3px 8px; }
  .gba-caption-title { font-size: 16px; }

  /* ── PHONE CTA ──────────────────────────── */
  .phone-cta { padding: 48px 20px; flex-direction: column; gap: 20px; text-align: center; }
  .phone-cta-text h3 { font-size: 24px; }
  .phone-btn { padding: 16px 28px; }
  .phone-btn-num { font-size: 22px; }

  /* ── FOOTER ─────────────────────────────── */
  footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-brand p { font-size: 12px; }
}


@media (max-width: 380px) {
  .hero-h1 { font-size: 42px; }
  .ba-slider { height: 200px; }
}
