/* ═══════════════════════════════════════════════
   KIIRA TECH SOLUTIONS — Shared Stylesheet
   Kiira Innovations Limited · Jinja, Uganda
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* ── Tokens ─────────────────────────────────────── */
:root {
  --navy:  #003C59;
  --sky:   #2E9BC7;
  --sky-d: #2789ae;
  --gold:  #F2A83C;
  --ice:   #EFF6F8;
  --ink:   #0D2233;
  --mid:   #4a6478;
  --line:  rgba(0,60,89,.1);
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(0,60,89,.10);

  --r-sm: 6px;
  --r:    12px;
  --r-lg: 20px;

  --f-head: 'Space Grotesk', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--f-body); color: var(--ink); background: var(--white);
        -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── Layout ─────────────────────────────────────── */
.wrap      { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap-sm   { max-width: 780px;  margin: 0 auto; padding: 0 24px; }
section    { padding: 88px 0; }
.bg-ice    { background: var(--ice); }
.bg-navy   { background: var(--navy); }

/* ── Nav ────────────────────────────────────────── */
#site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: var(--f-head); font-weight: 700; font-size: 18px;
  color: var(--white); letter-spacing: -.01em;
}
.nav-logo span { color: var(--sky); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.8);
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--white); background: rgba(255,255,255,.08); }
.nav-links a[aria-current] { color: var(--sky); }

/* Mega-menu */
.nav-drop {
  position: relative;
}
.nav-drop > a { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-drop > a::after { content: '▾'; font-size: 10px; opacity: .6; }
.mega-menu {
  display: none;
  position: absolute; top: calc(100% + 10px); left: -16px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); box-shadow: 0 16px 48px rgba(0,60,89,.16);
  padding: 24px; gap: 32px;
  min-width: 640px; z-index: 200;
}
.nav-drop:hover .mega-menu,
.nav-drop:focus-within .mega-menu { display: flex; }
.mega-col h6 {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: var(--sky); margin-bottom: 10px; text-transform: uppercase;
}
.mega-col a {
  display: block; font-size: 13.5px; color: var(--ink);
  padding: 5px 0; border-radius: 0;
  transition: color .12s;
}
.mega-col a:hover { color: var(--sky); background: none; }
.nav-cta {
  background: var(--sky); color: var(--white) !important;
  padding: 9px 18px !important; border-radius: var(--r-sm) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--sky-d) !important; }

/* Mobile nav */
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-burger span {
  display: block; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .2s, opacity .2s;
  width: 22px;
}
.nav-mobile {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 99; padding: 24px; overflow-y: auto;
  flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  align-self: flex-end; background: none; border: none;
  color: var(--white); font-size: 24px; cursor: pointer; padding: 4px;
  margin-bottom: 24px;
}
.nav-mobile a {
  display: block; padding: 13px 0; font-size: 16px; font-weight: 500;
  color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .m-group { font-size: 11px; font-weight: 600; color: var(--sky);
  letter-spacing: .08em; padding: 20px 0 6px; text-transform: uppercase; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(46,155,199,.12), transparent);
}
.hero-inner { position: relative; z-index: 1; }
.hero-loc {
  font-size: 13px; color: rgba(255,255,255,.5);
  margin-bottom: 24px; letter-spacing: .02em;
}
.hero-loc span { color: var(--sky); }
.hero h1 {
  font-family: var(--f-head); font-size: clamp(36px,5vw,64px);
  font-weight: 700; color: var(--white); line-height: 1.06;
  letter-spacing: -.02em; max-width: 16ch; margin-bottom: 22px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.65); max-width: 52ch;
  line-height: 1.6; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat .num {
  font-family: var(--f-head); font-size: 28px; font-weight: 700; color: var(--white);
}
.hero-stat .lbl { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* Status strip */
.hero-status {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px;
}
@media (max-width: 480px) {
  .hero-status { gap: 8px; }
  .status-pill { font-size: 11px; padding: 5px 11px; }
  .hero-stats  { gap: 28px; }
}
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,.75);
}
.status-pill .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--sky);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
@media (prefers-reduced-motion:reduce) { .dot { animation: none; } }

/* Page hero (inner pages) */
.page-hero {
  background: var(--navy); padding: 72px 0 64px;
}
.page-hero .wrap { display: block; }
.page-hero .ph-tag {
  font-size: 12px; font-weight: 600; color: var(--sky);
  letter-spacing: .06em; margin-bottom: 14px;
}
.page-hero h1 {
  font-family: var(--f-head); font-size: clamp(28px,4vw,48px);
  font-weight: 700; color: var(--white); line-height: 1.1;
  letter-spacing: -.02em; max-width: 18ch;
}
.page-hero .ph-sub {
  font-size: 16px; color: rgba(255,255,255,.65); max-width: 48ch;
  line-height: 1.65; margin-top: 14px;
}
.page-hero .ph-meta { text-align: right; }
.page-hero .ph-meta a { color: rgba(255,255,255,.5); font-size: 13px; }
.page-hero .ph-meta a:hover { color: var(--white); }
@media (max-width: 640px) { .page-hero .ph-meta { display: none; } }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--r-sm); font-family: var(--f-body);
  font-size: 15px; font-weight: 600; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold  { background: var(--gold); color: var(--navy); box-shadow: 0 8px 20px -6px rgba(242,168,60,.55); }
.btn-gold:hover  { background: #e09a35; }
.btn-sky   { background: var(--sky);  color: var(--white); box-shadow: 0 8px 20px -6px rgba(46,155,199,.5); }
.btn-sky:hover  { background: var(--sky-d); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { border-color: rgba(255,255,255,.7); }
.btn-outline { background: transparent; color: var(--sky); border-color: var(--sky); }
.btn-outline:hover { background: var(--sky); color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ── Section headings ───────────────────────────── */
.section-head { margin-bottom: 52px; }
.section-head h2 {
  font-family: var(--f-head); font-size: clamp(24px,3.5vw,38px);
  font-weight: 700; color: var(--navy); line-height: 1.15;
  letter-spacing: -.02em; max-width: 24ch;
}
.section-head p { font-size: 16px; color: var(--mid); max-width: 56ch; line-height: 1.7; margin-top: 14px; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center p { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 12px; font-weight: 600; color: var(--sky);
  letter-spacing: .07em; margin-bottom: 12px; display: block;
}

/* ── Service cards ──────────────────────────────── */
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card.new-service {
  border-left: 3px solid var(--sky);
}
.sc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(46,155,199,.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px;
}
.sc-icon svg { stroke: var(--sky); }
.service-card h3 { font-family: var(--f-head); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: 14px; color: var(--mid); line-height: 1.6; margin-bottom: 16px; }
.service-card a.learn { font-size: 13.5px; font-weight: 600; color: var(--sky); }
.service-card a.learn:hover { text-decoration: underline; }
.sc-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  background: var(--sky); color: var(--white);
  padding: 2px 8px; border-radius: 10px; margin-bottom: 10px;
  letter-spacing: .04em;
}

@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* ── Featured service pillars (homepage) ─────────── */
.pillar-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.pillar {
  background: var(--ice); border-radius: var(--r-lg);
  padding: 32px 28px; display: flex; flex-direction: column;
}
.pillar.featured { background: var(--navy); }
.pillar.featured h3, .pillar.featured p { color: var(--white); }
.pillar.featured p { color: rgba(255,255,255,.65); }
.pillar.featured .pillar-icon { background: rgba(255,255,255,.1); }
.pillar.featured .pillar-icon svg { stroke: var(--sky); }
.pillar.featured a.learn { color: var(--sky); }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(46,155,199,.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; flex-shrink: 0;
}
.pillar-icon svg { stroke: var(--sky); width: 22px; height: 22px; stroke-width: 1.8; fill: none; }
.pillar h3 { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar p  { font-size: 14.5px; color: var(--mid); line-height: 1.65; margin-bottom: 20px; flex-grow: 1; }
.pillar a.learn { font-size: 13.5px; font-weight: 600; color: var(--sky); margin-top: auto; }
@media (max-width: 700px) { .pillar-grid { grid-template-columns: 1fr; } }

/* ── Process steps ──────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 27px; left: 10%; right: 10%;
  height: 1px; background: var(--line); z-index: 0;
}
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--f-head); font-size: 13px; font-weight: 700; color: var(--navy);
}
.step.active .step-num { background: var(--sky); border-color: var(--sky); color: var(--white); }
.step h4 { font-family: var(--f-head); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 13.5px; color: var(--mid); line-height: 1.6; }
@media (max-width: 700px) {
  .steps { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .steps::before { display: none; }
}

/* ── Tier cards ─────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tier {
  border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px;
}
.tier.recommended { border-color: var(--sky); background: rgba(46,155,199,.03); }
.tier-label { font-size: 11px; font-weight: 700; color: var(--sky); letter-spacing: .07em; margin-bottom: 10px; }
.tier h3 { font-family: var(--f-head); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.tier .tier-fit { font-size: 12.5px; color: var(--mid); margin-bottom: 16px; }
.tier ul { display: flex; flex-direction: column; gap: 8px; }
.tier li { font-size: 14px; color: var(--ink); display: flex; gap: 10px; align-items: flex-start; }
.tier li::before { content: '–'; color: var(--sky); flex-shrink: 0; margin-top: 1px; }
@media (max-width: 860px) { .tier-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tier-grid { grid-template-columns: 1fr; } }

/* ── Value prop row ─────────────────────────────── */
.value-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.value-row.flip { direction: rtl; }
.value-row.flip > * { direction: ltr; }
.value-row h2 { font-family: var(--f-head); font-size: clamp(22px,3vw,34px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.value-row p  { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 20px; }
.value-visual {
  background: var(--ice); border-radius: var(--r-lg); padding: 36px;
  min-height: 240px; display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 760px) { .value-row, .value-row.flip { grid-template-columns: 1fr; direction: ltr; } }

/* ── Checklist ──────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--ink); }
.checklist li::before { content: '✓'; color: var(--sky); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Sectors ────────────────────────────────────── */
.sector-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.sector-tag {
  background: var(--ice); border: 1px solid var(--line);
  border-radius: 30px; padding: 8px 18px;
  font-size: 14px; color: var(--navy); font-weight: 500;
}

/* ── Testimonial cards ──────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi {
  background: var(--ice); border-radius: var(--r-lg); padding: 26px 24px;
}
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.testi blockquote { font-size: 14.5px; color: var(--ink); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testi-name { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--mid); }
@media (max-width: 860px) { .testi-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .testi-grid { grid-template-columns: 1fr; } }

/* ── Contact form ───────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--f-head); font-size: 30px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.contact-info p  { font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 28px; }
.contact-detail  { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-detail a { font-size: 15px; color: var(--sky); font-weight: 500; }
.contact-detail span { font-size: 14px; color: var(--mid); }
@media (max-width: 760px) { .contact-layout { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px; font-size: 14.5px; font-family: var(--f-body);
  color: var(--ink); background: var(--white); width: 100%;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(46,155,199,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-message { font-size: 13.5px; padding: 12px 16px; border-radius: var(--r-sm); margin-top: 12px; display: none; }
.form-message.success { background: rgba(46,155,199,.1); color: #1a5f7a; display: block; }
.form-message.error   { background: rgba(220,60,60,.07); color: #922b21; display: block; }

/* ── CTA band ───────────────────────────────────── */
.cta-band {
  background: var(--navy); border-radius: var(--r-lg);
  padding: 64px 52px; text-align: center;
}
.cta-band h2 { font-family: var(--f-head); font-size: clamp(22px,3vw,34px); color: var(--white); margin-bottom: 14px; font-weight: 700; }
.cta-band p  { font-size: 16px; color: rgba(255,255,255,.65); max-width: 52ch; margin: 0 auto 28px; line-height: 1.65; }
.cta-band .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .cta-band { padding: 40px 24px; } }

/* ── Feature list (service pages) ──────────────── */
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.feature-item:last-child { border-bottom: none; }
.fi-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ice); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.fi-icon svg { stroke: var(--sky); width: 18px; height: 18px; stroke-width: 1.8; fill: none; }
.fi-text h4 { font-family: var(--f-head); font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.fi-text p  { font-size: 14px; color: var(--mid); line-height: 1.6; }

/* ── Two-col content ────────────────────────────── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.two-col.v-center { align-items: center; }
@media (max-width: 760px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }

/* ── Related services ───────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px;
  transition: border-color .15s, box-shadow .15s;
}
.related-card:hover { border-color: var(--sky); box-shadow: var(--shadow); }
.related-card h4 { font-family: var(--f-head); font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.related-card p  { font-size: 13px; color: var(--mid); line-height: 1.5; }
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr 1fr; } }

/* ── About section ──────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-body h2 { font-family: var(--f-head); font-size: clamp(24px,3vw,36px); font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 18px; }
.about-body p  { font-size: 15px; color: var(--mid); line-height: 1.75; margin-bottom: 14px; }
.about-stats   { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: var(--ice); border-radius: var(--r); padding: 22px 20px; }
.about-stat .num { font-family: var(--f-head); font-size: 30px; font-weight: 700; color: var(--navy); }
.about-stat .lbl { font-size: 13px; color: var(--mid); margin-top: 3px; }

/* ── Footer ─────────────────────────────────────── */
#site-footer { background: var(--navy); color: rgba(255,255,255,.65); padding-top: 60px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-about .f-logo { font-family: var(--f-head); font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 12px; }
.footer-about .f-logo span { color: var(--sky); }
.footer-about p { font-size: 13.5px; line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 12px; font-weight: 700; color: var(--white); letter-spacing: .05em; margin-bottom: 14px; text-transform: uppercase; }
.footer-col li { margin-bottom: 10px; }
.footer-col a  { font-size: 13.5px; color: rgba(255,255,255,.6); transition: color .15s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12.5px; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ── Breadcrumb ─────────────────────────────────── */
.breadcrumb { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb span { margin: 0 6px; }

/* ── Util ───────────────────────────────────────── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.text-sky   { color: var(--sky); }
.text-mid   { color: var(--mid); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.font-head  { font-family: var(--f-head); }

/* ── SEO hidden util ────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
