/* ════════════════════════════════════════════════════════════
   Relevel Foundation Repair — shared design system
   Palette: warm earth (cream / pine / terracotta) — grounded,
   friendly, and credible. Type: Fraunces (display) + Hanken
   Grotesk (body).
   ════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..700&family=Hanken+Grotesk:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* Earth neutrals */
  --cream: #FAF6EF;
  --sand: #F1E8DA;
  --sand-2: #E7DBC8;
  --ink: #211C17;          /* warm near-black */
  --ink-soft: #4A423A;
  --muted: #6E655B;
  --line: #E2D7C5;

  /* Brand */
  --terracotta: #D9712B;
  --terracotta-dark: #B85A1C;
  --terracotta-soft: #FBEADB;
  --pine: #2E4A3F;          /* deep, trustworthy green */
  --pine-dark: #223A30;
  --pine-soft: #DCE6E0;
  --gold: #E6A14B;

  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(33,28,23,0.06);
  --shadow: 0 14px 40px -16px rgba(33,28,23,0.22);
  --shadow-lg: 0 30px 70px -30px rgba(33,28,23,0.40);
  --maxw: 1140px;
}

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.12; font-weight: 700; letter-spacing: -0.01em; }

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

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terracotta-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--terracotta); border-radius: 2px; }
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.centered { justify-content: center; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 1.02rem;
  padding: 15px 28px; border-radius: 100px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 24px -10px rgba(217,113,43,0.8); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost.on-dark:hover { background: #fff; color: var(--ink); }
.btn-pine { background: var(--pine); color: #fff; }
.btn-pine:hover { background: var(--pine-dark); transform: translateY(-2px); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ── Header / Nav ──────────────────────────────────────── */
.topline {
  background: var(--pine-dark); color: var(--pine-soft);
  font-size: 0.85rem; letter-spacing: 0.01em;
}
.topline .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; min-height: 40px; flex-wrap: wrap; }
.topline strong { color: #fff; font-weight: 600; }
.topline a { color: var(--gold); font-weight: 700; }

.nav-wrap { position: sticky; top: 0; z-index: 100; background: rgba(250,246,239,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.28rem; color: var(--ink); letter-spacing: -0.02em; }
.brand .mark { width: 38px; height: 38px; flex: 0 0 38px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a { display: inline-block; padding: 10px 14px; font-weight: 600; font-size: 0.98rem; color: var(--ink-soft); border-radius: 8px; transition: color .15s, background .15s; }
.nav-links > li > a:hover { color: var(--terracotta-dark); background: var(--sand); }

/* dropdown */
.has-menu { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 280px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 10px; opacity: 0; visibility: hidden; transition: .18s ease;
}
.has-menu:hover .dropdown, .has-menu:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 0.94rem; font-weight: 600; color: var(--ink-soft); }
.dropdown a small { display: block; font-weight: 500; font-size: 0.78rem; color: var(--muted); margin-top: 1px; }
.dropdown a:hover { background: var(--terracotta-soft); color: var(--terracotta-dark); }
.dropdown .menu-head { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); padding: 8px 12px 4px; font-weight: 700; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; flex-direction: column; line-height: 1.1; text-align: right; }
.nav-phone small { font-size: 0.7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.nav-phone b { font-family: 'Fraunces', serif; font-size: 1.18rem; color: var(--ink); }

.nav-toggle, .nav-check { display: none; }

@media (max-width: 980px) {
  .nav-links { gap: 0; }
  .nav-cta .btn { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 44px; border: 1px solid var(--line); border-radius: 10px;
    background: #fff; cursor: pointer; color: var(--ink);
  }
  .nav-toggle svg { width: 24px; height: 24px; }
  .nav-links {
    position: fixed; inset: 112px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--cream); border-bottom: 1px solid var(--line); padding: 12px 24px 22px;
    gap: 2px; box-shadow: var(--shadow); max-height: calc(100vh - 112px); overflow-y: auto;
    transform: translateY(-130%); transition: transform .28s ease; z-index: 90;
  }
  .nav-check:checked ~ .nav-links { transform: translateY(0); }
  .nav-links > li > a { padding: 13px 8px; font-size: 1.05rem; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; width: auto; padding: 0 0 8px 12px; background: transparent; }
  .has-menu:hover .dropdown { transform: none; }
}

/* ── Hero (generic) ────────────────────────────────────── */
.hero {
  position: relative; background: var(--pine-dark); color: #fff; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 78% -10%, rgba(217,113,43,0.30), transparent 60%),
    radial-gradient(700px 600px at 0% 110%, rgba(46,74,63,0.9), transparent 55%);
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 76px 0 84px; }
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; }
.hero h1 .accent { color: var(--gold); font-style: italic; }
.hero p.lead { font-size: 1.18rem; color: #E7E0D2; margin: 22px 0 30px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-figure { position: relative; }
.hero-figure .frame { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-lg); }
.hero-figure img { border-radius: 12px; width: 100%; }
.hero-strip { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.14); }
.hero-strip div { display: flex; align-items: center; gap: 9px; font-size: 0.92rem; color: #E7E0D2; font-weight: 600; }
.hero-strip svg { width: 20px; height: 20px; fill: var(--gold); flex: 0 0 20px; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 52px 0 60px; }
  .hero-figure { order: -1; max-width: 460px; }
}

/* ── Sections ──────────────────────────────────────────── */
section { position: relative; }
.section { padding: 84px 0; }
.section.tight { padding: 60px 0; }
.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin: 14px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.bg-sand { background: var(--sand); }
.bg-pine { background: var(--pine-dark); color: #fff; }
.bg-pine .section-head p { color: #D8E0DA; }
.bg-pine h2, .bg-pine h3 { color: #fff; }

/* ── Trust band ────────────────────────────────────────── */
.trust-band { background: var(--ink); color: var(--cream); padding: 26px 0; }
.trust-band .container { display: flex; flex-wrap: wrap; gap: 18px 40px; justify-content: center; align-items: center; }
.trust-band .ti { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 0.96rem; }
.trust-band .ti svg { width: 26px; height: 26px; fill: var(--gold); flex: 0 0 26px; }

/* ── Cards / grids ─────────────────────────────────────── */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .g-2, .g-3, .g-4 { grid-template-columns: 1fr; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card h4 { font-size: 1.05rem; font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* Service category cards (link cards w/ illustration) */
.svc-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--sand-2); }
.svc-card .thumb { background: var(--pine-soft); padding: 22px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--line); }
.svc-card .thumb img { height: 150px; width: auto; }
.svc-card .body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc-card .tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--terracotta-dark); margin-bottom: 9px; }
.svc-card h3 { font-size: 1.25rem; }
.svc-card p { color: var(--muted); font-size: 0.96rem; margin: 8px 0 16px; flex: 1; }
.svc-card .more { font-weight: 700; color: var(--terracotta-dark); display: inline-flex; align-items: center; gap: 7px; font-size: 0.95rem; }
.svc-card .more svg { width: 16px; height: 16px; transition: transform .18s; }
.svc-card:hover .more svg { transform: translateX(4px); }

/* small service link list */
.svc-list { display: grid; gap: 12px; }
.svc-list a { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .18s, transform .18s, box-shadow .18s; }
.svc-list a:hover { border-color: var(--terracotta); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.svc-list .ic { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 11px; background: var(--terracotta-soft); display: flex; align-items: center; justify-content: center; }
.svc-list .ic svg { width: 26px; height: 26px; }
.svc-list b { display: block; font-family: 'Fraunces', serif; font-size: 1.08rem; }
.svc-list small { color: var(--muted); font-size: 0.88rem; }
.svc-list .arr { margin-left: auto; color: var(--muted); }

/* feature icon cards */
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.feature .ficon { width: 52px; height: 52px; border-radius: 13px; background: var(--pine-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.feature .ficon svg { width: 28px; height: 28px; stroke: var(--pine); fill: none; stroke-width: 1.8; }
.feature h4 { font-family: 'Fraunces', serif; font-size: 1.16rem; font-weight: 700; margin-bottom: 7px; }
.feature p { color: var(--muted); font-size: 0.96rem; }
.bg-pine .feature { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.14); }
.bg-pine .feature .ficon { background: rgba(230,161,75,0.16); }
.bg-pine .feature .ficon svg { stroke: var(--gold); }
.bg-pine .feature p { color: #D8E0DA; }

/* ── Warning signs ─────────────────────────────────────── */
.signs { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; }
.sign { display: flex; gap: 13px; padding: 18px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--terracotta); border-radius: var(--radius-sm); }
.sign svg { width: 24px; height: 24px; flex: 0 0 24px; fill: var(--terracotta); margin-top: 2px; }
.sign b { display: block; font-family: 'Fraunces', serif; font-size: 1.02rem; margin-bottom: 2px; }
.sign p { color: var(--muted); font-size: 0.9rem; }

/* ── Split / explainer ─────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media .figure { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.split-media figcaption { text-align: center; color: var(--muted); font-size: 0.86rem; margin-top: 14px; font-weight: 600; }
.split-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 14px 0 16px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 14px; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
}

/* checklist */
.check { display: grid; gap: 12px; margin-top: 8px; }
.check li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.check li svg { width: 22px; height: 22px; flex: 0 0 22px; fill: var(--pine); margin-top: 3px; }
.bg-pine .check li svg { fill: var(--gold); }

/* ── Process steps ─────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px 24px; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 22px; width: 42px; height: 42px; background: var(--terracotta); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 800; font-size: 1.15rem; box-shadow: 0 6px 16px -6px rgba(217,113,43,0.8); }
.step h4 { font-family: 'Fraunces', serif; font-size: 1.12rem; margin: 8px 0 6px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ── Stats ─────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2,1fr); } }
.stat b { display: block; font-family: 'Fraunces', serif; font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; color: var(--gold); line-height: 1; }
.stat span { color: #D8E0DA; font-size: 0.95rem; font-weight: 600; }

/* ── Testimonials ──────────────────────────────────────── */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
@media (max-width: 860px){ .reviews { grid-template-columns: 1fr; } }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); position: relative; }
.review .stars { color: var(--terracotta); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 12px; }
.review p { font-size: 1rem; color: var(--ink-soft); font-style: italic; margin-bottom: 16px; }
.review .who { display: flex; align-items: center; gap: 12px; }
.review .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--pine); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 700; }
.review .who b { font-size: 0.96rem; }
.review .who small { color: var(--muted); display: block; font-size: 0.82rem; }

/* ── CTA band + form ───────────────────────────────────── */
.cta-band { background: var(--terracotta); color: #fff; }
.cta-band.pine { background: var(--pine-dark); }
.cta-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 50px; align-items: center; padding: 76px 0; }
@media (max-width: 880px){ .cta-grid { grid-template-columns: 1fr; gap: 34px; padding: 56px 0; } }
.cta-copy h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-copy p { color: rgba(255,255,255,0.92); font-size: 1.1rem; margin-bottom: 22px; }
.cta-phone { display: inline-flex; align-items: center; gap: 12px; font-family: 'Fraunces', serif; font-size: clamp(1.6rem,3vw,2.1rem); font-weight: 800; color: #fff; }
.cta-phone svg { width: 30px; height: 30px; fill: #fff; }
.cta-trust { margin-top: 18px; display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.9rem; color: rgba(255,255,255,0.9); font-weight: 600; }

.form-card { background: var(--cream); border-radius: 20px; padding: 30px 28px; box-shadow: var(--shadow-lg); color: var(--ink); }
.form-card h3 { font-size: 1.4rem; margin-bottom: 4px; }
.form-card .sub { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.fg { margin-bottom: 15px; }
.fg label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-soft); }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-size: 1rem; font-family: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 4px var(--terracotta-soft); }
.fg textarea { resize: vertical; min-height: 96px; }
.form-submit { width: 100%; margin-top: 6px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-note svg { width: 15px; height: 15px; fill: var(--pine); }

/* ── Breadcrumb ────────────────────────────────────────── */
.crumbs { font-size: 0.85rem; color: rgba(255,255,255,0.75); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.crumbs a { color: var(--gold); font-weight: 600; }
.crumbs span { opacity: 0.6; }

/* ── Service page hero (compact) ───────────────────────── */
.svc-hero { background: var(--pine-dark); color: #fff; position: relative; overflow: hidden; }
.svc-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(800px 420px at 85% 0%, rgba(217,113,43,0.26), transparent 60%); }
.svc-hero .container { position: relative; z-index: 2; }
.svc-hero .grid2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; padding: 56px 0 64px; }
.svc-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.1rem); }
.svc-hero p { color: #E7E0D2; font-size: 1.12rem; margin: 18px 0 26px; }
.svc-hero .frame { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16); border-radius: 20px; padding: 22px; box-shadow: var(--shadow-lg); }
@media (max-width: 860px){ .svc-hero .grid2 { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 48px; } .svc-hero .frame { max-width: 440px; } }

.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pill { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 7px 15px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; }

/* prose block */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.6rem,3vw,2.2rem); margin: 36px 0 14px; }
.prose h3 { font-size: 1.3rem; margin: 26px 0 10px; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.prose ul.bul { margin: 8px 0 18px; display: grid; gap: 10px; }
.prose ul.bul li { display: flex; gap: 11px; align-items: flex-start; }
.prose ul.bul li svg { width: 21px; height: 21px; flex: 0 0 21px; fill: var(--terracotta); margin-top: 3px; }

.callout { background: var(--terracotta-soft); border: 1px solid #F2D2B4; border-left: 4px solid var(--terracotta); border-radius: var(--radius-sm); padding: 20px 22px; margin: 22px 0; }
.callout b { font-family: 'Fraunces', serif; }
.callout p { color: var(--ink-soft); margin: 4px 0 0; }

/* related */
.related a { display: block; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer { background: var(--ink); color: #C9BFB2; padding: 60px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 880px){ .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px){ .foot-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer p { font-size: 0.92rem; max-width: 320px; }
.foot-col h5 { color: #fff; font-family: 'Hanken Grotesk', sans-serif; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col ul { display: grid; gap: 9px; }
.foot-col a { font-size: 0.93rem; color: #C9BFB2; transition: color .15s; }
.foot-col a:hover { color: var(--gold); }
.foot-phone { font-family: 'Fraunces', serif; font-size: 1.5rem; color: #fff; font-weight: 700; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 40px; padding-top: 22px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 0.84rem; color: #9C9387; }

/* ── Sticky mobile call bar ────────────────────────────── */
.callbar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 95; background: var(--terracotta); padding: 12px 16px; box-shadow: 0 -6px 20px rgba(0,0,0,0.18); }
.callbar a { display: flex; align-items: center; justify-content: center; gap: 9px; color: #fff; font-weight: 800; font-size: 1.05rem; }
.callbar svg { width: 20px; height: 20px; fill: #fff; }
@media (max-width: 760px){ .callbar { display: block; } body { padding-bottom: 58px; } }

/* ── Reveal on scroll ──────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }
