/* ==========================================================================
   Eclipse / Salling — Danish consumer landing page
   Aesthetic: "celestial editorial" — twilight indigo + warm solar amber.
   Mobile-first. Vanilla CSS. No build step.
   ========================================================================== */

/* ----------------------------- Design tokens ---------------------------- */
:root {
  /* Twilight sky */
  --ink-900: #070a1a;   /* deepest night */
  --ink-800: #0b1026;   /* hero base */
  --ink-700: #131a3a;
  --ink-600: #1c2550;

  /* Warm content surfaces (trustworthy, human) */
  --cream:   #f7f1e6;
  --cream-2: #efe6d4;
  --paper:   #fbf7ef;

  /* Solar accents (corona / diamond ring) */
  --amber:   #f2a93b;
  --amber-2: #ffce6b;
  --gold:    #e08b1e;
  --ember:   #d9622b;

  /* Safety semantics */
  --safe:    #2f8f5b;
  --safe-bg: #e9f4ec;
  --danger:  #c0392b;
  --danger-bg: #fbeae7;

  /* Text */
  --text-dark:  #20253c;
  --text-soft:  #4a5170;
  --text-light: #efe9dc;
  --text-light-soft: #c3c2d6;

  --line: rgba(32, 37, 60, 0.12);
  --line-light: rgba(255, 255, 255, 0.14);

  --radius: 16px;
  --radius-lg: 26px;
  --shadow-soft: 0 18px 50px -22px rgba(7, 10, 26, 0.55);
  --shadow-amber: 0 14px 38px -16px rgba(224, 139, 30, 0.55);

  --maxw: 1120px;
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--text-dark);
  background: var(--ink-800);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--amber); color: var(--ink-900); padding: 10px 16px;
  border-radius: 0 0 12px 0; font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* --------------------- Decorative sky / atmosphere ---------------------- */
.sky {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 80% at 78% -10%, #2a2150 0%, transparent 55%),
    radial-gradient(140% 90% at 12% 0%, #15204c 0%, transparent 50%),
    linear-gradient(180deg, var(--ink-800) 0%, var(--ink-900) 100%);
}
.stars { position: absolute; inset: 0; }
.stars--1 {
  background-image:
    radial-gradient(1.4px 1.4px at 20% 30%, rgba(255,255,255,.75), transparent),
    radial-gradient(1.2px 1.2px at 70% 12%, rgba(255,255,255,.6), transparent),
    radial-gradient(1.6px 1.6px at 42% 62%, rgba(255,255,255,.5), transparent),
    radial-gradient(1.1px 1.1px at 88% 48%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.3px 1.3px at 8% 70%, rgba(255,255,255,.55), transparent);
  background-repeat: repeat;
  background-size: 480px 480px;
  animation: twinkle 7s ease-in-out infinite;
}
.stars--2 {
  background-image:
    radial-gradient(1px 1px at 55% 22%, rgba(255,255,255,.5), transparent),
    radial-gradient(1px 1px at 33% 88%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,.5), transparent);
  background-repeat: repeat;
  background-size: 320px 320px;
  opacity: .7;
  animation: twinkle 5s ease-in-out infinite reverse;
}
@keyframes twinkle { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.corona-glow {
  position: absolute; top: -120px; right: -80px; width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,206,107,.28) 0%, rgba(242,169,59,.12) 35%, transparent 68%);
  filter: blur(6px);
}

/* Subtle grain overlay for warmth */
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ------------------------------- Typography ----------------------------- */
.overline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin: 0 0 22px;
  line-height: 1.6;
  display: flex; align-items: baseline; gap: 9px;
}
.overline__dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: var(--amber); box-shadow: 0 0 0 4px rgba(242,169,59,.22);
  transform: translateY(1px);
}
.kicker {
  font-weight: 700; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 12px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 7vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--text-dark);
}
.muted-em { color: var(--gold); font-style: italic; font-weight: 500; }

.prose p { margin: 0 0 18px; color: var(--text-soft); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--text-dark); }

.placeholder-note { color: var(--gold); font-style: italic; }

/* -------------------------------- Buttons ------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1.25;
  text-decoration: none; cursor: pointer; border: 0;
  padding: 17px 26px; border-radius: 999px;
  min-height: 56px; /* thumb-sized */
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn__arrow { transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 3px solid var(--amber-2); outline-offset: 3px; }

.btn--primary {
  background: linear-gradient(135deg, var(--amber-2) 0%, var(--gold) 60%, var(--ember) 130%);
  color: #2a1606;
  box-shadow: var(--shadow-amber);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 46px -14px rgba(224,139,30,.7); }
.btn--hero { width: 100%; font-size: 18px; padding: 19px 24px; }

.btn--store {
  width: 100%;
  background: var(--ink-800);
  color: var(--cream);
  box-shadow: 0 10px 26px -14px rgba(7,10,26,.6);
}
.btn--store:hover { transform: translateY(-2px); background: var(--ink-700); }

/* =============================== A. HERO ================================= */
.hero {
  position: relative;
  padding: clamp(54px, 12vw, 96px) 0 clamp(40px, 9vw, 70px);
  color: var(--text-light);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 760px; }
.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 11vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 26px;
  color: #fff;
  text-wrap: balance;
}
.hero__title em { color: var(--amber-2); font-style: italic; font-weight: 500; }
.hero__sub {
  font-size: clamp(16px, 2.4vw, 19px);
  line-height: 1.6;
  color: var(--text-light-soft);
  max-width: 56ch;
  margin: 0 0 30px;
}
.hero__reassure {
  margin: 16px 0 0;
  font-size: 14.5px;
  color: var(--text-light-soft);
}

/* Countdown */
.countdown {
  display: inline-flex; align-items: stretch; gap: 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-light);
  border-radius: 16px;
  padding: 12px 16px;
  margin: 0 0 28px;
  backdrop-filter: blur(6px);
}
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: 50px; }
.countdown__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 6vw, 34px); line-height: 1;
  color: var(--amber-2); font-variant-numeric: tabular-nums;
}
.countdown__lbl {
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-light-soft); margin-top: 6px;
}
.countdown__sep {
  font-family: var(--font-display); font-size: 26px; color: rgba(255,255,255,.25);
  display: flex; align-items: center; padding-bottom: 14px;
}

/* Quick store chips */
.quick-stores { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 18px; min-height: 48px;
  border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 15px;
  color: var(--cream);
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-light);
  transition: background .18s ease, transform .18s ease;
}
.chip::before { content: "📍"; font-size: 13px; }
.chip:hover { background: rgba(255,255,255,.13); transform: translateY(-1px); }

/* Eclipse 'diamond ring' art (placeholder for hero photo) */
.eclipse-art {
  position: absolute; z-index: 1; top: 4%; right: -90px;
  width: 280px; height: 280px; opacity: .9;
  pointer-events: none;
}
.eclipse-art__disc {
  position: relative; width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #1a1330 0 38%, transparent 39%),
              radial-gradient(circle at 50% 50%, rgba(255,206,107,.0) 36%, rgba(255,206,107,.55) 41%, rgba(242,169,59,.18) 50%, transparent 64%);
  filter: drop-shadow(0 0 40px rgba(255,206,107,.4));
  animation: float 9s ease-in-out infinite;
}
.eclipse-art__moon {
  position: absolute; inset: 0; margin: auto;
  width: 76%; height: 76%; border-radius: 50%;
  background: var(--ink-900);
  box-shadow: inset 0 0 30px rgba(0,0,0,.6);
}
.eclipse-art__bead {
  position: absolute; top: 16%; right: 18%;
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle, #fff 0 30%, var(--amber-2) 55%, transparent 75%);
  box-shadow: 0 0 30px 8px rgba(255,206,107,.85);
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============================== Sections ================================ */
.section { position: relative; padding: clamp(48px, 9vw, 86px) 0; }

/* Light content sections sit on warm paper */
.danger, .knockoff, .trust, .steps, .buy, .faq {
  background: var(--paper);
  color: var(--text-dark);
}
/* Alternating tint + soft top edge between paper sections */
.knockoff { background: var(--cream); }
.steps { background: var(--cream); }
.faq { background: var(--cream); }

/* Curved transition from dark hero into paper */
.danger::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 40px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: translateY(-38px);
}

.section__title { position: relative; }

/* --------------------------- B. Danger box ----------------------------- */
.prose { max-width: 64ch; }
.emphasis-box {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 34px; padding: 24px 24px;
  background: linear-gradient(180deg, #fff8ec, #fdf0d8);
  border: 1px solid #f0d9a8;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.emphasis-box__icon {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: radial-gradient(circle at 30% 25%, #fff4dd, #f6e3bd);
  border: 1px solid #f0d9a8; color: var(--gold);
}
.emphasis-box__icon svg { width: 24px; height: 24px; display: block; }
.emphasis-box p { margin: 0; color: var(--text-soft); }
.emphasis-box strong { color: var(--text-dark); }

/* --------------------- C. Knock-off / comparison ----------------------- */
.one-rule {
  margin: 32px 0;
  padding: 28px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--ink-800), var(--ink-700));
  color: var(--text-light);
  box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
}
.one-rule::after {
  content: ""; position: absolute; top: -60px; right: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(255,206,107,.35), transparent 70%);
}
.one-rule__head {
  font-family: var(--font-display); font-weight: 600; font-style: italic;
  font-size: clamp(20px, 4.5vw, 26px); margin: 0 0 12px; color: var(--amber-2);
  position: relative; z-index: 1;
}
.one-rule__body { margin: 0; font-size: 17px; color: var(--text-light); position: relative; z-index: 1; }
.one-rule__body strong { color: #fff; }

.compare { display: grid; gap: 16px; margin-top: 8px; }
.compare__col {
  border-radius: var(--radius); padding: 22px 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.compare__col--safe { border-top: 5px solid var(--safe); }
.compare__col--fake { border-top: 5px solid var(--danger); }
.compare__head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  margin: 0 0 14px;
}
.compare__col--safe .compare__head { color: var(--safe); }
.compare__col--fake .compare__head { color: var(--danger); }
.compare__mark { flex: 0 0 auto; display: inline-grid; place-items: center; width: 24px; height: 24px; }
.compare__mark svg { width: 24px; height: 24px; display: block; }
.compare__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.compare__list li {
  position: relative; padding-left: 26px; color: var(--text-soft); font-size: 15.5px; line-height: 1.5;
}
.compare__list li::before {
  content: ""; position: absolute; left: 6px; top: 9px; width: 7px; height: 7px; border-radius: 50%;
}
.compare__col--safe li::before { background: var(--safe); }
.compare__col--fake li::before { background: var(--danger); }
.compare__list strong { color: var(--text-dark); }

/* ------------------------- D. Trust cards ------------------------------ */
.cards { display: grid; gap: 18px; margin-top: 8px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px 24px; box-shadow: var(--shadow-soft);
  position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 26px 60px -26px rgba(7,10,26,.5); }
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--amber-2), var(--gold), var(--ember));
}
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 18px; color: var(--gold);
  background: radial-gradient(circle at 30% 25%, #fff4dd, #f6e3bd);
  border: 1px solid #f0d9a8;
}
.card__icon svg { width: 28px; height: 28px; display: block; }
.card__title { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0 0 12px; color: var(--text-dark); }
.card__body { margin: 0; color: var(--text-soft); font-size: 15.5px; }
.trust__reassure {
  margin: 28px auto 0; max-width: 60ch; text-align: center;
  font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 3.4vw, 22px);
  line-height: 1.4; color: var(--text-dark);
}

/* ----------------------- E. Safe-watching steps ------------------------ */
.steplist { list-style: none; margin: 8px 0 0; padding: 0; display: grid; grid-template-columns: minmax(0, 1fr); gap: 4px; counter-reset: step; }
.step {
  display: flex; gap: 18px; align-items: flex-start; min-width: 0;
  padding: 22px 0; border-bottom: 1px solid var(--line);
}
.step:last-of-type { border-bottom: 0; }
.step__num {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  color: #2a1606;
  background: linear-gradient(135deg, var(--amber-2), var(--gold));
  box-shadow: var(--shadow-amber);
}
.step__text { min-width: 0; flex: 1 1 auto; }
.step__title { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin: 4px 0 6px; color: var(--text-dark); line-height: 1.25; }
.step__text p { margin: 0; color: var(--text-soft); font-size: 15.5px; }
.step__text strong { color: var(--text-dark); }

/* Local eclipse-times callout (Step 1) — one set of times for all of Denmark */
.times {
  margin: 16px 0 4px;
  border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: var(--radius);
  background: #fff; box-shadow: var(--shadow-soft); max-width: 100%;
}
.times__lead { margin: 0; padding: 16px 18px; font-size: 15.5px; color: var(--text-soft); }
.times__lead strong { color: var(--text-dark); }
.times__note { margin: 0; padding: 12px 18px 14px; font-size: 13px; color: var(--text-soft); border-top: 1px solid var(--line); }

.cta-band { margin-top: 36px; }
.cta-band .btn { width: 100%; }

/* --------------------------- F. Where to buy --------------------------- */
.buy { background: var(--paper); }
.buy__intro { max-width: 60ch; color: var(--text-soft); margin: 0 0 28px; font-size: 17px; }
.retailers { display: grid; gap: 16px; }
.retailer {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px 22px; box-shadow: var(--shadow-soft);
  display: grid; gap: 18px;
}
.retailer__brand { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
/* Real retailer logos sit in a clean neutral container so each reads consistently
   regardless of its native colours. Fixed height -> visually uniform logo sizing. */
.retailer__logo {
  display: inline-flex; align-items: center; justify-content: center;
  height: 58px; min-width: 96px; padding: 10px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 6px 18px -14px rgba(7,10,26,.5);
}
.retailer__logo img { height: 100%; width: auto; max-width: 150px; object-fit: contain; }
/* The round BR mascot logo reads best a touch larger and unconstrained in width */
.retailer__logo--round { min-width: 0; padding: 7px; }
.retailer__logo--round img { height: 100%; width: auto; max-width: none; }
.retailer__tag {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700;
  color: var(--text-soft); background: var(--cream-2); padding: 4px 10px; border-radius: 999px;
}
.buy__urgency { margin: 28px 0 0; max-width: 62ch; color: var(--text-soft); font-size: 15.5px; }
.buy__price {
  margin: 18px 0 0; font-size: 18px; color: var(--text-dark);
  display: inline-block; padding: 10px 18px; border-radius: 12px;
  background: linear-gradient(180deg, #fff8ec, #fdf0d8); border: 1px solid #f0d9a8;
}
.buy__price strong { color: var(--gold); }

/* ------------------------------- G. FAQ -------------------------------- */
.accordion { display: grid; gap: 12px; margin-top: 8px; }
.acc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 10px 30px -24px rgba(7,10,26,.5);
  overflow: hidden;
}
.acc__q {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; font-size: 17.5px;
  color: var(--text-dark);
  padding: 18px 52px 18px 22px; position: relative;
  transition: background .15s ease;
}
.acc__q::-webkit-details-marker { display: none; }
.acc__q:hover { background: #fffaf0; }
.acc__q::after {
  content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-body); font-weight: 400; font-size: 26px; line-height: 1;
  color: var(--gold); transition: transform .2s ease;
}
.acc[open] .acc__q::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.acc__a { padding: 0 22px 20px; }
.acc__a p { margin: 0; color: var(--text-soft); font-size: 15.5px; }
.acc[open] .acc__a { animation: accIn .25s ease; }
@keyframes accIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ------------------------------ H. Footer ------------------------------ */
.footer {
  background: var(--ink-900); color: var(--text-light-soft);
  padding: clamp(46px, 8vw, 70px) 0 40px;
  position: relative;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .6;
}
.footer__inner { display: grid; gap: 28px; }
.footer__lede { margin: 0 0 8px; color: var(--text-light); font-size: 15.5px; max-width: 68ch; }
.footer__lede strong { color: #fff; }
.footer__more { margin: 0; font-size: 15px; }
.footer__more a { color: var(--amber-2); text-decoration: none; }
.footer__more a:hover { text-decoration: underline; }
.footer__links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer__links a { color: var(--text-light-soft); text-decoration: none; font-size: 14px; }
.footer__links a:hover { color: var(--amber-2); }
.footer__disclaimer {
  margin: 0; padding-top: 22px; border-top: 1px solid var(--line-light);
  font-size: 13px; color: #8b8aa6; max-width: 72ch;
}

/* --------------------------- Reveal on load ---------------------------- */
.reveal { opacity: 0; transform: translateY(16px); animation: reveal .7s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal--d1 { animation-delay: .08s; }
.reveal--d2 { animation-delay: .16s; }
.reveal--d3 { animation-delay: .26s; }
.reveal--d4 { animation-delay: .36s; }
.reveal--d5 { animation-delay: .46s; }
@keyframes reveal { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; animation: none; }
}

/* ============================ Breakpoints ============================== */
@media (min-width: 600px) {
  .compare { grid-template-columns: 1fr 1fr; }
  .retailer { grid-template-columns: 1fr auto; align-items: center; }
  .btn--store { width: auto; min-width: 220px; }
  .btn--hero { width: auto; min-width: 360px; }
  .cta-band .btn { width: auto; }
}

@media (min-width: 880px) {
  body { font-size: 18px; }
  .wrap { padding-inline: 40px; }
  .hero { padding: 110px 0 84px; }
  .eclipse-art { width: 360px; height: 360px; right: 2%; top: 8%; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .retailers { gap: 18px; }
}

@media (min-width: 1040px) {
  .eclipse-art { right: 6%; width: 400px; height: 400px; }
}

/* ----------------- Small-phone polish (~390px and below) --------------- */
@media (max-width: 400px) {
  .wrap { padding-inline: 18px; }
  /* Comparison: force a single clean column so neither card feels cramped. */
  .compare { grid-template-columns: 1fr; }
  /* Retailer banners stack: logo + tag on top, full-width store button below. */
  .retailer { grid-template-columns: 1fr; }
  .btn--store { width: 100%; min-width: 0; }
  /* Generous tap targets. */
  .chip { flex: 1 1 auto; justify-content: center; min-height: 48px; }
  .footer__links a { padding: 6px 0; }
  .times__lead { padding: 14px 15px; font-size: 15px; }
  .times__note { padding: 10px 15px 12px; font-size: 12.5px; }
  .retailer__logo { height: 52px; }
}
