/* ==========================================================================
   5 STAR Sales & Service — Pattukkottai
   Single stylesheet. Mobile-first: base rules are for phones (360px+),
   media queries add the tablet / desktop layout.
   ========================================================================== */

/* ---------- Brand tokens (change colours here) ---------- */
:root {
  --navy: #0a235c;
  --navy-2: #12337f;
  --navy-deep: #06163d;
  --red: #d0161e;
  --red-dark: #a80f15;
  --gold: #ffc727;
  --gold-soft: #fff4cc;
  --sky: #2f8fe0;
  --sky-soft: #e8f3fd;
  --ink: #0f1b33;
  --ink-2: #3a4763;
  --line: #d8e0ec;
  --bg: #ffffff;
  --bg-alt: #f3f6fb;
  --wa: #128c4a;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 6px 24px rgba(10, 35, 92, .10);
  --header-h: 68px;
  --bar-h: 64px;
  --wrap: 1160px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Noto Sans Tamil", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 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; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;          /* 17px — comfortable for older readers */
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  padding-bottom: var(--bar-h);  /* room for the mobile action bar */
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--navy-2); text-underline-offset: 3px; }
a:hover { color: var(--red); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .6em; color: var(--navy); letter-spacing: -.01em; }
h1 { font-size: clamp(1.85rem, 6.4vw, 3.1rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 4.6vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 750; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: var(--navy); padding: 10px 16px; font-weight: 700; border-radius: 8px; }
.skip-link:focus { top: 10px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.section { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section-head p { color: var(--ink-2); font-size: 1.1rem; }
.section--navy .section-head p { color: #d6e2ff; }
.eyebrow { display: inline-block; font-size: .85rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.section--navy .eyebrow { color: var(--gold); }
.icon { width: 24px; height: 24px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 12px 20px; border-radius: 999px; border: 2px solid transparent;
  font: inherit; font-weight: 750; font-size: 1rem; line-height: 1.1; text-decoration: none; cursor: pointer;
  transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn .icon { width: 20px; height: 20px; }
.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); color: #fff; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: #ffd65c; color: var(--navy); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: #0d733c; color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--navy); }
.btn--outline { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--sm { min-height: 44px; padding: 8px 16px; font-size: .95rem; }
.btn[disabled] { opacity: .6; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 3px solid var(--red); box-shadow: 0 2px 12px rgba(10, 35, 92, .08); }
.header-inner { display: flex; align-items: center; gap: 10px; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); margin-right: auto; min-width: 0; }
.brand img { width: 56px; height: 50px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 900; font-size: 1.3rem; color: var(--red); letter-spacing: .01em; }
.brand-sub { font-weight: 700; font-size: .82rem; color: var(--navy); white-space: nowrap; }
.header-call { display: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border: 2px solid var(--line); border-radius: 12px; background: #fff; color: var(--navy); cursor: pointer;
}
.nav-toggle .i-close { display: none; }
.nav-toggle[aria-expanded="true"] .i-open { display: none; }
.nav-toggle[aria-expanded="true"] .i-close { display: block; }
.site-nav { display: none; }
.site-nav.is-open {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 3px solid var(--navy); box-shadow: 0 12px 24px rgba(10, 35, 92, .15);
  max-height: calc(100vh - var(--header-h)); overflow-y: auto;
}
.site-nav ul { list-style: none; margin: 0; padding: 8px 16px 16px; }
.site-nav a { display: block; padding: 14px 8px; font-weight: 700; font-size: 1.1rem; text-decoration: none; color: var(--navy); border-bottom: 1px solid var(--line); }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); }
.site-nav .nav-cta { margin-top: 12px; }
.site-nav .nav-cta a { border: 0; }

@media (min-width: 560px) {
  .header-call { display: inline-flex; }
}
@media (min-width: 1040px) {
  .nav-toggle { display: none; }
  .site-nav, .site-nav.is-open { display: block; position: static; box-shadow: none; border: 0; max-height: none; overflow: visible; }
  .site-nav ul { display: flex; gap: 2px; padding: 0; }
  .site-nav a { border: 0; padding: 10px 10px; font-size: 1rem; border-radius: 8px; }
  .site-nav a:hover { background: var(--bg-alt); }
  .site-nav a[aria-current="page"] { box-shadow: inset 0 -3px 0 var(--red); border-radius: 0; }
  .site-nav .nav-cta { display: none; }
  .brand img { width: 62px; height: 56px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: radial-gradient(120% 90% at 85% 0%, #1b4bb0 0%, transparent 55%), linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  padding: 36px 0 0;
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: var(--bg); }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: 24px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 .accent { color: var(--gold); }
.hero-lead { font-size: 1.15rem; color: #e4ecff; max-width: 40em; }
.hero-tamil { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin: 0 0 18px; font-weight: 700; color: var(--gold); }
.hero-tamil::before { content: ""; width: 28px; height: 2px; background: var(--gold); align-self: center; }
.hero-tamil small { color: #cfdcff; font-weight: 600; }
.hero-points { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-points li { display: inline-flex; align-items: center; gap: 6px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .25); padding: 6px 12px; border-radius: 999px; font-weight: 650; font-size: .95rem; }
.hero-points .icon { width: 18px; height: 18px; color: var(--gold); }
.hero-ctas { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 560px; }
.hero-ctas .btn { width: 100%; padding-left: 10px; padding-right: 10px; }
.hero-logo { display: none; }
/* Logo reveal video (home page hero). Plays once, then holds the final logo frame. */
.hero-video { position: relative; margin: 0; width: 100%; max-width: 560px; justify-self: center; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: #071433; border: 1px solid rgba(255, 255, 255, .18); box-shadow: 0 18px 40px rgba(3, 12, 36, .45); }
.hero-video video { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-video-btn { position: absolute; right: 10px; bottom: 10px; width: 40px; height: 40px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(255, 255, 255, .35); border-radius: 50%; background: rgba(6, 22, 61, .6); color: #fff; cursor: pointer; transition: background .2s; }
.hero-video-btn:hover { background: rgba(6, 22, 61, .85); }
.hero-video-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.hero-video-btn svg { width: 20px; height: 20px; display: none; }
.hero-video-btn[data-state="play"] .i-play, .hero-video-btn[data-state="pause"] .i-pause, .hero-video-btn[data-state="replay"] .i-replay { display: block; }
.hero-shelf { margin-top: 30px; background: #fff; border-radius: var(--radius); box-shadow: 0 18px 40px rgba(6, 22, 61, .35); padding: 10px; }
.hero-shelf img { width: 100%; border-radius: 8px; }
@media (min-width: 900px) {
  .hero { padding-top: 56px; }
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
  .hero-video { justify-self: end; }
  .hero-logo { display: block; width: 100%; max-width: 360px; justify-self: end; filter: drop-shadow(0 12px 30px rgba(0, 0, 0, .35)); }
  .hero-ctas { display: flex; flex-wrap: wrap; max-width: none; justify-content: start; }
  .hero-ctas .btn { width: auto; white-space: nowrap; padding-left: 18px; padding-right: 18px; }
}

/* Page hero (service pages) */
.page-hero { background: linear-gradient(160deg, var(--navy-2), var(--navy) 60%, var(--navy-deep)); color: #fff; padding: 22px 0 40px; }
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 5.6vw, 2.7rem); }
.page-hero p { color: #e4ecff; font-size: 1.1rem; max-width: 46em; }
.page-hero-grid { display: grid; gap: 24px; align-items: center; }
.page-hero-img { background: #fff; border-radius: var(--radius); padding: 14px; justify-self: center; max-width: 420px; width: 100%; }
.page-hero-img img { margin: 0 auto; max-height: 240px; width: auto; }
.page-hero-icons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 20px 14px; }
.page-hero-icons span { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--navy); font-weight: 700; font-size: .95rem; }
.page-hero-icons .icon { width: 64px; height: 64px; padding: 14px; border-radius: 16px; background: var(--sky-soft); color: var(--navy); }
.page-hero-icons span:first-child .icon { background: var(--gold-soft); color: var(--red-dark); }
@media (min-width: 900px) { .page-hero-grid { grid-template-columns: 1.4fr .6fr; } .page-hero { padding-bottom: 56px; } }

.breadcrumb ol { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 6px; font-size: .95rem; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--gold); }
.breadcrumb a { color: #cfe0ff; }
.breadcrumb [aria-current] { color: #fff; font-weight: 650; }

/* ---------- Service cards ---------- */

.card-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .card-grid { grid-template-columns: repeat(3, 1fr); } .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow); border-top: 4px solid var(--navy);
}
.card:nth-child(3n+2) { border-top-color: var(--red); }
.card:nth-child(3n+3) { border-top-color: var(--sky); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--ink-2); flex: 1; }
.card-icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: var(--sky-soft); color: var(--navy); margin-bottom: 14px; }
.card-icon .icon { width: 30px; height: 30px; }
.card-tag { display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.card-actions { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; margin-top: 6px; }
.card-link { font-weight: 700; display: inline-flex; align-items: center; gap: 4px; min-height: 44px; }
@media (max-width: 599px) {
  .card { display: grid; grid-template-columns: 48px 1fr; column-gap: 14px; padding: 16px; }
  .card > * { grid-column: 2; }
  .card .card-icon { grid-column: 1; grid-row: 1 / span 3; width: 48px; height: 48px; margin: 0; }
  .card p { margin-bottom: .6em; }
  .card .card-actions { gap: 6px 12px; flex-wrap: nowrap; }
  .card .card-link { font-size: .95rem; white-space: nowrap; }
  .card .btn--sm { padding: 8px 14px; }
  .feature-media img { max-height: 210px; width: auto; }
}
/* ---------- Feature (image + text) blocks ---------- */
.feature { display: grid; gap: 28px; align-items: center; }
.feature-media { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.feature-media img { margin: 0 auto; }
.section--navy .feature-media { border: 0; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: 48px; }
  .feature--flip .feature-media { order: 2; }
}
.ticks { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks .icon { width: 22px; height: 22px; color: var(--wa); margin-top: 3px; }
.section--navy .ticks .icon { color: var(--gold); }
@media (min-width: 600px) { .ticks--2 { grid-template-columns: 1fr 1fr; } }

.mini-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .mini-grid { grid-template-columns: repeat(5, 1fr); } }
.mini { background: #fff; border-radius: var(--radius); padding: 16px; border: 1px solid var(--line); display: flex; flex-direction: column; }
.mini-img { height: 150px; display: grid; place-items: center; margin-bottom: 12px; }
.mini-img img { max-height: 150px; width: auto; }
.mini h3 { font-size: 1.1rem; }
.mini p { color: var(--ink-2); font-size: 1rem; flex: 1; }

/* Used appliances band */
.used-band { display: grid; gap: 16px; }
@media (min-width: 800px) { .used-band { grid-template-columns: repeat(3, 1fr); } }
.used-item { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .2); border-radius: var(--radius); padding: 20px; }
.used-item .icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 10px; }
.used-item p { color: #d6e2ff; }
.notice { background: var(--gold-soft); border-left: 5px solid var(--gold); padding: 14px 16px; border-radius: 8px; color: var(--ink); }
.section--navy .notice { background: rgba(255, 199, 39, .12); color: #fff; }

/* Why choose */
.why-grid { display: grid; gap: 14px; }
@media (min-width: 600px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why { background: #fff; border-radius: var(--radius); padding: 18px; border: 1px solid var(--line); }
.why .icon { width: 32px; height: 32px; color: var(--red); margin-bottom: 8px; }
.why h3 { font-size: 1.08rem; }
.why p { color: var(--ink-2); margin: 0; font-size: 1rem; }

/* Service areas */
.area-list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.area-list li { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 2px solid var(--navy); color: var(--navy); font-weight: 750; padding: 8px 14px; border-radius: 999px; }
.area-list .icon { width: 18px; height: 18px; color: var(--red); }

/* FAQ */
.faq { max-width: 860px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; }
.faq summary {
  list-style: none; cursor: pointer; padding: 16px 48px 16px 18px; font-weight: 750; color: var(--navy); position: relative; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 18px 16px; color: var(--ink-2); }
.faq details > div p:last-child { margin: 0; }

/* Prose (service page body) */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.4em; }
.prose h2:first-child { margin-top: 0; }
.prose li { margin-bottom: .4em; }
.two-col { display: grid; gap: 32px; }
@media (min-width: 980px) { .two-col { grid-template-columns: 1fr 340px; gap: 48px; } }
.aside-box { background: var(--bg-alt); border-radius: var(--radius); padding: 20px; border: 1px solid var(--line); position: sticky; top: calc(var(--header-h) + 16px); }
.aside-box h2 { font-size: 1.3rem; }
.aside-box .btn { width: 100%; margin-bottom: 10px; }
.aside-box ul { padding-left: 1.1em; margin-bottom: 0; }
.related { list-style: none; padding: 0 !important; }
.related a { display: block; padding: 8px 0; font-weight: 650; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 24px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .9fr 1.1fr; gap: 40px; } }
.contact-card { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 24px; }
.contact-card h3 { color: #fff; }
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .icon { color: var(--gold); margin-top: 3px; }
.contact-list strong { display: block; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; color: #b9cbf5; }
.contact-list a { color: #fff; font-weight: 700; font-size: 1.1rem; word-break: break-word; }
.contact-card .btn-row .btn { flex: 1 1 140px; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 750; margin-bottom: 6px; color: var(--navy); }
.field .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1.05rem; color: var(--ink); background: #fff;
  border: 2px solid #b7c3d7; border-radius: 10px; padding: 12px 14px; min-height: 52px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-2); outline: 3px solid rgba(47, 143, 224, .35); outline-offset: 0; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--red); }
.field-hint { font-size: .92rem; color: var(--ink-2); margin-top: 4px; }
.field-error { color: var(--red); font-weight: 650; font-size: .95rem; margin-top: 4px; }
.field-row { display: grid; gap: 0 14px; }
@media (min-width: 600px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.form-actions .btn { flex: 1 1 200px; }
.form-status { margin-top: 14px; padding: 14px 16px; border-radius: 10px; font-weight: 650; }
.form-status:empty { display: none; }
.form-status.is-success { background: #e6f6ec; color: #0b5a2e; border: 2px solid #3aa165; }
.form-status.is-error { background: #fdecec; color: #8a1016; border: 2px solid var(--red); }
.form-status.is-info { background: var(--sky-soft); color: var(--navy); border: 2px solid var(--sky); }
.form-note { font-size: .92rem; color: var(--ink-2); margin: 12px 0 0; }

/* Map (click-to-load facade keeps the page fast) */
.map-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--sky-soft); aspect-ratio: 16 / 10; position: relative; }
@media (max-width: 599px) { .map-box { aspect-ratio: 4 / 5; } }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-facade { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px; background: linear-gradient(135deg, #e8f3fd, #fff 60%, #fff4cc); }
.map-facade > div > .icon { width: 56px; height: 56px; color: var(--red); margin: 0 auto 10px; }
.map-facade p { color: var(--ink-2); max-width: 30em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #c9d6f5; padding: 48px 0 24px; font-size: 1rem; }
.site-footer a { color: #fff; }
.site-footer h2 { color: #fff; font-size: 1.1rem; margin-bottom: 12px; }
.footer-grid { display: grid; gap: 28px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-brand img { width: 120px; height: 108px; margin-bottom: 12px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 6px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .15); margin-top: 32px; padding-top: 18px; font-size: .92rem; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

/* ---------- Mobile bottom action bar ---------- */
.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: grid; grid-template-columns: repeat(3, 1fr);
  height: var(--bar-h); background: var(--navy-deep); box-shadow: 0 -4px 16px rgba(0, 0, 0, .2);
  padding-bottom: env(safe-area-inset-bottom);
}
.action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #fff; text-decoration: none; font-weight: 800; font-size: .85rem; letter-spacing: .04em; }
.action-bar a:nth-child(1) { background: var(--red); }
.action-bar a:nth-child(2) { background: var(--wa); }
.action-bar a:nth-child(3) { background: var(--gold); color: var(--navy); }
.action-bar .icon { width: 24px; height: 24px; }
@media (min-width: 900px) { .action-bar { display: none; } body { padding-bottom: 0; } }

/* 404 */
.nf { text-align: center; padding: 72px 0; }
.nf .btn-row { justify-content: center; }

/* ---------- Icon placements ---------- */
.icon-sm { width: 16px; height: 16px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.eyebrow .icon { width: 18px; height: 18px; }
.site-nav a { display: flex; align-items: center; gap: 12px; }
.nav-icon { width: 22px; height: 22px; color: var(--red); }
.site-nav .nav-cta a { justify-content: center; }
@media (min-width: 1040px) { .nav-icon { display: none; } }
.mini .card-link .icon, .card-link .icon { width: 18px; height: 18px; }
.site-footer h2 { display: flex; align-items: center; gap: 8px; }
.site-footer h2 .icon { width: 20px; height: 20px; color: var(--gold); }
.footer-links a { display: inline-flex; align-items: center; gap: 6px; }
.footer-links .icon-sm { color: var(--gold); }
.footer-links--icons li { display: flex; align-items: center; gap: 10px; }
.footer-links--icons .icon { width: 20px; height: 20px; color: var(--gold); }
.related a { display: flex; align-items: center; gap: 8px; }
.aside-box .ticks { margin-bottom: 0; }
.aside-box .ticks .icon { width: 20px; height: 20px; }
