/* ═══════════════════════════════════════════════════════
   HERITAGE MEMORIAL STONE
   Modeled after Latite.com design system
   Palette: Navy #1b2a3b · Gold #c89b3c · White · Light Gray
   Fonts: Inter (headings) + Lato (body) — exact Latite stack
   ═══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────── */
:root {
  /* Core palette — Latite-mapped to memorial brand */
  --navy:        #1b2a3b;   /* Latite dark navy #2f3448 → warmer */
  --navy-deep:   #111e2b;   /* deeper navy for footer */
  --gold:        #c89b3c;   /* Latite orange #fc9002 → dignified gold */
  --gold-hover:  #b8882e;
  --gold-light:  #f0d99a;
  --blue-mid:    #3a6080;   /* Latite steel blue #7ea4c8 → deeper */
  --blue-light:  #e8f0f7;   /* Latite warm gray → light blue-white */
  --white:       #ffffff;
  --off-white:   #f8f6f2;   /* Latite #ededed → warm */
  --warm-gray:   #e8e3da;   /* Latite warm stone #d7d2c6 */
  --text-dark:   #1e1e1e;   /* Latite #3d3d3d → darker */
  --text-mid:    #4a4a4a;
  --text-muted:  #7a7a7a;
  --border:      #ddd8d0;

  /* Typography — exact Latite stack */
  --f-head: 'Inter', 'Helvetica Neue', sans-serif;
  --f-body: 'Lato', 'Helvetica Neue', sans-serif;

  /* Scale */
  --t-xs:   0.75rem;
  --t-sm:   0.875rem;
  --t-base: 1rem;
  --t-lg:   1.125rem;
  --t-xl:   clamp(1.5rem, 1rem + 2vw, 2.25rem);
  --t-2xl:  clamp(2rem, 1rem + 3.5vw, 3.25rem);
  --t-hero: clamp(2.5rem, 0.5rem + 5.5vw, 5rem);

  /* Spacing */
  --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.25rem; --sp-6: 1.5rem;  --sp-8: 2rem;
  --sp-10: 2.5rem; --sp-12: 3rem;   --sp-16: 4rem;
  --sp-20: 5rem;   --sp-24: 6rem;

  /* Layout */
  --w-wide:   1240px;
  --w-narrow: 720px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 220ms;

  /* Shadow */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: none; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body { font-family: var(--f-body); font-size: var(--t-base); color: var(--text-dark); background: var(--white); line-height: 1.65; }
h1,h2,h3,h4,h5,h6 { font-family: var(--f-head); font-weight: 700; line-height: 1.1; text-wrap: balance; }
p, li, blockquote { text-wrap: pretty; }
img, video, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: rgba(200,155,60,0.25); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; scroll-behavior: auto !important; } }

/* ── LAYOUT ──────────────────────────────────────── */
.container { width: 100%; max-width: var(--w-wide); margin-inline: auto; padding-inline: clamp(var(--sp-5), 5vw, var(--sp-16)); }
.container--narrow { max-width: var(--w-narrow); }
.section-pad { padding-block: clamp(var(--sp-12), 7vw, var(--sp-24)); }

/* ── TYPOGRAPHY UTILITIES ─────────────────────────── */
/* Orange rule line — Latite's signature heading decorator */
.section-rule {
  width: 72px; height: 3px; background: var(--gold);
  margin-bottom: var(--sp-5);
}
.section-rule--gold { background: var(--gold); }
.section-rule--white { background: rgba(255,255,255,0.5); }

.section-title {
  font-family: var(--f-head); font-size: var(--t-2xl); font-weight: 800;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: var(--sp-5);
}
.section-title--light { color: var(--white); }

.body-copy { font-size: var(--t-base); color: var(--text-mid); line-height: 1.75; max-width: 60ch; margin-bottom: var(--sp-6); }
.body-copy--light { color: rgba(255,255,255,0.75); max-width: 56ch; }

/* ── BUTTONS ─────────────────────────────────────── */
/* Hero buttons — pill shape, Latite-style */
.btn-hero {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--gold); color: var(--white); font-family: var(--f-head);
  font-size: var(--t-sm); font-weight: 700; letter-spacing: 0.04em;
  padding: 0.85em 2em; border-radius: 24px; border: 2px solid var(--gold);
  transition: background var(--dur) var(--ease), border-color var(--dur), transform var(--dur);
  white-space: nowrap;
}
.btn-hero:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); }
.btn-hero--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-hero--outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-1px); }

/* Primary button — rectangular Latite nav style */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--white);
  font-family: var(--f-head); font-size: var(--t-sm); font-weight: 700;
  letter-spacing: 0.05em; padding: 0.85em 1.75em; border-radius: 4px;
  transition: background var(--dur), transform var(--dur);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border);
  height: 72px; transition: box-shadow 300ms;
}
.nav--scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav__inner {
  display: flex; align-items: center; height: 100%;
  max-width: var(--w-wide); margin-inline: auto;
  padding-inline: clamp(var(--sp-5), 4vw, var(--sp-12));
  gap: var(--sp-8);
}

.nav__logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav__mark { flex-shrink: 0; }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1.2; }
.nav__brand { font-family: var(--f-head); font-size: 0.92rem; font-weight: 800; color: var(--navy); letter-spacing: 0.01em; }
.nav__est { font-family: var(--f-body); font-size: 0.68rem; font-weight: 400; color: var(--text-muted); letter-spacing: 0.05em; text-transform: uppercase; }

.nav__links {
  display: flex; align-items: center; gap: clamp(var(--sp-4), 3vw, var(--sp-8));
  margin-left: auto;
}
.nav__links a {
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.06em; color: var(--text-dark);
  transition: color var(--dur); padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav__links a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.nav__actions { display: flex; align-items: center; gap: var(--sp-4); flex-shrink: 0; }
.nav__cta {
  display: inline-block; background: var(--gold); color: var(--white);
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.06em; padding: 0.65em 1.25em; border-radius: 4px;
  transition: background var(--dur);
}
.nav__cta:hover { background: var(--gold-hover); }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: var(--sp-2); }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 220ms var(--ease); }
.nav__burger[aria-expanded='true'] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded='true'] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav__links {
    display: none; position: fixed; top: 72px; inset-inline: 0; bottom: 0;
    background: var(--white); flex-direction: column; justify-content: flex-start;
    padding: var(--sp-8); gap: var(--sp-6); z-index: 99;
    border-top: 1px solid var(--border);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { font-size: var(--t-lg); }
  .nav__burger { display: flex; }
}
@media (max-width: 480px) {
  .nav__est { display: none; }
  .nav__cta { display: none; }
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 560px; max-height: 900px;
  display: flex; align-items: center; overflow: hidden; padding-top: 72px;
}

.hero__video-wrap { position: absolute; inset: 0; z-index: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,28,42,0.88) 0%,
    rgba(15,28,42,0.70) 45%,
    rgba(15,28,42,0.35) 100%
  );
}

.hero__content { position: relative; z-index: 1; max-width: 760px; padding-block: var(--sp-16); }
.hero__eyebrow {
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: var(--sp-4);
}
.hero__title {
  font-family: var(--f-head); font-size: var(--t-hero); font-weight: 900;
  color: var(--white); letter-spacing: -0.02em; line-height: 1.05;
  text-transform: uppercase; margin-bottom: var(--sp-6);
}
.hero__sub {
  font-size: var(--t-lg); color: rgba(255,255,255,0.8); line-height: 1.65;
  max-width: 54ch; margin-bottom: var(--sp-10); font-weight: 300;
}
.hero__ctas { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: var(--sp-8); left: 50%; transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-bar {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(200,155,60,0.7));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ── TRUST BAR ────────────────────────────────────── */
.trust-bar { background: var(--navy); padding-block: var(--sp-8); }
.trust-bar__inner {
  display: flex; align-items: center; gap: var(--sp-8); flex-wrap: wrap;
}
.trust-bar__label {
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.45); text-transform: uppercase;
  flex-shrink: 0;
}
.trust-bar__stats { display: flex; align-items: center; gap: var(--sp-8); flex-wrap: wrap; }
.trust-bar__stat { display: flex; flex-direction: column; align-items: flex-start; }
.trust-bar__stat strong {
  font-family: var(--f-head); font-size: var(--t-xl); font-weight: 800;
  color: var(--gold); line-height: 1;
}
.trust-bar__stat span { font-size: var(--t-xs); color: rgba(255,255,255,0.55); letter-spacing: 0.04em; margin-top: 3px; }
.trust-bar__div { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }
@media (max-width: 700px) { .trust-bar__inner { flex-direction: column; align-items: flex-start; } .trust-bar__div { display: none; } }

/* ── AUTHORITY ────────────────────────────────────── */
.authority { background: var(--off-white); }
.authority__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20)); align-items: center;
}
.authority__left .body-copy { max-width: 52ch; }

/* Stat cards — Latite-style project cards with overlaid numbers */
.stat-cards {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-4);
}
.stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 4px; padding: var(--sp-8) var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stat-card--accent { background: var(--navy); border-color: var(--navy); }
.stat-card--accent .stat-card__num { color: var(--gold); }
.stat-card--accent .stat-card__label { color: rgba(255,255,255,0.7); }

.stat-card__num {
  font-family: var(--f-head); font-size: 3rem; font-weight: 900;
  color: var(--navy); line-height: 1; letter-spacing: -0.03em;
}
.stat-card__num span { font-size: 2rem; }
.stat-card__label { font-size: var(--t-sm); color: var(--text-mid); line-height: 1.5; font-weight: 400; }

@media (max-width: 800px) { .authority__grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .stat-cards { grid-template-columns: 1fr; } }

/* ── SPLIT SECTIONS (Latite 50/50) ───────────────── */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
@media (max-width: 780px) {
  .split-section { grid-template-columns: 1fr; }
  .split-section__photo { min-height: 320px; }
}

/* Photo side */
.split-section__photo {
  position: relative; overflow: hidden; min-height: 480px;
}
.split-section__photo--left { order: -1; }
.split-section__photo--right { order: 1; }

.split-section__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.split-section__photo-overlay {
  position: absolute; inset: 0;
  background: rgba(10,22,35,0.45);
}
.split-section__photo-overlay--light {
  background: rgba(58,96,128,0.35);
}

/* Content side */
.split-section__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(var(--sp-10), 6vw, var(--sp-16)) clamp(var(--sp-8), 6vw, var(--sp-16));
}
.split-section__content--right { background: var(--navy); }
.split-section__content--left { background: var(--blue-mid); order: -1; }

@media (max-width: 780px) {
  .split-section__content--right { order: 1; }
  .split-section__content--left { order: 1; }
  .split-section__photo--right { order: -1; }
}

.split-eyebrow {
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: var(--sp-3);
}
.split-eyebrow--light { color: rgba(255,255,255,0.6); }
.split-title {
  font-family: var(--f-head); font-size: var(--t-xl); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; color: var(--white);
  margin-bottom: var(--sp-4);
}
.split-title--light { color: var(--white); }
.split-body { font-size: var(--t-base); color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: var(--sp-8); }
.split-body--light { color: rgba(255,255,255,0.7); }

/* Service pills — Latite pill button grid */
.service-pills { display: flex; flex-direction: column; gap: var(--sp-3); }
.pill {
  display: block; font-family: var(--f-head); font-size: var(--t-sm); font-weight: 600;
  color: var(--white); background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 24px;
  padding: 0.65em 1.25em; transition: background var(--dur), border-color var(--dur), color var(--dur);
  letter-spacing: 0.01em;
}
.pill:hover { background: var(--gold); border-color: var(--gold); }
.pill--outline { background: transparent; color: var(--gold-light); border-color: var(--gold); }
.pill--outline:hover { background: var(--gold); color: var(--white); }

/* Process pills */
.process-pills { display: flex; flex-direction: column; gap: var(--sp-5); }
.process-pill { display: flex; gap: var(--sp-4); align-items: flex-start; }
.process-pill__num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 800;
  color: var(--gold-light); letter-spacing: 0;
}
.process-pill strong { display: block; font-family: var(--f-head); font-size: var(--t-base); font-weight: 700; color: var(--white); margin-bottom: 4px; }
.process-pill p { font-size: var(--t-sm); color: rgba(255,255,255,0.65); line-height: 1.6; max-width: none; }

/* ── CTA BAR (Latite center banner) ─────────────── */
.cta-bar { background: var(--warm-gray); border-block: 1px solid var(--border); padding-block: clamp(var(--sp-10), 5vw, var(--sp-16)); }
.cta-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-8); flex-wrap: wrap;
}
.cta-bar__text h3 {
  font-family: var(--f-head); font-size: var(--t-xl); font-weight: 800;
  color: var(--navy); margin-bottom: var(--sp-3); letter-spacing: -0.02em;
}
.cta-bar__text p { font-size: var(--t-base); color: var(--text-mid); max-width: 58ch; }

/* ── LOCATIONS ────────────────────────────────────── */
.locations-section { background: var(--white); }
.locations__header { margin-bottom: var(--sp-12); }
.locations__header .body-copy a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.locations__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--sp-5);
}
@media (max-width: 900px) { .locations__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .locations__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .locations__grid { grid-template-columns: 1fr; } }

.location-card {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 4px;
  padding: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4);
  transition: transform 220ms var(--ease), box-shadow 220ms, border-color 220ms;
  border-top: 3px solid var(--gold);
}
.location-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-top-color: var(--navy); }
.location-card__state { font-family: var(--f-head); font-size: var(--t-lg); font-weight: 800; color: var(--navy); }
.location-card p { font-size: var(--t-sm); color: var(--text-mid); line-height: 1.6; flex: 1; }
.location-card__link { font-family: var(--f-head); font-size: var(--t-xs); font-weight: 700; color: var(--gold); letter-spacing: 0.04em; transition: color var(--dur); }
.location-card__link:hover { color: var(--gold-hover); }

/* ── REVIEWS ──────────────────────────────────────── */
.reviews-section { background: var(--off-white); padding-block: clamp(var(--sp-12), 7vw, var(--sp-24)); }
.reviews__header { margin-bottom: var(--sp-12); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
@media (max-width: 760px) { .reviews__grid { grid-template-columns: 1fr; max-width: 520px; } }

.review-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 4px;
  padding: var(--sp-8); display: flex; flex-direction: column; gap: var(--sp-5);
  border-top: 3px solid var(--gold); box-shadow: var(--shadow-sm);
  transition: transform 220ms var(--ease), box-shadow 220ms;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card__stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; }
.review-card blockquote {
  font-family: var(--f-body); font-size: var(--t-base); font-style: italic;
  color: var(--text-dark); line-height: 1.65; flex: 1; max-width: none;
}
.review-card__author { display: flex; align-items: center; gap: var(--sp-4); margin-top: auto; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 800;
  color: var(--white); flex-shrink: 0;
}
.review-card__author strong { display: block; font-family: var(--f-head); font-size: var(--t-sm); font-weight: 700; color: var(--navy); }
.review-card__author span { font-size: var(--t-xs); color: var(--text-muted); }

/* ── QUOTE SECTION ────────────────────────────────── */
.quote-section { background: var(--navy); }
.quote-section__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 6vw, var(--sp-20)); align-items: start;
}
@media (max-width: 820px) { .quote-section__inner { grid-template-columns: 1fr; } }

.quote-features { display: flex; flex-direction: column; gap: var(--sp-4); margin-bottom: var(--sp-8); }
.quote-feature { display: flex; align-items: center; gap: var(--sp-3); }
.quote-feature svg { color: var(--gold); flex-shrink: 0; }
.quote-feature span { font-size: var(--t-sm); color: rgba(255,255,255,0.75); }
.quote-contact { margin-top: var(--sp-4); }
.quote-contact p { font-size: var(--t-xs); color: rgba(255,255,255,0.45); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: var(--sp-2); }
.quote-phone { font-family: var(--f-head); font-size: var(--t-xl); font-weight: 800; color: var(--gold); transition: color var(--dur); }
.quote-phone:hover { color: var(--gold-light); }

/* Form card */
.quote-form-card {
  background: var(--white); border-radius: 4px; padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border); border-radius: 4px; background: var(--off-white);
  padding: var(--sp-8) var(--sp-6); text-align: center; cursor: pointer;
  position: relative; overflow: hidden; margin-bottom: var(--sp-6);
  transition: border-color var(--dur), background var(--dur);
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--gold); background: #fdf9f0; }
.upload-zone__inner { display: flex; flex-direction: column; align-items: center; gap: var(--sp-3); }
.upload-zone__inner svg { color: var(--text-muted); }
.upload-zone:hover .upload-zone__inner svg { color: var(--gold); }
.upload-zone__inner strong { font-family: var(--f-head); font-size: var(--t-base); color: var(--text-dark); }
.upload-zone__sub { font-size: var(--t-sm); color: var(--text-muted); }
.upload-zone__browse { color: var(--gold); font-weight: 700; cursor: pointer; text-decoration: underline; }
.upload-zone__meta { font-size: var(--t-xs); color: var(--text-muted); }
.upload-zone__preview { display: none; max-height: 220px; width: 100%; object-fit: contain; border-radius: 4px; margin-top: var(--sp-4); }
.upload-zone__preview.visible { display: block; }

/* Form fields */
.quote-form { display: flex; flex-direction: column; gap: var(--sp-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: var(--sp-2); }
.form-field label {
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.04em;
}
.form-field input, .form-field textarea, .form-field select {
  padding: 0.75em 1em; border: 1.5px solid var(--border); border-radius: 4px;
  font-size: var(--t-base); background: var(--white); color: var(--text-dark);
  transition: border-color var(--dur), box-shadow var(--dur); resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,155,60,0.15);
}
.btn-submit {
  width: 100%; background: var(--gold); color: var(--white);
  font-family: var(--f-head); font-size: var(--t-sm); font-weight: 800;
  letter-spacing: 0.06em; padding: 1em; border-radius: 4px; border: none; cursor: pointer;
  transition: background var(--dur), transform var(--dur);
}
.btn-submit:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ── FAQ ──────────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq__list { margin-top: var(--sp-10); border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:last-child { border-bottom: none; }

.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-6); padding: var(--sp-6) var(--sp-8); text-align: left;
  font-family: var(--f-head); font-size: var(--t-base); font-weight: 600;
  color: var(--navy); background: var(--white); cursor: pointer; border: none;
  transition: background var(--dur), color var(--dur);
}
.faq__q:hover, .faq__q[aria-expanded='true'] { background: var(--off-white); color: var(--gold); }

.faq__icon {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--border); position: relative;
  transition: border-color var(--dur), transform 280ms var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--navy); border-radius: 2px;
  transition: transform 280ms var(--ease), opacity var(--dur);
}
.faq__icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.faq__q[aria-expanded='true'] .faq__icon { border-color: var(--gold); transform: rotate(45deg); }
.faq__q[aria-expanded='true'] .faq__icon::before, .faq__q[aria-expanded='true'] .faq__icon::after { background: var(--gold); }

.faq__a { max-height: 0; overflow: hidden; background: var(--off-white); transition: max-height 400ms var(--ease); }
.faq__a.is-open { max-height: 280px; }
.faq__a p { padding: var(--sp-5) var(--sp-8) var(--sp-6); font-size: var(--t-base); color: var(--text-mid); line-height: 1.75; max-width: none; }

/* ── BOTTOM CTA ───────────────────────────────────── */
.bottom-cta {
  position: relative; overflow: hidden;
  padding-block: clamp(var(--sp-16), 10vw, var(--sp-24));
}
.bottom-cta__bg { position: absolute; inset: 0; z-index: 0; }
.bottom-cta__video { width: 100%; height: 100%; object-fit: cover; }
.bottom-cta__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,28,42,0.92) 0%, rgba(15,28,42,0.75) 60%, rgba(15,28,42,0.6) 100%);
}
.bottom-cta__inner { position: relative; z-index: 1; max-width: 660px; }
.bottom-cta__inner h2 {
  font-family: var(--f-head); font-size: var(--t-2xl); font-weight: 900;
  color: var(--white); letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: var(--sp-5); line-height: 1.1;
}
.bottom-cta__inner p { font-size: var(--t-lg); color: rgba(255,255,255,0.7); margin-bottom: var(--sp-10); font-weight: 300; }
.bottom-cta__actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* ── FOOTER (Latite navy 3-col) ───────────────────── */
.footer { background: var(--navy-deep); padding-block: clamp(var(--sp-12), 6vw, var(--sp-20)); }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(var(--sp-8), 5vw, var(--sp-16)); margin-bottom: var(--sp-12);
}
@media (max-width: 700px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.footer__logo span { font-family: var(--f-head); font-size: var(--t-base); font-weight: 800; color: var(--white); }

.footer__tagline { font-family: var(--f-body); font-style: italic; font-size: var(--t-base); color: var(--gold); margin-bottom: var(--sp-4); line-height: 1.5; }
.footer__desc { font-size: var(--t-sm); color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: var(--sp-6); max-width: 42ch; }
.footer__phone { display: block; font-family: var(--f-head); font-size: var(--t-lg); font-weight: 700; color: var(--gold); margin-bottom: var(--sp-2); transition: color var(--dur); }
.footer__phone:hover { color: var(--gold-light); }
.footer__email { font-size: var(--t-sm); color: var(--gold); text-decoration: underline; transition: color var(--dur); }
.footer__email:hover { color: var(--gold-light); }

.footer__col h4 {
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 800;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.4); text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__col li { font-size: var(--t-sm); color: rgba(255,255,255,0.55); }
.footer__col li a { color: rgba(255,255,255,0.55); transition: color var(--dur); }
.footer__col li a:hover { color: var(--gold); }
.footer__note { font-size: var(--t-xs); color: rgba(255,255,255,0.3); margin-top: var(--sp-5); }
.footer__note a { color: var(--gold); text-decoration: underline; }

.footer__cta-btn {
  display: inline-block; margin-top: var(--sp-6);
  background: var(--gold); color: var(--white);
  font-family: var(--f-head); font-size: var(--t-xs); font-weight: 800;
  letter-spacing: 0.06em; padding: 0.75em 1.5em; border-radius: 4px;
  transition: background var(--dur);
}
.footer__cta-btn:hover { background: var(--gold-hover); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: var(--sp-4); padding-top: var(--sp-8); border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--t-xs); color: rgba(255,255,255,0.3);
}
.footer__bottom-links { display: flex; gap: var(--sp-4); align-items: center; }
.footer__bottom-links a { color: rgba(255,255,255,0.3); transition: color var(--dur); }
.footer__bottom-links a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay1 { transition-delay: 0.12s; }
.reveal--delay2 { transition-delay: 0.24s; }
.reveal--delay3 { transition-delay: 0.36s; }
