/* ============================================================
   EXEFIRE — Production stylesheet
   Static site for Cloudflare Pages
   ============================================================ */

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

:root {
  --navy: #0d1724;
  --charcoal: #172030;
  --panel: #0f1b29;
  --panel-2: #1c2d40;
  --red: #b8311e;
  --red-dim: #921c12;
  --rule: rgba(255,255,255,0.07);
  --rule-med: rgba(255,255,255,0.11);
  --rule-strong: rgba(255,255,255,0.18);
  --text: #edf0f4;
  --muted: #8492a6;
  --muted-light: #a8b3c2;
  --light-bg: #eef2f5;
  --light-bg-2: #e2e8ee;
  --light-ink: #14202d;
  --light-ink-2: #3a4a5d;
  --light-muted: #5d6f84;
  --light-rule: #cfd6de;
}

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  background: var(--navy);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--red); color: #fff; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; }

/* Visually-hidden helper for labels we keep in DOM but hide visually only when explicitly needed */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.eyebrow { font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }

.list-clean { list-style: none; padding: 0; }
.list-clean li { padding-left: 22px; position: relative; margin-bottom: 12px; font-size: 14px; line-height: 1.65; color: var(--muted-light); }
.list-clean li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--red); opacity: 0.8; display: block; }

.lead-prose { font-size: 15.5px; line-height: 1.78; color: var(--muted-light); }

/* ─── PHOTO PANEL FRAME ─── */
.photo-panel { position: relative; background: linear-gradient(135deg, rgba(184,49,30,0.07) 0%, rgba(184,49,30,0) 42%), radial-gradient(ellipse at 30% 18%, rgba(255,255,255,0.05) 0%, transparent 55%), radial-gradient(ellipse at 80% 92%, rgba(28,45,64,0.6) 0%, transparent 60%), linear-gradient(180deg, #15212f 0%, #0a1320 100%); border: 1px solid var(--rule-med); overflow: hidden; isolation: isolate; min-height: 360px; }
.photo-panel::after { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(180deg, transparent 0%, var(--red) 25%, var(--red) 75%, transparent 100%); opacity: 0.7; z-index: 2; }
.photo-panel-large { min-height: 480px; }
.photo-panel-large::after { width: 2px; opacity: 0.85; }
.photo-panel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; display: block; }

.svc-content-vertical { display: flex; flex-direction: column; gap: 36px; }

/* ─── HEADER ─── */
.site-header { background: rgba(15,27,41,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--rule-med); padding: 0 52px; height: 70px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; gap: 32px; }

.header-brand { display: flex; flex-direction: column; justify-content: center; flex-shrink: 0; gap: 4px; }
.header-brand .brand-logo { display: block; height: 28px; width: auto; object-fit: contain; }

@media (max-width: 560px) {
  .header-brand .brand-logo { height: 23px; }
}

.logo-mark { font-weight: 800; font-size: 19px; letter-spacing: 0.08em; color: #fff; line-height: 1; }
.logo-mark sup { font-size: 9px; font-weight: 500; color: var(--red); margin-left: 2px; vertical-align: super; }

.brand-sub { font-size: 10px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }

.nav-primary { display: flex; gap: 28px; align-items: center; margin-left: auto; }

.nav-link { font-weight: 600; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); padding: 4px 0; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav-link:hover, .nav-link:focus-visible { color: #fff; border-bottom-color: var(--red); outline: none; }

.header-contact { font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.14); transition: color 0.2s, border-color 0.2s; flex-shrink: 0; }
.header-contact:hover, .header-contact:focus-visible { color: var(--text); border-color: var(--red); outline: none; }

.menu-toggle { display: none; background: transparent; border: 1px solid var(--rule-strong); color: var(--muted); padding: 8px 14px; font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; font-family: inherit; }
.menu-toggle:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ─── HERO ─── */
.hero { position: relative; padding: 120px 52px 104px; border-bottom: 1px solid var(--rule); overflow: hidden; isolation: isolate; background: var(--navy); min-height: 580px; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: 0; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(95deg, rgba(8,14,24,0.92) 0%, rgba(8,14,24,0.78) 42%, rgba(8,14,24,0.52) 70%, rgba(8,14,24,0.40) 100%); z-index: 1; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; z-index: 2; }
.hero-accent { position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); z-index: 3; }

.hero-grid { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; z-index: 4; }

.hero-inner { max-width: 720px; }

.hero-eyebrow { font-weight: 600; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--red); margin-bottom: 24px; display: inline-flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--red); display: inline-block; }

.hero h1 { font-weight: 800; font-size: clamp(34px, 4.6vw, 54px); line-height: 1.06; letter-spacing: -0.015em; color: #fff; text-transform: uppercase; margin-bottom: 28px; }
.hero h1 .accent { color: var(--red); display: block; }

.hero-lede { font-size: 16px; line-height: 1.72; color: var(--muted-light); margin-bottom: 40px; font-weight: 400; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary { display: inline-block; font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; background: var(--red); color: #fff; padding: 14px 28px; border: 0; cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: inherit; }
.btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.btn-outline { display: inline-block; font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-light); border: 1px solid rgba(255,255,255,0.20); padding: 13px 24px; background: transparent; cursor: pointer; transition: border-color 0.2s, color 0.2s; font-family: inherit; }
.btn-outline:hover { border-color: var(--red); color: #fff; }
.btn-outline:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

.hero-services-strip { font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 32px; line-height: 1.7; padding-top: 22px; border-top: 1px solid var(--rule); max-width: 580px; }

/* ─── SECTION SHARED ─── */
section { padding: 88px 52px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label { font-weight: 600; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: inline-flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--red); display: inline-block; }

.section-title { font-weight: 800; font-size: clamp(22px, 2.6vw, 30px); letter-spacing: -0.005em; text-transform: uppercase; margin-bottom: 14px; line-height: 1.2; color: var(--text); }

.section-sub { font-size: 15.5px; line-height: 1.72; color: var(--muted-light); max-width: 720px; margin-bottom: 40px; }

/* ─── PROBLEM ─── */
.problem { background: var(--panel); border-bottom: 1px solid var(--rule); }
.problem-grid > div { max-width: 880px; }
.problem-lede { font-size: 17px; line-height: 1.72; color: var(--muted-light); border-left: 2px solid var(--red); padding-left: 26px; font-weight: 400; }

/* ─── SERVICES OVERVIEW (LIGHT SECTION) ─── */
.services-overview { background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-2) 100%); color: var(--light-ink); border-top: 1px solid #d6dde4; border-bottom: 1px solid #d6dde4; position: relative; overflow: hidden; }
.services-overview::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,32,45,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,32,45,0.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; z-index: 0; }
.services-overview .section-inner { position: relative; z-index: 1; }
.services-overview .section-title { color: var(--light-ink); }
.services-overview .section-sub { color: var(--light-ink-2); }

.svc-tier-label { font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin: 40px 0 18px 0; display: inline-flex; align-items: center; gap: 12px; }
.svc-tier-label:first-of-type { margin-top: 0; }
.svc-tier-label::before { content: ''; width: 18px; height: 1px; background: var(--rule-strong); display: inline-block; }
.services-overview .svc-tier-label { color: var(--light-muted); }
.services-overview .svc-tier-label::before { background: var(--light-rule); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--light-rule); border: 1px solid var(--light-rule); }
.service-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-grid.two { grid-template-columns: repeat(2, 1fr); }

.service-card { background: #ffffff; padding: 32px 28px; display: block; transition: background 0.18s, transform 0.18s; text-align: left; width: 100%; color: inherit; position: relative; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 0; height: 2px; background: var(--red); transition: width 0.25s ease; }
.service-card:hover { background: var(--light-bg); }
.service-card:hover::before { width: 36px; }
.service-card:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

.card-num { font-weight: 700; font-size: 11px; letter-spacing: 0.18em; color: var(--red); opacity: 0.8; margin-bottom: 18px; }
.card-title { font-weight: 800; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--light-ink); margin-bottom: 12px; line-height: 1.28; }
.card-body { font-size: 13.5px; color: var(--light-muted); line-height: 1.6; margin-bottom: 22px; }
.card-arrow { font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--light-ink-2); display: inline-block; transition: color 0.18s, transform 0.18s; }
.service-card:hover .card-arrow { color: var(--red); transform: translateX(4px); }

/* ─── SERVICE DETAIL SECTIONS ─── */
.svc-detail { border-bottom: 1px solid var(--rule); }
.svc-detail.bg-navy { background: var(--navy); }
.svc-detail.bg-charcoal { background: var(--charcoal); }
.svc-detail.bg-panel { background: var(--panel); }

.svc-header { display: grid; grid-template-columns: 100px 1fr; gap: 32px; margin-bottom: 48px; align-items: baseline; }
.svc-num { font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); padding-top: 14px; border-top: 2px solid var(--red); align-self: start; }

/* Standardised vertical layout: number+title → image → description → bullet grid */
.svc-body { padding-left: 132px; }
.svc-photo { display: block; margin-bottom: 40px; }
.svc-photo .photo-panel { min-height: 0; aspect-ratio: 16 / 9; }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }

/* ─── PROCESS (LIGHT SECTION) ─── */
.process { background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-2) 100%); color: var(--light-ink); border-top: 1px solid #d6dde4; border-bottom: 1px solid #d6dde4; position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,32,45,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,32,45,0.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; z-index: 0; }
.process .section-inner { position: relative; z-index: 1; }
.process .section-title { color: var(--light-ink); }
.process .section-sub { color: var(--light-ink-2); }

.process-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--light-rule); border: 1px solid var(--light-rule); }
.step { background: #ffffff; padding: 28px 22px; }
.step-num { font-weight: 800; font-size: 28px; color: var(--red); margin-bottom: 14px; line-height: 1; letter-spacing: -0.01em; }
.step-title { font-weight: 800; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light-ink); margin-bottom: 10px; }
.step-body { font-size: 13px; color: var(--light-muted); line-height: 1.6; }

.process-aside { background: #ffffff; border: 1px solid var(--light-rule); padding: 28px 28px 24px; position: relative; }
.process-aside::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.process-aside .eyebrow { color: var(--red); }
.process-aside h3 { font-weight: 800; font-size: 16px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--light-ink); margin-bottom: 14px; line-height: 1.3; }
.process-aside p { font-size: 14px; line-height: 1.7; color: var(--light-ink-2); margin-bottom: 14px; }
.process-aside p:last-child { margin-bottom: 0; }

/* ─── MID-PAGE CTA BAND ─── */
.cta-band { background: linear-gradient(135deg, #15212f 0%, #0a1320 70%); border-top: 1px solid var(--rule-med); border-bottom: 1px solid var(--rule-med); padding: 56px 52px; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); }
.cta-band::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr auto; gap: 48px; align-items: center; position: relative; z-index: 1; }
.cta-band-eyebrow { font-weight: 600; font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; }
.cta-band-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--red); display: inline-block; }
.cta-band-title { font-weight: 700; font-size: clamp(18px, 2vw, 22px); line-height: 1.4; color: #fff; letter-spacing: -0.005em; }
.cta-band .btn-primary { white-space: nowrap; }

/* ─── ABOUT (LIGHT SECTION) ─── */
.about { background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-bg-2) 100%); color: var(--light-ink); border-top: 1px solid #d6dde4; border-bottom: 1px solid #d6dde4; position: relative; overflow: hidden; }
.about::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,32,45,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,32,45,0.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; z-index: 0; }
.about .section-inner { position: relative; z-index: 1; }
.about .section-title { color: var(--light-ink); }
.about .section-sub { color: var(--light-ink-2); }
.about .eyebrow { color: var(--red); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.about-prose p { margin-bottom: 20px; color: var(--light-ink-2); }
.about-prose p:last-child { margin-bottom: 0; }
.about-prose strong { color: var(--light-ink); font-weight: 700; }

.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--light-rule); border: 1px solid var(--light-rule); margin-top: 16px; }
.who-card { background: #ffffff; padding: 24px; }
.who-card h4 { font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--light-ink); margin-bottom: 10px; line-height: 1.3; }
.who-card p { font-size: 13px; color: var(--light-muted); line-height: 1.6; }

/* ─── FIELD REFERENCE (LIGHT SECTION) ─── */
.field-reference { background: linear-gradient(180deg, var(--light-bg-2) 0%, var(--light-bg) 100%); color: var(--light-ink); border-bottom: 1px solid #d6dde4; position: relative; overflow: hidden; }
.field-reference::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(20,32,45,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(20,32,45,0.04) 1px, transparent 1px); background-size: 56px 56px; pointer-events: none; z-index: 0; }
.field-reference .section-inner { position: relative; z-index: 1; }
.field-reference .section-title { color: var(--light-ink); }
.field-reference .section-sub { color: var(--light-ink-2); }

.fr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.fr-card { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #d8dde3; border: 1px solid var(--light-rule); box-shadow: 0 1px 2px rgba(20,32,45,0.04); transition: box-shadow 0.2s, transform 0.2s; }
.fr-card::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 100%; background: var(--red); opacity: 0; transition: opacity 0.2s; z-index: 2; }
.fr-card:hover { box-shadow: 0 4px 14px rgba(20,32,45,0.10); transform: translateY(-2px); }
.fr-card:hover::after { opacity: 1; }
.fr-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: brightness(0.97) contrast(1.02); transition: filter 0.2s; }
.fr-card:hover img { filter: brightness(1) contrast(1.04); }
.fr-card.tall { aspect-ratio: 4 / 5; }
.fr-card.wide { aspect-ratio: 16 / 9; }
.fr-card img.pos-top { object-position: center top; }
.fr-card img.pos-upper { object-position: center 30%; }
.fr-card img.pos-center { object-position: center center; }

/* ─── CONTACT ─── */
.contact { background: radial-gradient(ellipse at 80% 20%, rgba(184,49,30,0.06) 0%, transparent 55%), var(--charcoal); border-bottom: 1px solid var(--rule); }

.contact-form { display: flex; flex-direction: column; gap: 18px; max-width: 720px; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-light); }
.field label .req { color: var(--red); margin-left: 4px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea { background: rgba(15,27,41,0.5); border: 1px solid var(--rule-med); color: var(--text); padding: 13px 15px; font-size: 14px; font-family: inherit; font-weight: 400; width: 100%; transition: border-color 0.18s, background 0.18s; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); opacity: 0.7; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--red); background: rgba(15,27,41,0.75); }
.contact-form input.touched:invalid, .contact-form textarea.touched:invalid, .contact-form select.touched:invalid { border-color: rgba(184,49,30,0.55); }
.contact-form select option { background: var(--panel); color: var(--text); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { align-self: flex-start; margin-top: 6px; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.55; color: var(--muted-light); margin-top: 4px; cursor: pointer; user-select: none; }
.consent-row input[type="checkbox"] { width: 14px; height: 14px; margin-top: 3px; flex-shrink: 0; accent-color: var(--red); cursor: pointer; }
.consent-row.touched input[type="checkbox"]:invalid + span { color: rgba(184,49,30,0.85); }

.contact-note { font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 8px; }

.contact-caution { font-size: 12.5px; color: var(--muted); line-height: 1.65; margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--rule); max-width: 720px; }

.form-notice { display: none; padding: 14px 18px; margin-top: 12px; font-size: 13px; line-height: 1.6; }
.form-notice.show { display: block; }
.form-notice.success { background: rgba(184,49,30,0.10); border-left: 3px solid var(--red); color: var(--muted-light); }
.form-notice.success strong { color: #fff; font-weight: 700; }
.form-notice.error { background: rgba(184,49,30,0.18); border-left: 3px solid var(--red); color: #f4d8d3; }
.form-notice.error strong { color: #fff; font-weight: 700; }
.form-notice a { color: #fff; text-decoration: underline; }

/* ─── FOOTER ─── */
.site-footer { background: #080e18; border-top: 1px solid var(--rule-med); padding: 60px 52px 28px; }

.footer-top { display: grid; grid-template-columns: 1.2fr 1.4fr 1.1fr 1.1fr; gap: 48px; padding-bottom: 36px; border-bottom: 1px solid var(--rule); max-width: 1200px; margin: 0 auto; }

.footer-logo { display: block; height: 32px; width: auto; object-fit: contain; margin-bottom: 16px; }

.footer-col-subhead { margin-top: 24px; }
.footer-address-block { font-style: normal; font-size: 13px; color: var(--muted-light); line-height: 1.75; }

.footer-col h4 { font-weight: 600; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col p { font-size: 13px; color: #6a7b90; line-height: 1.65; margin-bottom: 6px; }

.footer-link { display: block; font-size: 13px; color: var(--muted-light); line-height: 2; transition: color 0.15s; }
.footer-link:hover, .footer-link:focus-visible { color: #fff; outline: none; }

.contact-line { display: block; font-size: 13px; color: var(--muted-light); line-height: 2; transition: color 0.15s; }
.contact-line:hover { color: #fff; }

.footer-disclaimer { max-width: 1200px; margin: 26px auto 0; padding-top: 18px; border-top: 1px solid var(--rule); font-size: 12px; color: #5a6a7e; line-height: 1.7; }
.footer-disclaimer p { margin-bottom: 8px; }
.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-bottom { max-width: 1200px; margin: 24px auto 0; padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-weight: 600; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #5a6a7e; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1080px) {
  .hero { padding: 96px 52px 80px; min-height: 520px; }
  .hero-inner { max-width: none; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-body { padding-left: 0; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav-primary { position: fixed; top: 70px; left: 0; right: 0; background: var(--panel); border-bottom: 1px solid var(--rule-med); flex-direction: column; align-items: stretch; gap: 0; padding: 0; transform: translateY(-100%); transition: transform 0.25s ease; z-index: 90; }
  .nav-primary.open { transform: translateY(0); }
  .nav-link { padding: 16px 24px; border-bottom: 1px solid var(--rule); text-align: left; }
  .nav-link:hover { background: var(--panel-2); border-bottom-color: var(--rule); }
  .menu-toggle { display: inline-block; }
  .header-contact { display: none; }
  .site-header { padding: 0 24px; gap: 16px; }

  .hero { padding: 80px 24px 64px; min-height: 480px; }
  section { padding: 64px 24px; }

  .service-grid, .service-grid.three, .service-grid.two { grid-template-columns: 1fr 1fr; }

  .svc-header { grid-template-columns: 1fr; gap: 8px; margin-bottom: 32px; }
  .svc-grid { grid-template-columns: 1fr; gap: 32px; }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-grid { grid-template-columns: 1fr; }

  .field-row { grid-template-columns: 1fr; }

  .fr-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-band { padding: 48px 24px; }
  .cta-band-inner { grid-template-columns: 1fr; gap: 28px; }

  .site-footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .photo-panel, .photo-panel-large { min-height: 300px; }
}

@media (max-width: 560px) {
  .service-grid, .service-grid.three, .service-grid.two { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .fr-grid { grid-template-columns: 1fr; }
  .photo-panel, .photo-panel-large { min-height: 260px; }
}
