/* =========================================================
   KFS COATINGS — Marketing site
   Editorial, premium-contractor aesthetic.
   Tokens, then layout, then sections.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --ink:      #0e1419;
  --ink-2:    #1a2330;
  --ink-3:    #2a3644;
  --paper:    #f6f3ec;
  --paper-2:  #ece6d8;
  --paper-3:  #ddd5c2;
  --accent:   #d68b4a;
  --accent-2: #b86f31;
  --accent-3: #f4b377;
  --good:     #2f7a4e;
  --bad:      #b34c3a;
  --muted:    #5b6470;
  --muted-d:  #93a0b0;
  --rule:     rgba(14, 20, 25, 0.12);
  --rule-d:   rgba(255, 255, 255, 0.10);

  --maxw:     1240px;
  --maxw-narrow: 880px;
  --pad:      clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 11vw, 144px);

  --font-display: "Fraunces", "Source Serif Pro", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow-1:  0 1px 2px rgba(14,20,25,.06), 0 8px 24px -8px rgba(14,20,25,.12);
  --shadow-2:  0 6px 16px rgba(14,20,25,.10), 0 30px 60px -20px rgba(14,20,25,.30);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea, button { font-family: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0; font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.08; }
p { margin: 0; }

/* ---------- Layout ---------- */
.container        { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.container.narrow { max-width: var(--maxw-narrow); }
.section          { padding-block: var(--section-y); }
.section.dark     { background: var(--ink); color: var(--paper); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.eyebrow.light { color: var(--accent-3); }
.eyebrow.centered { display: flex; justify-content: center; }

.section-title {
  font-size: clamp(34px, 5.2vw, 60px);
  letter-spacing: -0.022em;
  font-weight: 600;
  margin-bottom: 24px;
}
.section-title.centered { text-align: center; }
.section-title em { font-style: italic; color: var(--accent); font-weight: 500; }
.dark .section-title em { color: var(--accent-3); }

.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 60ch;
}
.lede.light { color: rgba(246, 243, 236, 0.78); }
.lede strong { color: var(--ink); font-weight: 600; }
.dark .lede strong { color: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.005em;
  transition: transform .15s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 0 var(--accent-2), 0 12px 28px -12px rgba(214,139,74,.7);
}
.btn-primary:hover { background: var(--accent-3); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--accent-2); }
.btn-ghost {
  background: rgba(246,243,236,.08);
  color: var(--paper);
  border-color: rgba(246,243,236,.30);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(246,243,236,.16); border-color: rgba(246,243,236,.55); }
.btn-block { width: 100%; padding-block: 18px; font-size: 16px; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 14px var(--pad);
  background: rgba(14, 20, 25, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  color: var(--paper);
  transition: background .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav.is-scrolled {
  background: rgba(14, 20, 25, 0.92);
  padding-block: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--accent); }
.brand-mark { display: inline-flex; color: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.brand-name em { font-style: italic; font-weight: 400; color: var(--accent-3); margin-left: 2px; }
.brand-tag {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-d);
  margin-top: 4px;
  font-weight: 500;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500;
  color: rgba(246,243,236,.78);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--paper); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent-3);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--paper); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  font-weight: 600; font-size: 14px;
  transition: transform .15s var(--ease), background .2s var(--ease);
}
.nav-cta:hover { background: var(--accent-3); transform: translateY(-1px); }

.nav-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--paper); transition: transform .25s var(--ease), opacity .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    flex-direction: column; align-items: flex-start;
    gap: 0;
    background: rgba(14, 20, 25, 0.98);
    padding: 24px var(--pad);
    overflow-y: auto;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 16px 0; font-size: 18px; width: 100%; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 480px) {
  .brand-tag { display: none; }
  .nav-cta { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  padding-top: 96px;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroIn 1.6s var(--ease) forwards; }
@keyframes heroIn { to { transform: scale(1); } }
.hero-vignette {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,20,25,0.55) 0%, rgba(14,20,25,0.10) 30%, rgba(14,20,25,0.40) 60%, rgba(14,20,25,0.92) 100%),
    radial-gradient(ellipse at 30% 70%, rgba(0,0,0,0.55), transparent 60%);
}

.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(40px, 8vw, 80px);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 22px;
}
.hero-eyebrow .dot { display: inline-block; width: 7px; height: 7px; border-radius: 999px; background: var(--accent); box-shadow: 0 0 0 4px rgba(214,139,74,.18); }

.hero-title {
  font-size: clamp(46px, 7.8vw, 104px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 0.98;
  margin-bottom: 28px;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-3);
}

.hero-sub {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.55;
  max-width: 60ch;
  color: rgba(246,243,236,.86);
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--paper); font-weight: 600; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid rgba(246,243,236,.18);
  max-width: 880px;
}
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.hero-trust span { font-size: 12px; color: rgba(246,243,236,.62); margin-top: 4px; letter-spacing: 0.04em; }

.hero-scroll {
  position: absolute; right: var(--pad); bottom: 28px;
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(246,243,236,.6);
}
.hero-scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

@media (max-width: 720px) {
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .hero-scroll { display: none; }
  .hero-cta .btn { flex: 1 1 auto; }
}

/* =========================================================
   PROBLEM / VS GRID
   ========================================================= */
.problem { background: var(--paper); }

.vs-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}
.vs-or {
  align-self: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted);
  font-size: 22px;
  padding: 8px 14px;
  background: var(--paper-2);
  border-radius: 999px;
}
.vs-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-1);
}
.vs-bad { background: #fdf6f4; border-color: rgba(179,76,58,.18); }
.vs-good { background: #f1f7f3; border-color: rgba(47,122,78,.22); }

.vs-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(179,76,58,.10); color: var(--bad);
  align-self: flex-start;
}
.vs-tag-good { background: rgba(47,122,78,.12); color: var(--good); }

.vs-card h3 { font-size: clamp(22px, 2.4vw, 28px); margin-top: 8px; }
.vs-card ul { display: flex; flex-direction: column; gap: 12px; }
.vs-card li {
  display: flex; align-items: flex-start; gap: 10px;
  padding-left: 22px; position: relative;
  color: var(--ink-3);
}
.vs-card li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 4px;
}
.vs-bad li::before  { background: var(--bad);  opacity: .55; }
.vs-good li::before { background: var(--good); opacity: .85; }
.vs-card strong { color: var(--ink); }
.footnote { margin-top: 8px; font-size: 12.5px; color: var(--muted); font-style: italic; }

@media (max-width: 880px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-or { justify-self: center; }
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.proof { background: var(--paper-2); }
.ba-stack { display: grid; gap: clamp(48px, 7vw, 96px); margin-top: 56px; }
.ba-item { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.ba-item:nth-child(even) { grid-template-columns: 1fr 1.45fr; }
.ba-item:nth-child(even) .ba-caption { order: -1; }

.ba-slider {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-2);
  user-select: none;
  touch-action: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-after { z-index: 1; }
.ba-before-wrap {
  position: absolute; inset: 0; z-index: 2;
  width: var(--pos);
  overflow: hidden;
  border-right: 2px solid var(--paper);
  box-shadow: 4px 0 16px -4px rgba(0,0,0,.35);
}
.ba-before-wrap img { width: 100vw; max-width: none; min-width: 100%; }
.ba-before-wrap .ba-before { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.ba-handle {
  position: absolute; top: 50%; left: var(--pos);
  width: 48px; height: 48px;
  margin-left: -24px; margin-top: -24px;
  border-radius: 999px;
  background: var(--paper); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0,0,0,.35), inset 0 0 0 2px var(--accent);
  transition: transform .15s var(--ease);
  pointer-events: none;
}
.ba-slider:hover .ba-handle { transform: scale(1.06); }

.ba-range {
  position: absolute; inset: 0; z-index: 5;
  width: 100%; height: 100%;
  margin: 0; padding: 0; opacity: 0; cursor: ew-resize;
}
.ba-range::-webkit-slider-thumb { -webkit-appearance: none; width: 100%; height: 100%; }

.ba-label {
  position: absolute; top: 18px;
  z-index: 3;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(14,20,25,.72); color: var(--paper);
  backdrop-filter: blur(6px);
}
.ba-label-before { left: 18px; }
.ba-label-after  { right: 18px; background: rgba(214,139,74,.95); color: var(--ink); }

.ba-caption h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 14px;
}
.ba-caption p { color: var(--muted); font-size: 16.5px; line-height: 1.65; max-width: 46ch; }

@media (max-width: 880px) {
  .ba-item, .ba-item:nth-child(even) { grid-template-columns: 1fr; }
  .ba-item:nth-child(even) .ba-caption { order: 0; }
}

/* =========================================================
   SYSTEM (dark)
   ========================================================= */
.system .system-head { max-width: 760px; margin-bottom: 64px; }
.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sys-card {
  background: var(--ink);
  padding: clamp(28px, 3.4vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s var(--ease);
}
.sys-card:hover { background: var(--ink-2); }
.sys-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.sys-card h3 {
  font-size: clamp(20px, 2vw, 24px);
  color: var(--paper);
}
.sys-card p { color: rgba(246,243,236,.72); font-size: 15.5px; line-height: 1.6; }

@media (max-width: 980px) { .system-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .system-grid { grid-template-columns: 1fr; } }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--paper); }
.proc-list { display: grid; gap: clamp(40px, 6vw, 88px); margin-top: 56px; counter-reset: proc; }
.proc-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.proc-step:nth-child(even) .proc-img { order: 2; }
.proc-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-1);
}
.proc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.proc-step:hover .proc-img img { transform: scale(1.04); }

.proc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--accent-2);
  margin-bottom: 10px;
  display: block;
}
.proc-body h3 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.proc-body p { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 50ch; }
.proc-body p strong { color: var(--ink); font-weight: 600; }

@media (max-width: 880px) {
  .proc-step, .proc-step:nth-child(even) { grid-template-columns: 1fr; }
  .proc-step:nth-child(even) .proc-img { order: 0; }
}

/* =========================================================
   WHY (dark)
   ========================================================= */
.why-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }

.why-points { margin-top: 36px; display: grid; gap: 22px; }
.why-points li {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  font-size: 16.5px; line-height: 1.65;
  color: rgba(246,243,236,.78);
}
.why-points li strong { display: block; color: var(--paper); font-weight: 600; font-size: 18px; margin-bottom: 6px; font-family: var(--font-display); letter-spacing: -0.005em; }

.why-card {
  background: var(--ink-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky; top: 110px;
  box-shadow: var(--shadow-2);
}
.why-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.why-card-body { padding: clamp(24px, 3vw, 32px); }
.why-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--paper);
  margin-bottom: 16px;
  text-wrap: balance;
}
.why-attr { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-3); }

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { position: static; }
}

/* =========================================================
   FAMILY / OWNERS
   ========================================================= */
.family { background: var(--paper-2); }
.family .family-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.family .family-head .lede { margin-inline: auto; }

.fam-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.6vw, 32px);
}
.fam-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.fam-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.fam-photo { aspect-ratio: 4 / 5; overflow: hidden; background: var(--paper-3); }
.fam-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.fam-card:hover .fam-photo img { transform: scale(1.04); }
.fam-body { padding: clamp(22px, 2.4vw, 30px); display: flex; flex-direction: column; gap: 10px; }
.fam-role {
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent-2);
}
.fam-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 28px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.012em;
}
.fam-bio { color: var(--muted); font-size: 15.5px; line-height: 1.65; }

@media (max-width: 880px) { .fam-grid { grid-template-columns: 1fr; gap: 20px; } }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--paper); }
.gal-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gal-tile {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--paper-3);
  box-shadow: var(--shadow-1);
}
.gal-tile-lg { grid-column: span 2; aspect-ratio: 16 / 9; }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-tile:hover img { transform: scale(1.06); }
.gal-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 14px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(14,20,25,0) 0%, rgba(14,20,25,0.85) 100%);
  transform: translateY(8px); opacity: 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.gal-tile:hover figcaption { transform: translateY(0); opacity: 1; }

@media (max-width: 880px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-tile-lg { grid-column: span 2; aspect-ratio: 16 / 10; }
}

/* =========================================================
   SERVICE AREA
   ========================================================= */
.service-area { background: var(--paper-2); text-align: center; }
.service-area .lede { margin-inline: auto; margin-bottom: 48px; }
.counties {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-bottom: 32px;
}
.counties li {
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  box-shadow: var(--shadow-1);
}
.counties li em {
  font-style: normal;
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--accent-2);
  background: rgba(214,139,74,.14);
  padding: 3px 7px; border-radius: 999px;
}
.service-note { color: var(--muted); font-size: 14.5px; max-width: 56ch; margin-inline: auto; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper); }
.faq-list { margin-top: 48px; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 48px 24px 0;
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.7vw, 22px);
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color .2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 22px; font-weight: 400;
  color: var(--accent);
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.faq-item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); background: var(--accent); color: var(--paper); border-color: var(--accent); }
.faq-item summary:hover { color: var(--accent-2); }
.faq-body { padding: 0 0 28px; color: var(--muted); font-size: 16.5px; line-height: 1.7; max-width: 64ch; }

/* =========================================================
   QUOTE / CTA (dark)
   ========================================================= */
.quote .quote-head { text-align: center; margin-bottom: 48px; }
.quote .quote-head .lede { margin-inline: auto; }
.quote-form {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 44px);
  display: grid; gap: 20px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.6);
}
.qf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .qf-row { grid-template-columns: 1fr; } }

.qf-field { display: flex; flex-direction: column; gap: 8px; }
.qf-field span {
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  font-weight: 600;
}
.qf-field input,
.qf-field select,
.qf-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  color: var(--paper);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.qf-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.qf-field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%23d68b4a'><path d='M2 4l4 4 4-4z'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.qf-field input:focus,
.qf-field select:focus,
.qf-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,.07);
}
.qf-field input::placeholder,
.qf-field textarea::placeholder { color: rgba(246,243,236,.35); }

.hp { position: absolute; left: -10000px; }

.qf-footnote { text-align: center; font-size: 14px; color: rgba(246,243,236,.6); margin-top: 6px; }
.qf-footnote a { color: var(--accent-3); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #060a0d;
  color: rgba(246,243,236,.7);
  padding: 64px 0 24px;
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand .brand-mark { color: var(--accent); margin-bottom: 12px; }
.foot-name { font-family: var(--font-display); font-size: 24px; color: var(--paper); margin-bottom: 6px; font-weight: 700; }
.foot-name em { font-style: italic; color: var(--accent-3); font-weight: 400; }
.foot-tag { color: rgba(246,243,236,.55); font-size: 13px; }
.foot-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-3); margin-bottom: 14px; }
.foot-col p { line-height: 1.7; }
.foot-col a:hover { color: var(--paper); }
.foot-bottom {
  padding-top: 22px;
  text-align: center;
  font-size: 12.5px;
  color: rgba(246,243,236,.4);
}

@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
