: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;
}

.logo-wordmark {
  width: clamp(4.45rem, 7vw, 5.7rem);
  height: 4.5rem;
  justify-content: flex-start;
  overflow: hidden;
}

.logo-wordmark picture,
.site-logo {
  display: block;
  width: 100%;
  height: 100%;
}

.site-logo {
  object-fit: contain;
  object-position: left center;
}

.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 {
  position: relative;
  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 {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(2.6rem, 6vw, 4.7rem) clamp(1.35rem, 5vw, 5.4rem);
  background: transparent;
}

.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;
}
.compliance-strip .iso-title span {
  display: inline;
  white-space: nowrap;
}

.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 picture {
  display: block;
}
.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;
}

.checkout-success {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 100;
  width: min(32rem, calc(100% - 2rem));
  margin: 0;
  padding: .9rem 1rem;
  transform: translateX(-50%);
  border: 1px solid #8bc34a;
  border-radius: 6px;
  background: #f7fff0;
  color: #17310c;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .12);
}

[data-checkout]:disabled {
  cursor: wait;
  opacity: .72;
}
.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; }
}

@media (max-width: 1079px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    display: contents;
  }

  .hero-intro {
    order: 1;
    padding: clamp(2.6rem, 6vw, 4rem) clamp(1.35rem, 5vw, 5.4rem) 1.25rem;
  }

  .hero-lede {
    margin-bottom: 0;
  }

  .hero-art {
    order: 2;
    min-height: clamp(24rem, 54vw, 35rem);
    border: 0;
  }

  .hero-art img {
    inset: 0 0 auto auto;
    left: auto;
    right: 0;
    width: auto;
    min-width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right center;
  }

  .cert-line {
    order: 3;
    margin: 0;
    padding: 1.85rem clamp(1.35rem, 5vw, 5.4rem) 1rem;
  }

  .hero-proof {
    order: 4;
    padding: 0 clamp(1.35rem, 5vw, 5.4rem) 2.5rem;
  }

  .feature-row {
    margin-bottom: 2rem;
  }
}

@media (max-width: 759px) {
  .hero-intro {
    padding-block: 2.35rem 1rem;
  }

  .hero-art {
    min-height: clamp(17rem, 82vw, 23rem);
  }

  .hero-art img {
    object-position: right center;
  }

  .cert-line {
    padding-top: 1.4rem;
  }
}

/* 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;
}
.service-strip article > div {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: .15rem;
}
.strip-icon {
  flex: 0 0 auto;
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
}
.strip-icon.round-flag-icon {
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  background: #fff;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #d7d8d3;
}

.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(86%, 10rem);
  height: 4.7rem;
  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;
  border-bottom: 1px solid #eeeeeb;
  background: #fff;
}
.compliance-strip article {
  grid-template-rows: auto auto;
  min-height: 4.7rem;
  padding: .7rem clamp(.8rem, 2vw, 1.4rem);
  align-items: start;
  background: #fff;
}
.compliance-strip article + article {
  border-top: 1px solid #eeeeeb;
}
.compliance-icon {
  grid-row: span 2;
  width: 3.25rem;
  height: 3.25rem;
  align-self: center;
  object-fit: contain;
}
.ce-logo-icon {
  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;
}
.event-mobile-icon {
  width: 5rem;
  height: 5rem;
  margin: -.1rem 0 .25rem;
  object-fit: contain;
}
.eclipse-events article {
  display: grid;
  gap: .65rem;
  align-content: start;
}
.eclipse-events time {
  display: block;
  min-height: 2.25rem;
  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;
  min-height: 3.1rem;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.eclipse-events p {
  min-height: 4.8rem;
  margin: 0;
}
.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%, 560px);
  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: 3.375rem;
  height: 3.375rem;
  object-fit: contain;
}
.doc-links span {
  font-size: .7em;
  font-weight: 900;
  line-height: 1.18;
}
.doc-links small {
  color: var(--muted);
  line-height: 1.2;
}
.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 time {
    min-height: 3rem;
  }
  .eclipse-events h3 {
    min-height: 5.4rem;
  }
  .eclipse-events p {
    min-height: 10.5rem;
  }
  .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;
  }
  .event-rail img {
    width: 5.3rem;
    margin: 0 auto;
  }
  .event-mobile-icon {
    display: none;
  }
  .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;
    grid-template-rows: 3.375rem 3.5rem auto;
    row-gap: .45rem;
    align-items: start;
    justify-items: start;
  }
  .doc-links img {
    grid-row: auto;
  }
}

@media (max-width: 759px) {
  .service-strip article,
  .compliance-strip article {
    min-height: 0;
  }

  .compliance-strip .iso-title span {
    display: block;
  }

  .eclipse-events time,
  .eclipse-events h3,
  .eclipse-events p {
    min-height: 0;
  }
}

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

  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, .97) 0%,
      rgba(255, 255, 255, .9) 30%,
      rgba(255, 255, 255, .48) 47%,
      rgba(255, 255, 255, .12) 62%,
      rgba(255, 255, 255, 0) 78%
    );
  }

  .hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: min(880px, calc(100svh - 5.45rem));
    border: 0;
  }

  .hero-art picture {
    position: absolute;
    inset: 0;
  }

  .hero-art img {
    inset: 0 0 auto auto;
    width: auto;
    min-width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right center;
  }
}

@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: min(100%, 784px);
  margin-inline: auto;
}

.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: 5.1rem;
  height: 5.1rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-sun picture,
.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-logo {
  object-fit: contain;
  object-position: left center;
}

.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-logo {
  display: block;
  width: clamp(4.2rem, 7vw, 5.3rem);
  height: clamp(4.2rem, 7vw, 5.3rem);
  object-fit: contain;
}

.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) {
  .logo-wordmark {
    width: 3.65rem;
    height: 3.65rem;
  }

  .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;
  }
}

/* Commerce pass: VAT-inclusive pricing, shipping badges, and first-screen offer. */
.hero-offer {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(1rem, 4vh, 3rem);
  z-index: 3;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    "label price"
    "detail price"
    "action action";
  column-gap: .65rem;
  width: min(16rem, calc(100% - 2rem));
  padding: .85rem;
  border: 1px solid rgba(20, 21, 20, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(20, 21, 20, .12);
  backdrop-filter: blur(7px);
}

.hero-offer > span {
  grid-area: label;
  align-self: end;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-offer > strong {
  grid-area: price;
  align-self: center;
  color: var(--ink);
  font-size: 2.65rem;
  line-height: .9;
}

.hero-offer > small {
  grid-area: detail;
  color: var(--muted);
  font-size: .72rem;
}

.hero-offer .button {
  grid-area: action;
  min-height: 2.6rem;
  margin-top: .7rem;
  padding: .65rem 1rem;
}

.pack-option {
  min-height: 15.4rem;
}

.pack-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  margin-bottom: .25rem;
}

.pack-option .pack-badges .popular,
.pack-option .pack-badges .free-shipping {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.35rem;
  margin: 0;
  padding: .22rem .42rem;
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pack-option .pack-badges .popular {
  color: var(--blue);
  background: #eef5ff;
}

.pack-option .pack-badges .free-shipping {
  color: #276314;
  background: #eaf7df;
}

.pack-option .pack-badges .popular:empty,
.pack-option .pack-badges .free-shipping:empty {
  display: none;
}

.pack-option .pack-unit-price {
  min-height: 1rem;
  margin-top: 0;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.pack-option small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .08rem;
  white-space: nowrap;
}

.pack-option small em {
  color: var(--muted);
  font-size: .62rem;
  font-style: normal;
  font-weight: 650;
  text-transform: none;
}

.compliance-strip {
  border-bottom: 0;
}

.eclipse-section {
  border-top: 1px solid #e7e7e4;
}

@media (min-width: 1080px) {
  .hero-offer {
    bottom: 5rem;
    transform: translate(-100px, -400px);
  }
}

@media (max-width: 1079px) {
  .hero-offer {
    right: auto;
    bottom: auto;
    left: clamp(2rem, 5vw, 3.25rem);
    top: clamp(2rem, 4vw, 2.75rem);
  }
}

@media (max-width: 759px) {
  .hero-offer {
    top: 1.6rem;
    right: 1.6rem;
    bottom: auto;
    left: auto;
    width: min(13rem, calc(100% - 2rem));
  }

  .hero-offer .button {
    width: 100%;
  }

  .pack-option {
    min-height: 14.8rem;
  }
}

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

/* Language, legal pages, and privacy consent. */
.language-switch {
  display: inline-flex;
  align-items: center;
  padding: .18rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, .86);
}

.language-switch a {
  min-width: 2rem;
  padding: .3rem .4rem;
  border-radius: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
}

.footer-text-button {
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.footer-text-button:hover { color: var(--blue); }

.legal-page {
  background: #f7f8f6;
}

.legal-page .site-header {
  position: static;
}

.legal-header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
}

.legal-home-link {
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-main {
  width: min(52rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.legal-hero {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-kicker {
  margin: 0 0 .75rem;
  color: var(--blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: .96;
  letter-spacing: 0;
}

.legal-hero > p:not(.legal-kicker) {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: .82rem;
}

.legal-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.12;
}

.legal-section h3 {
  margin: 1.6rem 0 .55rem;
  font-size: 1.02rem;
}

.legal-section p,
.legal-section li {
  color: #3e433f;
}

.legal-section ul,
.legal-section ol {
  padding-left: 1.25rem;
}

.legal-section li + li { margin-top: .6rem; }

.legal-callout {
  margin: 1.25rem 0 0;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--yellow);
  background: var(--white);
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.legal-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: .85rem;
  border-bottom: 1px solid var(--line);
  color: #3e433f;
  font-size: .9rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--ink);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-size: .82rem;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-footer a,
.legal-footer button { color: inherit; }

.quote-form .form-privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.quote-form .form-privacy a { font-weight: 800; }

.checkout-note a {
  color: inherit;
  font-weight: 750;
  text-underline-offset: .14em;
}

.legal-address {
  font-style: normal;
  line-height: 1.65;
}

body.cookie-modal-open { overflow: hidden; }

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid #d8d9d5;
  border-radius: 8px;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 18px 60px rgba(8, 11, 10, .2);
  backdrop-filter: blur(16px);
}

.cookie-banner[hidden] { display: none; }

.cookie-banner h2 {
  margin: 0 0 .25rem;
  font-size: 1rem;
}

.cookie-banner p {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.cookie-banner p a { font-weight: 800; }

.cookie-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.cookie-actions .button {
  min-height: 2.65rem;
  padding: .65rem .85rem;
  white-space: nowrap;
}

.cookie-manage {
  padding: .5rem;
  background: transparent;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(8, 11, 10, .46);
}

.cookie-modal.is-open { display: grid; }

.cookie-dialog {
  width: min(34rem, 100%);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 1.25rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cookie-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.cookie-dialog-head h2 {
  margin: 0;
  font-size: 1.35rem;
}

.cookie-close {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 4px;
  background: #f0f1ee;
  cursor: pointer;
  font-size: 1.4rem;
}

.cookie-choice {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.cookie-choice input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: .15rem;
  accent-color: var(--blue);
}

.cookie-choice span {
  display: grid;
  gap: .22rem;
}

.cookie-choice small {
  color: var(--muted);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.cookie-choice strong {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cookie-choice.is-required { cursor: default; }

.cookie-dialog-actions {
  display: flex;
  gap: .65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cookie-dialog-actions .button {
  flex: 1;
  min-height: 2.8rem;
  padding: .7rem;
}

@media (max-width: 900px) {
  .stock-pin { display: none !important; }
  .header-right { gap: .55rem; }
  .cookie-banner { grid-template-columns: 1fr; }
  .cookie-actions { flex-wrap: wrap; }
}

@media (max-width: 759px) {
  .language-switch a {
    min-width: 1.7rem;
    padding-inline: .28rem;
  }

  .legal-page .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .legal-header-actions { gap: .55rem; }
  .legal-home-link { display: none; }
  .legal-main { width: min(100% - 1.5rem, 52rem); }
  .legal-hero h1 { font-size: clamp(2.35rem, 14vw, 4.2rem); }

  .cookie-banner {
    right: .6rem;
    bottom: .6rem;
    left: .6rem;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .cookie-manage {
    grid-column: 1 / -1;
  }

  .cookie-dialog-actions { flex-direction: column; }
}

/* Final responsive and form pass. */
h1 {
  font-size: clamp(2rem, 4.15vw, 3.35rem);
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.quote-form button:disabled {
  cursor: wait;
  opacity: .65;
}

.form-status.is-success { color: #287934; }
.form-status.is-error { color: #b4232e; }

@media (min-width: 1080px) {
  .feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .65rem;
    width: 35rem;
    max-width: none;
  }

  .feature-row article {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: .45rem;
    min-width: 0;
  }

  .feature-row article > div { min-width: 0; }

  .feature-row .feature-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .feature-row h2 {
    font-size: .68rem;
    letter-spacing: .08em;
    white-space: nowrap;
  }

  .feature-row p {
    font-size: .75rem;
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  .feature-row h2 { font-size: .72rem; }
  .feature-row p { font-size: .79rem; }
}

@media (min-width: 1080px) {
  html[lang="es"] .cert-line {
    width: max-content;
    max-width: none;
    font-size: .72rem;
    letter-spacing: .15em;
    white-space: nowrap;
  }

  html[lang="es"] .hero-actions {
    flex-wrap: nowrap;
    width: 35rem;
    max-width: none;
  }

  html[lang="es"] .hero-actions .button {
    padding-inline: 1.35rem;
    font-size: .75rem;
    letter-spacing: .08em;
  }
}

@media (max-width: 759px) {
  h1 {
    font-size: clamp(1.8rem, 10vw, 2.85rem);
  }

  .feature-row article,
  .service-strip article {
    display: grid;
    grid-template-columns: 3.5rem minmax(0, 1fr);
    align-items: center;
    justify-content: start;
    gap: 1rem;
    width: min(100%, 24rem);
    margin-inline: auto;
    padding: .85rem 1.15rem;
    text-align: left;
  }

  .feature-row article > div,
  .service-strip article > div {
    min-width: 0;
    width: 100%;
  }

  .feature-icon,
  .strip-icon {
    justify-self: center;
  }

  .cookie-banner {
    gap: .55rem;
    max-height: min(42dvh, 20rem);
    padding: .7rem;
    overflow-y: auto;
  }

  .cookie-banner h2 {
    margin-bottom: .12rem;
    font-size: .84rem;
  }

  .cookie-banner p {
    font-size: .68rem;
    line-height: 1.35;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
    gap: .32rem;
    width: 100%;
  }

  .cookie-actions .button,
  .cookie-actions .cookie-manage {
    grid-column: auto;
    width: 100%;
    min-height: 2.05rem;
    padding: .38rem .6rem;
    font-size: .63rem;
    letter-spacing: .06em;
  }

  .cookie-dialog {
    max-height: calc(100dvh - 1.2rem);
    padding: .85rem;
  }

  .cookie-dialog-head {
    margin-bottom: .55rem;
  }

  .cookie-dialog-head h2 { font-size: 1.05rem; }

  .cookie-choice {
    gap: .55rem;
    padding: .65rem 0;
  }

  .cookie-choice small {
    font-size: .7rem;
    line-height: 1.35;
  }

  .cookie-dialog-actions {
    gap: .4rem;
    padding-top: .65rem;
  }

  .cookie-dialog-actions .button {
    min-height: 2.2rem;
    padding: .45rem;
    font-size: .65rem;
  }
}
