/* ═══════════════════════════════════════════
   Confident Coatings & Exteriors, Global Styles
   Navy + Red + Gold (logo palette) on white
   Fraunces serif + Inter sans
   Heritage-American family-business aesthetic

   Variable names are kept stable for compatibility
   (--pine = navy, --clay = red, --parchment = white, --aspen = gold).
   See LEGACY-NAME map below.
   ═══════════════════════════════════════════ */

:root {
  /* ─── New brand tokens (preferred) ─── */
  --navy:        #182D4A;
  --navy-deep:   #0F1E33;
  --navy-dark:   #06101F;
  --navy-soft:   #2A4570;
  --navy-tint:   #3D5C8A;
  --navy-light:  #5C7BA8;

  --red:         #ED1A03;
  --red-deep:    #C71500;
  --red-dark:    #9E1100;
  --red-bright:  #FF2818;

  --gold:        #FCC605;
  --gold-deep:   #D4A405;
  --gold-light:  #FED84F;
  --gold-pale:   #FFF3C4;

  --black:       #000000;
  --white:       #FFFFFF;
  --off-white:   #FAFAF7;
  --bone:        #F4F2EC;
  --bone-deep:   #E8E5DD;

  /* ─── Legacy aliases — keep old names working ─── */
  --pine:           var(--navy);
  --pine-deep:      var(--navy-deep);
  --pine-dark:      var(--navy-dark);
  --pine-soft:      var(--navy-soft);
  --pine-tint:      var(--navy-tint);

  --clay:           var(--red);
  --clay-deep:      var(--red-deep);
  --clay-dark:      var(--red-dark);
  --clay-light:     var(--gold);     /* italic emphasis on dark sections */
  --clay-bright:    var(--red-bright);

  --parchment:      var(--white);
  --parchment-light: var(--off-white);
  --parchment-deep: var(--bone);
  --cream:          var(--off-white);
  --paper:          var(--white);

  --aspen:          var(--gold);
  --aspen-deep:     var(--gold-deep);

  --stone:          #6B6B6B;
  --stone-soft:     #B0B0B0;
  --stone-mid:      #4A4A4A;

  --ink:            var(--black);
  --ink-soft:       #1A1A1A;

  /* Surfaces */
  --bg-page: var(--white);
  --bg-band: var(--off-white);
  --bg-band-deep: var(--bone);
  --bg-card: var(--white);
  --bg-dark: var(--navy);
  --bg-dark-2: var(--navy-dark);

  /* Text */
  --text: var(--black);
  --text-mid: #2A3340;
  --text-muted: #5A6573;
  --text-faint: #8E9489;
  --text-inv: var(--white);
  --text-inv-mid: rgba(255, 255, 255, 0.82);
  --text-inv-muted: rgba(255, 255, 255, 0.58);

  /* Borders */
  --border: rgba(24, 45, 74, 0.10);
  --border-soft: rgba(24, 45, 74, 0.06);
  --border-strong: rgba(24, 45, 74, 0.22);
  --border-inv: rgba(255, 255, 255, 0.16);

  /* Fonts */
  --font-display: 'Fraunces', 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w: 1320px;
  --max-w-narrow: 920px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  /* Easings */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-snappy: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fluid: cubic-bezier(0.32, 0.72, 0, 1);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 18px 42px -16px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 36px 80px -24px rgba(0, 0, 0, 0.24);
  --shadow-red: 0 18px 38px -14px rgba(237, 26, 3, 0.42);
  --shadow-navy: 0 18px 38px -14px rgba(15, 30, 51, 0.45);
  --shadow-clay: var(--shadow-red);
  --shadow-pine: var(--shadow-navy);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg-page);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}
body::before {
  /* Subtle ambient tint on the entire body */
  content: '';
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 22% 18%, rgba(252, 198, 5, 0.05), transparent 35%),
    radial-gradient(circle at 78% 82%, rgba(24, 45, 74, 0.05), transparent 38%);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select, button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(237,26,3, 0.22); color: var(--pine-dark); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--parchment-light); }
::-webkit-scrollbar-thumb { background: var(--pine); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--pine-soft); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-up, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
h1 { font-size: clamp(2.7rem, 6.6vw, 5.6rem); font-weight: 400; }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 500; letter-spacing: -0.01em; }
p { color: var(--text-mid); }

.font-display { font-family: var(--font-display); }
.text-clay { color: var(--clay); }
.text-pine { color: var(--pine); }

/* Eyebrow label, editorial small caps style */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--clay);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.section-title em {
  font-style: italic;
  color: var(--clay);
  font-weight: 400;
}
.section-title--compact { font-size: clamp(1.6rem, 3.2vw, 2.2rem); line-height: 1.2; margin-top: 1.5rem; }

.section-intro {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 60ch;
  margin-top: 1.2rem;
}

/* ── Layout ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.4rem;
}
@media (min-width: 768px) {
  .section-inner { padding: 0 2.5rem; }
}
.section-pad { padding-top: 5.5rem; padding-bottom: 5.5rem; }
@media (min-width: 768px) {
  .section-pad { padding-top: 7.5rem; padding-bottom: 7.5rem; }
}

/* Parchment / warm band */
.section-cream {
  background: var(--bg-band);
  position: relative;
}
.section-cream::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 12% 10%, rgba(24,45,74, 0.045), transparent 42%),
    radial-gradient(ellipse at 88% 90%, rgba(237,26,3, 0.06), transparent 45%);
  pointer-events: none;
}
.section-cream > * { position: relative; }

/* Dark pine band */
.section-dark {
  background: var(--bg-dark);
  color: var(--text-inv);
  position: relative;
  isolation: isolate;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 14%, rgba(237,26,3, 0.18), transparent 50%),
    radial-gradient(circle at 88% 92%, rgba(42,69,112, 0.55), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.section-dark .section-title,
.section-dark h2, .section-dark h3 { color: var(--text-inv); }
.section-dark .section-intro,
.section-dark p { color: var(--text-inv-mid); }
.section-dark .section-title em { color: var(--clay-light); }
.section-dark .trust-card-title,
.section-dark .trust-card h3 { color: var(--ink); }
.section-dark .trust-card-desc,
.section-dark .trust-card p { color: var(--text-mid); }
.section-dark .section-label {
  color: var(--clay-light);
}
.section-dark .section-label::before {
  background: var(--clay-light);
}

/* Section divider, subtle hand-drawn feeling */
.divider-leaf {
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay);
}
.divider-leaf::before, .divider-leaf::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, currentColor 50%, transparent);
}
.divider-leaf svg { width: 28px; height: 28px; margin: 0 1.2rem; opacity: 0.8; }

/* ── Buttons ── */
.btn-primary, .btn-ghost, .btn-outline-light, .btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: transform 0.3s var(--ease-snappy), background 0.3s ease,
              color 0.25s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary {
  background: var(--clay);
  color: #FFFFFF;
  box-shadow: var(--shadow-clay);
  border: 1.5px solid var(--clay);
}
.btn-primary:hover {
  background: var(--clay-deep);
  border-color: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 22px 46px -14px rgba(237,26,3, 0.55);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--pine-dark);
  border: 1.5px solid var(--pine-dark);
}
.btn-ghost:hover {
  background: var(--pine-dark);
  color: var(--text-inv);
  transform: translateY(-2px);
}
.btn-outline-light {
  color: var(--text-inv);
  border: 1.5px solid rgba(255,255,255, 0.55);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--text-inv);
  color: var(--pine-dark);
  border-color: var(--text-inv);
}
.btn-outline-dark {
  color: var(--pine-dark);
  border: 1.5px solid var(--pine-dark);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--pine-dark); color: var(--text-inv); }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.6rem 1.2rem;
  background: var(--clay);
  color: #FFFFFF;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ═══════════════════════════════════════════
   HEADER, logo left, navigation right, refined editorial
   ═══════════════════════════════════════════ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(252, 249, 240, 0.86);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom: 1px solid rgba(0,0,0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(252, 249, 240, 0.97);
  box-shadow: 0 6px 24px rgba(0,0,0, 0.06);
}
.site-header.nav-open {
  background: var(--pine-dark) !important;
  border-color: transparent;
  box-shadow: none;
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .header-inner { padding: 0.9rem 2.5rem; }
}

/* Logo, image-based wordmark with crest + tagline banner */
.logo-block {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0.25rem 0;
}
.logo-img {
  height: 56px;
  width: auto;
  display: block;
  transition: transform 0.4s var(--ease);
}
.logo-block:hover .logo-img { transform: scale(1.03); }
.site-header.is-scrolled .logo-img { height: 48px; }
.site-header.nav-open .logo-img { filter: brightness(0) invert(1); }
@media (max-width: 600px) {
  .logo-img { height: 44px; }
  .site-header.is-scrolled .logo-img { height: 40px; }
}
@media (max-width: 380px) {
  .logo-img { height: 38px; }
}

/* Nav cluster on the right */
.nav-cluster {
  display: none;
  align-items: center;
  gap: 1.8rem;
}
@media (min-width: 1080px) { .nav-cluster { display: flex; } }
.nav-link {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--pine-dark);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-link:hover { color: var(--clay); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--clay);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--clay);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px -8px rgba(237,26,3, 0.5);
}
.nav-cta:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-1px); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--pine-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s ease;
}
.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle[aria-expanded="true"] { color: var(--clay); }
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle[aria-expanded="true"]::after { transform: scaleX(1); }
.nav-dropdown-chevron { transition: transform 0.3s ease; }
.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  min-width: 420px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.3s var(--ease), visibility 0s 0.3s;
}
.nav-dropdown-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.3s var(--ease);
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
}
.nav-dropdown-grid a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pine-dark);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.nav-dropdown-grid a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--clay);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nav-dropdown-grid a:hover { background: var(--parchment-light); color: var(--clay); transform: translateX(4px); }
.nav-dropdown-grid a:hover::before { opacity: 1; }
.nav-dropdown-all {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
}
.nav-dropdown-all a {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--clay);
}

/* Mobile hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--pine-dark);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--pine-dark);
  background: transparent;
}
@media (min-width: 1080px) { .nav-toggle { display: none; } }
.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.nav-toggle-bar { display: block; height: 1.5px; background: currentColor; width: 100%; transition: all 0.3s ease; }

/* Mobile call CTA in header */
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  background: var(--clay);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
}
@media (min-width: 1080px) { .header-call { display: none; } }
@media (max-width: 480px) { .header-call span { display: none; } }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--pine-dark);
  display: flex;
  flex-direction: column;
  padding: 6rem 2rem 2rem;
  transform: translateX(-100%);
  transition: transform 0.45s var(--ease-snappy);
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 12%, rgba(237,26,3, 0.32), transparent 60%),
    radial-gradient(circle at 8% 90%, rgba(42,69,112, 0.5), transparent 55%);
  pointer-events: none;
}
.nav-drawer-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255,255,255, 0.18);
  border-radius: 50%;
  color: var(--parchment);
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-drawer-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.nav-drawer-links a,
.nav-drawer-links button {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--parchment);
  padding: 0.7rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-variation-settings: "opsz" 144;
}
.nav-drawer-links a:hover,
.nav-drawer-links button:hover { color: var(--clay-light); font-style: italic; }
.nav-drawer-sub {
  display: none;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}
.nav-drawer-sub.is-open { display: flex; flex-direction: column; }
.nav-drawer-sub a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-inv-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255, 0.04);
  text-transform: none;
  letter-spacing: 0;
}
.nav-drawer-cta {
  margin-top: 2rem;
  padding: 1.05rem 2rem;
  background: var(--clay);
  color: #FFFFFF;
  border-radius: var(--radius-pill);
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
.nav-drawer-contact {
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255, 0.1);
  color: var(--text-inv-mid);
  font-size: 0.95rem;
  line-height: 1.8;
}
.nav-drawer-contact a {
  color: var(--parchment);
  font-weight: 500;
  display: block;
}

/* ═══════════════════════════════════════════
   HERO, asymmetric editorial layout
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 1.4rem 6rem;
  display: flex;
  align-items: center;
  background: var(--pine-dark);
  color: var(--text-inv);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(95deg, rgba(6,16,31, 0.92) 0%, rgba(6,16,31, 0.55) 55%, rgba(6,16,31, 0.25) 100%),
    linear-gradient(180deg, rgba(6,16,31, 0.15) 0%, rgba(6,16,31, 0.5) 100%);
}

.hero-content {
  position: relative;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  z-index: 1;
}
@media (min-width: 980px) {
  .hero-content { grid-template-columns: 1.3fr 1fr; gap: 4rem; align-items: end; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 1.6rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--clay-light);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.7rem, 7.4vw, 6rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--parchment);
  margin-bottom: 1.6rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--clay-light);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  color: rgba(255,255,255, 0.9);
  font-weight: 400;
  max-width: 620px;
  margin: 0 0 2.6rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0;
}
.hero-actions .btn-primary,
.hero-actions .btn-outline-light {
  min-width: 200px;
}

/* Hero side card, runs alongside the headline on desktop */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: rgba(255,255,255, 0.07);
  border: 1px solid rgba(255,255,255, 0.16);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-side-stat {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255,255,255, 0.1);
  padding-bottom: 1rem;
}
.hero-side-stat:last-child { border-bottom: none; padding-bottom: 0; }
.hero-side-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--parchment);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
}
.hero-side-num em {
  font-style: italic;
  color: var(--clay-light);
}
.hero-side-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255, 0.7);
}
.hero-side-offer {
  background: var(--clay);
  color: #FFFFFF;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin: -1.8rem -1.8rem -0.4rem;
  margin-top: 0.8rem;
  font-weight: 500;
}
.hero-side-offer-tag {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  display: block;
  margin-bottom: 0.25rem;
}
.hero-side-offer-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.25;
}
.hero-side-offer-text em { font-style: italic; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255, 0.45);
  opacity: 0;
  animation: scroll-bounce 2.6s ease-in-out 1.5s infinite;
  z-index: 1;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
  50% { transform: translate(-50%, 8px); opacity: 0.85; }
}

/* Hero entrance */
@keyframes hero-bg-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-rise-soft {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero--home .hero-bg { animation: hero-bg-zoom 14s var(--ease-fluid) both; }
.hero--home .hero-eyebrow,
.hero--home .hero-title,
.hero--home .hero-lead,
.hero--home .hero-actions,
.hero--home .hero-side { opacity: 0; }
.hero--home .hero-eyebrow { animation: hero-rise-soft 0.8s var(--ease-snappy) 0.15s forwards; }
.hero--home .hero-title { animation: hero-rise 1s var(--ease-snappy) 0.3s forwards; }
.hero--home .hero-lead { animation: hero-rise 0.9s var(--ease-snappy) 0.55s forwards; }
.hero--home .hero-actions { animation: hero-rise 0.85s var(--ease-snappy) 0.75s forwards; }
.hero--home .hero-side { animation: hero-rise-soft 0.9s var(--ease-snappy) 0.95s forwards; }

@media (prefers-reduced-motion: reduce) {
  .hero--home .hero-bg,
  .hero--home .hero-eyebrow,
  .hero--home .hero-title,
  .hero--home .hero-lead,
  .hero--home .hero-actions,
  .hero--home .hero-side,
  .hero-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Inner page hero, centered editorial */
.hero-page {
  position: relative;
  padding: 9rem 1.4rem 5rem;
  background: var(--pine-dark);
  color: var(--text-inv);
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero-page .hero-bg,
.hero-page .hero-overlay { position: absolute; inset: 0; }
.hero-page .hero-bg { z-index: -2; }
.hero-page .hero-overlay { z-index: -1; }
.hero-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(6,16,31, 0.78) 0%, rgba(6,16,31, 0.92) 100%);
}
.hero-page-inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-page .section-label { color: var(--clay-light); }
.hero-page .section-label::before { background: var(--clay-light); }
.hero-page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--parchment);
  margin-bottom: 1.2rem;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.hero-page-title em { font-style: italic; color: var(--clay-light); }
.hero-page-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
.hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255, 0.7);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.hero-breadcrumb a:hover { color: var(--parchment); }
.hero-breadcrumb-sep { color: rgba(255,255,255, 0.4); }

/* ═══════════════════════════════════════════
   QUICKBAR, contact strip just under hero
   ═══════════════════════════════════════════ */
.quickbar {
  background: var(--paper);
  position: relative;
  border-bottom: 1px solid var(--border);
  z-index: 5;
}
.quickbar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .quickbar-grid { grid-template-columns: repeat(3, 1fr); } }

.quickbar-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 1.4rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}
@media (min-width: 768px) {
  .quickbar-card { padding: 2rem 2rem; border-bottom: none; border-right: 1px solid var(--border); }
  .quickbar-card:last-child { border-right: none; }
}
.quickbar-card:hover { background: var(--parchment-light); }
.quickbar-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--pine);
  color: var(--parchment);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.quickbar-card:hover .quickbar-icon { transform: rotate(-8deg) scale(1.05); }
.quickbar-text-main {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.quickbar-text-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.reveal, .reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal, .reveal-up { transform: translateY(34px); }
.reveal-left { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ═══════════════════════════════════════════
   TWO-COLUMN GENERAL
   ═══════════════════════════════════════════ */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) { .two-col-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

/* About image treatment, framed photo with offset */
.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: visible;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--clay);
  border-radius: var(--radius-md);
  z-index: 0;
  display: none;
}
@media (min-width: 980px) { .about-image::before { display: block; } }
.about-image img,
.about-image video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.about-image-tag {
  position: absolute;
  bottom: -30px;
  left: -10px;
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--pine-dark);
  max-width: 240px;
  display: none;
}
@media (min-width: 980px) { .about-image-tag { display: block; } }
.about-image-tag-num {
  display: block;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--clay);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

/* ═══════════════════════════════════════════
   STATS GRID
   ═══════════════════════════════════════════ */
.home-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1.6rem;
}
@media (min-width: 768px) { .home-stats { grid-template-columns: repeat(4, 1fr); } }

.home-stat {
  border-left: 2px solid var(--clay);
  padding-left: 1rem;
}
.home-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--pine-dark);
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.home-stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   TRUST CARDS, used in How We Work
   ═══════════════════════════════════════════ */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(3, 1fr); gap: 1.8rem; } }

.trust-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease, border-color 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay);
}
.trust-card-icon {
  display: inline-flex;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--clay);
  align-items: center;
  justify-content: center;
}
.trust-card:hover .trust-card-icon { background: var(--clay); color: var(--parchment); }
.trust-card-num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--clay);
  opacity: 0.7;
}
.trust-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.trust-card-desc {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   TESTIMONIALS, editorial pull-quote style
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s ease;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0;
  right: 1.4rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--clay);
  opacity: 0.2;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars {
  color: var(--aspen);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-soft);
}
.testimonial-author {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--pine-dark);
}
.testimonial-source {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
}
.testimonial-source:hover { color: var(--clay); }

/* ═══════════════════════════════════════════
   CITY GRID, service area pills + cards
   ═══════════════════════════════════════════ */
.city-search { margin-bottom: 1.6rem; }
.city-search-input {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: block;
  padding: 1rem 1.4rem;
  font-size: 16px;
  font-family: var(--font-body);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s ease;
}
.city-search-input:focus {
  border-color: var(--clay);
  outline: none;
}

.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.8rem;
  justify-content: center;
}
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.1rem;
  background: var(--paper);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--pine-dark);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.city-pill:hover {
  background: var(--pine);
  color: var(--parchment);
  border-color: var(--pine);
  transform: translateY(-2px);
}
.city-pill-icon { color: var(--clay); transition: color 0.2s ease; }
.city-pill:hover .city-pill-icon { color: var(--clay-light); }

.city-pagination {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.city-pagination button {
  padding: 0.5rem 0.9rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--pine-dark);
  transition: background 0.2s ease, color 0.2s ease;
}
.city-pagination button:hover:not(:disabled) { background: var(--parchment); }
.city-pagination button.is-active { background: var(--clay); color: #FFFFFF; border-color: var(--clay); }
.city-pagination button:disabled { opacity: 0.4; cursor: not-allowed; }

.area-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 600px) { .area-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .area-cards-grid { grid-template-columns: repeat(3, 1fr); } }
.area-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay);
}
.area-card-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
}
.area-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--pine-dark);
  line-height: 1.15;
}
.area-card-desc {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.area-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--clay);
}

/* ═══════════════════════════════════════════
   FIND-US section, map + details
   ═══════════════════════════════════════════ */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 980px) { .find-us-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.find-us-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.find-us-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.find-us-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
}
.find-us-label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.find-us-value, .find-us-details a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--pine-dark);
  line-height: 1.4;
}
.find-us-details a:hover { color: var(--clay); }
.find-us-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.find-us-map {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.find-us-map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

/* ═══════════════════════════════════════════
   SERVICE MARQUEE
   ═══════════════════════════════════════════ */
.service-marquee {
  background: var(--clay);
  color: var(--parchment);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255, 0.15);
  border-bottom: 1px solid rgba(255,255,255, 0.15);
}
.marquee-track {
  display: flex;
  gap: 3.4rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
}
.marquee-item { display: inline-flex; align-items: center; gap: 1.2rem; }
.marquee-item .star { color: var(--aspen); font-size: 1rem; font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   GALLERY + BEFORE/AFTER
   ═══════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
@media (min-width: 980px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--parchment);
  transition: transform 0.4s var(--ease);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(6,16,31, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.4rem;
}
@media (min-width: 768px) { .before-after-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.before-after {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  outline-offset: 4px;
  background: var(--parchment);
  box-shadow: var(--shadow-md);
}
.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after { z-index: 1; }
.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--pos);
  width: 3px;
  background: var(--clay);
  z-index: 3;
  pointer-events: none;
}
.ba-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--clay);
  border: 3px solid var(--parchment);
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}
.ba-handle::after {
  content: '⇆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--parchment);
  font-size: 1.05rem;
  font-weight: 700;
  z-index: 1;
}
.ba-label {
  position: absolute;
  top: 1rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  z-index: 4;
  pointer-events: none;
}
.ba-label-before {
  left: 1rem;
  background: rgba(6,16,31, 0.7);
  color: var(--parchment);
  backdrop-filter: blur(6px);
}
.ba-label-after {
  right: 1rem;
  background: var(--clay);
  color: #FFFFFF;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6,16,31, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
  padding: 4rem 1rem;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.lightbox-stage {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.lightbox-caption {
  color: var(--parchment);
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: 1rem;
}
.lightbox-counter {
  position: absolute;
  top: 1.4rem;
  left: 1.6rem;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255, 0.1);
  border: 1px solid rgba(255,255,255, 0.2);
  color: var(--parchment);
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--clay); border-color: var(--clay); transform: scale(1.05); }
.lightbox-close { top: 1.4rem; right: 1.6rem; }
.lightbox-prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.05); }

/* ═══════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: start; } }

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-info-value, .contact-info-item a {
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-weight: 500;
  color: var(--pine-dark);
}
.contact-info-item a:hover { color: var(--clay); }

.contact-form-wrap {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.4rem 2.2rem; } }
.contact-section.section-dark .contact-form-wrap {
  background: rgba(255,255,255, 0.07);
  border-color: rgba(255,255,255, 0.18);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .form-row-2col { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; position: relative; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.section-dark .form-label { color: rgba(255,255,255, 0.7); }

.form-input {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-size: 16px; /* prevents iOS zoom */
  font-family: var(--font-body);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease;
  resize: vertical;
}
.section-dark .form-input {
  background: rgba(255,255,255, 0.05);
  border-color: rgba(255,255,255, 0.18);
  color: var(--parchment);
}
.section-dark .form-input::placeholder { color: rgba(255,255,255, 0.45); }
.form-input:focus {
  border-color: var(--clay);
  outline: none;
}
.form-input.is-invalid { border-color: var(--clay-deep); }
.form-error {
  font-size: 0.82rem;
  color: var(--clay-deep);
  margin-top: 4px;
}
.form-foot {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}
.section-dark .form-foot { color: rgba(255,255,255, 0.65); }
.form-foot strong { color: var(--clay); }
.section-dark .form-foot strong { color: var(--clay-light); }

.g-recaptcha { margin-top: 0.4rem; transform-origin: 0 0; max-width: 100%; overflow: hidden; }
@media (max-width: 360px) { .g-recaptcha { transform: scale(0.86); } }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.site-footer {
  background: var(--pine-dark);
  color: var(--text-inv);
  padding: 4rem 0 1.6rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 0%, rgba(237,26,3, 0.18), transparent 50%),
    radial-gradient(ellipse at 0% 100%, rgba(42,69,112, 0.4), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; } }

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.2rem;
  background: var(--parchment-light);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,0.35);
}
.footer-logo .logo-img {
  height: 52px;
  filter: none;
}

.footer-brand-text {
  color: var(--text-inv-mid);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 36ch;
  margin-bottom: 1.4rem;
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.footer-meta a, .footer-meta span {
  color: var(--parchment);
  font-size: 0.94rem;
  font-weight: 500;
}
.footer-meta a:hover { color: var(--clay-light); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255, 0.08);
  border: 1px solid rgba(255,255,255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--parchment);
  transition: background 0.25s ease, transform 0.25s ease;
}
.footer-social a:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-2px); }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin-bottom: 1rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-inv-mid);
  transition: color 0.2s ease, transform 0.2s ease;
}
.footer-links a:hover { color: var(--parchment); transform: translateX(3px); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
  color: var(--text-inv-muted);
  font-size: 0.84rem;
}
@media (min-width: 700px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal-links { display: flex; gap: 1.2rem; }
.footer-legal-links a:hover { color: var(--parchment); }

/* ═══════════════════════════════════════════
   MOBILE STICKY CTA + FLOATING CALL
   ═══════════════════════════════════════════ */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 60;
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem 0.9rem env(safe-area-inset-bottom, 0.7rem);
  background: rgba(252, 249, 240, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0,0,0, 0.08);
}
.mobile-cta-bar .btn-primary,
.mobile-cta-bar .btn-ghost {
  flex: 1;
  padding: 0.85rem 1rem;
  font-size: 0.86rem;
}
@media (min-width: 768px) { .mobile-cta-bar { display: none; } }

.floating-cta {
  position: fixed;
  bottom: 5.2rem;
  right: 1rem;
  z-index: 55;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--clay);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -10px rgba(237,26,3, 0.55);
  transition: transform 0.25s ease, background 0.25s ease;
  animation: floating-pulse 3.4s ease-in-out infinite;
}
.floating-cta:hover { transform: scale(1.08); background: var(--clay-deep); }
@keyframes floating-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237,26,3, 0.55); }
  60% { box-shadow: 0 0 0 16px rgba(237,26,3, 0); }
}
@media (min-width: 768px) {
  .floating-cta { bottom: 1.4rem; right: 1.4rem; }
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item.is-open {
  border-color: var(--clay);
  box-shadow: var(--shadow-sm);
}
.faq-trigger {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--pine-dark);
  text-align: left;
  background: transparent;
  cursor: pointer;
}
.faq-trigger-icon {
  width: 26px; height: 26px;
  border: 1.5px solid var(--clay);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
  color: var(--clay);
}
.faq-trigger-icon::before, .faq-trigger-icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform 0.3s ease;
}
.faq-trigger-icon::before { width: 12px; height: 1.5px; }
.faq-trigger-icon::after { width: 1.5px; height: 12px; }
.faq-item.is-open .faq-trigger-icon { background: var(--clay); color: var(--parchment); transform: rotate(135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 1.4rem 1.4rem;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   MISC
   ═══════════════════════════════════════════ */
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }

/* Body padding to clear fixed mobile cta */
@media (max-width: 767px) {
  body { padding-bottom: 4.6rem; }
}
