/* =====================================================================
   South Peak Roofing & Exteriors — premium redesign concept
   Hand-authored CSS. No framework. Mobile-first.
   Palette: warm charcoal + bone + copper/ember + pine.
   Type: Fraunces (display serif) · Inter (UI/body) · Space Grotesk (labels/nums)
   ===================================================================== */

:root {
  --ink:    #15110D;
  --ink-2:  #1E1813;
  --stone:  #3A332B;
  --bone:   #F4EEE4;
  --bone-2: #E9DFCE;
  --copper: #C9622E;
  --ember:  #E08A3C;
  --gold:   #E9A24B;
  --pine:   #4E6354;
  --line-d: rgba(244, 238, 228, 0.14);   /* lines on dark */
  --line-l: rgba(21, 17, 13, 0.12);      /* lines on light */
  --muted-d: rgba(244, 238, 228, 0.66);  /* muted text on dark */
  --muted-l: rgba(21, 17, 13, 0.62);     /* muted text on light */

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);
  --r: 16px;
  --shadow: 0 24px 60px -28px rgba(21,17,13,0.55);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --mono: "Space Grotesk", ui-monospace, "SF Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
section { position: relative; }
.eyebrow {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--copper);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--copper);
  display: inline-block;
}
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0.5rem 0 0;
}
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--muted-l); max-width: 56ch; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-weight: 600; font-size: 0.96rem;
  padding: 0.92em 1.5em;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--copper); color: var(--bone); box-shadow: 0 10px 24px -10px rgba(201,98,46,0.7); }
.btn-primary:hover { background: var(--ember); transform: translateY(-2px); }
.btn-ghost { border-color: currentColor; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }
.on-dark .btn-ghost, .btn-ghost.on-dark { color: var(--bone); }
.on-dark .btn-ghost:hover { background: var(--bone); color: var(--ink); }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gut);
  transition: padding 0.35s var(--ease), background 0.35s, box-shadow 0.35s, backdrop-filter 0.35s;
}
.nav.scrolled {
  padding: 11px var(--gut);
  background: rgba(21,17,13,0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-d);
}
.brand { display: flex; align-items: center; gap: 11px; color: var(--bone); }
.brand-txt { display: flex; flex-direction: column; line-height: 1; }
.brand-txt b { font-family: var(--serif); font-weight: 500; font-size: 1.34rem; letter-spacing: -0.01em; }
.brand-txt span { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

.nav-links { display: none; gap: 30px; align-items: center; }
.nav-links a { color: var(--bone); font-size: 0.92rem; font-weight: 500; opacity: 0.85; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta { display: none; align-items: center; gap: 14px; }
.nav-phone { color: var(--bone); font-family: var(--mono); font-weight: 500; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 7px; }
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }

.burger { background: none; border: 0; width: 44px; height: 44px; display: grid; place-items: center; }
.burger span { display: block; width: 24px; height: 2px; background: var(--bone); position: relative; transition: 0.3s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--bone); transition: 0.3s; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.menu-open .burger span { background: transparent; }
.menu-open .burger span::before { top: 0; transform: rotate(45deg); }
.menu-open .burger span::after { top: 0; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gut);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.menu-open .drawer { transform: none; }
.drawer a { color: var(--bone); font-family: var(--serif); font-size: 1.9rem; padding: 10px 0; border-bottom: 1px solid var(--line-d); }
.drawer a:last-of-type { border: 0; }
.drawer .btn { margin-top: 22px; justify-content: center; }

@media (min-width: 940px) {
  .nav-links, .nav-cta { display: flex; }
  .burger { display: none; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  background: radial-gradient(120% 90% at 80% 0%, #2a211a 0%, var(--ink) 55%);
  color: var(--bone);
  overflow: hidden;
  padding-bottom: clamp(40px, 7vh, 90px);
}
.hero::after { /* grain/vignette */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(140% 120% at 50% 110%, transparent 40%, rgba(21,17,13,0.7) 100%);
}
.hero-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.34;
  filter: saturate(0.85) contrast(1.05);
  mix-blend-mode: luminosity;
}
.hero-peaks { position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: auto; opacity: 0.5; z-index: 1; }
.hero .wrap { position: relative; z-index: 2; width: 100%; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; margin-bottom: 26px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--bone); padding: 7px 13px; border: 1px solid var(--line-d); border-radius: 100px; background: rgba(244,238,228,0.04); }
.hero-badge .stars { color: var(--gold); letter-spacing: 1px; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.7rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0;
  max-width: 16ch;
}
.hero h1 em { font-style: italic; color: var(--ember); }
.hero-sub { font-size: clamp(1.05rem, 1.9vw, 1.32rem); color: var(--muted-d); max-width: 50ch; margin: 24px 0 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-scroll { position: absolute; bottom: 24px; right: var(--gut); z-index: 2; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-d); display: none; align-items: center; gap: 10px; writing-mode: vertical-rl; }
@media (min-width: 940px) { .hero-scroll { display: inline-flex; } }

/* =====================================================================
   CERTIFICATION MARQUEE
   ===================================================================== */
.certbar { background: var(--ink-2); color: var(--bone); padding: 22px 0; border-top: 1px solid var(--line-d); overflow: hidden; }
.cert-label { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted-d); text-align: center; margin-bottom: 16px; }
.marquee { display: flex; gap: 56px; width: max-content; animation: slide 26s linear infinite; }
.certbar:hover .marquee { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem); white-space: nowrap; opacity: 0.78; display: inline-flex; align-items: center; gap: 56px; }
.marquee span::after { content: "◆"; color: var(--copper); font-size: 0.6em; opacity: 0.8; }
@keyframes slide { to { transform: translateX(-50%); } }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { background: var(--bone); padding: clamp(70px, 11vw, 130px) 0; }
.sec-head { display: grid; gap: 18px; margin-bottom: 54px; }
@media (min-width: 860px) {
  .sec-head { grid-template-columns: 1fr 1fr; align-items: end; gap: 30px; }
  .sec-head .lead { justify-self: end; }
}
.svc-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-l);
  border-radius: var(--r);
  padding: 30px 28px 26px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.svc::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--copper); transition: width 0.5s var(--ease); }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc:hover::before { width: 100%; }
.svc-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--bone-2); display: grid; place-items: center; color: var(--copper); margin-bottom: 20px; }
.svc-ico svg { width: 24px; height: 24px; }
.svc h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; margin: 0 0 8px; letter-spacing: -0.01em; }
.svc p { margin: 0 0 16px; color: var(--muted-l); font-size: 0.95rem; }
.svc ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.svc li { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.02em; color: var(--stone); background: var(--bone); border: 1px solid var(--line-l); padding: 4px 9px; border-radius: 6px; }

.svc.feature { grid-column: 1 / -1; background: var(--ink); color: var(--bone); border-color: transparent; display: grid; gap: 18px; }
@media (min-width: 700px) { .svc.feature { grid-template-columns: 1.2fr 1fr; align-items: center; padding: 40px; } }
.svc.feature .svc-ico { background: rgba(244,238,228,0.08); color: var(--gold); }
.svc.feature h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.svc.feature p { color: var(--muted-d); }
.svc.feature li { color: var(--bone); background: rgba(244,238,228,0.06); border-color: var(--line-d); }
.svc.feature .btn { align-self: start; }

/* =====================================================================
   WHY / ABOUT  (split, dark)
   ===================================================================== */
.why { background: var(--ink); color: var(--bone); padding: clamp(70px, 11vw, 130px) 0; position: relative; }
.topo { position: absolute; inset: 0; opacity: 0.5; pointer-events: none; }
.why .wrap { position: relative; z-index: 1; }
.why-grid { display: grid; gap: 44px; }
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; } }
.why h2 { color: var(--bone); }
.why .lead { color: var(--muted-d); margin-top: 22px; }
.pull { font-family: var(--serif); font-style: italic; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.25; color: var(--bone); margin: 0; letter-spacing: -0.01em; }
.pull span { color: var(--ember); }
.why-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 2px; }
.why-list li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line-d); }
.why-list li:last-child { border-bottom: 1px solid var(--line-d); }
.why-list .n { font-family: var(--mono); color: var(--copper); font-size: 0.8rem; padding-top: 4px; }
.why-list h4 { margin: 0 0 4px; font-size: 1.08rem; font-weight: 600; }
.why-list p { margin: 0; color: var(--muted-d); font-size: 0.94rem; }

/* =====================================================================
   STATS
   ===================================================================== */
.stats { background: var(--copper); color: var(--bone); padding: clamp(48px, 7vw, 76px) 0; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px 24px; text-align: center; }
@media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1; letter-spacing: -0.02em; }
.stat .lbl { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; margin-top: 10px; }

/* =====================================================================
   PROCESS
   ===================================================================== */
.process { background: var(--bone); padding: clamp(70px, 11vw, 130px) 0; }
.steps { display: grid; gap: 14px; margin-top: 50px; counter-reset: step; }
@media (min-width: 880px) { .steps { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.step { position: relative; padding: 30px 24px; background: #fff; border: 1px solid var(--line-l); border-radius: var(--r); }
.step .step-n { counter-increment: step; font-family: var(--mono); font-size: 0.8rem; color: var(--copper); letter-spacing: 0.1em; }
.step .step-n::before { content: "0" counter(step) " /"; }
.step h4 { font-family: var(--serif); font-weight: 500; font-size: 1.3rem; margin: 14px 0 8px; }
.step p { margin: 0; color: var(--muted-l); font-size: 0.92rem; }
.step .arrow { display: none; }
@media (min-width: 880px) {
  .step .arrow { display: block; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); z-index: 2; color: var(--copper); background: var(--bone); padding: 4px 0; }
  .step:last-child .arrow { display: none; }
}

/* =====================================================================
   GALLERY
   ===================================================================== */
.gallery { background: var(--ink-2); color: var(--bone); padding: clamp(70px, 11vw, 130px) 0; }
.gallery h2 { color: var(--bone); }
.gal-grid { display: grid; gap: 14px; margin-top: 48px; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
@media (min-width: 760px) { .gal-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; } }
.gal {
  position: relative; border-radius: 14px; overflow: hidden;
  background: linear-gradient(135deg, #2a211a, #181310);
  border: 1px solid var(--line-d);
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gal:hover img { transform: scale(1.07); }
.gal::after { content: attr(data-cap); position: absolute; left: 14px; bottom: 12px; right: 14px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--bone); text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.gal-fallback { width: 100%; height: 100%; display: grid; place-items: center; color: var(--gold); }
.gal-fallback svg { width: 44px; height: 44px; opacity: 0.7; }
.gal.tall { grid-row: span 2; }
@media (max-width: 759px) { .gal.tall { grid-row: span 1; } }

/* =====================================================================
   SERVICE AREAS
   ===================================================================== */
.areas { background: var(--bone); padding: clamp(60px, 9vw, 110px) 0; }
.areas-grid { display: grid; gap: 40px; }
@media (min-width: 900px) { .areas-grid { grid-template-columns: 1fr 1.1fr; align-items: center; gap: 64px; } }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { font-family: var(--mono); font-size: 0.82rem; padding: 9px 15px; border: 1px solid var(--line-l); border-radius: 100px; background: #fff; transition: 0.25s; }
.chip:hover { border-color: var(--copper); color: var(--copper); transform: translateY(-2px); }
.chip.sk { color: var(--pine); border-style: dashed; }
.map-card { background: var(--ink); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 360px; border: 0; filter: grayscale(0.2) contrast(1.05); display: block; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.reviews { background: var(--ink); color: var(--bone); padding: clamp(70px, 11vw, 130px) 0; }
.reviews h2 { color: var(--bone); }
.rev-grid { display: grid; gap: 16px; margin-top: 48px; }
@media (min-width: 760px) { .rev-grid { grid-template-columns: repeat(3, 1fr); } }
.rev { background: var(--ink-2); border: 1px solid var(--line-d); border-radius: var(--r); padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.rev .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.rev p { margin: 0; font-family: var(--serif); font-size: 1.14rem; line-height: 1.5; flex: 1; }
.rev .who { display: flex; align-items: center; gap: 12px; }
.rev .av { width: 40px; height: 40px; border-radius: 50%; background: var(--copper); color: var(--bone); display: grid; place-items: center; font-weight: 700; font-size: 0.95rem; flex: none; }
.rev .who b { display: block; font-size: 0.92rem; }
.rev .who span { font-family: var(--mono); font-size: 0.72rem; color: var(--muted-d); }
.rev-note { margin-top: 22px; font-family: var(--mono); font-size: 0.72rem; color: var(--muted-d); text-align: center; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--bone); padding: clamp(70px, 11vw, 130px) 0; }
.faq-list { margin-top: 44px; border-top: 1px solid var(--line-l); }
.faq-item { border-bottom: 1px solid var(--line-l); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--serif); font-size: clamp(1.15rem, 2.2vw, 1.45rem); color: var(--ink); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border: 1px solid var(--line-l); border-radius: 50%; display: grid; place-items: center; position: relative; transition: 0.3s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; width: 12px; height: 2px; background: var(--copper); transition: 0.3s; }
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .pm { background: var(--copper); border-color: var(--copper); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: var(--bone); }
.faq-item.open .pm::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-a p { margin: 0 0 24px; color: var(--muted-l); max-width: 70ch; }

/* =====================================================================
   CTA
   ===================================================================== */
.cta { background: var(--copper); color: var(--bone); padding: clamp(70px, 11vw, 130px) 0; position: relative; overflow: hidden; }
.cta-peaks { position: absolute; right: -5%; bottom: 0; width: 60%; opacity: 0.16; pointer-events: none; }
.cta .wrap { position: relative; z-index: 1; }
.cta-grid { display: grid; gap: 44px; }
@media (min-width: 920px) { .cta-grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; } }
.cta h2 { color: var(--bone); font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.cta .lead { color: rgba(244,238,228,0.85); }
.cta-points { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.cta-points li { display: flex; gap: 12px; align-items: center; font-weight: 500; }
.cta-points svg { width: 20px; height: 20px; flex: none; }

.form { background: var(--bone); color: var(--ink); border-radius: var(--r); padding: clamp(26px, 4vw, 38px); box-shadow: var(--shadow); }
.form h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; margin: 0 0 4px; }
.form .small { color: var(--muted-l); font-size: 0.9rem; margin: 0 0 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 0.98rem;
  padding: 13px 15px; border: 1px solid var(--line-l); border-radius: 10px;
  background: #fff; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(201,98,46,0.15); }
.field textarea { resize: vertical; min-height: 92px; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--muted-l); text-align: center; margin: 14px 0 0; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 520px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--ink); color: var(--bone); padding: clamp(60px, 8vw, 96px) 0 34px; }
.foot-grid { display: grid; gap: 40px; }
@media (min-width: 760px) { .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; } }
.foot-brand .brand { margin-bottom: 18px; }
.foot-brand p { color: var(--muted-d); max-width: 40ch; font-size: 0.95rem; }
.foot-contact { display: grid; gap: 12px; margin-top: 20px; }
.foot-contact a, .foot-contact span { display: inline-flex; gap: 10px; align-items: flex-start; color: var(--bone); font-size: 0.95rem; }
.foot-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.foot-col h5 { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.foot-col a { color: var(--muted-d); font-size: 0.94rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--bone); }
.foot-bottom { margin-top: 54px; padding-top: 22px; border-top: 1px solid var(--line-d); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.foot-bottom p { margin: 0; color: var(--muted-d); font-size: 0.82rem; }
.foot-bottom .socials { display: flex; gap: 12px; }
.foot-bottom .socials a { width: 38px; height: 38px; border: 1px solid var(--line-d); border-radius: 50%; display: grid; place-items: center; transition: 0.25s; }
.foot-bottom .socials a:hover { background: var(--copper); border-color: var(--copper); }
.foot-bottom .socials svg { width: 17px; height: 17px; }
.disclaimer { margin-top: 18px; font-size: 0.72rem; color: rgba(244,238,228,0.4); max-width: 80ch; }

/* sticky mobile call bar */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: flex; background: var(--ink); border-top: 1px solid var(--line-d); }
.callbar a { flex: 1; text-align: center; padding: 15px; font-weight: 600; color: var(--bone); display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.95rem; }
.callbar a.alt { background: var(--copper); }
.callbar svg { width: 17px; height: 17px; }
@media (min-width: 940px) { .callbar { display: none; } }
body { padding-bottom: 0; }
@media (max-width: 939px) { body { padding-bottom: 54px; } }
