:root {
  --ink: #08394b;
  --heading: #123d4c;
  --muted: #3d5964;
  --card: #fbfbfb;
  --warning-bg: #fff7da;
  --warning-border: #ead17c;
  --wide: 1160px;
  --content: 1040px;
  --narrow: 760px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: linear-gradient(180deg, #f0fbfc 0, rgba(240, 251, 252, 0.38) 90px, #fff 190px) no-repeat;
  color: var(--ink);
  font-family: Chivo, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.48;
}

a { color: inherit; text-underline-offset: 0.16em; }
a:hover { color: #006b80; }
a:focus-visible { outline: 3px solid #f5c84b; outline-offset: 4px; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.wide-shell, .content-shell, .narrow-shell {
  width: min(calc(100% - 40px), var(--wide));
  margin-inline: auto;
}
.content-shell { max-width: var(--content); }
.narrow-shell { max-width: var(--narrow); }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 9px 13px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.notice-intro { padding: 105px 0 58px; text-align: center; }
.release-meta { margin-bottom: 25px; color: var(--muted); font-size: 12px; }
.release-meta strong { font-weight: 500; }

.notice-intro h1 {
  margin-bottom: 22px;
  color: var(--heading);
  font-size: clamp(31px, 4.1vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.018em;
}
.notice-intro h1 span { display: block; margin-bottom: 5px; font-size: 0.84em; }

.apology-statement {
  max-width: 690px;
  margin-inline: auto;
  color: var(--ink);
  font-size: 16px;
}
.apology-statement > strong { display: block; margin-bottom: 2px; font-size: 18px; }
.apology-statement p { margin-bottom: 0; }

.draft-warning {
  display: inline-block;
  margin: 24px auto 0;
  padding: 8px 11px;
  border: 1px solid var(--warning-border);
  border-radius: 5px;
  background: var(--warning-bg);
  font-size: 12px;
}

.recall-section { padding: 34px 0 58px; }
.recall-section h2 {
  margin-bottom: 35px;
  color: var(--heading);
  font-size: clamp(27px, 3.4vw, 39px);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.identifier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 36px;
}
.identifier-card { overflow: hidden; background: var(--card); }
.identifier-card img { width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; background: #f3f5f6; }
.card-copy { padding: 20px 24px 26px; }
.card-copy h3 { margin-bottom: 11px; color: var(--heading); font-size: 21px; line-height: 1.25; }
.card-copy p { margin-bottom: 8px; color: var(--ink); font-size: 14px; }
.card-copy p:last-child { margin-bottom: 0; }
.model-numbers { font-weight: 700; }

.process-section { padding-top: 63px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { margin-bottom: 12px; }
.process-list li:nth-child(4) { margin-top: 27px; }
.process-list a, .contact-list a { font-weight: 600; }

.contact-section { padding-top: 38px; padding-bottom: 125px; }
.contact-section h2 { margin-bottom: 30px; }
.contact-list { margin: 0; }
.contact-list div { display: grid; grid-template-columns: 220px 1fr; padding: 5px 0; }
.contact-list dt { font-weight: 700; }
.contact-list dd { margin: 0; }
.privacy-note {
  margin-top: 30px;
  padding: 15px 17px;
  border-left: 4px solid var(--warning-border);
  background: var(--warning-bg);
  font-size: 13px;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 30px;
  background: linear-gradient(#effafb, #fff);
  text-align: center;
}
.error-page main { max-width: 560px; }
.error-page h1 { color: var(--heading); font-size: clamp(44px, 8vw, 80px); }
.primary-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 5px;
  background: var(--heading);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.primary-button:hover { color: #fff; background: #006b80; }

@media (max-width: 860px) {
  .notice-intro { padding-top: 78px; }
  .identifier-grid { grid-template-columns: 1fr; max-width: 540px; margin-inline: auto; gap: 26px; }
  .identifier-card img { aspect-ratio: 4 / 3; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .wide-shell, .content-shell, .narrow-shell { width: min(calc(100% - 28px), var(--wide)); }
  .notice-intro { padding: 64px 0 36px; }
  .release-meta span { display: block; height: 3px; }
  .notice-intro h1 { font-size: 31px; }
  .apology-statement { font-size: 15px; }
  .recall-section { padding: 30px 0 44px; }
  .recall-section h2 { margin-bottom: 25px; font-size: 27px; }
  .card-copy { padding: 18px 19px 22px; }
  .contact-list div { grid-template-columns: 1fr; padding: 7px 0; }
  .contact-list dd { margin-top: 1px; }
  .contact-section { padding-bottom: 75px; }
}

@media print {
  body { background: #fff; color: #000; font-size: 11pt; }
  .notice-intro { padding-top: 20px; }
  .draft-warning, .privacy-note { display: none; }
  .identifier-grid { gap: 18px; }
  .identifier-card, .process-section, .contact-section { break-inside: avoid; }
}
