/* ============================================
   Alpha & Omega Bathroom Refinishing
   Design tokens
   ============================================ */
:root {
  --navy: #13233f;
  --navy-2: #1c3258;
  --navy-3: #0d1a30;
  --gold: #b8925a;
  --gold-light: #d9b98a;
  --cream: #faf7f1;
  --cream-2: #f2ede2;
  --white: #ffffff;
  --ink: #1c1f26;
  --ink-soft: #4a4f5a;
  --gray: #6f7480;
  --border: #e6e0d3;
  --success: #3f7a5c;

  --font: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 10px rgba(19, 35, 63, 0.06);
  --shadow-md: 0 12px 32px rgba(19, 35, 63, 0.10);
  --shadow-lg: 0 24px 60px rgba(19, 35, 63, 0.16);

  --container: 1200px;
  --nav-h: 92px;
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

section { position: relative; }

/* ============================================
   Typography
   ============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

h1, .h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h2, .h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
}
h3, .h3 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 450;
}
p { line-height: 1.7; color: var(--ink-soft); }

.section-head {
  max-width: 640px;
  margin: 0 0 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-3);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

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

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(19,35,63,0.06);
  height: 82px;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-badge {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(184,146,90,0.55), var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 800; font-size: 15px; letter-spacing: 0.01em; color: var(--navy); }
.site-header:not(.scrolled) .brand-name { color: var(--white); }
.brand-sub { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.brand-verse {
  font-size: 10.5px;
  font-style: italic;
  font-weight: 500;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
  max-width: 260px;
  line-height: 1.3;
}
.site-header.scrolled .brand-verse { color: var(--gray); }
@media (max-width: 480px) { .brand-verse { display: none; } }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 34px; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s ease;
  position: relative;
}
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.main-nav a:hover { color: var(--gold); }

.header-cta { display: none; align-items: center; gap: 14px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
}
.site-header.scrolled .header-phone { color: var(--navy); }
.header-phone svg { width: 18px; height: 18px; color: var(--gold); }

@media (min-width: 1000px) {
  .main-nav { display: block; }
  .header-cta { display: flex; }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.14);
  border: none;
  flex: none;
}
.site-header.scrolled .nav-toggle { background: rgba(19,35,63,0.08); }
.nav-toggle svg { width: 20px; height: 20px; color: var(--white); }
.site-header.scrolled .nav-toggle svg { color: var(--navy); }

@media (min-width: 1000px) { .nav-toggle { display: none; } }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy-3);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.16,.84,.44,1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 48px; }
.mobile-menu-close {
  width: 44px; height: 44px; border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1); border: none; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close svg { width: 20px; height: 20px; color: var(--white); }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 6px; }
.mobile-menu nav a {
  display: block;
  padding: 16px 4px;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-footer { margin-top: auto; display: flex; flex-direction: column; gap: 14px; padding-top: 24px; }
.mobile-menu-footer .btn { width: 100%; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 100px;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,26,48,0.72) 0%, rgba(13,26,48,0.58) 40%, rgba(13,26,48,0.88) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px 9px 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #5fd68a; box-shadow: 0 0 0 4px rgba(95,214,138,0.2); }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--gold-light); }
.hero .lead { color: rgba(255,255,255,0.82); margin-top: 22px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 560px;
}
.hero-stat-num { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.hero-stat-label { font-size: 12.5px; color: rgba(255,255,255,0.68); margin-top: 4px; font-weight: 600; letter-spacing: 0.02em; }

@media (max-width: 999px) {
  .hero { padding-bottom: 130px; }
  .hero-stats { margin-top: 28px; padding-top: 18px; gap: 12px; }
  .hero-actions { margin-top: 26px; }
  .hero .lead { margin-top: 16px; }
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.scroll-cue .line { width: 1px; height: 28px; background: linear-gradient(rgba(255,255,255,0.9), transparent); animation: scrollcue 1.8s ease-in-out infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: scaleY(0.3); transform-origin: top;} 40% {opacity: 1; transform: scaleY(1); transform-origin: top;} 100% {opacity:0; transform: scaleY(1); transform-origin: bottom;} }
@media (min-width: 700px) { .scroll-cue { display: flex; } }

/* ============================================
   Marquee strip (service area ticker)
   ============================================ */
.area-strip {
  background: var(--navy-3);
  overflow: hidden;
  padding: 16px 0;
}
.area-strip .track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: marquee 90s linear infinite;
}
.area-strip .track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.area-strip .track span::after { content: "\2726"; color: var(--gold); font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   Services
   ============================================ */
.services { padding: 120px 0; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--gold-light); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 15px; }

/* ============================================
   Process
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--navy-3);
  color: var(--white);
  position: relative;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(184,146,90,0.14), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(184,146,90,0.10), transparent 45%);
  pointer-events: none;
}
.process .section-head h2, .process .eyebrow { color: var(--white); }
.process .section-head .lead { color: rgba(255,255,255,0.68); }
.process .eyebrow { color: var(--gold-light); }
.process .eyebrow::before { background: var(--gold-light); }

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: step;
}
@media (min-width: 900px) { .process-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 34px 30px;
  counter-increment: step;
}
.process-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-3);
  background: var(--gold-light);
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.process-step h3 { color: var(--white); margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 15px; }

.process-cta {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.process-cta p { color: rgba(255,255,255,0.6); font-size: 14px; margin: 0; }

/* ============================================
   Gallery
   ============================================ */
.gallery { padding: 120px 0; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--ink-soft);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1000px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--cream-2);
  border: none;
  padding: 0;
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .tag {
  position: absolute;
  left: 10px; bottom: 10px;
  background: rgba(13,26,48,0.72);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}
.gallery-item .expand {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.25s ease;
}
.gallery-item .expand svg { width: 15px; height: 15px; color: var(--navy); }
.gallery-item:hover .expand { opacity: 1; transform: translateY(0); }

.gallery-more { text-align: center; margin-top: 40px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10,16,28,0.94);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(94vw, 1000px); max-height: 84vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); }
@media (min-width: 700px) { .lightbox-prev { left: 32px; } .lightbox-next { right: 32px; } }
.lightbox-caption {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.75); font-size: 13px; font-weight: 600;
}

/* ============================================
   Trust / Why us
   ============================================ */
.trust { padding: 120px 0; background: var(--cream-2); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
@media (min-width: 960px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.trust-points { display: flex; flex-direction: column; gap: 26px; margin-top: 8px; }
.trust-point { display: flex; gap: 18px; }
.trust-point-icon {
  flex: none; width: 46px; height: 46px; border-radius: 14px;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.trust-point-icon svg { width: 22px; height: 22px; color: var(--gold); }
.trust-point h3 { font-size: 17px; margin-bottom: 6px; }
.trust-point p { font-size: 14.5px; }

.trust-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.trust-visual img, .trust-visual video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; display: block; background: var(--navy-3); }
.trust-badge-card {
  position: absolute;
  left: 20px; bottom: 20px; right: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex; align-items: center; gap: 16px;
}
.trust-badge-card .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex: none;
}
.trust-badge-card strong { display: block; color: var(--navy); font-size: 14.5px; }
.trust-badge-card span { font-size: 12.5px; color: var(--gray); }

/* ============================================
   Service Area
   ============================================ */
.area { padding: 120px 0; }
.area-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 960px) { .area-grid { grid-template-columns: 0.9fr 1.1fr; align-items: center; } }

.area-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
@media (min-width: 480px) { .area-list { grid-template-columns: repeat(2, 1fr); } }
.area-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.area-chip svg { width: 16px; height: 16px; color: var(--gold); flex: none; }

.area-map-card {
  background: var(--navy-3);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.area-map-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(184,146,90,0.22), transparent 55%);
}
.fl-map {
  position: absolute;
  inset: 20px 20px 100px;
  width: calc(100% - 40px);
  height: calc(100% - 120px);
}
.fl-outline {
  fill: rgba(255,255,255,0.06);
  stroke: rgba(217,185,138,0.5);
  stroke-width: 0.6;
  stroke-linejoin: round;
}
.fl-halo { fill: rgba(184,146,90,0.22); }
.fl-pin { fill: var(--gold-light); }
.fl-pin-outlier { fill: var(--white); stroke: var(--gold-light); stroke-width: 0.4; }
.fl-pin-major circle:not(.fl-pulse) { fill: var(--gold-light); }
.fl-pulse {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 0.5;
  opacity: 0.7;
  transform-box: fill-box;
  transform-origin: center;
  animation: pinpulse 2.4s ease-out infinite;
}
@keyframes pinpulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.2); opacity: 0; }
}
.fl-label {
  fill: rgba(255,255,255,0.82);
  font-size: 3.3px;
  font-weight: 700;
  font-family: var(--font);
}
.area-map-card h3 { color: var(--white); position: relative; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(9,17,32,0.7); }
.area-map-card p { color: rgba(255,255,255,0.6); position: relative; font-size: 14.5px; max-width: 340px; text-shadow: 0 2px 10px rgba(9,17,32,0.7); }

/* ============================================
   CTA / Quote section
   ============================================ */
.quote {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,90,0.18), transparent 68%);
  top: -220px; right: -180px;
}
.quote-grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 980px) { .quote-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start; } }

.quote .section-head { margin-bottom: 28px; }
.quote .eyebrow { color: var(--gold-light); }
.quote .eyebrow::before { background: var(--gold-light); }
.quote h2 { color: var(--white); }
.quote .lead { color: rgba(255,255,255,0.7); }

.quote-options { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.quote-option {
  display: flex; align-items: center; gap: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.quote-option:hover { background: rgba(255,255,255,0.09); transform: translateX(4px); }
.quote-option-icon {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex; align-items: center; justify-content: center;
}
.quote-option-icon svg { width: 22px; height: 22px; color: var(--navy-3); }
.quote-option strong { display: block; font-size: 15.5px; margin-bottom: 3px; }
.quote-option span { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.quote-option .arrow { margin-left: auto; width: 18px; height: 18px; color: rgba(255,255,255,0.4); flex: none; }

/* Form card */
.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.quote-form-card h3 { margin-bottom: 6px; }
.quote-form-card > p { font-size: 14px; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 520px) { .form-row.two { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 100px; }

.form-note { font-size: 12.5px; color: var(--gray); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #eef7f1;
  border: 1px solid #cfe8da;
  color: var(--success);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 18px;
}
.form-success.show { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }

/* ============================================
   FAQ
   ============================================ */
.faq { padding: 120px 0; }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: none; border: none;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}
.faq-q .plus {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--navy);
  transition: transform 0.3s ease;
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--gold); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::after { transform: scaleY(0); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--navy-3); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a-inner { padding: 0 26px 24px; font-size: 14.5px; }
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================
   Footer
   ============================================ */
.site-footer { background: var(--navy-3); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 900px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }

.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-name { color: var(--white); font-size: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 { color: var(--white); font-size: 13.5px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col li { font-size: 14.5px; }
.footer-col a:hover { color: var(--gold-light); }

.footer-verse {
  text-align: center;
  padding: 44px 20px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-verse-mark { color: var(--gold-light); font-size: 15px; display: block; margin-bottom: 16px; }
.footer-verse p {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.88);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
.footer-verse-ref {
  display: block;
  margin-top: 16px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: space-between;
  padding: 26px 0;
  font-size: 13px;
}
@media (min-width: 700px) { .footer-bottom { flex-direction: row; } }

/* ============================================
   Sticky mobile CTA bar
   ============================================ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  display: flex;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250,247,241,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 -6px 24px rgba(19,35,63,0.12);
}
.mobile-cta-bar .btn { flex: 1; padding: 14px 10px; font-size: 14px; }
@media (min-width: 1000px) { .mobile-cta-bar { display: none; } }
@media (min-width: 1000px) { body { padding-bottom: 0; } }
body { padding-bottom: 78px; }
@media (min-width: 1000px) { body { padding-bottom: 0; } }

/* ============================================
   Reveal animation
   ============================================ */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ============================================
   Misc utilities
   ============================================ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
::selection { background: var(--gold-light); color: var(--navy-3); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
