/* ==========================================================================
   Lothian Pallets — site stylesheet
   THEME LAYER: every brand difference lives in the :root tokens + the
   Google Fonts <link> in each HTML <head> + favicon.svg. The rest of this
   file is shared, identical structure across all five sister sites.
   ========================================================================== */

:root {
  /* ---- Brand palette (Lothian Pallets) ---- */
  --brand:        #15532e;
  --brand-600:    #1d6b3c;
  --brand-700:    #0e3a20;
  --brand-050:    #eef5f0;
  --brand-100:    #d4e6db;
  --accent:       #b8902f;
  --accent-600:   #957320;
  --on-brand:     #ffffff;

  /* ---- Logo tokens ---- */
  --logo-badge:   var(--brand);
  --logo-glyph:   #f2ecdb;
  --logo-accent:  var(--accent);

  /* ---- Neutrals / ink ---- */
  --ink:          #0e1726;
  --body:         #303b4d;
  --muted:        #5b6675;
  --line:         #e2e7ee;
  --bg:           #ffffff;
  --bg-alt:       #f4f7f4;
  --bg-deep:      #0d2c19;
  --card:         #ffffff;

  /* ---- Type ---- */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body:    "Spline Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display-tracking: 0.005em;
  --display-weight: 800;

  /* ---- Shape / depth ---- */
  --radius:       14px;
  --radius-sm:    9px;
  --shadow-sm:    0 1px 2px rgba(13,23,38,.06), 0 2px 8px rgba(13,23,38,.05);
  --shadow:       0 8px 30px rgba(13,23,38,.10);
  --shadow-lg:    0 24px 60px rgba(13,23,38,.18);
  --maxw:         1180px;
  --gap:          clamp(1rem, 2.4vw, 2rem);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.97rem + 0.18vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-600); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: var(--display-tracking);
  font-weight: var(--display-weight);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.45rem, 1.6rem + 4.4vw, 4.6rem); text-transform: uppercase; }
h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); text-transform: uppercase; }
h3 { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem); }
p { margin: 0 0 1rem; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2.2rem); }
.section { padding-block: clamp(3.4rem, 7vw, 6rem); }
.section-alt { background: var(--bg-alt); }
.section-deep { background: var(--bg-deep); color: #cfdaeb; }
.section-deep h2, .section-deep h3 { color: #fff; }
.narrow { max-width: 760px; }
.center { text-align: center; margin-inline: auto; }
.muted { color: var(--muted); }
.text-accent { color: var(--accent-600); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .76rem;
  color: var(--accent-600);
  margin: 0 0 .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }
.section-deep .eyebrow { color: var(--accent); }

.section-head { max-width: 720px; margin-bottom: clamp(1.6rem, 4vw, 2.8rem); }
.section-head.center { margin-inline: auto; }
.section-intro { font-size: 1.1rem; color: var(--muted); }
.section-deep .section-intro { color: #b8c6dc; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--brand); --_fg: var(--on-brand); --_bd: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: .92rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--_bd);
  background: var(--_bg);
  color: var(--_fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: var(--_fg); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-primary { --_bg: var(--accent); --_fg: #1c1206; --_bd: var(--accent); }
.btn-primary:hover { --_bg: var(--accent-600); }
.btn-outline { --_bg: transparent; --_fg: var(--brand); --_bd: var(--brand); }
.btn-outline:hover { --_bg: var(--brand); --_fg: var(--on-brand); }
.btn-on-dark { --_bg: transparent; --_fg: #fff; --_bd: rgba(255,255,255,.55); }
.btn-on-dark:hover { --_bg: #fff; --_fg: var(--brand); --_bd:#fff; }
.btn-lg { padding: 1.05rem 1.9rem; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--brand); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 8px;
  transition: top .15s ease; text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 0; color:#fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1.2rem; min-height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--ink); margin-right: auto; }
.logo-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.42rem; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }
.brand-sub { font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: .3rem; }
.nav-list { list-style: none; display: flex; gap: .15rem; margin: 0; padding: 0; }
.nav-list a {
  display: inline-block; padding: .6rem .85rem; border-radius: 8px;
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { background: var(--brand-050); color: var(--brand-700); }
.header-actions { display: flex; align-items: center; gap: .8rem; margin-left: .5rem; }
.header-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--accent-600); }
.header-phone .hp { display: flex; flex-direction: column; line-height: 1.12; }
.header-phone small { font-size: .64rem; color: var(--muted); letter-spacing: .09em; text-transform: uppercase; font-weight: 700; }
.header-phone strong { font-size: 1.04rem; color: var(--ink); }

.nav-toggle { display: none; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--line); background: #fff; border-radius: 10px; cursor: pointer; }
.nav-toggle svg { width: 24px; height: 24px; color: var(--ink); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .6rem clamp(1.1rem,4vw,2.2rem) 1.2rem;
    box-shadow: var(--shadow); display: none;
  }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a { padding: .85rem .6rem; border-radius: 8px; border-bottom: 1px solid var(--line); }
  .header-actions { flex-direction: column; align-items: stretch; margin: .6rem 0 0; }
  .header-phone { padding: .6rem; }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, var(--brand-700) 8%,
      color-mix(in srgb, var(--brand-700) 86%, transparent) 42%,
      color-mix(in srgb, var(--brand-700) 38%, transparent) 100%);
}
.hero-inner { padding-block: clamp(3.4rem, 9vw, 7rem); max-width: 760px; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--accent); }
.hero h1 { color: #fff; }
.hero h1 .lead-accent { color: var(--accent); display: block; }
.hero-sub { font-size: clamp(1.08rem, 1rem + .5vw, 1.3rem); color: #e7eefb; max-width: 60ch; margin-bottom: 1.6rem; }
.hero-cta { margin-bottom: 1.9rem; }

.trust-strip { display: flex; flex-wrap: wrap; gap: .6rem 1.7rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.2); }
.trust-item { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; color: #eaf1fc; }
.trust-item svg { width: 19px; height: 19px; color: var(--accent); flex: none; }

/* ---------- Stat bar ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--card); padding: 1.6rem 1.2rem; text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.8rem); color: var(--brand); line-height: 1; }
.stat-num .text-accent { color: var(--accent-600); }
.stat-label { font-size: .9rem; color: var(--muted); margin-top: .45rem; font-weight: 600; }
@media (max-width: 640px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Feature / product cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: clamp(1rem,2.4vw,1.6rem); }
.feature-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.card-media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feature-card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-title { margin: 0 0 .45rem; font-size: 1.32rem; }
.card-text { color: var(--muted); font-size: .98rem; margin-bottom: 1rem; }
.card-link { margin-top: auto; font-weight: 700; color: var(--brand-600); text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; }
.card-link:hover { gap: .6rem; color: var(--accent-600); }
.card-link::after { content: "→"; transition: transform .15s ease; }

/* badge chips */
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 1rem; padding: 0; list-style: none; }
.chips li { font-size: .78rem; font-weight: 700; color: var(--brand-700); background: var(--brand-050); border: 1px solid var(--brand-100); padding: .25rem .6rem; border-radius: 999px; }

/* ---------- Split (text + image) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* ---------- Checklist ---------- */
.checklist { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .75rem; }
.checklist.two-col { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px){ .checklist.two-col { grid-template-columns: 1fr; } }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .15em; width: 1.35rem; height: 1.35rem;
  border-radius: 50%; background: var(--brand-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2315532e' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
  border: 1px solid var(--brand-100);
}
.checklist li strong { color: var(--ink); }
.section-deep .checklist li strong { color: #ffffff; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; counter-reset: step; }
@media (max-width: 820px){ .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.3rem; position: relative; }
.step-num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; width: 2.4rem; height: 2.4rem; display: grid; place-items: center; border-radius: 50%; background: var(--brand); color: #fff; margin-bottom: .9rem; }
.step h3 { font-size: 1.18rem; margin-bottom: .35rem; }
.step p { font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- Industries ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1rem; }
.industry-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-sm); }
.industry-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--brand-050); color: var(--brand-600); display: grid; place-items: center; margin-bottom: .9rem; border: 1px solid var(--brand-100); }
.industry-icon svg { width: 24px; height: 24px; }
.industry-card h3 { font-size: 1.18rem; margin-bottom: .4rem; }
.industry-card p { font-size: .95rem; color: var(--muted); margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 860px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem; color: var(--ink); display: flex; justify-content: space-between; gap: 1rem; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--accent-600); line-height: 1; flex: none; transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.3rem 1.25rem; color: var(--body); }
.faq-item .faq-body p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--brand-700), var(--brand) 70%); color: #fff; border-radius: var(--radius); padding: clamp(2rem,5vw,3.4rem); display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center; justify-content: space-between; box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; margin: 0 0 .4rem; }
.cta-band p { color: #d8e3f4; margin: 0; max-width: 52ch; }
.cta-band .btn-row { flex: none; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem,4vw,3rem); align-items: start; }
@media (max-width: 880px){ .contact-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.info-row { display: flex; gap: .9rem; padding: .85rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; }
.info-row .ic { width: 42px; height: 42px; flex: none; border-radius: 10px; background: var(--brand-050); color: var(--brand-600); display: grid; place-items: center; border: 1px solid var(--brand-100); }
.info-row .ic svg { width: 21px; height: 21px; }
.info-row h3 { font-size: 1rem; margin: 0 0 .15rem; font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.info-row a { color: var(--brand-600); text-decoration: none; font-weight: 600; }
.info-row p { margin: 0; color: var(--muted); font-size: .96rem; }

.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem,3vw,2rem); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px){ .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: .35rem; }
label .req { color: var(--accent-600); }
input, select, textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-100); }
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: .3rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { display: none; background: #ecf7ef; border: 1px solid #b7e0c2; color: #1c5b32; border-radius: 10px; padding: 1rem 1.2rem; font-weight: 600; margin-bottom: 1rem; }
.form-success.show { display: block; }

/* map placeholder */
.map-embed { border: 0; width: 100%; height: 300px; border-radius: var(--radius); filter: grayscale(.15); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: var(--bg-deep); color: #fff; position: relative; isolation: isolate; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; opacity:.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Crect x='6' y='14' width='68' height='8' rx='2'/%3E%3Crect x='6' y='34' width='68' height='8' rx='2'/%3E%3Crect x='10' y='54' width='12' height='16'/%3E%3Crect x='34' y='54' width='12' height='16'/%3E%3Crect x='58' y='54' width='12' height='16'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero .container { padding-block: clamp(2.6rem, 6vw, 4.4rem); position: relative; }
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero p { color: #c4d2e8; max-width: 64ch; font-size: 1.12rem; margin: 0; }
.page-hero .eyebrow { color: var(--accent); }

/* ---------- Breadcrumbs ---------- */
.breadcrumb { padding: .9rem 0; font-size: .9rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; color: var(--muted); }
.breadcrumb li::after { content: "/"; margin-left: .4rem; color: var(--line); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--brand-600); text-decoration: none; }
.breadcrumb [aria-current="page"] { color: var(--muted); }

/* ---------- Product detail rows ---------- */
.product-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem,4vw,3rem); align-items: center; padding-block: clamp(1.6rem,4vw,2.6rem); border-top: 1px solid var(--line); scroll-margin-top: 90px; }
.product-row:first-of-type { border-top: 0; }
.product-row.reverse .product-media { order: 2; }
.product-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/3; object-fit: cover; background:#fff; }
@media (max-width: 860px){ .product-row { grid-template-columns: 1fr; } .product-row.reverse .product-media { order: 0; } }

.spec-table { width: 100%; border-collapse: collapse; margin: 1.1rem 0 0; font-size: .95rem; }
.spec-table th, .spec-table td { text-align: left; padding: .6rem .2rem; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--muted); font-weight: 600; width: 45%; }
.spec-table td { color: var(--ink); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #aebed6; padding-block: clamp(2.6rem,6vw,4rem) 1.5rem; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: clamp(1.4rem,3vw,2.4rem); padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .brand { color: #fff; margin-bottom: .9rem; }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #8aa0c0; }
.footer-brand p { color: #9fb2cd; max-width: 34ch; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { color: #aebed6; text-decoration: none; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 3px; }
.areas-served { margin-top: .6rem; font-size: .88rem; color: #8aa0c0; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; padding-top: 1.4rem; color: #8194b2; font-size: .85rem; }
.footer-bottom a { color: #aebed6; }
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a { width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(255,255,255,.18); display: grid; place-items: center; color: #cdd9ec; }
.social-row a:hover { background: var(--accent); color: #1c1206; border-color: var(--accent); }
.social-row svg { width: 18px; height: 18px; }

/* ---------- Misc ---------- */
.lead { font-size: 1.18rem; color: var(--body); }
.divider-note { font-size: .82rem; color: var(--muted); }
.badge-strip { display:flex; flex-wrap:wrap; gap:.6rem 1.4rem; align-items:center; color:var(--muted); font-weight:600; font-size:.92rem; }
.badge-strip span { display:inline-flex; align-items:center; gap:.45rem; }
.badge-strip svg { width:18px; height:18px; color: var(--brand-600); }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }
