/* ============================================================
   Forge Cleaning & Property Services
   Dark "forge & stone" theme — black base, forged-gold accent,
   stone-textured tactile buttons. Palette pulled from the logo.
   ============================================================ */

:root {
  /* base / surfaces */
  --bg: #0A0A0B;          /* near-black page */
  --bg-2: #100F11;        /* faint lift */
  --surface: #17161A;     /* charcoal stone card */
  --surface-2: #1E1D22;
  --surface-3: #26242A;
  --border: #2C2A31;
  --border-2: #3A3841;

  /* forged gold / brass (the FORGE lettering) */
  --gold: #C6A15B;
  --gold-bright: #E4C77E;
  --gold-deep: #8C6E3A;

  /* stone / steel greys (anvil, sub-text) */
  --stone-100: #CFD0D3;
  --stone-300: #9EA0A6;
  --stone-500: #6E7075;
  --stone-700: #45454B;

  /* text */
  --text: #EDEBE5;        /* warm off-white */
  --muted: #A7A6AA;
  --muted-2: #7C7B80;

  /* stone button shades */
  --btn-top: #7D7F85;
  --btn-mid: #5A5C63;
  --btn-bot: #4A4B51;
  --btn-edge: #232327;
  --btn-hover-top: #8C8E95;
  --btn-hover-bot: #55575D;
  --btn-active: #3E3F44;

  --graphite-top: #35343A;
  --graphite-bot: #232227;
  --graphite-edge: #131215;

  /* type */
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* layout */
  --wrap: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-btn: 12px;
  --ease: cubic-bezier(.2,.7,.3,1);

  --shadow-card: 0 1px 2px rgba(0,0,0,.4), 0 16px 34px -18px rgba(0,0,0,.7);

  /* stone grain texture (grayscale fractal noise) */
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image: var(--noise);
  background-size: 220px 220px;
  background-attachment: fixed;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* keep grain whisper-quiet over the black */
body { background-blend-mode: soft-light; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600; line-height: 1.1;
  margin: 0 0 .5em; color: var(--text); letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.15rem; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { margin: 0 0 1rem; }
a { color: var(--gold); text-decoration: none; }
img, svg { max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--gold); color: #17161a; font-weight: 600; padding: 10px 16px;
  border-radius: 8px; transition: top .2s;
}
.skip-link:focus { top: 16px; }

/* ---------- eyebrows / gold motif ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
}
.eyebrow.center { justify-content: center; }
.ember-bar { display: inline-block; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright)); }

/* forge-stroke underline on hero key phrase */
.stroke-word { position: relative; white-space: nowrap; color: var(--gold); }
.forge-stroke {
  position: absolute; left: 0; right: 0; bottom: -.12em; width: 100%; height: .32em;
  fill: var(--gold); overflow: visible;
}

/* ============================================================
   BUTTONS — stone-textured, beveled, tactile
   ============================================================ */
.btn {
  --btn-radius: var(--radius-btn);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  letter-spacing: .01em; line-height: 1;
  padding: 15px 26px; border: 0; border-radius: var(--btn-radius);
  cursor: pointer; text-align: center; white-space: nowrap;
  background-repeat: repeat, no-repeat;
  background-size: 160px 160px, 100% 100%;
  background-blend-mode: soft-light, normal;
  transition: transform 130ms var(--ease), box-shadow 160ms ease, background-color 130ms ease, filter 130ms ease;
  will-change: transform;
}
.btn-ico { width: 18px; height: 18px; flex: none; }
.btn-lg { padding: 17px 32px; font-size: 17px; }
.btn-block { width: 100%; }

/* primary — brushed steel stone */
.btn-primary {
  color: #F6F4EF; text-shadow: 0 1px 0 rgba(0,0,0,.45);
  background-color: var(--btn-mid);
  background-image: var(--noise), linear-gradient(180deg, var(--btn-top) 0%, var(--btn-mid) 52%, var(--btn-bot) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.28) inset,
    0 -1px 0 rgba(0,0,0,.35) inset,
    0 2px 0 var(--btn-edge),
    0 4px 8px rgba(0,0,0,.45),
    0 12px 26px rgba(0,0,0,.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-image: var(--noise), linear-gradient(180deg, var(--btn-hover-top) 0%, #63656c 52%, var(--btn-hover-bot) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.34) inset,
    0 -1px 0 rgba(0,0,0,.35) inset,
    0 3px 0 var(--btn-edge),
    0 8px 16px rgba(0,0,0,.45),
    0 20px 38px rgba(0,0,0,.55),
    0 0 0 1px rgba(198,161,91,.28);
}
.btn-primary:active {
  transform: translateY(1px);
  background-image: var(--noise), linear-gradient(180deg, #56585e 0%, var(--btn-active) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.14) inset,
    0 1px 0 var(--graphite-edge),
    0 2px 6px rgba(0,0,0,.5);
}

/* secondary — dark graphite stone */
.btn-secondary {
  color: var(--stone-100);
  background-color: var(--graphite-bot);
  background-image: var(--noise), linear-gradient(180deg, var(--graphite-top) 0%, var(--graphite-bot) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 2px 0 var(--graphite-edge),
    0 4px 8px rgba(0,0,0,.4),
    0 10px 22px rgba(0,0,0,.4);
}
.btn-secondary:hover {
  transform: translateY(-2px); color: #fff;
  background-image: var(--noise), linear-gradient(180deg, #403f46 0%, #2b2a30 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.10) inset,
    0 3px 0 var(--graphite-edge),
    0 8px 16px rgba(0,0,0,.45),
    0 18px 32px rgba(0,0,0,.5),
    0 0 0 1px rgba(198,161,91,.22);
}
.btn-secondary:active {
  transform: translateY(1px);
  background-image: var(--noise), linear-gradient(180deg, #232227 0%, #1a191d 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset, 0 1px 0 var(--graphite-edge), 0 2px 6px rgba(0,0,0,.5);
}

.btn:focus-visible { outline: 3px solid rgba(228,199,126,.6); outline-offset: 3px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }
.nav-shell { padding: 16px 24px 0; transition: padding .25s ease; }
.nav {
  max-width: var(--wrap); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  background: rgba(16,15,17,.86); backdrop-filter: saturate(140%) blur(10px);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 9px 12px 9px 14px;
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.8);
  transition: border-radius .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled .nav-shell { padding-top: 0; }
.site-header.scrolled .nav {
  border-radius: 0 0 16px 16px; border-top: 0; background: rgba(10,10,11,.94);
  box-shadow: 0 14px 30px -14px rgba(0,0,0,.85);
}

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--text); }
.brand-logo { width: 48px; height: 48px; display: block; flex: none; border-radius: 10px; }
.footer-logo { width: 120px; height: 120px; display: block; border-radius: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.32rem; letter-spacing: -.01em; color: var(--gold); }
.brand-sub { font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone-300); font-weight: 600; margin-top: 4px; }

.nav-links { display: flex; gap: 4px; list-style: none; margin: 0 auto; padding: 0; }
.nav-links a {
  color: var(--stone-100); font-weight: 500; font-size: .95rem;
  padding: 8px 13px; border-radius: 9px; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--surface-2); color: var(--gold-bright); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-phone { padding: 11px 16px; font-size: .95rem; }

.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border-2);
  background: var(--surface-2); border-radius: 11px; color: var(--gold); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  max-width: var(--wrap); margin: 8px auto 0; padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(16,15,17,.98); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 24px 44px -20px rgba(0,0,0,.85);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu > a:not(.btn) { padding: 13px 12px; border-radius: 10px; color: var(--stone-100); font-weight: 500; }
.mobile-menu > a:not(.btn):hover { background: var(--surface-2); color: var(--gold-bright); }
.mobile-menu .btn { margin-top: 6px; }

/* ============================================================
   HERO (centered, logo-led)
   ============================================================ */
.hero {
  position: relative; padding: 56px 0 64px; text-align: center; overflow: hidden;
  background:
    radial-gradient(60% 45% at 50% 18%, rgba(198,161,91,.14), transparent 70%),
    radial-gradient(80% 60% at 50% 0%, rgba(30,29,34,.8), transparent 60%);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: min(340px, 74vw); height: auto; margin-bottom: 22px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.6));
}
.hero h1 { margin: 6px 0 0; max-width: 16ch; }
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 56ch; margin: 1.1rem auto 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center; list-style: none; padding: 0; margin: 0; }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--stone-300); font-weight: 500; font-size: .92rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--gold); flex: none; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 18px; padding: 16px 24px;
}
.trust-strip-inner span:not(.dot) { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: .92rem; color: var(--stone-300); }
.trust-strip-inner svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.trust-strip-inner .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .7; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section--panel { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-lede { color: var(--muted); font-size: 1.1rem; margin-top: .4rem; }

.group-title { margin: 40px 0 20px; }
.group-title:first-of-type { margin-top: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--border-2);
}
.chip-clean { color: var(--stone-100); background: rgba(158,160,166,.10); }
.chip-prop { color: var(--gold-bright); background: rgba(198,161,91,.12); border-color: rgba(198,161,91,.32); }

/* ---------- service cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .22s var(--ease), box-shadow .22s ease, border-color .22s ease;
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.service-card:hover { transform: translateY(-8px); border-color: var(--border-2); box-shadow: var(--shadow-card), 0 34px 60px -22px rgba(0,0,0,.85); }
.service-card:hover::before { transform: scaleX(1); }
.svc-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 13px;
  background: var(--surface-2); color: var(--gold); border: 1px solid var(--border-2);
  margin-bottom: 16px;
}
.svc-ico svg { width: 26px; height: 26px; }
.service-card h4 { margin-bottom: .4rem; color: var(--text); }
.service-card p { margin: 0; color: var(--muted); font-size: .96rem; }

/* reveal-on-hover "Request a Quote" button inside each service card */
.card-cta {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: #17161A;
  padding: 9px 16px; border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  box-shadow: 0 1px 0 rgba(255,255,255,.4) inset, 0 2px 0 var(--gold-deep), 0 6px 14px rgba(0,0,0,.5);
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity .28s ease, transform .28s var(--ease), box-shadow .16s ease, filter .16s ease;
}
.card-cta svg { width: 16px; height: 16px; }
.card-cta:hover { filter: brightness(1.05); }
.card-cta:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--gold-deep), 0 2px 6px rgba(0,0,0,.5); }
.service-card:hover .card-cta,
.service-card:focus-within .card-cta { opacity: 1; transform: translateY(0); pointer-events: auto; }
.card-cta:focus-visible { opacity: 1; transform: translateY(0); pointer-events: auto; outline: 3px solid rgba(228,199,126,.6); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { .card-cta { transition: opacity .2s ease; transform: none; } }
/* touch devices: hidden by default, revealed when the card is tapped (JS adds .revealed) */
.service-card.revealed .card-cta { opacity: 1; transform: translateY(0); pointer-events: auto; }

.service-card--cta {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: var(--border-2); display: flex; flex-direction: column;
}
.service-card--cta::before { display: none; }
.service-card--cta h4 { color: var(--gold-bright); }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 14px; color: var(--gold); font-weight: 600; }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- service area ---------- */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.area-copy p { color: var(--muted); }
.area-copy .btn { margin-top: 10px; }
.area-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.area-list li {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 15px 18px; font-weight: 500; color: var(--stone-100); box-shadow: var(--shadow-card);
}
.area-list svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; font-family: var(--font-head); font-weight: 600;
  font-size: 1.08rem; color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid rgba(228,199,126,.45); outline-offset: -3px; border-radius: 14px; }
.faq-mark { position: relative; width: 18px; height: 18px; flex: none; }
.faq-mark::before, .faq-mark::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .25s var(--ease), opacity .25s ease; }
.faq-mark::before { top: 8px; left: 0; width: 18px; height: 2.5px; }
.faq-mark::after { left: 8px; top: 0; width: 2.5px; height: 18px; }
.faq-item[open] .faq-mark::after { transform: rotate(90deg); opacity: 0; }
.faq-body { padding: 0 22px 20px; }
.faq-body p { margin: 0; color: var(--muted); }

/* ---------- quote / contact ---------- */
.section--quote { background:
  radial-gradient(70% 90% at 100% 0%, rgba(198,161,91,.10), transparent 55%), var(--bg-2);
  border-top: 1px solid var(--border); }
.quote-wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 52px; align-items: start; }
.quote-intro { position: sticky; top: 120px; }
.quote-intro p { color: var(--muted); }
.quote-points { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 14px; }
.quote-points li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--stone-100); min-width: 0; }
.quote-points a { color: var(--stone-100); overflow-wrap: anywhere; }
.quote-points a:hover { color: var(--gold-bright); }
.quote-points svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

.quote-form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; box-shadow: 0 40px 70px -34px rgba(0,0,0,.85), var(--shadow-card);
}
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--stone-300); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--text);
  background: #0E0D0F; border: 1px solid var(--border-2); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field select { appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239EA0A6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.20);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #c9564b; box-shadow: 0 0 0 3px rgba(201,86,75,.18);
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--muted-2); margin: 14px 0 0; text-align: center; }
.form-status { margin: 16px 0 0; padding: 13px 16px; border-radius: 10px; font-weight: 500; font-size: .95rem; }
.form-status.success { background: rgba(52,131,84,.16); color: #7fd39b; border: 1px solid rgba(52,131,84,.4); }
.form-status.error { background: rgba(201,86,75,.14); color: #f0a59d; border: 1px solid rgba(201,86,75,.4); }
.btn-primary[disabled] { opacity: .65; cursor: progress; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060506; border-top: 1px solid var(--border); color: var(--muted); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 40px; }
.footer-blurb { margin-top: 16px; max-width: 40ch; font-size: .92rem; line-height: 1.6; }
.footer-col h5 { color: var(--gold); font-family: var(--font-body); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 16px; }
.footer-col a { display: block; color: var(--muted); padding: 5px 0; font-size: .93rem; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-contact { display: flex; align-items: center; gap: 10px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--border);
  font-size: .84rem; color: var(--muted-2);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid, .quote-wrap { grid-template-columns: 1fr; gap: 40px; }
  .quote-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .section { padding: 72px 0; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 18px; }
  .card-grid, .area-list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .quote-form-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip-inner .dot { display: none; }
  .section-head { margin-bottom: 38px; }
}
