/* =============================================================
   First Due Pet Waste Removal — Design System & Styles
   Mobile-first. Custom properties. WCAG 2.1 AA.
   ============================================================= */

/* ----------  Design tokens  ---------- */
:root {
  /* Brand palette */
  --color-ink:        #0F0F10;
  --color-ink-2:      #0A0A0B;
  --color-surface:    #17171A;
  --color-surface-2:  #202024;
  --color-surface-3:  #2A2A30;

  --color-red:        #8E1411; /* brand brick red — sampled from logo */
  --color-red-600:    #74100E;
  --color-red-700:    #5A0B0A;
  --color-red-300:    #E4574C; /* lighter tint for links/accents on dark (AA) */

  --color-white:      #FFFFFF;
  --color-cream:      #F6F5F3;

  --color-text:       #F4F4F5;
  --color-text-muted: #C3C4C8;
  --color-text-dark:  #16161A;
  --color-text-dark-muted: #4B4B52;

  --color-border:      rgba(255,255,255,.12);
  --color-border-2:    rgba(255,255,255,.20);
  --color-border-dark: rgba(16,16,20,.12);

  /* Typography */
  --font-head: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --fs-300: 0.875rem;   /* 14 */
  --fs-400: 1rem;       /* 16 */
  --fs-500: 1.125rem;   /* 18 */
  --fs-600: 1.375rem;   /* 22 */
  --fs-700: clamp(1.5rem, 1.1rem + 1.8vw, 2.1rem);
  --fs-800: clamp(2rem, 1.3rem + 3vw, 3rem);
  --fs-900: clamp(2.5rem, 1.4rem + 4.6vw, 4.25rem);

  --lh-tight: 1.05;
  --lh-snug: 1.2;
  --lh-body: 1.65;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 10px 30px rgba(0,0,0,.35);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.45);

  --container: 1140px;
  --header-h: 76px;

  --transition: 180ms ease;
}

/* ----------  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; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-400);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture, video { max-width: 100%; height: auto; display: block; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: var(--lh-snug);
  letter-spacing: .01em;
  margin: 0 0 var(--space-4);
  color: var(--color-white);
}
h1 { font-size: var(--fs-900); line-height: var(--lh-tight); font-weight: 700; text-transform: uppercase; }
h2 { font-size: var(--fs-800); text-transform: uppercase; }
h3 { font-size: var(--fs-600); }
p  { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-red-300); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
a:hover { color: var(--color-white); }

strong { font-weight: 600; }

/* Focus states — visible on any background */
:focus-visible {
  outline: 3px solid var(--color-red-300);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--space-5); }

.section { padding-block: var(--space-8); }
.section--tight { padding-block: var(--space-7); }
.section--light { background: var(--color-cream); color: var(--color-text-dark); }
.section--light h1, .section--light h2, .section--light h3 { color: var(--color-text-dark); }
.section--alt { background: var(--color-surface); }
.section--red { background: var(--color-red-700); color: var(--color-white); }
.section--red h2 { color: var(--color-white); }

.section__head { max-width: 46rem; margin: 0 auto var(--space-6); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__intro { font-size: var(--fs-500); color: var(--color-text-muted); }
.section--light .section__intro { color: var(--color-text-dark-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: var(--fs-300);
  color: var(--color-red-300);
  margin-bottom: var(--space-3);
}
.section--light .eyebrow { color: var(--color-red-700); }
.section--red .eyebrow { color: rgba(255,255,255,.85); }

.lead { font-size: var(--fs-500); color: var(--color-text-muted); }
.section--light .lead { color: var(--color-text-dark-muted); }
.text-center { text-align: center; }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.grid { display: grid; gap: var(--space-5); }
@media (min-width: 640px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ----------  Buttons  ---------- */
.btn {
  --btn-bg: var(--color-red);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: var(--fs-400); line-height: 1;
  padding: 0.9rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bg); border-radius: var(--radius-sm);
  text-decoration: none; cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { background: var(--color-red-600); border-color: var(--color-red-600); color: #fff; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--outline { --btn-bg: transparent; --btn-fg: var(--color-white); border-color: var(--color-border-2); }
.btn--outline:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }
.btn--light { --btn-bg: #fff; --btn-fg: var(--color-red-700); }
.btn--light:hover { background: var(--color-cream); border-color: var(--color-cream); color: var(--color-red-700); }
.btn--ghost-dark { --btn-bg: transparent; --btn-fg: var(--color-text-dark); border-color: var(--color-border-dark); }
.btn--ghost-dark:hover { background: rgba(16,16,20,.06); border-color: var(--color-text-dark); color: var(--color-text-dark); }
.btn--lg { font-size: var(--fs-500); padding: 1.05rem 1.9rem; }
.btn--block { width: 100%; }
.btn__icon { width: 1.15em; height: 1.15em; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.btn-row--center { justify-content: center; }

/* ----------  Skip link  ---------- */
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--color-red); color: #fff; padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); z-index: 1000;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .05em; text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; color: #fff; }

/* ----------  Top bar  ---------- */
.topbar { background: var(--color-red-700); color: #fff; font-size: var(--fs-300); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: 40px; }
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: var(--color-cream); text-decoration: underline; }
.topbar__tag { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; }
.topbar__tag span { opacity: .7; padding-inline: .4rem; }
@media (max-width: 640px) { .topbar__tag { display: none; } }

/* ----------  Header / Nav  ---------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border-dark);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px rgba(0,0,0,.12); background: #ffffff; }

.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: var(--space-3); text-decoration: none; color: #fff; }
.brand__logo { width: 52px; height: 52px; flex: none; object-fit: contain; }
/* Header is white — the logo's own white field blends in, no chip needed */
.site-header .brand__name { color: var(--color-text-dark); }
.site-header .brand__name em { color: var(--color-red); }
.site-header .brand__sub { color: var(--color-text-dark-muted); }
.site-header .nav-toggle { color: var(--color-text-dark); border-color: var(--color-border-dark); }
.site-header .primary-nav a { color: var(--color-text-dark); }
.site-header .primary-nav a:hover,
.site-header .primary-nav a[aria-current="page"] { color: var(--color-red); }
.site-header .primary-nav a { border-bottom-color: var(--color-border-dark); }
.site-header .primary-nav.is-open { background: #fff; border-bottom-color: var(--color-border-dark); }
/* Footer stays dark — give its logo a white chip so the badge reads as intentional */
.site-footer .brand__logo { background: #fff; border-radius: 10px; padding: 4px; box-shadow: 0 2px 10px rgba(0,0,0,.35); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: 1.15rem; color: #fff; }
.brand__name em { color: var(--color-red-300); font-style: normal; }
.brand__sub { font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--color-text-muted); margin-top: 3px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; background: transparent; border: 1px solid var(--color-border-2);
  border-radius: var(--radius-sm); color: #fff; cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.primary-nav { display: none; }
.primary-nav ul { display: flex; flex-direction: column; gap: var(--space-1); }
.primary-nav a {
  display: block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
  font-weight: 500; font-size: 1.05rem; color: var(--color-text); text-decoration: none;
  padding: .75rem .25rem; border-bottom: 1px solid var(--color-border);
}
.primary-nav a:hover { color: var(--color-red-300); }
.primary-nav a[aria-current="page"] { color: var(--color-red-300); }
.nav-cta { margin-top: var(--space-3); }

/* mobile open state */
.primary-nav.is-open {
  display: block; position: absolute; left: 0; right: 0; top: 100%;
  background: var(--color-ink-2); border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-5) var(--space-6);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 940px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; align-items: center; gap: var(--space-5); }
  .primary-nav ul { flex-direction: row; gap: var(--space-5); }
  .primary-nav a { border-bottom: 0; padding: .35rem 0; position: relative; }
  .primary-nav a::after {
    content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
    background: var(--color-red); transition: width var(--transition);
  }
  .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { width: 100%; }
  .nav-cta { margin-top: 0; }
}

/* ----------  Hero  ---------- */
.hero { position: relative; background: var(--color-ink-2); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: .28; z-index: 0;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,11,.65) 0%, rgba(10,10,11,.85) 70%, var(--color-ink) 100%),
              radial-gradient(60% 60% at 20% 10%, rgba(142,20,17,.28), transparent 60%);
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; padding-block: var(--space-8); max-width: 46rem; }
.hero__inner--page { padding-block: var(--space-7); }
.hero h1 { margin-bottom: var(--space-4); }
.hero .hero__tagline {
  font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: .14em;
  color: var(--color-red-300); font-size: var(--fs-500); margin-bottom: var(--space-4);
}
.hero__lead { font-size: var(--fs-500); color: var(--color-text-muted); margin-bottom: var(--space-6); max-width: 40rem; }

/* ----------  Trust bar / badges  ---------- */
.trust-bar { background: var(--color-red); }
.trust-bar__list { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-3) var(--space-6); padding-block: var(--space-4); }
.trust-bar__item { display: inline-flex; align-items: center; gap: var(--space-2); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; color: #fff; font-weight: 500; font-size: var(--fs-400); }
.trust-bar__item svg { width: 1.3em; height: 1.3em; flex: none; }

.badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; font-weight: 500;
  font-size: var(--fs-300); padding: .4rem .8rem; border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-2); color: var(--color-text);
}
.badge svg { width: 1.1em; height: 1.1em; }
.badge-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.badge-est {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head); text-transform: uppercase; line-height: 1;
  border: 2px solid var(--color-red); color: #fff; border-radius: var(--radius-sm);
  padding: .5rem .8rem; letter-spacing: .1em;
}
.badge-est strong { font-size: 1.3rem; color: var(--color-red-300); }
.badge-est span { font-size: .6rem; letter-spacing: .28em; margin-top: 3px; }

/* ----------  Cards  ---------- */
.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: var(--space-6);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--color-red); box-shadow: var(--shadow-md); }
.section--light .card { background: #fff; border-color: var(--color-border-dark); color: var(--color-text-dark); }
.card__icon {
  width: 56px; height: 56px; display: inline-flex; align-items: center; justify-content: center;
  background: rgba(142,20,17,.14); color: var(--color-red-300); border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.section--light .card__icon { background: rgba(142,20,17,.10); color: var(--color-red-700); }
.card__icon svg { width: 30px; height: 30px; }
.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--color-text-muted); }
.section--light .card p { color: var(--color-text-dark-muted); }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: var(--space-4);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-weight: 500;
  text-decoration: none; color: var(--color-red-300);
}
.section--light .card__link { color: var(--color-red-700); }
.card__link:hover { color: var(--color-white); }
.section--light .card__link:hover { color: var(--color-red); }
.card__link svg { width: 1em; height: 1em; transition: transform var(--transition); }
.card__link:hover svg { transform: translateX(4px); }

.service-media {
  aspect-ratio: 16 / 10; width: 100%; object-fit: cover;
  border-radius: var(--radius-md); border: 1px solid var(--color-border); margin-bottom: var(--space-5);
}

/* ----------  Feature list (checkmarks)  ---------- */
.feature-list { display: grid; gap: var(--space-3); }
.feature-list li { display: flex; align-items: flex-start; gap: var(--space-3); }
.feature-list li svg { width: 1.4em; height: 1.4em; flex: none; color: var(--color-red-300); margin-top: 2px; }
.section--light .feature-list li svg { color: var(--color-red-700); }

/* ----------  Steps  ---------- */
.steps { display: grid; gap: var(--space-5); counter-reset: step; }
@media (min-width: 780px) { .steps--row { grid-template-columns: repeat(4, 1fr); } }
.step { position: relative; padding-top: var(--space-6); }
.step__num {
  position: absolute; top: 0; left: 0; width: 3rem; height: 3rem;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: #fff;
  background: var(--color-red); border-radius: var(--radius-sm);
}
.step h3 { margin: var(--space-5) 0 var(--space-2); }
.step p { color: var(--color-text-muted); }
.section--light .step p { color: var(--color-text-dark-muted); }

/* ----------  Split / media rows  ---------- */
.split { display: grid; gap: var(--space-6); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: var(--space-8); } .split--reverse .split__media { order: 2; } }
.split__media img { border-radius: var(--radius-md); border: 1px solid var(--color-border); width: 100%; }

/* ----------  Pricing  ---------- */
.pricing { display: grid; gap: var(--space-5); align-items: stretch; }
@media (min-width: 900px) { .pricing { grid-template-columns: repeat(3, 1fr); } }
.plan {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-6); display: flex; flex-direction: column;
}
.plan--featured { border-color: var(--color-red); box-shadow: var(--shadow-md); position: relative; }
.plan--featured::before {
  content: "Most Popular"; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--color-red); color: #fff; font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .08em; font-size: .72rem; padding: .3rem .9rem; border-radius: var(--radius-pill);
}
.plan__name { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em; font-size: var(--fs-600); color: #fff; }
.plan__price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 700; color: #fff; line-height: 1; margin: var(--space-3) 0 var(--space-1); }
.plan__price small { font-size: 1rem; font-weight: 400; color: var(--color-text-muted); font-family: var(--font-body); }
.plan__cadence { color: var(--color-text-muted); font-size: var(--fs-300); text-transform: uppercase; letter-spacing: .1em; margin-bottom: var(--space-4); }
.plan .feature-list { margin: var(--space-4) 0 var(--space-6); }
.plan .btn { margin-top: auto; }

/* ----------  CTA band  ---------- */
.cta-band { background: linear-gradient(120deg, var(--color-red-700), var(--color-red)); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); font-size: var(--fs-500); max-width: 40rem; margin-inline: auto; }
.cta-band .eyebrow { color: rgba(255,255,255,.85); }
.measure-center { max-width: 38rem; margin-inline: auto; }

/* ----------  FAQ  ---------- */
.faq { display: grid; gap: var(--space-3); max-width: 52rem; margin-inline: auto; }
.faq__item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; }
.section--light .faq__item { background: #fff; border-color: var(--color-border-dark); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .02em; font-size: var(--fs-500);
  color: #fff; padding: var(--space-5);
}
.section--light .faq__item summary { color: var(--color-text-dark); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .faq__icon { flex: none; width: 1.4rem; height: 1.4rem; color: var(--color-red-300); transition: transform var(--transition); }
.section--light .faq__item summary .faq__icon { color: var(--color-red-700); }
.faq__item[open] summary .faq__icon { transform: rotate(45deg); }
.faq__body { padding: 0 var(--space-5) var(--space-5); color: var(--color-text-muted); }
.section--light .faq__body { color: var(--color-text-dark-muted); }

/* ----------  Forms  ---------- */
.form { display: grid; gap: var(--space-4); }
.field { display: grid; gap: var(--space-2); }
.field__label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .06em; font-size: var(--fs-300); color: #fff; }
.section--light .field__label { color: var(--color-text-dark); }
.field__label .req { color: var(--color-red-300); }
.section--light .field__label .req { color: var(--color-red-700); }
.input, .textarea, .select {
  width: 100%; font: inherit; color: var(--color-text-dark); background: #fff;
  border: 1px solid var(--color-border-dark); border-radius: var(--radius-sm);
  padding: .8rem .9rem; transition: border-color var(--transition), box-shadow var(--transition);
}
.input::placeholder, .textarea::placeholder { color: #8a8a92; }
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--color-red); box-shadow: 0 0 0 3px rgba(142,20,17,.25); }
.textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: var(--space-4); }
@media (min-width: 640px) { .field-row--2 { grid-template-columns: 1fr 1fr; } }
.form-note { font-size: var(--fs-300); color: var(--color-text-muted); }
.section--light .form-note { color: var(--color-text-dark-muted); }
/* Honeypot — hide from users, keep in DOM for bots */
.hp-field { position: absolute !important; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.alert { border-radius: var(--radius-md); padding: var(--space-4) var(--space-5); margin-bottom: var(--space-5); border: 1px solid; }
.alert--success { background: rgba(24,120,60,.14); border-color: #2f9e57; color: #d5f5e1; }
.alert--error { background: rgba(142,20,17,.14); border-color: var(--color-red); color: #ffd9dc; }
.section--light .alert--success { background: #e6f6ec; color: #145c31; }
.section--light .alert--error { background: #fdeaec; color: #8b0e17; }

/* ----------  Info / contact list  ---------- */
.info-list { display: grid; gap: var(--space-5); }
.info-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.info-item__icon { width: 48px; height: 48px; flex: none; display: inline-flex; align-items: center; justify-content: center; background: rgba(142,20,17,.14); color: var(--color-red-300); border-radius: var(--radius-md); }
.section--light .info-item__icon { background: rgba(142,20,17,.10); color: var(--color-red-700); }
.info-item__icon svg { width: 24px; height: 24px; }
.info-item h3 { margin: 0 0 var(--space-1); font-size: var(--fs-500); }
.info-item a { color: inherit; }
.info-item p { color: var(--color-text-muted); margin: 0; }
.section--light .info-item p { color: var(--color-text-dark-muted); }

/* ----------  Breadcrumbs  ---------- */
.breadcrumbs { font-size: var(--fs-300); color: var(--color-text-muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; padding: 0; margin: 0; list-style: none; }
.breadcrumbs a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--color-red-300); }
.breadcrumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--color-ink-2); border-top: 1px solid var(--color-border); padding-top: var(--space-8); }
.footer__grid { display: grid; gap: var(--space-6); }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer__brand .brand { margin-bottom: var(--space-4); }
.footer__tag { color: var(--color-red-300); font-family: var(--font-head); text-transform: uppercase; letter-spacing: .08em; }
.footer p { color: var(--color-text-muted); }
.footer h4 { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .1em; font-size: var(--fs-300); color: #fff; margin-bottom: var(--space-4); }
.footer__list { display: grid; gap: var(--space-2); }
.footer__list a { color: var(--color-text-muted); text-decoration: none; }
.footer__list a:hover { color: #fff; text-decoration: underline; }
.footer__badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-4); }
.social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.social a { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--color-border-2); border-radius: var(--radius-sm); color: #fff; }
.social a:hover { background: var(--color-red); border-color: var(--color-red); }
.social svg { width: 20px; height: 20px; }
.footer__bottom { border-top: 1px solid var(--color-border); margin-top: var(--space-7); padding-block: var(--space-5); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); align-items: center; justify-content: space-between; font-size: var(--fs-300); color: var(--color-text-muted); }
.footer__bottom a { color: var(--color-text-muted); }

/* ----------  404  ---------- */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.error-code { font-family: var(--font-head); font-weight: 700; font-size: clamp(5rem, 20vw, 12rem); line-height: 1; color: var(--color-red); letter-spacing: .02em; }

/* ----------  Utilities  ---------- */
.divider { height: 1px; background: var(--color-border); border: 0; margin: 0; }
.pill-note { display: inline-block; background: rgba(142,20,17,.16); color: var(--color-red-300); border: 1px solid rgba(142,20,17,.4); border-radius: var(--radius-pill); padding: .25rem .7rem; font-size: var(--fs-300); }
