/* =============================================================================
   ANW Auto Care — Design System
   Tokens sourced from docs/brand-brief.md (palette sampled from the hand-painted
   bay sign). Flat system: no gradients, no chrome, no shadows on brand surfaces.
   ============================================================================= */

/* ----- Tokens ------------------------------------------------------------- */
:root {
  /* color */
  --anw-red:        #C4262E;
  --anw-red-deep:   #B0212A;
  --anw-coral:      #E04A50;
  --anw-salmon:     #F2716B;   /* red on dark ONLY */
  --anw-blue:       #5A7691;
  --anw-blue-dark:  #41586E;   /* links, light backgrounds only */
  --anw-blue-light: #8FA6BA;   /* dark backgrounds only */
  --anw-graphite:   #2B2E34;
  --anw-graphite-2: #23262B;   /* slightly deeper for footer/utility */
  --anw-bone:       #F2EDE3;
  --anw-white:      #FFFFFF;
  --anw-line:       rgba(43, 46, 52, 0.14);
  --anw-line-dark:  rgba(242, 237, 227, 0.16);

  /* type */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;   /* caps only, 400 */
  --font-word:    "Alfa Slab One", "Bebas Neue", serif;       /* wordmark only */
  --font-body:    "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* geometry */
  --radius-button: 2px;
  --radius-card:   0;
  --rule-accent:   3px solid var(--anw-red);

  /* spacing — 8px base */
  --space-section:        96px;
  --space-section-mobile: 56px;
  --content-max:          1200px;
  --content-narrow:       760px;
}

/* ----- Reset -------------------------------------------------------------- */
*, *::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);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--anw-graphite);
  background: var(--anw-bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--anw-blue-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--anw-red-deep); }
h1, h2, h3, h4 { margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
:focus-visible { outline: 3px solid var(--anw-red); outline-offset: 2px; }

/* ----- Typography --------------------------------------------------------- */
.display, h1, h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  font-weight: 400;
  color: var(--anw-graphite);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  color: var(--anw-graphite);
}
h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.02rem; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--anw-red-deep);
  margin: 0 0 0.75rem;
}
.lead { font-size: 1.15rem; line-height: 1.65; }
.measure { max-width: 68ch; }

/* Section heading with the signature 3px red rule */
.section-head { margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: 0.6rem; }
.section-head .rule {
  width: 64px; height: 3px; background: var(--anw-red); border: 0; margin: 0.75rem 0 0;
}
.section-head.center { text-align: center; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }

/* ----- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: var(--content-narrow); }
.section { padding: var(--space-section) 0; }
@media (max-width: 720px) { .section { padding: var(--space-section-mobile) 0; } }
.section--bone  { background: var(--anw-bone); }
.section--white { background: var(--anw-white); }
.section--dark  { background: var(--anw-graphite); color: var(--anw-bone); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--anw-bone); }
.section--dark a { color: var(--anw-blue-light); }
.section--dark a:hover { color: var(--anw-salmon); }
/* Red-on-graphite fails contrast (2.6:1) — eyebrows go salmon on dark sections. */
.section--dark .eyebrow { color: var(--anw-salmon); }
/* Light cards nested in dark sections keep dark headings/links (not the bone override). */
.section--dark .card h2, .section--dark .card h3, .section--dark .card h4 { color: var(--anw-graphite); }
.section--dark .card a:not(.btn) { color: var(--anw-blue-dark); }
.section--dark .card .card__link { color: var(--anw-red-deep); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ----- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.9rem; line-height: 1;
  min-height: 48px; padding: 15px 26px; border-radius: var(--radius-button);
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--anw-red-deep); color: #fff; border-color: var(--anw-red-deep); }
.btn-primary:hover { background: #97161f; border-color: #97161f; color: #fff; }
.btn-secondary { background: transparent; color: var(--anw-graphite); border-color: var(--anw-graphite); }
.btn-secondary:hover { background: var(--anw-graphite); color: var(--anw-bone); }
.btn-ghost-dark { background: transparent; color: var(--anw-bone); border-color: var(--anw-bone); }
.btn-ghost-dark:hover { background: var(--anw-bone); color: var(--anw-graphite); }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

/* ----- Header / Nav ------------------------------------------------------- */
.utility {
  background: var(--anw-graphite-2); color: var(--anw-blue-light);
  font-size: 0.82rem; letter-spacing: 0.02em;
}
.utility .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; flex-wrap: wrap; }
.utility a { color: var(--anw-bone); text-decoration: none; }
.utility a:hover { color: var(--anw-salmon); }
.utility .u-group { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.status-dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--anw-blue-light); margin-right: 6px; vertical-align: middle; }
.status-open .status-dot { background: #3fbf6a; }
.status-closed .status-dot { background: var(--anw-salmon); }
@media (max-width: 720px) { .utility .u-hide-sm { display: none; } }

.site-header { position: sticky; top: 0; z-index: 50; background: var(--anw-white); border-bottom: 1px solid var(--anw-line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: var(--font-body); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.82rem; color: var(--anw-graphite);
  text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent;
}
.nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { color: var(--anw-red-deep); border-bottom-color: var(--anw-red); }
.nav a.btn-primary, .nav a.btn-primary:hover, .nav a.btn-primary[aria-current="page"] { color: #fff; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { font-family: var(--font-display); font-size: 1.5rem; color: var(--anw-graphite); text-decoration: none; letter-spacing: 0.02em; }
.header-phone:hover { color: var(--anw-red-deep); }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--anw-graphite); }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1000px) {
  .header-phone-text { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: var(--anw-graphite); color: var(--anw-bone);
    padding: 88px 28px 28px; transform: translateX(100%); transition: transform 0.22s ease;
    z-index: 60; overflow-y: auto;
  }
  .nav[data-open="true"] { transform: translateX(0); }
  .nav a:not(.btn) { color: var(--anw-bone); font-size: 1rem; width: 100%; padding: 12px 0; border-bottom: 1px solid var(--anw-line-dark); }
  .nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { color: var(--anw-salmon); border-bottom-color: var(--anw-line-dark); }
  .nav a.btn { width: 100%; }
  .nav .nav-cta { margin-top: 16px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 55; opacity: 0; visibility: hidden; transition: opacity 0.2s ease; }
  .nav-backdrop[data-open="true"] { opacity: 1; visibility: visible; }
}
@media (prefers-reduced-motion: reduce) { .nav { transition: none; } }

/* ----- Logo lockup -------------------------------------------------------- */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo__img { height: 56px; width: auto; display: block; }
.logo--dark .logo__img { height: 60px; }
@media (max-width: 640px) { .logo__img { height: 48px; } }

/* ----- Hero --------------------------------------------------------------- */
.hero { position: relative; background: var(--anw-graphite); color: var(--anw-bone); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,46,52,0.86) 0%, rgba(43,46,52,0.62) 45%, rgba(43,46,52,0.30) 100%);
}
.hero__inner { position: relative; padding: 96px 0 88px; }
.hero h1 { color: var(--anw-white); margin-bottom: 1rem; }
.hero .eyebrow { color: var(--anw-salmon); }
.hero__sub { font-size: 1.2rem; max-width: 46ch; color: var(--anw-bone); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 2rem; }
.hero__trust { margin-top: 2rem; display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-size: 0.9rem; color: var(--anw-blue-light); }
.hero__trust strong { color: var(--anw-bone); font-weight: 600; }
@media (max-width: 720px) { .hero__inner { padding: 64px 0 56px; } }

/* ----- Trust bar ---------------------------------------------------------- */
.trustbar { background: var(--anw-graphite-2); color: var(--anw-bone); }
.trustbar ul { display: flex; flex-wrap: wrap; gap: 12px 40px; margin: 0; padding: 20px 0; list-style: none; justify-content: center; }
.trustbar li { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; }
.trustbar svg { width: 20px; height: 20px; color: var(--anw-salmon); flex: none; }

/* ----- Cards -------------------------------------------------------------- */
.card { background: var(--anw-white); border: 1px solid var(--anw-line); border-radius: var(--radius-card); padding: 28px; height: 100%; display: flex; flex-direction: column; }
.section--white .card { background: var(--anw-bone); }
.card__icon { width: 40px; height: 40px; color: var(--anw-blue); margin-bottom: 16px; }
.card--photo { overflow: hidden; }
.card__photo { display: block; margin: -28px -28px 20px; width: calc(100% + 56px); max-width: none; aspect-ratio: 3 / 2; object-fit: cover; transition: transform 0.35s ease; }
.card--photo:hover .card__photo { transform: scale(1.04); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--anw-graphite); margin-bottom: 1rem; }
.card__note { font-size: 0.85rem; color: var(--anw-blue-dark); font-weight: 600; margin-top: auto; }
.card__link { margin-top: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; text-decoration: none; color: var(--anw-red-deep); display: inline-flex; align-items: center; gap: 6px; }
.card__link:hover { gap: 10px; }
.card--link { text-decoration: none; color: inherit; transition: border-color 0.15s ease; }
.card--link:hover { border-color: var(--anw-graphite); color: inherit; }

/* ----- Recently Serviced feed -------------------------------------------- */
.vehicle-card { background: var(--anw-white); border: 1px solid var(--anw-line); display: flex; flex-direction: column; height: 100%; }
.vehicle-card__photo { aspect-ratio: 3 / 2; overflow: hidden; background: var(--anw-graphite); }
.vehicle-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.vehicle-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vehicle-card__title { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.01em; margin: 0; }
.vehicle-card__meta { display: flex; justify-content: space-between; gap: 12px; font-size: 0.82rem; color: var(--anw-blue-dark); font-variant-numeric: tabular-nums; }
.vehicle-card__services { list-style: none; margin: 0; padding: 12px 0 0; border-top: 1px solid var(--anw-line); display: flex; flex-direction: column; gap: 4px; }
.vehicle-card__services li { font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--anw-graphite); display: flex; gap: 8px; }
.vehicle-card__services li::before { content: "›"; color: var(--anw-red); font-weight: 700; }
.vehicle-card__notes { font-size: 0.85rem; color: var(--anw-blue-dark); font-style: italic; margin: 0; }
.vehicle-card__foot { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--anw-line); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.vehicle-card__customer { font-size: 0.82rem; font-weight: 600; }
.vehicle-card__date { font-size: 0.78rem; color: var(--anw-blue-dark); font-variant-numeric: tabular-nums; }
.stars { color: var(--anw-red); letter-spacing: 1px; font-size: 0.9rem; }
.feed-note { text-align: center; font-size: 0.82rem; color: var(--anw-blue-dark); margin-top: 24px; }

/* ----- Reviews ------------------------------------------------------------ */
.review { background: var(--anw-white); border: 1px solid var(--anw-line); padding: 26px; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.section--dark .review { background: var(--anw-graphite-2); border-color: var(--anw-line-dark); }
.review__stars { color: var(--anw-red); letter-spacing: 2px; }
.section--dark .review__stars { color: var(--anw-salmon); }
.review__text { font-size: 1rem; line-height: 1.6; margin: 0; }
.review__by { margin-top: auto; font-weight: 700; font-size: 0.9rem; }
.review__src { font-size: 0.78rem; color: var(--anw-blue-dark); }
.section--dark .review__src { color: var(--anw-blue-light); }
.rating-badge { display: inline-flex; align-items: center; gap: 12px; }
.rating-badge__num { font-family: var(--font-display); font-size: 3.4rem; line-height: 1; color: var(--anw-red); }
.section--dark .rating-badge__num { color: var(--anw-salmon); }

/* ----- Owner / split blocks ---------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--media-right { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 28px; } }
.split img { width: 100%; border: 1px solid var(--anw-line); }

/* ----- Process steps ------------------------------------------------------ */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 20px; }
.steps li { position: relative; padding-left: 62px; counter-increment: step; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--anw-red-deep); color: #fff; font-family: var(--font-display);
  font-size: 1.5rem; border-radius: 2px;
}
.steps h4 { margin: 0 0 4px; }
.steps p { margin: 0; font-size: 0.95rem; }

/* ----- Service area / map ------------------------------------------------- */
.area-list { columns: 2; column-gap: 40px; list-style: none; padding: 0; margin: 0; }
.area-list li { break-inside: avoid; padding: 8px 0; border-bottom: 1px solid var(--anw-line); }
.area-list a { text-decoration: none; font-weight: 600; }
@media (max-width: 560px) { .area-list { columns: 1; } }
.map-embed { width: 100%; aspect-ratio: 16 / 10; border: 1px solid var(--anw-line); }

/* ----- Gallery ------------------------------------------------------------ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 1px solid var(--anw-line); }

/* ----- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--anw-red-deep); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .btn-ghost-dark { border-color: #fff; color: #fff; }
.cta-band .btn-ghost-dark:hover { background: #fff; color: var(--anw-red-deep); }
.cta-band .btn-secondary { background: #fff; border-color: #fff; color: var(--anw-red-deep); }
.cta-band .btn-secondary:hover { background: transparent; color: #fff; }
.cta-band__phone { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.4rem); color: #fff; text-decoration: none; display: inline-block; }
.cta-band__phone:hover { color: var(--anw-bone); }

/* ----- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em; }
.field .req { color: var(--anw-red-deep); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  border: 1px solid rgba(43,46,52,0.30); border-radius: 2px; background: #fff; color: var(--anw-graphite);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--anw-red); outline-offset: 1px; border-color: var(--anw-red); }
.field textarea { min-height: 120px; resize: vertical; }
.field--check { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--check input { width: 20px; height: 20px; margin-top: 2px; flex: none; }
.field--check label { font-weight: 400; font-size: 0.92rem; }
.field-error { color: var(--anw-red-deep); font-size: 0.82rem; font-weight: 600; }
.form-notice { background: var(--anw-bone); border-left: 3px solid var(--anw-red); padding: 16px 18px; font-size: 0.92rem; }
.section--white .form-notice { background: var(--anw-white); }
fieldset { border: 1px solid var(--anw-line); border-radius: 2px; padding: 20px; margin: 0; }
legend { font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; padding: 0 8px; }

/* ----- Info / NAP blocks -------------------------------------------------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; }
.info-list svg { width: 22px; height: 22px; color: var(--anw-red); flex: none; margin-top: 2px; }
.info-list a { text-decoration: none; font-weight: 600; }
.info-list .label { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--anw-blue-dark); font-weight: 700; }

/* ----- FAQ / disclosure --------------------------------------------------- */
.faq { border-top: 1px solid var(--anw-line); }
.faq details { border-bottom: 1px solid var(--anw-line); }
.faq summary { cursor: pointer; padding: 20px 40px 20px 0; font-weight: 700; font-size: 1.05rem; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 16px; font-family: var(--font-display); font-size: 1.8rem; color: var(--anw-red); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 40px 22px 0; margin: 0; color: var(--anw-graphite); }

/* ----- Breadcrumbs -------------------------------------------------------- */
.crumbs { font-size: 0.8rem; letter-spacing: 0.02em; padding: 14px 0; color: var(--anw-blue-dark); }
.crumbs a { text-decoration: none; }
.crumbs [aria-current] { color: var(--anw-graphite); font-weight: 600; }
.crumbs span { margin: 0 6px; color: var(--anw-line); }

/* ----- Page hero (interior) ---------------------------------------------- */
.page-hero { background: var(--anw-graphite); color: var(--anw-bone); padding: 56px 0; }
.page-hero h1 { color: var(--anw-white); }
.page-hero .eyebrow { color: var(--anw-salmon); }
.page-hero p { max-width: 62ch; margin: 0.5rem 0 0; color: var(--anw-blue-light); font-size: 1.1rem; }

/* ----- Footer ------------------------------------------------------------- */
.site-footer { background: var(--anw-graphite); color: var(--anw-blue-light); font-size: 0.92rem; }
.site-footer .wrap { padding-top: 64px; padding-bottom: 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--anw-bone); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; margin-bottom: 16px; }
.site-footer a { color: var(--anw-blue-light); text-decoration: none; }
.site-footer a:hover { color: var(--anw-salmon); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-nap address { font-style: normal; line-height: 1.7; }
.footer-nap .footer-phone { font-family: var(--font-display); font-size: 1.8rem; color: var(--anw-bone); }
.footer-bottom { border-top: 1px solid var(--anw-line-dark); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom a { color: var(--anw-blue-light); }
.fg-credit { display: inline-flex; align-items: center; gap: 8px; }
.fg-credit svg { width: 16px; height: 16px; }

/* ----- Sticky mobile call bar -------------------------------------------- */
.callbar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 45; display: none; background: var(--anw-graphite); border-top: 2px solid var(--anw-red); }
.callbar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 8px; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.82rem; color: var(--anw-bone); }
.callbar a + a { border-left: 1px solid var(--anw-line-dark); }
.callbar a.callbar--primary { background: var(--anw-red-deep); color: #fff; }
.callbar svg { width: 18px; height: 18px; }
@media (max-width: 1000px) { .callbar { display: flex; } body { padding-bottom: 56px; } }

/* ----- Utility ------------------------------------------------------------ */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--anw-red-deep); color: #fff; padding: 12px 18px; z-index: 100; }
.skip-link:focus { left: 8px; top: 8px; }
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.text-muted { color: var(--anw-blue-dark); }
.pill { display: inline-block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border: 1px solid var(--anw-line); border-radius: 2px; color: var(--anw-blue-dark); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
