:root {
  color-scheme: light;
  --white: #fff;
  --paper: #fbfbf8;
  --ink: #080b0a;
  --muted: #6f756f;
  --line: #e3e3df;
  --blue: #065dd8;
  --blue-soft: #eaf2ff;
  --sky: #35a7dc;
  --red: #ef4a4a;
  --green: #93c95c;
  --yellow: #ffc928;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(8, 11, 10, 0.09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.cart-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 5.45rem;
  padding: 0 clamp(1rem, 3.6vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: clamp(1.15rem, 2vw, 1.62rem);
  font-weight: 500;
  letter-spacing: .02em;
  text-decoration: none;
}

.sun-mark {
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid var(--yellow);
  border-radius: 50%;
}
.sun-mark::before,
.sun-mark::after {
  content: "";
  position: absolute;
  inset: -.55rem;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 50% 0 / 2px .36rem no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 50% 100% / 2px .36rem no-repeat,
    linear-gradient(90deg, var(--yellow), var(--yellow)) 0 50% / .36rem 2px no-repeat,
    linear-gradient(90deg, var(--yellow), var(--yellow)) 100% 50% / .36rem 2px no-repeat;
}
.sun-mark::after { transform: rotate(45deg); }

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  color: #101010;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a {
  text-decoration: none;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue); }

.header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.4rem;
}
.stock-pin {
  display: none;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cart-button,
.button,
.plain-button {
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.cart-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
}
.cart-button > span {
  width: 1.45rem;
  height: 1.15rem;
  border: 2px solid var(--ink);
  border-top: 0;
}
.cart-button strong {
  position: absolute;
  top: .35rem;
  right: .3rem;
  display: grid;
  place-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: .62rem;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(820px, calc(100svh - 5.45rem));
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: clamp(2.6rem, 6vw, 4.7rem) clamp(1.35rem, 5vw, 5.4rem);
}

.cert-line,
.section-kicker {
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 11ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3rem, 6.2vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 850;
}
h1 span { color: var(--yellow); }

.hero-lede {
  max-width: 560px;
  margin-bottom: 1.95rem;
  color: #3d403d;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .85rem;
  max-width: 780px;
  margin-bottom: 2rem;
}
.feature-row article {
  display: flex;
  align-items: center;
  gap: .78rem;
}
.feature-row h2,
.service-strip h2,
.compliance-strip h2 {
  margin: 0 0 .1rem;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.feature-row p,
.service-strip p,
.compliance-strip p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.feature-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: var(--white);
}
.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon.blue { color: var(--blue); }
.feature-icon.red { color: var(--red); }
.feature-icon.green { color: #73ae30; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.05rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  min-height: 3.05rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(6, 93, 216, .2);
}
.button.secondary {
  border: 1px solid #d6d8dc;
  background: var(--white);
  color: var(--ink);
}
.button.secondary:hover { border-color: var(--blue); }

.hero-art {
  position: relative;
  min-height: 42rem;
  border-top: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.service-strip {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line);
}
.service-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 5.25rem;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.pack-section {
  position: relative;
  padding: 1.3rem clamp(1rem, 5vw, 10rem) 1.75rem;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.section-label {
  margin-bottom: .9rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.pack-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
  border: 1px solid transparent;
}
.pack-option {
  position: relative;
  min-height: 7.8rem;
  padding: 1rem .7rem;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
}
.pack-option:nth-child(2n) { border-right: 0; }
.pack-option.is-selected {
  border: 1.5px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
}
.pack-option .popular {
  display: block;
  min-height: 1rem;
  margin-bottom: .2rem;
  color: var(--yellow);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pack-option strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.35rem);
  line-height: 1;
}
.pack-option span,
.pack-option small {
  display: block;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.pack-option span {
  margin-top: .35rem;
  font-size: .75rem;
  font-weight: 850;
}
.pack-option small {
  margin-top: .5rem;
  font-size: .78rem;
  letter-spacing: 0;
}
.selected-pack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  max-width: 760px;
  margin: 1.2rem auto 0;
  text-align: center;
}
.selected-pack p { margin: 0; color: var(--muted); }

.compliance-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  padding: 1.2rem clamp(1rem, 5vw, 10rem);
  border-bottom: 1px solid var(--line);
  background: var(--line);
  overflow: hidden;
}
.compliance-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
  min-height: 4.4rem;
  padding: .7rem 1rem;
  background: var(--white);
}
.compliance-strip article > span {
  grid-row: span 2;
  color: #555c57;
  font-size: 1.55rem;
}
.ce-mark {
  font-weight: 900;
  letter-spacing: .08em;
}

.doodle {
  pointer-events: none;
  position: absolute;
  display: grid;
  gap: .35rem;
}
.doodle-left { left: 4%; bottom: .5rem; }
.doodle-right { right: 3%; top: .5rem; }

.product-section,
.eclipse-section,
.safety-section,
.bulk-section,
.faq-section {
  padding: clamp(3.6rem, 7vw, 6.8rem) clamp(1rem, 6vw, 10rem);
  border-bottom: 1px solid var(--line);
}
.product-section,
.bulk-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.section-copy {
  max-width: 650px;
}
.section-copy.centered {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}
.section-copy h2,
.faq-section h2,
.bulk-section h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
}
.section-copy p,
.bulk-section p,
.faq-grid p,
.timeline p,
.safety-grid p {
  color: var(--muted);
}
.clean-list {
  display: grid;
  gap: .7rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}
.clean-list li {
  position: relative;
  padding-left: 1.3rem;
}
.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: .44rem;
  height: .44rem;
  border-radius: 50%;
  background: var(--blue);
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.product-gallery picture,
.bulk-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.product-gallery img,
.bulk-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
}
.timeline article {
  display: grid;
  gap: .45rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.timeline article:last-child { border-bottom: 0; }
.timeline .featured {
  box-shadow: inset 0 4px 0 var(--blue);
}
.timeline time {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.timeline h3 { margin-bottom: .2rem; font-size: 1.1rem; }
.timeline a { color: var(--blue); font-weight: 900; }

.safety-section { background: var(--paper); }
.safety-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.safety-grid article {
  display: grid;
  gap: .7rem;
  padding: 1.2rem;
  background: var(--white);
}
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.3rem;
}

.quote-form {
  display: grid;
  gap: .95rem;
  padding: clamp(1rem, 3vw, 1.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: .45rem;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: .85rem .9rem;
  letter-spacing: 0;
  text-transform: none;
}
textarea { resize: vertical; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.faq-grid details {
  padding: 1rem;
  background: var(--white);
}
.faq-grid summary {
  cursor: pointer;
  font-weight: 900;
}
.faq-grid p { margin: .75rem 0 0; }

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: end;
  background: rgba(8, 11, 10, .22);
}
.cart-drawer.is-open { display: flex; }
.cart-panel {
  width: min(100%, 430px);
  min-height: 100%;
  overflow: auto;
  padding: 1.2rem;
  background: var(--white);
  border-left: 1px solid var(--line);
}
.cart-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.cart-head h2 { margin: 0; }
.plain-button {
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}
.cart-items {
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}
.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .8rem;
  align-items: center;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.cart-item h3 { margin: 0; }
.cart-item span,
.checkout-note,
.form-status,
.cart-empty,
.shipping-result {
  color: var(--muted);
  font-size: .9rem;
}
.cart-item button {
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}
.drawer-select { margin-top: 1rem; }
.shipping-result {
  min-height: 2.5rem;
  margin: .8rem 0;
  padding-left: .8rem;
  border-left: 3px solid var(--green);
}
.cart-summary {
  display: grid;
  gap: .55rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.cart-summary div:last-child {
  padding-top: .7rem;
  border-top: 1px solid var(--line);
  font-size: 1.12rem;
}
.full-width { width: 100%; }

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1rem;
  justify-content: space-between;
  padding: 1.4rem clamp(1rem, 5vw, 10rem);
  color: var(--muted);
  font-size: .9rem;
}
.site-footer strong { color: var(--ink); letter-spacing: .08em; }

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

@media (min-width: 760px) {
  .stock-pin { display: inline-flex; align-items: center; gap: .45rem; }
  .hero-section { grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); }
  .hero-art { min-height: auto; border-top: 0; border-left: 1px solid var(--line); }
  .feature-row { grid-template-columns: repeat(3, auto); }
  .service-strip { grid-template-columns: repeat(3, 1fr); }
  .service-strip article { border-right: 1px solid var(--line); border-bottom: 0; }
  .service-strip article:last-child { border-right: 0; }
  .pack-selector { grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .pack-option { border-right: 1px solid var(--line); }
  .pack-option:nth-child(2n) { border-right: 1px solid var(--line); }
  .pack-option:last-child { border-right: 0; }
  .compliance-strip { grid-template-columns: repeat(4, 1fr); }
  .product-section,
  .bulk-section { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
  .product-gallery { grid-template-columns: .88fr 1fr; align-items: end; }
  .timeline,
  .safety-grid,
  .faq-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline article,
  .safety-grid article,
  .faq-grid details { border-right: 1px solid var(--line); border-bottom: 0; }
  .timeline article:last-child,
  .safety-grid article:last-child,
  .faq-grid details:last-child { border-right: 0; }
}

@media (max-width: 759px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.5rem;
  }
  .nav-links { display: none; }
  .header-right { gap: .4rem; }
  .wordmark { font-size: 1.08rem; }
  .hero-copy { padding-block: 2.4rem; }
  h1 { font-size: clamp(2.7rem, 15vw, 4.25rem); }
  .button { width: 100%; }
  .hero-art {
    min-height: 28rem;
    border-top: 0;
  }
  .hero-art img {
    object-fit: contain;
  }
  .download-row .button,
  .selected-pack .button { width: auto; }
  .selected-pack { justify-content: start; text-align: left; }
}

/* Annotation pass: mockup-sourced assets and lighter section treatment. */
.site-header,
.hero-section,
.service-strip,
.pack-section,
.product-section,
.eclipse-section,
.safety-section,
.bulk-section,
.cert-faq-section,
.site-footer {
  border-color: #f1f1ee;
}

.hero-section { border-bottom: 0; }
.hero-art { border: 0; }

.cart-button {
  width: 2.9rem;
  height: 2.9rem;
}
.cart-icon-frame {
  display: block;
  width: 2.35rem;
  height: 2rem;
  overflow: visible;
  border: 0;
}
.cart-button > .cart-icon-frame {
  border: 0;
}
.cart-icon-frame img {
  width: 2.35rem;
  max-width: none;
  height: auto;
}
.cart-button strong {
  top: .3rem;
  right: .24rem;
  width: 1rem;
  height: 1rem;
}

.feature-icon {
  border: 0;
  width: 3.1rem;
  height: 3.1rem;
  background: transparent;
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-icon svg { display: none; }

.service-strip {
  grid-template-columns: 1fr;
  border-top: 0;
  border-bottom: 0;
  background: #fff;
}
.service-strip article {
  min-height: 6.1rem;
  border: 0;
  justify-content: center;
}
.strip-icon {
  flex: 0 0 auto;
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
}
.strip-icon.round-flag-icon {
  border-radius: 50%;
  box-shadow: 0 0 0 1px #e3e3df;
}

.pack-section {
  padding-top: clamp(3.6rem, 7vw, 5.6rem);
  padding-bottom: 2.2rem;
  border-bottom: 0;
  background: #fff;
}
.centered-kicker {
  text-align: center;
  margin-bottom: 1rem;
}
.section-label {
  margin-bottom: 2.2rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}
.section-label span,
.section-copy h2 span,
.bulk-section h2 span,
.cert-faq-section h2 span,
.safety-section h2 span {
  color: var(--yellow);
}
.pack-selector {
  position: relative;
  overflow: visible;
  border: 0;
}
.pack-option {
  overflow: visible;
  min-height: 13.3rem;
  padding: 1rem .8rem 1.1rem;
  border: 0;
  border-right: 1px solid #dedfdd;
}
.pack-option.is-selected {
  z-index: 2;
  border: 0;
  outline: 2px solid var(--blue);
  outline-offset: -2px;
  box-shadow: 0 16px 40px rgba(6, 93, 216, .08);
}
.pack-option .popular {
  min-height: 1.25rem;
  color: var(--blue);
  background: transparent;
}
.pack-option img {
  width: min(74%, 9rem);
  height: 4rem;
  margin: .55rem auto .45rem;
  object-fit: contain;
}
.pack-option small {
  margin-top: .2rem;
  font-size: .92rem;
}

.selected-pack {
  max-width: 820px;
  margin-top: 1.65rem;
}

.compliance-strip {
  gap: 0;
  padding: 1.35rem clamp(1rem, 5vw, 10rem);
  border: 0;
  background: #fff;
}
.compliance-strip article {
  min-height: 4.7rem;
  padding: .7rem clamp(.8rem, 2vw, 1.4rem);
  background: #fff;
}
.compliance-strip article + article {
  border-top: 1px solid #eeeeeb;
}
.compliance-icon {
  grid-row: span 2;
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
}
.doodle { display: none; }
.doodle-image {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  display: block;
  object-fit: contain;
}
.doodle-pack-left {
  left: 0;
  top: 3rem;
  width: min(16vw, 13.5rem);
}
.doodle-pack-right {
  right: 0;
  top: 2rem;
  width: min(18vw, 15.7rem);
}
.doodle-compliance-right {
  right: 1rem;
  top: -2.5rem;
  width: 8.5rem;
}
.pack-section > :not(.doodle-image),
.compliance-strip > article {
  position: relative;
  z-index: 1;
}

.eclipse-section,
.safety-section,
.bulk-section,
.cert-faq-section {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  background: #fff;
}
.eclipse-layout,
.safety-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.eclipse-section .button {
  margin-top: 1rem;
}
.eclipse-events {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
.event-rail {
  display: none;
}
.eclipse-events article {
  display: grid;
  gap: .65rem;
}
.eclipse-events time {
  color: var(--blue);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eclipse-events time.gold { color: #f1b900; }
.eclipse-events time.red-text { color: var(--red); }
.eclipse-events h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.eclipse-events p,
.source-note,
.safety-links a,
.cert-panel p,
.faq-list p {
  color: var(--muted);
}
.eclipse-events a,
.safety-links a {
  font-weight: 900;
  text-decoration: none;
}
.map-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: clamp(2.6rem, 5vw, 4rem);
}
.map-gallery article {
  display: grid;
  gap: 1rem;
}
.map-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 16px 45px rgba(8, 11, 10, .08);
}
.map-gallery h3 {
  margin-bottom: .2rem;
}
.source-note {
  margin: 1.6rem 0 0;
  text-align: center;
  font-size: .95rem;
}
.doodle-calendar-left {
  left: 0;
  top: 22rem;
  width: 14rem;
}
.doodle-calendar-right {
  right: 0;
  top: 2rem;
  width: 11rem;
}

.safety-section {
  padding-top: clamp(3.6rem, 7vw, 6rem);
}
.safety-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.safety-steps article {
  display: grid;
  gap: .7rem;
  justify-items: start;
}
.safety-steps img {
  width: 6.4rem;
  height: 8.3rem;
  object-fit: contain;
}
.safety-steps h3 {
  max-width: 15rem;
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  line-height: 1.08;
}
.safety-steps p {
  max-width: 16rem;
  color: var(--muted);
}
.safety-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.safety-links a {
  display: grid;
  gap: .2rem;
  text-decoration: none;
}
.safety-links span {
  color: var(--ink);
  font-weight: 900;
}
.doodle-safety-left {
  left: 0;
  bottom: 4rem;
  width: 19rem;
}
.doodle-safety-right {
  right: 0;
  bottom: 1.2rem;
  width: 16rem;
}

.bulk-section {
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3.8rem, 7vw, 6.4rem);
}
.bulk-copy,
.quote-form {
  position: relative;
  z-index: 1;
}
.bulk-copy p {
  max-width: 650px;
  color: #3d403d;
}
.bulk-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.4rem;
  margin: 1.5rem 0 1.8rem;
}
.bulk-audiences span {
  display: inline-flex;
  align-items: center;
  min-height: 2.6rem;
  padding: .45rem .85rem;
  border: 1px solid #ededeb;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.bulk-product-image {
  width: min(100%, 720px);
  height: auto;
  object-fit: contain;
}
.quote-form {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 1rem 1.2rem;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.quote-form h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.quote-form p {
  margin-bottom: .3rem;
}
.quote-form .wide-label,
.quote-form h3,
.quote-form > p,
.quote-form .button,
.quote-form .form-status {
  grid-column: 1 / -1;
}
input,
select,
textarea {
  min-height: 3.1rem;
  border-color: #dfe1e1;
}
select {
  height: 3.1rem;
  padding-top: 0;
  padding-bottom: 0;
}
textarea {
  min-height: 6.2rem;
}
.doodle-bulk-left {
  left: 0;
  top: 9rem;
  width: 9rem;
}
.doodle-bulk-right {
  right: 0;
  top: 10rem;
  width: 9rem;
}

.cert-faq-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.4rem, 5vw, 5rem);
  padding: clamp(3.8rem, 7vw, 6rem) clamp(1rem, 6vw, 10rem);
}
.cert-panel,
.faq-panel {
  position: relative;
  z-index: 1;
}
.cert-faq-section h2 {
  margin-bottom: .75rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.03;
}
.doc-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}
.doc-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: center;
  text-decoration: none;
}
.doc-links img {
  grid-row: span 2;
  width: 4rem;
}
.doc-links span {
  font-weight: 900;
}
.doc-links small {
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: 0;
}
.faq-list details {
  border-bottom: 1px solid #e5e5e2;
}
.faq-list summary {
  cursor: pointer;
  padding: 1rem 0;
  font-weight: 850;
}
.faq-list p {
  margin: 0 0 1rem;
}
.doodle-cert-left {
  left: 0;
  bottom: 3rem;
  width: 13rem;
}
.doodle-faq-right {
  right: 0;
  top: 5rem;
  width: 10rem;
}

@media (min-width: 760px) {
  .hero-art { border-left: 0; }
  .service-strip {
    grid-template-columns: repeat(3, 1fr);
    padding-inline: clamp(1rem, 6vw, 10rem);
  }
  .service-strip article {
    border: 0;
  }
  .service-strip article + article {
    box-shadow: -1px 0 0 #ececea;
  }
  .pack-selector {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .pack-option,
  .pack-option:nth-child(2n) {
    border-right: 1px solid #dedfdd;
  }
  .pack-option:last-child {
    border-right: 0;
  }
  .pack-option.is-selected {
    border-right-color: transparent;
  }
  .compliance-strip {
    grid-template-columns: repeat(4, 1fr);
  }
  .compliance-strip article + article {
    border-top: 0;
    box-shadow: -1px 0 0 #ededeb;
  }
  .eclipse-layout,
  .safety-layout {
    grid-template-columns: minmax(0, .66fr) minmax(0, 1.34fr);
  }
  .eclipse-events {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .eclipse-events article {
    min-height: 15rem;
    padding-inline: clamp(1rem, 2.5vw, 2.2rem);
    text-align: center;
    box-shadow: -1px 0 0 #e7e7e4;
  }
  .eclipse-events article:first-of-type {
    box-shadow: none;
  }
  .event-rail {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    margin-bottom: 1rem;
    background: linear-gradient(#bfc3c8, #bfc3c8) 50% 54% / 70% 1px no-repeat;
  }
  .event-rail img {
    width: 5.3rem;
    margin: 0 auto;
  }
  .map-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .safety-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }
  .safety-steps article {
    justify-items: center;
    text-align: center;
    padding-inline: clamp(1rem, 2.8vw, 2.4rem);
    box-shadow: -1px 0 0 #e7e7e4;
  }
  .safety-steps article:first-child {
    box-shadow: none;
  }
  .safety-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    margin-inline: auto;
  }
  .bulk-section {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  }
  .quote-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: clamp(2rem, 5vw, 4.2rem);
    box-shadow: -1px 0 0 #e7e7e4;
  }
  .cert-faq-section {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  }
  .faq-panel {
    padding-left: clamp(2rem, 5vw, 5rem);
    box-shadow: -1px 0 0 #e7e7e4;
  }
  .doc-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .doc-links a {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .doc-links img {
    grid-row: auto;
  }
}

@media (min-width: 1080px) {
  .hero-section {
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  }

  .hero-art {
    min-height: min(880px, calc(100svh - 5.45rem));
  }

  .hero-art img {
    inset: auto 0 auto auto;
    top: -11%;
    width: 145%;
    height: 145%;
    max-width: none;
    object-fit: contain;
    object-position: right top;
  }
}

@media (max-width: 759px) {
  .section-label {
    text-align: left;
  }
  .centered-kicker {
    text-align: left;
  }
  .doodle-pack-left,
  .doodle-pack-right,
  .doodle-calendar-left,
  .doodle-calendar-right,
  .doodle-safety-left,
  .doodle-safety-right,
  .doodle-bulk-left,
  .doodle-bulk-right,
  .doodle-cert-left,
  .doodle-faq-right,
  .doodle-compliance-right {
    opacity: .42;
  }
  .pack-option {
    min-height: 12.3rem;
  }
  .selected-pack .button {
    width: 100%;
  }
  .eclipse-section .button {
    width: 100%;
  }
}

/* Annotation pass: product removal, clean assets, and footer rebuild. */
.wordmark.sun-only {
  width: 3.25rem;
  height: 3.25rem;
  justify-content: center;
  gap: 0;
}

.wordmark.sun-only .sun-mark,
.footer-sun .sun-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-width: 2.5px;
}

.wordmark.sun-only .sun-mark::before,
.wordmark.sun-only .sun-mark::after,
.footer-sun .sun-mark::before,
.footer-sun .sun-mark::after {
  inset: -.72rem;
  background:
    linear-gradient(var(--yellow), var(--yellow)) 50% 0 / 2px .46rem no-repeat,
    linear-gradient(var(--yellow), var(--yellow)) 50% 100% / 2px .46rem no-repeat,
    linear-gradient(90deg, var(--yellow), var(--yellow)) 0 50% / .46rem 2px no-repeat,
    linear-gradient(90deg, var(--yellow), var(--yellow)) 100% 50% / .46rem 2px no-repeat;
}

.cart-icon-frame,
.cart-button > .cart-icon-frame {
  width: 1.85rem;
  height: 1.85rem;
  border: 0;
  overflow: visible;
}

.cart-icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (min-width: 760px) {
  .pack-option.is-selected {
    border-right-color: #dedfdd;
  }
}

.pack-option.is-selected {
  outline: 0;
  box-shadow:
    inset 0 0 0 2px var(--blue),
    0 16px 40px rgba(6, 93, 216, .08);
}

.pack-section,
.compliance-strip,
.eclipse-section,
.safety-section,
.bulk-section,
.cert-faq-section,
.site-footer {
  position: relative;
  isolation: isolate;
}

.doodle-image {
  z-index: 0;
}

.pack-section > :not(.doodle-image),
.compliance-strip > :not(.doodle-image),
.eclipse-section > :not(.doodle-image),
.safety-section > :not(.doodle-image),
.bulk-section > :not(.doodle-image),
.cert-faq-section > :not(.doodle-image),
.site-footer > :not(.doodle-image) {
  position: relative;
  z-index: 1;
}

.map-gallery.single-map {
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin-inline: auto;
}

.featured-map-card {
  max-width: 100%;
}

.map-gallery.single-map img {
  aspect-ratio: 1152 / 925;
  object-fit: contain;
  background: #f6f7f5;
}

.map-gallery.single-map h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.map-gallery.single-map p {
  max-width: 760px;
  color: var(--muted);
}

.safety-steps img {
  width: 7.15rem;
  height: 8.25rem;
  object-fit: contain;
}

.compliance-strip {
  background: transparent;
}

.compliance-strip article {
  grid-template-columns: 4.4rem minmax(0, 1fr);
  background: transparent;
}

.compliance-icon {
  justify-self: center;
  width: 3.4rem;
  height: 3.4rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, .85fr) minmax(380px, 1.55fr) minmax(260px, .9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2.4rem, 5vw, 3.5rem) clamp(1.25rem, 6vw, 10rem);
  border-top: 1px solid #eeeeeb;
  background: #fff;
  color: #3d403d;
  overflow: hidden;
}

.footer-brand,
.footer-links,
.footer-cert {
  min-width: 0;
}

.footer-sun {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand p {
  max-width: 280px;
  margin: 0 0 1.2rem;
  color: var(--muted);
  font-size: .95rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
}

.footer-social img {
  width: 1.35rem;
  height: 1.35rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 3rem);
}

.footer-links h2 {
  margin: 0 0 1rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: .65rem;
  color: var(--muted);
  font-size: .9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue);
}

.footer-cert {
  padding-left: clamp(1.25rem, 3vw, 2.4rem);
  border-left: 1px solid #e7e7e4;
}

.footer-stock {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1.4rem;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-stock span {
  font-size: 1.25rem;
}

.footer-ce {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: center;
}

.footer-ce strong {
  color: #000;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -.02em;
}

.footer-ce p {
  margin: 0;
  color: #3d403d;
  font-size: .86rem;
  line-height: 1.5;
}

.footer-doodle-left {
  left: -1.2rem;
  bottom: 1rem;
  width: 10rem;
  opacity: .24;
}

.footer-doodle-right {
  right: 0;
  top: .8rem;
  width: 9rem;
  opacity: .52;
}

@media (max-width: 1040px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-cert {
    padding-left: 0;
    padding-top: 1.6rem;
    border-left: 0;
    border-top: 1px solid #e7e7e4;
  }

  .safety-layout {
    text-align: center;
  }

  .safety-layout .section-copy,
  .safety-steps p,
  .safety-steps h3 {
    margin-inline: auto;
  }

  .safety-steps {
    max-width: 650px;
    margin-inline: auto;
  }

  .safety-steps article {
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 759px) {
  .wordmark.sun-only {
    width: 2.8rem;
    height: 2.8rem;
    justify-content: start;
  }

  .map-gallery.single-map img {
    aspect-ratio: 1152 / 925;
    object-fit: contain;
  }

  .safety-steps {
    max-width: 25rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-bottom: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
