:root {
  --red: #f34b43;
  --red-dark: #c92f2a;
  --blue: #168dce;
  --blue-dark: #0d6599;
  --ink: #132033;
  --slate: #566174;
  --cream: #fff8e8;
  --paper: #ffffff;
  --yellow: #ffd447;
  --line: #d8dde5;
  --display: Impact, "Arial Black", sans-serif;
  --body: "Trebuchet MS", Arial, sans-serif;
  --shadow: 7px 7px 0 var(--ink);
  --small-shadow: 4px 4px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 232, 0.98);
  border-bottom: 3px solid var(--ink);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  gap: 1.5rem;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-link img {
  width: 220px;
  height: auto;
}

.brand-domain {
  color: var(--blue);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
  text-shadow: 1px 1px 0 var(--ink);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
}

.desktop-nav a:not(.button):hover,
.mobile-nav a:not(.button):hover {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  color: var(--paper);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 0.55rem;
  box-shadow: var(--small-shadow);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--red-dark);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.button-blue {
  background: var(--blue);
}

.button-blue:hover {
  background: var(--blue-dark);
}

.hero {
  position: relative;
  padding: clamp(2.2rem, 6vw, 5.7rem) 0;
  background-color: var(--yellow);
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 18px 18px;
  border-bottom: 4px solid var(--ink);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 212, 71, 0.95), rgba(255, 212, 71, 0.72));
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.7rem;
  color: var(--paper);
  background: var(--blue);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0.015em;
  line-height: 1.02;
}

h1 {
  max-width: 700px;
  margin-bottom: 1rem;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--red), 8px 8px 0 var(--ink);
  text-wrap: balance;
}

.hero .container {
  width: min(1480px, calc(100% - 2rem));
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4rem);
  text-transform: uppercase;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 0 1.35rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin: 1.7rem 0 1.2rem;
}

.text-link {
  font-weight: 900;
  text-underline-offset: 0.3rem;
}

.trust-line {
  font-size: 0.9rem !important;
}

.hero-visual {
  position: relative;
  padding: 0.7rem;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #e8e3da;
}

.burst {
  position: absolute;
  right: -1.2rem;
  bottom: -1.25rem;
  display: grid;
  place-items: center;
  width: 105px;
  aspect-ratio: 1;
  padding: 1rem;
  background: var(--red);
  color: var(--paper);
  border: 3px solid var(--ink);
  clip-path: polygon(50% 0%, 59% 22%, 78% 8%, 78% 32%, 100% 31%, 83% 50%, 100% 67%, 77% 67%, 78% 92%, 59% 78%, 50% 100%, 41% 78%, 21% 92%, 22% 68%, 0% 68%, 17% 50%, 0% 32%, 22% 32%, 21% 8%, 41% 22%);
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.section {
  padding: clamp(3.8rem, 8vw, 7rem) 0;
}

.section-white {
  background: var(--paper);
}

.section-blue {
  color: var(--paper);
  background: var(--blue-dark);
  border-block: 4px solid var(--ink);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2.3rem;
}

.section-heading p {
  margin: 0;
  color: var(--slate);
  font-size: 1.13rem;
}

.section-blue .section-heading p {
  color: #e7f6ff;
}

.panel-grid,
.card-grid,
.location-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.panel,
.content-card,
.location-card,
.comparison-card {
  padding: 1.6rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0.7rem;
  box-shadow: var(--small-shadow);
}

.panel-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: var(--paper);
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.7rem;
}

.feature-split,
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.feature-image,
.story-image {
  padding: 0.65rem;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
}

.feature-image img,
.story-image img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2.2rem;
  font-weight: 700;
}

.check-list li::before {
  content: "\2665";
  position: absolute;
  top: -0.1rem;
  left: 0;
  color: var(--red);
  font-size: 1.4rem;
}

.content-card {
  display: flex;
  flex-direction: column;
}

.content-card .tag {
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.2rem 0.55rem;
  color: var(--paper);
  background: var(--blue-dark);
  border-radius: 0.25rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.card-link {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 900;
  text-underline-offset: 0.25rem;
}

.location-grid {
  grid-template-columns: repeat(6, 1fr);
}

.location-card {
  min-height: 125px;
  color: var(--paper);
  background: var(--ink);
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.location-card:hover {
  background: var(--red-dark);
  transform: translateY(-3px);
}

.location-card strong {
  display: block;
  font-family: "Arial Black", Arial, sans-serif;
}

.comparison-card {
  color: var(--ink);
}

.comparison-card a {
  font-weight: 900;
  text-underline-offset: 0.25rem;
}

.safety-strip {
  padding: 2rem;
  background: var(--yellow);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.faq-list details {
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0.55rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.faq-list summary {
  padding: 1rem 1.2rem;
  cursor: pointer;
  font-weight: 900;
}

.faq-list details p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
}

.final-cta {
  color: var(--paper);
  background: var(--ink);
  text-align: center;
}

.final-cta p {
  max-width: 700px;
  margin: 0 auto 1.7rem;
  font-size: 1.15rem;
}

.site-footer {
  padding: 3.5rem 0 1.5rem;
  color: var(--paper);
  background: #0b1422;
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 2rem;
}

.footer-logo {
  width: 210px;
  padding: 0.55rem;
  background: var(--paper);
  border-radius: 0.4rem;
}

.site-footer h2 {
  margin-bottom: 0.7rem;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1rem;
  text-transform: none;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin: 0.45rem 0;
}

.site-footer a {
  color: #e6edf7;
  text-underline-offset: 0.25rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid #526079;
  font-size: 0.88rem;
}

.disclosure {
  margin: 1.5rem 0 0;
  color: #d6deea;
  font-size: 0.82rem;
  text-align: center;
}

.page-hero {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
  background-color: var(--yellow);
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 18px 18px;
  border-bottom: 4px solid var(--ink);
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
}

.page-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.breadcrumbs {
  margin-bottom: 1.4rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue-dark);
  text-underline-offset: 0.25rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin-top: 2.7rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.prose h3 {
  margin-top: 2rem;
}

.prose p,
.prose li {
  font-size: 1.04rem;
}

.prose a {
  color: var(--blue-dark);
  font-weight: 800;
  text-underline-offset: 0.22rem;
}

.prose blockquote,
.answer-box,
.notice-box {
  margin: 1.8rem 0;
  padding: 1.3rem 1.5rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-left: 10px solid var(--red);
  box-shadow: var(--small-shadow);
}

.notice-box {
  border-left-color: var(--yellow);
}

.sidebar-card {
  position: sticky;
  top: 126px;
  padding: 1.4rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--small-shadow);
}

.sidebar-card h2 {
  font-size: 1.65rem;
}

.sidebar-card ul {
  padding-left: 1.2rem;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.directory-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 0.65rem;
  box-shadow: var(--small-shadow);
}

.directory-card h2,
.directory-card h3 {
  font-size: 1.75rem;
  text-transform: none;
}

.directory-card a {
  margin-top: auto;
  color: var(--blue-dark);
  font-weight: 900;
  text-underline-offset: 0.25rem;
}

.legal-meta {
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 800;
}

.page-feature-image {
  margin: 0 0 3rem;
  padding: 0.65rem;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: var(--shadow);
}

.page-feature-image img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.page-feature-image figcaption {
  padding: 0.65rem 0.35rem 0.1rem;
  color: var(--slate);
  font-size: 0.78rem;
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    padding: 0.65rem 0.8rem;
    background: var(--paper);
    border: 3px solid var(--ink);
    border-radius: 0.4rem;
    cursor: pointer;
    font-weight: 900;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: grid;
    width: min(310px, calc(100vw - 2rem));
    padding: 1rem;
    background: var(--cream);
    border: 3px solid var(--ink);
    box-shadow: var(--small-shadow);
  }

  .mobile-nav nav a {
    padding: 0.72rem;
    font-weight: 900;
  }

  .location-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media (max-width: 780px) {
  .header-row {
    min-height: 86px;
  }

  .brand-link img {
    width: 178px;
  }

  .brand-domain {
    font-size: 1.15rem;
  }

  .hero-grid,
  .feature-split,
  .story-split,
  .safety-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy > p,
  .hero-actions {
    margin-inline: auto;
    justify-content: center;
  }

  .hero-visual {
    transform: none;
  }

  .panel-grid,
  .card-grid,
  .comparison-grid,
  .directory-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-image {
    order: -1;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 3rem;
  }

  .brand-link img {
    width: 145px;
  }

  .brand-domain {
    display: none;
  }

  .header-row {
    gap: 0.7rem;
  }

  .mobile-nav summary {
    font-size: 0.86rem;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
