/* ============================================
   AAA Supercoat Sealcoating — Premium Website
   Complete Rewrite — Agency-Level Presentation
   ============================================ */

:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-tertiary: #1A1A1A;
  --bg-card: #141414;
  --accent: #C9A84C;
  --accent-light: #DFC06A;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --accent-glow: rgba(201, 168, 76, 0.08);
  --text-primary: #E8E4DC;
  --text-heading: #FFFFFF;
  --text-muted: #6B6B6B;
  --text-body: #A0A0A0;
  --success: #2E7D32;
  --danger: #C62828;
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--text-body); background: var(--bg-primary); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-light); }
::selection { background: var(--accent); color: var(--bg-primary); }

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  z-index: 200;
  transition: width 0.1s linear;
}

/* --- Film Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- Section Crossfade Transitions --- */
/* Gradient blending between ALL sections — eliminates template blocking */
.reviews::before,
.contact::before,
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  pointer-events: none;
  z-index: 1;
}
.reviews, .contact, .footer { position: relative; }
.faq::before,
.service-area::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
  pointer-events: none;
  z-index: 1;
}
.faq, .service-area { position: relative; }
/* Subtle fade between same-bg sections */
.showcase::before,
.why-us::before,
.process::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.8), transparent);
  pointer-events: none;
  z-index: 1;
}
.showcase, .process { position: relative; }

/* --- Layout --- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 48px; } }
@media (min-width: 1200px) { .container { padding: 0 64px; } }
.container--wide { max-width: 1440px; }
.container--narrow { max-width: 720px; }
.full-bleed { width: 100%; padding: 0; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-heading); line-height: 1.05; }
.overline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.overline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* Centered overline variant */
.overline--center {
  justify-content: center;
}
.overline--center::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-quart);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn:hover::after { transform: translateX(100%); }

.btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
  border-color: var(--accent);
}
/* Auto-shimmer on primary buttons */
@keyframes btnShimmer {
  0% { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(200%) skewX(-15deg); }
}
.btn-primary::after {
  animation: btnShimmer 4s ease-in-out infinite;
  animation-delay: 2s;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--text-heading);
  border-color: rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.btn-lg { padding: 20px 48px; font-size: 15px; }
@media (max-width: 767px) {
  .btn-block-mobile { width: 100%; }
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger */
[data-stagger] > *:nth-child(1) { transition-delay: 0ms; }
[data-stagger] > *:nth-child(2) { transition-delay: 80ms; }
[data-stagger] > *:nth-child(3) { transition-delay: 160ms; }
[data-stagger] > *:nth-child(4) { transition-delay: 240ms; }
[data-stagger] > *:nth-child(5) { transition-delay: 320ms; }
[data-stagger] > *:nth-child(6) { transition-delay: 400ms; }
[data-stagger] > *:nth-child(7) { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   FLOATING NAV — No traditional header
   ============================================ */
.float-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 64px;
  padding: 0 32px;
  background: rgba(20,20,20,0.96);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: all 0.5s var(--ease-out-quart);
}
@media (min-width: 768px) { .float-nav { padding: 0 48px; } }
.float-nav.scrolled {
  height: 52px;
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
@media (min-width: 768px) { .float-nav.scrolled { padding: 0 48px; } }

.float-nav__logo {
  position: absolute;
  left: 24px;
  top: 50%;
  width: auto;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-heading);
}
@media (min-width: 768px) { .float-nav__logo { left: 48px; } }
.float-nav__logo:hover { opacity: 0.85; }

.brand-logo {
  display: block;
  width: auto;
  height: 48px;
  height: auto;
  max-height: 48px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 34px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--bg-primary);
  background: var(--accent);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
}
.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1;
}
.brand-copy strong {
  color: var(--text-heading);
  font-size: 18px;
  letter-spacing: 1px;
}
.brand-copy small {
  color: var(--accent-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

.float-nav__right { display: flex; align-items: center; gap: 20px; }

.float-nav__call {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-heading);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.float-nav__call:hover { color: var(--accent); }
.float-nav__call svg { color: var(--accent); }
.float-nav__call-text { display: none; }
@media (min-width: 600px) { .float-nav__call-text { display: inline; } }

/* Mobile hero buttons stack */
@media (max-width: 599px) {
  .hero__buttons { flex-direction: column; gap: 12px; width: 100%; padding: 0 16px; }
  .hero__buttons .btn { width: 100%; }
  .hero__title { font-size: 36px; }
  .hero__badge { font-size: 9px; letter-spacing: 2px; padding: 6px 16px; }
  .hero__content { padding-top: 60px; }
  /* Services mobile — handled by base styles now */
  /* More space below nav for hero */
  .hero__content { padding-top: 70px; margin-top: 50px; }
  .hero { min-height: 100vh; }
  .float-nav { height: 50px; padding: 0 12px; }
  .float-nav__logo { left: 12px; gap: 8px; }
  .brand-logo { max-height: 38px; }
  .brand-mark { width: 44px; height: 30px; font-size: 18px; }
  .brand-copy strong { font-size: 14px; }
  .brand-copy small { font-size: 9px; letter-spacing: 1.5px; }
  .stats__inner { padding: 24px 16px; gap: 16px; }
  .stat__number { font-size: 28px; }
  .stat__label { font-size: 9px; letter-spacing: 1px; }
  .ba-slider__label { font-size: 9px; padding: 4px 10px; }
  .why-us__badge { width: 80px; height: 80px; bottom: -12px; right: 12px; }
  .why-us__badge-number { font-size: 24px; }
  .why-us__badge-text { font-size: 8px; }
}

@media (max-width: 420px) {
  .float-nav__right { gap: 10px; }
  .float-nav__call { display: none; }
  .float-nav__menu { width: 44px; height: 44px; }
  .brand-logo { max-height: 34px; }
  .brand-mark { width: 42px; }
  .brand-copy strong { font-size: 13px; }
  .brand-copy small { font-size: 8px; }
}

/* Menu trigger — circle with lines */
.float-nav__menu {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.float-nav__menu:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--accent-dim);
  transform: scale(1.05);
}
.float-nav__menu span {
  display: block;
  height: 1.5px;
  background: var(--text-heading);
  transition: all 0.4s var(--ease-out-expo);
  transform-origin: center;
}
.float-nav__menu span:nth-child(1) { width: 18px; }
.float-nav__menu span:nth-child(2) { width: 14px; }
.float-nav__menu span:nth-child(3) { width: 18px; }
.float-nav__menu.active span:nth-child(1) { width: 18px; transform: translateY(6.5px) rotate(45deg); }
.float-nav__menu.active span:nth-child(2) { opacity: 0; width: 0; }
.float-nav__menu.active span:nth-child(3) { width: 18px; transform: translateY(-6.5px) rotate(-45deg); }

/* Full-screen nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}
.nav-overlay.open { opacity: 1; pointer-events: auto; }
.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
.nav-overlay__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 4px;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s, opacity 0.3s;
  display: flex;
  align-items: baseline;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}
.nav-overlay.open .nav-overlay__link {
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s, transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo);
}
.nav-overlay.open .nav-overlay__link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay.open .nav-overlay__link:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay.open .nav-overlay__link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay.open .nav-overlay__link:nth-child(4) { transition-delay: 0.2s; }
.nav-overlay.open .nav-overlay__link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay.open .nav-overlay__link:nth-child(6) { transition-delay: 0.3s; }
.nav-overlay__link:hover {
  color: var(--accent);
  transform: translateX(8px);
}
.nav-overlay__num {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  opacity: 0.5;
}
.nav-overlay__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.nav-overlay__contact p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video-wrap video,
.hero__video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__video-wrap video + .hero__fallback {
  display: none;
}
.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center bottom, rgba(201,168,76,0.04) 0%, transparent 60%),
    linear-gradient(to top, var(--bg-primary) 0%, rgba(10,10,10,0.75) 25%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.45) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px 20px;
}

.hero__crest {
  margin-bottom: 20px;
  opacity: 0; transform: translateY(20px) scale(0.9);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  animation-delay: 0.1s;
}
.hero__crest-img {
  height: 100px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 60px rgba(201,168,76,0.08);
}
@media (max-width: 767px) { .hero__crest-img { height: 80px; } }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  background: rgba(10,10,10,0.4);
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  animation-delay: 0.2s;
}

.hero__title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -1px;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  animation-delay: 0.4s;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__title em::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: baseline;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 auto 28px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  animation-delay: 0.6s;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: min(100%, 520px);
  margin: 0 auto;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  animation-delay: 0.8s;
}
.hero__buttons .btn {
  width: 100%;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) forwards;
  animation-delay: 1.2s;
}
.hero__scroll span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge, .hero__title, .hero__subtitle, .hero__buttons, .hero__scroll { opacity: 1; transform: none; animation: none; }
  .hero__scroll-line::after { animation: none; }
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats {
  position: relative;
  z-index: 2;
  margin-top: -40px;
}
.stats__inner {
  background: var(--bg-secondary);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .stats__inner {
    grid-template-columns: repeat(4, 1fr);
    padding: 48px;
    gap: 0;
  }
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,0.06);
  }
}
.stat__icon { color: var(--accent); margin-bottom: 12px; opacity: 0.7; }
.stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--text-heading);
  line-height: 1;
  margin-bottom: 4px;
}
@media (min-width: 768px) { .stat__number { font-size: 48px; } }
.stat__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   HORIZONTAL IMAGE REEL — auto-scrolling filmstrip
   ============================================ */
.image-reel {
  overflow: hidden;
  padding: 0;
  position: relative;
}
.image-reel__track {
  display: flex;
  gap: 4px;
  animation: scrollReel 30s linear infinite;
  width: max-content;
}
.image-reel__track:hover { animation-play-state: paused; }
.image-reel__item {
  flex-shrink: 0;
  width: 350px;
  height: 240px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .image-reel__item { width: 420px; height: 280px; }
}
.image-reel__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.image-reel__item:hover img { transform: scale(1.05); }
@keyframes scrollReel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   WHY SEALCOATING — Educational section with stats
   ============================================ */
.why-seal {
  padding: 72px 0;
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}
.why-seal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(201,168,76,0.03) 0%, transparent 50%),
    linear-gradient(180deg, rgba(17,17,17,0.5) 0%, transparent 30%, transparent 70%, rgba(17,17,17,0.5) 100%);
  pointer-events: none;
}
.why-seal > .container { position: relative; z-index: 1; }
.why-seal__header {
  margin-bottom: 64px;
}
.why-seal__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.why-seal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .why-seal__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
}
.why-seal__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.seal-stat {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-quart);
}
.seal-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}
.seal-stat::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.seal-stat:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.seal-stat__number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 44px);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.seal-stat__label {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.4;
  font-weight: 500;
}
.why-seal__content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.why-seal__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* ============================================
   SERVICE AREA
   ============================================ */
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
}
.lightbox.active img { transform: scale(1); }

.service-area {
  padding: 80px 0;
  background: var(--bg-primary);
}
.service-area__header {
  text-align: center;
  margin-bottom: 48px;
}
.service-area__header h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
}
.service-area__towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.service-area__town {
  padding: 10px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.service-area__town:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
}
.service-area__note {
  text-align: center;
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}
.service-area__map {
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ============================================
   SERVICES — Bento-style asymmetric layout
   ============================================ */
.services {
  padding: 48px 0 56px;
}
.services__header {
  margin-bottom: 20px;
}
.services__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}
@media (min-width: 1100px) {
  .services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 6px;
  }
}

.service-card {
  background: var(--bg-card);
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-quart);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card__desc { display: none; }
.service-card__icon { width: 18px; height: 18px; margin: 0; background: none; border-radius: 0; }
.service-card__icon svg { width: 16px; height: 16px; }
.service-card__title { font-size: 13px; margin: 0; white-space: nowrap; }
@media (min-width: 768px) {
  .service-card {
    padding: 48px 36px;
    border-radius: 0;
    border: none;
    border-top: 3px solid rgba(201,168,76,0.15);
    display: block;
  }
  .service-card__desc { display: block; }
  .service-card__icon { width: 52px; height: 52px; margin-bottom: 20px; background: rgba(201,168,76,0.06); border-radius: 12px; }
  .service-card__icon svg { width: 28px; height: 28px; }
  .service-card__title { font-size: 20px; margin-bottom: 10px; white-space: normal; }
}
/* Desktop-only card effects */
@media (min-width: 768px) {
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
  }
  .service-card:hover {
    background: var(--bg-tertiary);
    border-top-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 20px rgba(201,168,76,0.06);
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    top: var(--glow-y, 50%);
    left: var(--glow-x, 50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
  }
  .service-card:hover::after { opacity: 1; }
  .service-card:hover .service-card__icon {
    opacity: 1;
    background: rgba(201,168,76,0.12);
    transform: scale(1.1);
  }
}

/* ============================================
   PARALLAX DIVIDER
   ============================================ */
.parallax-break {
  height: 50vh;
  min-height: 360px;
  max-height: 500px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-break__img {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 767px) {
  .parallax-break__img { background-attachment: scroll; inset: 0; }
}
.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg-primary) 0%, transparent 15%, transparent 85%, var(--bg-primary) 100%),
    rgba(10,10,10,0.6);
}
.parallax-break__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}
.parallax-break__content h3,
.parallax-break__split h3 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}
.parallax-break__split {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .parallax-break__split {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .parallax-break__split h3 { text-align: left; }
}
.parallax-break__left { flex: 1; }
.parallax-break__right { flex: 1; }
.parallax-break__trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.parallax-break__trust-item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.parallax-break__trust-num {
  display: block;
  font-size: 14px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.parallax-break__trust-label {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.parallax-break__big-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.parallax-break__big-stat {
  text-align: left;
}
@media (max-width: 767px) { .parallax-break__big-stat { text-align: center; } }
.parallax-break__big-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -1px;
}
.parallax-break__big-label {
  display: block;
  font-size: 16px;
  color: var(--text-body);
  margin-top: 6px;
  letter-spacing: 1px;
}

.parallax-break__contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.parallax-break__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: var(--text-primary);
  font-weight: 500;
}
.parallax-break__info-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.parallax-break__scope {
  font-size: 15px;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}
.parallax-break__content p {
  font-size: 18px;
  color: var(--text-body);
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   GALLERY — Full bleed, no container
   ============================================ */
.gallery {
  padding: 64px 0 0;
  background: var(--bg-secondary);
}
.gallery__header {
  margin-bottom: 32px;
  text-align: center;
  padding: 0 24px;
}
.gallery__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
  }
}
@media (min-width: 1100px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 360px;
  }
}
.gallery__item--span2 { grid-column: span 1; }
@media (min-width: 768px) { .gallery__item--span2 { grid-column: span 2; } }

.gallery__item {
  position: relative;
  overflow: hidden;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out-expo);
}
.gallery__item:hover img { transform: scale(1.1); filter: brightness(0.45); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__caption {
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out-expo), opacity 0.4s ease;
  opacity: 0;
}
.gallery__item:hover .gallery__caption { transform: translateY(0); opacity: 1; }
.gallery__tag {
  transform: translateY(10px);
  transition: transform 0.3s var(--ease-out-expo) 0.05s, opacity 0.3s ease 0.05s;
  opacity: 0;
}
.gallery__item:hover .gallery__tag { transform: translateY(0); opacity: 1; }
.gallery__tag {
  display: inline-block;
  width: fit-content;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery__caption {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}

/* ============================================
   BEFORE/AFTER — Mouse-following reveal
   ============================================ */
.showcase {
  padding: 80px 0;
  background: var(--bg-primary);
}
.showcase__header {
  text-align: center;
  margin-bottom: 48px;
}
.showcase__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.showcase__subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}
.showcase__feature {
  max-width: 900px;
  margin: 0 auto;
}
.showcase__caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* Custom before/after slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  border-radius: 8px;
}
.ba-slider__after {
  display: block;
}
.ba-slider__after img {
  width: 100%;
  height: auto;
  display: block;
}
.ba-slider__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}
.ba-slider__before img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: none;
}
.ba-slider__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  z-index: 3;
  box-shadow: 0 0 12px rgba(201,168,76,0.4);
  pointer-events: none;
}
.ba-slider__line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-slider__line::after {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--bg-primary);
  font-size: 18px;
  font-weight: 700;
  z-index: 4;
}
.ba-slider__label {
  position: absolute;
  top: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
}
.ba-slider__label--before {
  left: 20px;
  background: var(--danger);
  color: white;
}
.ba-slider__label--after {
  right: 20px;
  background: var(--success);
  color: white;
}

/* ============================================
   WHY US — Split Layout
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}
.why-us::before {
  content: '40+';
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(200px, 25vw, 400px);
  color: rgba(255,255,255,0.015);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.why-us > .container { position: relative; z-index: 1; }
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1100px) {
  .why-us__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.why-us__image-wrap { position: relative; }
.why-us__image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.why-us__image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease-out-expo);
}
.why-us__image:hover img { transform: scale(1.03); }

/* Gold corner accents */
.why-us__image::before,
.why-us__image::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--accent);
  z-index: 2;
  pointer-events: none;
}
.why-us__image::before { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.why-us__image::after { bottom: 16px; right: 16px; border-left: none; border-top: none; }

/* Owner inset photo */
.why-us__image-inset {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 170px;
  height: 170px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid rgba(201,168,76,0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 3;
}
.why-us__image-inset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1099px) {
  .why-us__image-inset { width: 130px; height: 130px; bottom: -20px; left: -10px; }
}

/* Experience badge */
.why-us__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(201,168,76,0.3);
  z-index: 3;
}
@media (max-width: 1099px) {
  .why-us__badge { bottom: -16px; right: 16px; width: 100px; height: 100px; }
}
.why-us__badge-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--bg-primary);
  line-height: 1;
}
.why-us__badge-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--bg-primary);
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-us__content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 24px;
}
.why-us__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  gap: 16px;
}
.check-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.4;
}
.check-list__icon { flex-shrink: 0; color: var(--accent); margin-top: 2px; }

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 56px 0;
  background: var(--bg-primary);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.process__header {
  text-align: center;
  margin-bottom: 48px;
}
.process__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); gap: 0; }
}
.process-step {
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.process-step__num {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 20px rgba(201,168,76,0.08), inset 0 0 20px rgba(201,168,76,0.03);
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .process-step__num {
  background: var(--accent);
  color: var(--bg-primary);
  box-shadow: 0 0 32px rgba(201,168,76,0.3);
}
.process-step.visible .process-step__num {
  animation: numPulse 2s ease 0.5s 1;
}
@keyframes numPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 24px rgba(201,168,76,0.3); }
}
/* Connector line */
@media (min-width: 900px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(50% + 44px);
    width: calc(100% - 88px);
    height: 1px;
    background: linear-gradient(to right, var(--accent), var(--accent-dim));
  }
}
.process-step__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-heading);
  margin-bottom: 12px;
}
.process-step__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}
.process-step__desc a { color: var(--accent); font-weight: 600; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 56px 0;
  background: var(--bg-secondary);
}
.reviews__header {
  text-align: center;
  margin-bottom: 40px;
}
.reviews__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 768px) { .reviews__grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.04);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.4s var(--ease-out-quart);
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.review-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.1;
  position: absolute;
  top: 8px;
  left: 20px;
}
.review-card__stars { display: flex; gap: 2px; color: var(--accent); }
.review-card__quote { font-size: 15px; line-height: 1.7; color: var(--text-primary); font-style: normal; }
.review-card__quote--featured { font-size: 17px; }
.review-card__author { font-size: 13px; font-weight: 600; color: var(--text-muted); margin-top: auto; }
/* CTA review card */
.review-card--cta {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.03));
  border-color: rgba(201,168,76,0.2);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.review-card--cta::before { display: none; }
.review-card__cta-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 20px;
}
.review-card__cta-content { padding: 12px 0; }
.review-card__source {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.reviews__cta { text-align: center; margin-top: 48px; }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: 56px 0;
  background: var(--bg-primary);
}
.faq__header {
  text-align: center;
  margin-bottom: 40px;
}
.faq__header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
}
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: all 0.2s;
}
.faq-item__trigger:hover { padding-left: 12px; }
.faq-item { position: relative; }
.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.3s var(--ease-out-expo);
}
.faq-item:hover::before, .faq-item.open::before { transform: scaleY(1); }
.faq-item__question {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-heading);
  transition: color 0.2s;
}
@media (min-width: 768px) { .faq-item__question { font-size: 20px; } }
.faq-item__trigger:hover .faq-item__question { color: var(--accent); }
.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  transition: all 0.3s;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--accent-dim); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-quart), padding 0.5s var(--ease-out-quart);
}
.faq-item.open .faq-item__answer { max-height: 300px; padding-bottom: 24px; }
.faq-item__answer p { font-size: 15px; line-height: 1.8; color: var(--text-muted); padding-right: 48px; }
.faq-item__answer a { color: var(--accent); font-weight: 600; }

/* ============================================
   CONTACT / LEAD FORM
   ============================================ */
.contact {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
@media (min-width: 900px) {
  .contact__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.contact__info h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  margin-bottom: 20px;
}
.contact__info-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
}
.contact__details { display: flex; flex-direction: column; gap: 20px; }
.contact__detail {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 15px;
  color: var(--text-primary);
}
.contact__detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact__detail:hover .contact__detail-icon {
  background: var(--accent);
  color: var(--bg-primary);
  transform: scale(1.1);
}
.contact__detail a { color: var(--text-primary); font-weight: 600; }
.contact__detail a:hover { color: var(--accent); }

.contact__form-wrap {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  border-radius: 8px;
}
.contact__form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-honeypot { display: none; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-primary);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color 0.3s;
  outline: none;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  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='%23C9A84C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08), 0 4px 12px rgba(0,0,0,0.2);
  background: rgba(201,168,76,0.02);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-submit {
  width: 100%;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}
.form-submit:active {
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 64px 0 24px;
  background: var(--bg-secondary);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; } }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--text-heading);
}
.footer__brand .brand-mark {
  width: 58px;
  height: 38px;
  font-size: 24px;
}
.footer__brand .brand-copy strong { font-size: 20px; }
.brand-logo--footer {
  width: 200px;
  height: auto;
  max-height: none;
}
.footer__logo:hover { opacity: 0.8; }
.footer__tagline { font-size: 14px; color: var(--text-body); margin-bottom: 8px; }
.footer__legacy { font-size: 13px; color: var(--text-muted); font-style: italic; }
.footer__heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__list a, .footer__list span { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer__list a:hover { color: var(--accent); }
.footer__list--areas { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px; }
.footer__list--areas li { font-size: 13px; color: var(--text-muted); }
.footer__areas-note { font-size: 12px; color: var(--text-muted); font-style: italic; margin-top: 8px; }
.footer__list--contact li { display: flex; align-items: center; gap: 10px; }
.footer__list--contact svg { color: var(--accent); flex-shrink: 0; opacity: 0.6; }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.03);
  text-align: center;
}
@media (min-width: 768px) { .footer__bottom { flex-direction: row; justify-content: space-between; } }
.footer__bottom p, .footer__bottom a { font-size: 12px; color: var(--text-muted); text-decoration: none; }
.footer__bottom a:hover { color: var(--accent); }

/* ============================================
   MOBILE BOTTOM CTA
   ============================================ */
.mobile-cta { display: none; }
@media (max-width: 767px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 98;
    padding: 10px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    background: var(--bg-primary);
    border-top: 1px solid var(--accent-dim);
    transform: translateY(100%);
    transition: transform 0.3s;
  }
  .mobile-cta.visible { transform: translateY(0); }
  .mobile-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
  }
}
