/* =========================================================
   Signal of Tampa Bay - Shared Stylesheet  (v2)
   Brand (official Signal kit): Signal Blue #0032a0 · Navy #021d44 · Orange #ff9332 · Font: Raleway
   New visual language: editorial, numbered sections,
   asymmetric offsets, sharp corners + a single accent rule.
   ========================================================= */

:root {
  --navy: #021d44;
  --navy-800: #04245a;
  --navy-700: #052b6e;
  --navy-600: #0032a0;
  --blue: #0032a0;
  --aqua: #54b1f1;
  --orange: #ff9332;
  --orange-600: #f77619;
  --orange-050: #ffe9d7;
  --ink: #131c2e;
  --slate: #57637d;
  --slate-300: #8a96ad;
  --line: #e4e8f0;
  --line-dark: #1c3a6b;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-tint: #eef2f9;

  --maxw: 1200px;
  --radius: 4px;       /* sharper, more architectural */
  --radius-md: 8px;
  --shadow-sm: 0 1px 3px rgba(8,32,74,.08);
  --shadow-md: 0 14px 40px rgba(8,32,74,.12);
  --shadow-lg: 0 30px 70px rgba(8,32,74,.18);

  --ff: "Raleway", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--ff); color: var(--ink); background: var(--bg);
  font-size: 16px; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-weight: 800; line-height: 1.1; color: var(--navy); margin: 0 0 .5em; letter-spacing: -0.015em; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.6rem); }
.container--narrow { max-width: 880px; }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--navy { background: var(--navy); color: #cdd8ee; }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

h1 { font-size: clamp(2.2rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

/* --- Section heading kit (new rhythm) --- */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--orange-600); margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--orange); display: inline-block; }
.section--navy .kicker { color: var(--orange); }
.section--navy .kicker::before { background: var(--orange); }
.shead { max-width: 720px; margin-bottom: 2.8rem; }
.center { text-align: center; }
.center .btn { margin-inline: .3rem; }
.shead.center { margin-inline: auto; text-align: center; }
.shead.center .kicker::before { display: none; }
.shead.center .kicker { gap: 0; }
.lead { font-size: 1.12rem; color: var(--slate); max-width: 60ch; }
.section--navy .lead { color: #aebed9; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .95rem;
  padding: .9rem 1.7rem; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: all .22s var(--ease); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #1a1205; border-color: var(--orange); }
.btn--primary:hover { background: var(--orange-600); border-color: var(--orange-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-600); border-color: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--outline:hover { border-color: var(--navy); }
.btn--red { background: #d23b1e; color: #fff; border-color: #d23b1e; }
.btn--red:hover { background: #b12f15; border-color: #b12f15; transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* --- Placeholder image blocks --- */
.ph {
  position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(8,32,74,.94), rgba(18,57,125,.82));
  color: rgba(255,255,255,.85); border-radius: var(--radius);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-align: center; padding: 1rem; overflow: hidden; min-height: 220px;
}
.ph::before { content: "⊕ IMAGE"; opacity: .5; font-size: .66rem; position: absolute; top: .7rem; left: .8rem; letter-spacing: .14em; }
.ph span { max-width: 82%; opacity: .9; }

/* --- Header / Nav --- */
.topbar { background: var(--navy-800); color: #aebed9; font-size: .82rem; }
.topbar .container { display: flex; gap: 1.4rem; justify-content: flex-end; align-items: center; height: 38px; }
.topbar a { color: #cdd8ee; display: inline-flex; align-items: center; gap: .4rem; }
.topbar a:hover { color: var(--orange); }
.topbar .sep { color: var(--line-dark); }
@media (max-width: 680px) { .topbar { display: none; } }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: box-shadow .3s var(--ease); }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 1.4rem; height: 74px; }
.brand { display: flex; align-items: flex-end; gap: .6rem; flex-shrink: 0; line-height: 1; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand-tag { color: var(--orange); font-weight: 700; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; padding-bottom: 4px; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.nav-links > a, .has-drop > a { font-size: .92rem; font-weight: 600; color: var(--ink); padding: .55rem .75rem; border-radius: var(--radius); transition: color .2s, background .2s; }
.nav-links > a:hover, .has-drop > a:hover { color: var(--navy); background: var(--bg-tint); }
.nav-links a.active { color: var(--orange-600); }
.nav-cta { margin-left: .5rem; }

.has-drop { position: relative; }
.drop { position: absolute; top: calc(100% + 8px); left: 0; min-width: 270px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s var(--ease); }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: .6rem .8rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; }
.drop a:hover { background: var(--bg-tint); color: var(--navy); }
.drop a .d-sub { display:block; font-size:.76rem; font-weight:500; color: var(--slate-300); }

.nav-toggle { display: none; margin-left: auto; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* --- Hero (new: full-bleed split with left rule + offset card) --- */
.hero { position: relative; color: #fff; overflow: hidden; background: linear-gradient(115deg, var(--navy) 0%, var(--navy-700) 100%); }
.hero::after { content: ""; position: absolute; right: -6%; top: -20%; width: 46%; height: 140%; background: radial-gradient(circle, rgba(255,147,50,.18), transparent 62%); }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero h1 { color: #fff; }
.hero .lead { color: #bccbe6; font-size: 1.16rem; max-width: 52ch; }
.hero-tag { display:inline-flex; align-items:center; gap:.5rem; background: rgba(255,147,50,.14); border:1px solid rgba(255,147,50,.4); color: var(--orange); font-weight:700; font-size:.8rem; letter-spacing:.08em; text-transform:uppercase; padding:.4rem .9rem; border-radius: 999px; margin-bottom:1.4rem; }
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; margin-top: 1.8rem; }
.hero-media { position: relative; }
.hero-media .ph { min-height: 420px; border: 1px solid rgba(255,255,255,.14); }
.hero-video {
  display: block; width: 100%; height: 100%; min-height: 420px; max-height: 520px;
  object-fit: cover; border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow-lg);
  background: var(--navy);
}
.hero-badge { position: absolute; left: -22px; bottom: 28px; background: var(--orange); color: #1a1205; padding: 1rem 1.3rem; border-radius: var(--radius); box-shadow: var(--shadow-lg); max-width: 220px; }
.hero-badge b { display: block; font-size: 1.5rem; line-height: 1; }
.hero-badge span { font-size: .82rem; font-weight: 600; }

/* --- Full-bleed background video hero --- */
.hero--video { background: var(--navy); }
.hero--video::after { display: none; }
.hero-bg-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(105deg, rgba(2,29,68,.88) 0%, rgba(2,29,68,.74) 42%, rgba(2,29,68,.42) 100%),
  linear-gradient(0deg, rgba(2,29,68,.55), rgba(2,29,68,0) 55%); }
.hero--video .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; padding-block: clamp(5rem, 11vw, 8.5rem); }
.hero--video h1 { color: #fff; }
.hero--video .lead { color: #d6e0f1; max-width: 52ch; }
@media (max-width: 720px) {
  .hero-content { padding-block: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-overlay { background: linear-gradient(105deg, rgba(2,29,68,.9) 0%, rgba(2,29,68,.78) 100%); }
}

/* --- License / credentials card --- */
.license-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
  background: #fff; border: 1px solid rgba(2,29,68,.1); border-left: 4px solid var(--orange);
  border-radius: var(--radius-md); padding: 1.6rem 1.9rem; box-shadow: var(--shadow-sm);
}
.license-card h3 { color: var(--navy); font-size: 1.15rem; }
.license-badge {
  display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap;
  background: var(--orange); color: #1a1205; font-weight: 800;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: .6rem 1.1rem; border-radius: 999px;
}
.license-badge::before { content: "\2713"; font-size: 1rem; line-height: 1; }

/* stat strip */
.stat-strip { background: var(--navy-800); color: #fff; }
.stat-strip .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 1.7rem 1rem; text-align: center; border-left: 1px solid var(--line-dark); }
.stat:first-child { border-left: 0; }
.stat b { display: block; font-size: 1.9rem; color: var(--orange); line-height: 1; }
.stat span { font-size: .82rem; color: #aebed9; letter-spacing: .04em; }
@media (max-width: 760px){ .stat-strip .container { grid-template-columns: 1fr 1fr; } .stat:nth-child(3){ border-left:0; } }

/* page hero (interior) */
.page-hero { background: var(--navy); color: #fff; padding-block: clamp(3rem,7vw,5rem); position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero .lead { color: #bccbe6; }
.crumbs { font-size: .8rem; color: #8fa3c9; margin-bottom: 1.1rem; font-weight: 600; letter-spacing: .03em; }
.crumbs a:hover { color: var(--orange); }
.page-hero.fire { background: var(--navy); }
.page-hero.fire::after { display: none; }
.page-hero--slim { padding-block: clamp(1.6rem, 3.5vw, 2.4rem); }
.page-hero--slim h1 { margin-bottom: 0; }
.section--contact { padding-block: clamp(2rem, 4vw, 3rem); }
.split--form { align-items: start; }

/* --- Grids / cards --- */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* numbered service list (new layout pattern) */
.svc-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.6rem; align-items: center; padding: 1.8rem 0; border-top: 1px solid var(--line); transition: background .2s; }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row:hover { background: var(--bg-soft); }
.svc-row .num { font-size: 1.05rem; font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }
.svc-row h3 { margin: 0 0 .25rem; }
.svc-row p { margin: 0; color: var(--slate); font-size: .96rem; max-width: 64ch; }
.svc-row .go { color: var(--navy); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; }
.svc-row:hover .go { color: var(--orange-600); }
@media (max-width: 700px){ .svc-row { grid-template-columns: auto 1fr; } .svc-row .go { grid-column: 2; } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.7rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #cfd9ec; }
.card .icon { width: 54px; height: 54px; border-radius: var(--radius); display: grid; place-items: center; background: var(--orange-050); color: var(--orange-600); margin-bottom: 1.1rem; }
.card h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.card p { color: var(--slate); font-size: .96rem; margin: 0; }
.section--navy .card { background: var(--navy-700); border-color: var(--line-dark); }
.section--navy .card p { color: #aebed9; }
.section--navy .card .icon { background: rgba(255,147,50,.16); color: var(--orange); }
.card .icon--brand { background: transparent; width: 56px; height: 56px; }
.section--navy .card .icon--brand { background: transparent; }
.brand-ico { width: 40px; height: 40px; object-fit: contain; display: block; }

/* industry card */
.ind-card { overflow: hidden; padding: 0; display: flex; flex-direction: column; }
.ind-card .ph { border-radius: 0; min-height: 160px; }
.ind-card .ind-img { width: 100%; height: 180px; overflow: hidden; }
.ind-card .ind-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.ind-card:hover .ind-img img { transform: scale(1.05); }
.ind-card .ind-body { padding: 1.2rem 1.4rem 1.4rem; }
.ind-card h3 { font-size: 1.08rem; }
.ind-card .more { color: var(--orange-600); font-weight: 700; font-size: .88rem; margin-top: .6rem; display: inline-block; }

/* feature split with offset */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.split.rev .split-media { order: -1; }
.split-media .ph { min-height: 360px; }
.split-media img { width: 100%; height: 100%; min-height: 360px; max-height: 520px; object-fit: cover; border-radius: var(--radius-md); display: block; }
/* landscape video block for local team / who we are section */
.video-landscape { width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--navy); }
.video-landscape video { width: 100%; height: 100%; object-fit: cover; display: block; }
.check { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .8rem; }
.check svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.section--navy .check svg { color: var(--orange); }

/* spec list (fire watch facts) */
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.spec { padding: 1.4rem 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec:nth-child(2n){ border-right: 0; }
.spec .k { font-size: .76rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-600); margin-bottom: .3rem; }
.spec .v { font-weight: 700; color: var(--navy); }
.spec p { font-size: .9rem; color: var(--slate); margin: .3rem 0 0; }
@media (max-width:640px){ .specs { grid-template-columns: 1fr; } .spec { border-right:0; } }

/* testimonials */
.quote { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm); height: 100%; }
.quote .stars { color: var(--orange); margin-bottom: .8rem; letter-spacing: 2px; }
.quote p { font-style: italic; color: var(--ink); }
.quote .who { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; }
.quote .av { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-tint); display:grid; place-items:center; color: var(--navy); font-weight: 800; }
.quote .who b { display: block; color: var(--navy); font-size: .95rem; }
.quote .who span { font-size: .82rem; color: var(--slate); }

/* article cards */
.article .ph { min-height: 180px; border-radius: 0; }
.article .a-body { padding: 1.2rem 1.4rem 1.5rem; }
.article .meta { font-size: .78rem; color: var(--slate); font-weight: 600; margin-bottom: .5rem; }
.article h3 { font-size: 1.06rem; line-height: 1.3; }

/* accordion FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.3rem 2.4rem 1.3rem 0; font-weight: 700; color: var(--navy); position: relative; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 1.05rem; font-size: 1.5rem; color: var(--orange); font-weight: 400; transition: transform .25s; }
.faq details[open] summary::after { content: "−"; }
.faq .faq-body { padding: 0 0 1.4rem; color: var(--slate); }
.faq .faq-body p { margin: 0 0 .7rem; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 100%); color: #fff; border-radius: var(--radius-md); padding: clamp(2.4rem,5vw,3.6rem); text-align: center; position: relative; overflow: hidden; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #bccbe6; max-width: 56ch; margin-inline: auto; }
.cta-band.emergency { background: linear-gradient(120deg, var(--navy-600) 0%, var(--navy) 100%); }
.cta-band.emergency::after { display: none; }
.cta-band.emergency p { color: #bccbe6; }

/* big phone CTA */
.phone-cta { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 800; color: #fff; display:inline-flex; align-items:center; gap:.6rem; }
.phone-cta:hover { color: var(--orange); }

/* google map embed */
.map-embed { margin-top: 1.2rem; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-embed iframe { display: block; width: 100%; height: 300px; border: 0; }

/* inline quote band (homepage + fire watch) */
.quote-band { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3.4rem); align-items: center; }
.quote-band__copy h2 { color: #fff; }
.quote-band__copy .lead { color: #bccbe6; }
.quote-band .phone-cta { font-size: clamp(1.3rem,3vw,1.8rem); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form .field { margin-bottom: 0; }
@media (max-width: 820px) {
  .quote-band { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}

/* form */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form button[type="submit"] { margin-top: 1.4rem; }
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 700; color: var(--navy); }
.field label .req { color: var(--orange-600); margin-left: 1px; }
.field input, .field select, .field textarea { font-family: var(--ff); font-size: .95rem; padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: var(--radius); background: #fff; color: var(--ink); transition: border-color .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field textarea { resize: vertical; min-height: 120px; }

.info-row { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.info-row .ic { width: 46px; height: 46px; flex-shrink: 0; border-radius: var(--radius); background: var(--orange-050); color: var(--orange-600); display: grid; place-items: center; font-size: 22px; line-height: 1; }
.section--navy .info-row .ic { background: rgba(255,147,50,.16); color: var(--orange); }
.info-row b { display: block; color: var(--navy); }
.section--navy .info-row b { color: #fff; }
.info-row a, .info-row span { color: var(--slate); font-size: .95rem; }

/* social links */
.social { display: flex; gap: .5rem; flex-wrap: wrap; }
.social-link { width: 38px; height: 38px; border-radius: var(--radius); display: inline-flex; align-items: center; justify-content: center; background: var(--orange-050); color: var(--orange-600); transition: background .15s, color .15s, transform .15s; }
.social-link svg { display: block; }
.social-link:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }
.social--footer { margin-top: 1.1rem; width: 100%; justify-content: flex-start; }
.social--footer .social-link { background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.social--footer .social-link:hover { background: var(--orange); color: #fff; }
.section--navy .info-row a, .section--navy .info-row span { color: #aebed9; }
.info-row a:hover { color: var(--orange-600); }

.ph-note { color: var(--orange-600); font-weight: 700; font-size: .85rem; }

/* service area chips */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; }
.area-chip { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-size: .88rem; font-weight: 600; color: var(--navy); }
.section--navy .area-chip { background: var(--navy-700); border-color: var(--line-dark); color: #cdd8ee; }
.area-chip b { color: var(--orange-600); }
.section--navy .area-chip b { color: var(--orange); }

/* --- Footer --- */
.site-footer { background: var(--navy); color: #aebfdc; padding-block: 3.6rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-size: .92rem; letter-spacing: .04em; margin-bottom: 1rem; }
.site-footer a { color: #aebfdc; font-size: .92rem; display: inline-block; padding: .22rem 0; }
.site-footer a:hover { color: var(--orange); }
.footer-brand .brand-logo { height: 44px; }
.footer-brand .brand-tag { color: var(--orange); }
.footer-brand p { font-size: .9rem; color: #8fa3c9; max-width: 34ch; margin-top: 1rem; }
.footer-contact p { font-size: .9rem; color: #aebfdc; line-height: 1.7; }
.footer-bottom { border-top: 1px solid var(--line-dark); margin-top: 2.6rem; padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: #8fa3c9; }

/* reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* responsive */
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 1rem; gap: .2rem; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links > a { padding: .8rem 1rem; }
  .nav-cta { margin: .6rem 0 0; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--line); margin-left: 1rem; padding-left: .5rem; }
  .nav-toggle { display: block; }
  .hero-grid, .split, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 0; }
}
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; } }
