:root {
  color-scheme: light;
  --paper: #f4f3f0;
  --surface: rgba(255, 255, 255, .72);
  --ink: #101114;
  --ink-soft: #292c31;
  --muted: #626871;
  --faint: #848a92;
  --line: rgba(16, 17, 20, .13);
  --accent: #687386;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; background: var(--paper); scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(255, 255, 255, .9), transparent 76%),
    radial-gradient(ellipse 48% 32% at 100% 24%, rgba(218, 223, 229, .5), transparent 72%),
    linear-gradient(145deg, #ecece9 0%, #f9f8f5 50%, #eeefec 100%);
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
p, li { color: var(--muted); font-size: 16px; line-height: 1.75; }
h1, h2, h3 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; letter-spacing: -.05em; }
h1 { margin-bottom: 24px; font-size: clamp(54px, 8.7vw, 112px); line-height: .94; }
h2 { margin-bottom: 18px; font-size: clamp(39px, 5vw, 64px); line-height: 1; }
h3 { margin-bottom: 10px; font-size: 31px; line-height: 1.06; }

.skipLink { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 14px; border-radius: 8px; background: var(--ink); color: white; transform: translateY(-150%); }
.skipLink:focus { transform: translateY(0); }
.seoNav {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 12px auto 0;
  padding: 9px 11px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(250, 250, 248, .9);
  box-shadow: 0 8px 30px rgba(20, 24, 29, .09);
  backdrop-filter: blur(16px) saturate(130%);
}
.seoBrand { display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 800; letter-spacing: -.04em; }
.seoBrand img { display: block; border-radius: 11px; }
.seoNav nav { display: flex; align-items: center; gap: 25px; color: var(--muted); font-size: 13px; font-weight: 700; }
.seoNav nav a:hover, .seoFooter a:hover { color: var(--ink); }
.seoStoreLink, .seoStoreLink img { display: block; line-height: 0; }

main { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 42px 0 0; color: var(--faint); font-size: 12px; font-weight: 700; }
.breadcrumbs a { text-decoration: underline; text-decoration-color: rgba(16,17,20,.2); text-underline-offset: 3px; }
.seoArticle { width: min(860px, 100%); margin: 0 auto; }
.seoHero { padding: 68px 0 64px; }
.productHero { padding-bottom: 46px; }
.seoKicker { margin: 0 0 15px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.seoLead { max-width: 780px; margin-bottom: 28px; color: var(--ink-soft); font-size: clamp(18px, 2vw, 22px); line-height: 1.68; }
.seoCta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
}
.seoCta:hover { background: #282a2f; }
.directAnswer { margin: 0 0 72px; padding: 25px 27px; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 0 15px 15px 0; background: var(--surface); }
.directAnswer strong { display: block; margin-bottom: 8px; color: var(--ink); font-size: 12px; letter-spacing: .11em; text-transform: uppercase; }
.directAnswer p { margin: 0; color: var(--ink-soft); }
.directAnswer a { font-weight: 800; text-decoration: underline; text-underline-offset: 4px; }
.seoArticle > section { padding: 68px 0; border-top: 1px solid var(--line); }
.seoArticle > section > p { max-width: 760px; }
.districtList { display: grid; gap: 0; }
.districtList article { padding: 25px 0 28px; border-bottom: 1px solid var(--line); }
.districtList article:last-child { border-bottom: 0; }
.districtList p { max-width: 760px; margin-bottom: 0; }
.checklist { margin-top: 28px; padding: 27px; border: 1px solid var(--line); border-radius: 15px; background: var(--surface); }
.checklist h3 { font-size: 30px; }
.checklist ul { display: grid; gap: 11px; margin: 0; padding-left: 22px; }
.checklist li { padding-left: 5px; }
.promptList { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.promptList li { padding: 18px 20px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.45); color: var(--ink-soft); font-weight: 650; }
.linkGrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.linkGrid a { display: flex; min-height: 132px; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); transition: border-color .15s ease, transform .15s ease; }
.linkGrid a:hover { border-color: rgba(16,17,20,.3); transform: translateY(-2px); }
.linkGrid strong { font-family: "Instrument Serif", Georgia, serif; font-size: 30px; font-weight: 400; letter-spacing: -.04em; }
.linkGrid span { color: var(--muted); font-size: 12px; font-weight: 700; }
.faqList { display: grid; gap: 0; }
.faqList details { border-bottom: 1px solid var(--line); }
.faqList summary { position: relative; padding: 23px 38px 23px 0; cursor: pointer; color: var(--ink-soft); font-size: 17px; font-weight: 800; line-height: 1.45; list-style: none; }
.faqList summary::-webkit-details-marker { display: none; }
.faqList summary::after { position: absolute; top: 22px; right: 5px; color: var(--faint); content: '+'; font-size: 24px; font-weight: 400; }
.faqList details[open] summary::after { content: '−'; }
.faqList p { max-width: 760px; margin: 0; padding: 0 34px 24px 0; }
.editorialNote { margin: 34px 0 84px; padding: 30px; border-radius: 16px; color: #e8e9eb; background: #111317; }
.editorialNote h2 { color: white; font-size: 38px; }
.editorialNote p { margin: 0; color: #bfc3ca; }

.seoFooter {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: 1fr auto;
  gap: 26px 50px;
  align-items: start;
  margin: 0 auto;
  padding: 44px 0 calc(35px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.seoFooter > div > p { margin: 13px 0 0; color: var(--faint); font-size: 13px; }
.seoFooter nav { display: flex; flex-wrap: wrap; gap: 16px 22px; color: var(--muted); font-size: 13px; font-weight: 700; }
.seoFine { grid-column: 1 / -1; margin: 0; color: var(--faint); font-size: 11px; line-height: 1.6; }

@media (max-width: 760px) {
  .seoNav { top: 8px; min-height: 58px; margin-top: 8px; padding: 8px; }
  .seoBrand span, .seoNav nav { display: none; }
  .seoStoreLink img { width: 126px; height: auto; }
  main { width: min(100% - 28px, 620px); }
  .breadcrumbs { padding-top: 30px; }
  .seoHero { padding: 48px 0 52px; }
  h1 { font-size: clamp(51px, 15vw, 72px); }
  h2 { font-size: clamp(38px, 11vw, 51px); }
  .seoLead { font-size: 18px; }
  .directAnswer { margin-bottom: 56px; padding: 21px 20px; }
  .seoArticle > section { padding: 53px 0; }
  .checklist { padding: 21px; }
  .linkGrid { grid-template-columns: 1fr; }
  .linkGrid a { min-height: 114px; }
  .editorialNote { margin-bottom: 62px; padding: 24px; }
  .seoFooter { width: min(100% - 28px, 620px); grid-template-columns: 1fr; }
  .seoFooter .seoBrand span { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .linkGrid a { transition: none; }
}
