/* =========================================================
   Firehouse Fence & Construction
   Design System — clean, warm, luxury
   ========================================================= */

:root {
  /* Brand palette */
  --ink:        #16120F;   /* near-black, warm */
  --charcoal:   #221C18;
  --graphite:   #2E2823;
  --ember:      #C0392B;   /* firehouse brand red */
  --ember-dark: #962618;
  --gold:       #B08856;   /* refined bronze accent */
  --gold-soft:  #C9A878;
  --cream:      #F8F4EE;   /* warm ivory page bg */
  --sand:       #EFE7DC;
  --sand-deep:  #E5DACB;
  --paper:      #FFFFFF;

  /* Text */
  --text:       #1F1A16;
  --muted:      #6E655B;
  --muted-light:#9A9087;
  --on-dark:    #F4EEE6;
  --on-dark-mut:#B9AFA2;

  /* Lines / shadows */
  --line:       rgba(22,18,15,0.10);
  --line-soft:  rgba(22,18,15,0.06);
  --line-dark:  rgba(255,255,255,0.10);
  --shadow-sm:  0 2px 10px rgba(22,18,15,0.06);
  --shadow-md:  0 14px 40px rgba(22,18,15,0.10);
  --shadow-lg:  0 30px 70px rgba(22,18,15,0.16);

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 9px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Type scale ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.95rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p  { color: var(--muted); }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 2px;
  background: var(--ember);
  display: inline-block;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow.center { justify-content: center; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.bg-cream  { background: var(--cream); }
.bg-sand   { background: var(--sand); }
.bg-paper  { background: var(--paper); }
.bg-ink    { background: var(--ink); color: var(--on-dark); }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head h2 { margin: 18px 0 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  padding: 15px 30px; border-radius: 50px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ember); color: #fff; box-shadow: 0 10px 26px rgba(192,57,43,.28); }
.btn-primary:hover { background: var(--ember-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(192,57,43,.34); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--graphite); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header .nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 42px; height: 42px; flex: none; }
.brand .word { line-height: 1; }
.brand .word b {
  font-family: var(--serif); font-weight: 800; font-size: 1.22rem;
  letter-spacing: .02em; color: var(--ink); display: block;
}
.brand .word span {
  font-size: .62rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--text);
  padding: 9px 16px; border-radius: 8px; position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--ember); }
.nav-links a.active { color: var(--ember); }
.nav-links a.active::after {
  content:""; position:absolute; left:16px; right:16px; bottom:2px; height:2px;
  background: var(--ember); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .95rem; color: var(--ink);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--ember); }
.nav-phone:hover { color: var(--ember); }

/* solid state on scroll / inner pages */
.site-header.solid { background: rgba(248,244,238,.92); backdrop-filter: blur(12px); border-color: var(--line); box-shadow: 0 2px 18px rgba(22,18,15,.05); }

/* When hero is dark, header text is light until scrolled */
.site-header.on-dark:not(.solid) .brand .word b { color: #fff; }
.site-header.on-dark:not(.solid) .nav-links a { color: rgba(255,255,255,.86); }
.site-header.on-dark:not(.solid) .nav-links a:hover,
.site-header.on-dark:not(.solid) .nav-links a.active { color: #fff; }
.site-header.on-dark:not(.solid) .nav-phone { color: #fff; }
.site-header.on-dark:not(.solid) .hamburger span { background: #fff; }

.hamburger { display: none; width: 44px; height: 44px; border: none; background: transparent; position: relative; }
.hamburger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.hamburger span:nth-child(1){ top: 15px; }
.hamburger span:nth-child(2){ top: 21px; }
.hamburger span:nth-child(3){ top: 27px; }
body.menu-open .hamburger span:nth-child(1){ top:21px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2){ opacity: 0; }
body.menu-open .hamburger span:nth-child(3){ top:21px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 82px 0 0 0; z-index: 99;
  background: var(--cream);
  transform: translateX(100%); transition: transform .4s var(--ease);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 4px;
  border-top: 1px solid var(--line);
}
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.6rem; padding: 16px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-menu a.active { color: var(--ember); }
.mobile-menu .m-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--on-dark);
  background: radial-gradient(120% 100% at 78% 8%, #34291f 0%, var(--charcoal) 42%, var(--ink) 100%);
  padding: 168px 0 110px;
  overflow: hidden;
}
.hero::before { /* blueprint grid */
  content:""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 100% at 70% 0%, #000 30%, transparent 78%);
}
.hero::after { /* warm ember glow */
  content:""; position:absolute; top:-20%; right:-10%; width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(192,57,43,.18), transparent 62%);
  pointer-events:none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin: 22px 0 24px; }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero p.lead { color: var(--on-dark-mut); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero-rating { display: flex; align-items: center; gap: 14px; margin-top: 34px; color: var(--on-dark-mut); font-size: .92rem; }
.hero-rating .stars { color: var(--gold-soft); letter-spacing: 2px; font-size: 1.05rem; }
.hero-rating b { color: #fff; font-weight: 600; }

/* hero visual card */
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark);
  border-radius: 20px; padding: 30px; backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}
.hero-card .badge-firefighter {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(192,57,43,.16); border: 1px solid rgba(192,57,43,.32);
  color: #f6d9d3; padding: 8px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 22px;
}
.hero-card h3 { color: #fff; font-size: 1.45rem; margin-bottom: 18px; }
.hero-card ul { display: grid; gap: 14px; }
.hero-card li { display: flex; align-items: flex-start; gap: 12px; color: var(--on-dark-mut); font-size: .98rem; }
.hero-card li svg { width: 20px; height: 20px; color: var(--gold-soft); flex: none; margin-top: 2px; }
.hero-card li b { color: #fff; font-weight: 600; }
.hero-card .card-cta { margin-top: 26px; }

/* ---------- Trust bar ---------- */
.trustbar { background: var(--ink); border-top: 1px solid var(--line-dark); }
.trustbar .row { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 30px 24px; text-align: center; color: var(--on-dark); border-right: 1px solid var(--line-dark); }
.trust-item:last-child { border-right: none; }
.trust-item .n { font-family: var(--serif); font-size: 2rem; color: #fff; line-height: 1; }
.trust-item .l { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark-mut); margin-top: 8px; }
.trust-item .ic { color: var(--gold-soft); margin: 0 auto 12px; width: 28px; height: 28px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  position: relative; overflow: hidden;
}
.card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--ember); transition: width .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { width: 100%; }
.card .icon {
  width: 58px; height: 58px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--sand), var(--sand-deep)); color: var(--ember); margin-bottom: 22px;
}
.card .icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.card p { font-size: .98rem; margin-bottom: 18px; }
.card .more { font-weight: 600; font-size: .9rem; color: var(--ember); display: inline-flex; align-items: center; gap: 6px; }
.card .more svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }
.card ul.feat { display: grid; gap: 9px; margin-top: 4px; }
.card ul.feat li { font-size: .92rem; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.card ul.feat li::before { content:""; width:6px; height:6px; border-radius:50%; background: var(--gold); margin-top: 9px; flex:none; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-visual { order: 2; }
.split-body h2 { margin: 18px 0 20px; }
.feature-list { display: grid; gap: 22px; margin-top: 30px; }
.feature-list .fitem { display: flex; gap: 16px; }
.feature-list .fitem .fic {
  width: 46px; height: 46px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--ember); box-shadow: var(--shadow-sm);
}
.feature-list .fitem .fic svg { width: 22px; height: 22px; }
.feature-list .fitem h4 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.feature-list .fitem p { font-size: .96rem; }

/* visual panels (CSS art, no photos) */
.visual-panel {
  border-radius: 20px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg); min-height: 440px;
  background: radial-gradient(120% 100% at 20% 0%, #35291f, var(--charcoal) 55%, var(--ink));
}
.visual-panel .slats {
  position:absolute; inset:0;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 30px);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
}
.visual-panel .glow { position:absolute; inset:0; background: radial-gradient(70% 60% at 70% 80%, rgba(192,57,43,.28), transparent 60%); }
.visual-panel .stat-chip {
  position:absolute; left: 28px; bottom: 28px; right: 28px;
  background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); backdrop-filter: blur(6px);
  border-radius: 14px; padding: 22px 24px; color: #fff;
}
.visual-panel .stat-chip .big { font-family: var(--serif); font-size: 2.4rem; line-height: 1; color: #fff; }
.visual-panel .stat-chip .sub { color: var(--on-dark-mut); font-size: .9rem; margin-top: 8px; }
.visual-panel .badge-tl {
  position:absolute; top: 24px; left: 24px; background: var(--ember); color:#fff;
  font-weight:700; font-size:.8rem; letter-spacing:.05em; padding:9px 16px; border-radius:50px;
  display:inline-flex; align-items:center; gap:8px;
}
.visual-panel.alt { background: radial-gradient(120% 100% at 80% 0%, #2c2a26, var(--graphite) 55%, var(--ink)); }
.visual-panel.alt .glow { background: radial-gradient(70% 60% at 30% 80%, rgba(176,136,86,.30), transparent 60%); }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .num {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700; color: var(--ember);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  border: 1.5px solid rgba(192,57,43,.3); background: #fff; margin-bottom: 18px;
}
.step h4 { font-family: var(--sans); font-size: 1.08rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step p { font-size: .94rem; }
.steps.on-dark .step h4 { color: #fff; }
.steps.on-dark .step p { color: var(--on-dark-mut); }
.steps.on-dark .step .num { background: transparent; color: var(--gold-soft); border-color: rgba(176,136,86,.5); }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.review {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.review .quote { color: var(--text); font-size: 1.02rem; line-height: 1.6; flex: 1; }
.review .quote::before { content:"“"; font-family: var(--serif); color: var(--gold-soft); font-size: 2.4rem; line-height: 0; vertical-align: -.4em; margin-right: 4px; }
.review .who { display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.review .who .av {
  width: 44px; height: 44px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--ember), var(--ember-dark)); color: #fff; font-weight: 700; font-family: var(--serif);
}
.review .who .nm { font-weight: 700; color: var(--ink); font-size: .98rem; }
.review .who .src { font-size: .82rem; color: var(--muted-light); }
.review.featured { background: var(--ink); color: var(--on-dark); border-color: transparent; }
.review.featured .quote { color: #fff; }
.review.featured .who { border-color: var(--line-dark); }
.review.featured .who .nm { color: #fff; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: radial-gradient(120% 130% at 80% 0%, #35291f, var(--charcoal) 50%, var(--ink)); color: #fff; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 2px, transparent 2px 34px); mask-image: linear-gradient(90deg, transparent, #000 40%); }
.cta-band .inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--on-dark-mut); margin-top: 14px; }
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.cta-band .cta-actions .btn { width: 100%; }
.cta-band .ph { text-align: center; margin-top: 6px; color: var(--on-dark-mut); font-size: .92rem; }
.cta-band .ph b { color: #fff; font-size: 1.05rem; }

/* ---------- Page hero (inner) ---------- */
.page-hero {
  background: radial-gradient(120% 130% at 78% 0%, #34291f, var(--charcoal) 48%, var(--ink));
  color: #fff; padding: 150px 0 70px; position: relative; overflow: hidden;
}
.page-hero::before { content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(110% 100% at 70% 0%, #000 30%, transparent 80%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin: 16px 0 16px; }
.page-hero p { color: var(--on-dark-mut); max-width: 60ch; font-size: 1.12rem; }
.crumbs { font-size: .85rem; color: var(--on-dark-mut); margin-bottom: 6px; }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--gold-soft); }

/* ---------- Stats strip ---------- */
.statstrip { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.statstrip .s { text-align:center; padding: 8px; }
.statstrip .s .v { font-family: var(--serif); font-size: clamp(2rem,4vw,2.8rem); color: var(--ink); line-height:1; }
.statstrip .s .k { font-size:.82rem; letter-spacing:.1em; text-transform:uppercase; color: var(--muted); margin-top:10px; }
.bg-ink .statstrip .s .v { color: #fff; }
.bg-ink .statstrip .s .k { color: var(--on-dark-mut); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:last-of-type { border-bottom: none; }
.contact-info .info-item .ic {
  width: 50px; height: 50px; border-radius: 12px; flex: none; display: grid; place-items: center;
  background: var(--ink); color: var(--gold-soft);
}
.contact-info .info-item .ic svg { width: 22px; height: 22px; }
.contact-info .info-item h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 5px; }
.contact-info .info-item a, .contact-info .info-item p { font-size: 1.12rem; color: var(--ink); font-weight: 600; }
.contact-info .info-item a:hover { color: var(--ember); }
.contact-info .info-item .sub { font-size: .92rem; color: var(--muted); font-weight: 400; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 38px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: var(--ember); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ember); background: #fff; box-shadow: 0 0 0 4px rgba(192,57,43,.10);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--ember); }
.field .err { color: var(--ember); font-size: .82rem; margin-top: 6px; display: none; }
.field.invalid .err { display: block; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 16px; text-align: center; }
.form-success {
  display: none; text-align: center; padding: 30px 10px;
}
.form-success.show { display: block; }
.form-success .ck { width: 64px; height: 64px; border-radius: 50%; background: rgba(46,140,87,.12); color: #2E8C57; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success h3 { color: var(--ink); margin-bottom: 10px; }

/* ---------- Map ---------- */
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); height: 360px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }

/* ---------- Service detail rows ---------- */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 56px 0; border-bottom: 1px solid var(--line); }
.svc-row:last-child { border-bottom: none; }
.svc-row.reverse .svc-visual { order: 2; }
.svc-row .tag { display:inline-flex; align-items:center; gap:8px; font-size:.8rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color: var(--gold); margin-bottom: 14px; }
.svc-row h3 { font-size: clamp(1.6rem,3vw,2.1rem); margin-bottom: 16px; }
.svc-row ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-top: 22px; }
.svc-row ul li { font-size: .95rem; color: var(--text); display: flex; gap: 9px; align-items: flex-start; }
.svc-row ul li svg { width: 17px; height: 17px; color: var(--ember); flex: none; margin-top: 4px; }
.svc-visual { min-height: 360px; border-radius: 18px; position: relative; overflow: hidden; box-shadow: var(--shadow-md);
  background: radial-gradient(120% 100% at 30% 0%, #33271d, var(--charcoal) 55%, var(--ink)); display:grid; place-items:center; }
.svc-visual .big-ic { width: 96px; height: 96px; color: rgba(255,255,255,.16); }
.svc-visual .slats { position:absolute; inset:0; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 2px, transparent 2px 28px); mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent); }
.svc-visual .glow { position:absolute; inset:0; background: radial-gradient(60% 60% at 60% 75%, rgba(192,57,43,.25), transparent 62%); }
.svc-visual .lbl { position:absolute; bottom: 22px; left: 24px; color:#fff; font-family: var(--serif); font-size: 1.3rem; z-index:2; }

/* ---------- FAQ / accordion ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ember); transition: .3s var(--ease); }
.faq-item.open .faq-q .pm { background: var(--ember); border-color: var(--ember); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 24px; font-size: 1rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 52px; }
.site-footer .brand .word b { color: #fff; }
.footer-about p { color: var(--on-dark-mut); font-size: .96rem; margin: 20px 0; max-width: 34ch; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-dark); display: grid; place-items: center; color: var(--on-dark-mut); transition: .25s var(--ease); }
.footer-socials a:hover { background: var(--ember); border-color: var(--ember); color: #fff; transform: translateY(-3px); }
.footer-col h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col li { color: var(--on-dark-mut); font-size: .95rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col .ftc { display: flex; gap: 11px; align-items: flex-start; }
.footer-col .ftc svg { width: 17px; height: 17px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { color: var(--muted-light); font-size: .86rem; }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom .fb-links a { color: var(--on-dark-mut); font-size: .86rem; }
.footer-bottom .fb-links a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } html { scroll-behavior:auto; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { max-width: 520px; }
  .split, .contact-grid, .cta-band .inner, .svc-row, .svc-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-visual, .svc-row.reverse .svc-visual { order: 0; }
  .cards, .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .steps, .statstrip { grid-template-columns: repeat(2,1fr); gap: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trustbar .row { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2){ border-right: none; }
  .trust-item { border-bottom: 1px solid var(--line-dark); }
}
@media (max-width: 920px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 720px) {
  .cards, .reviews-grid, .svc-row ul { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  body { font-size: 16px; }
  .hero { padding: 140px 0 80px; }
}
