/* ============================================================
   SUN ICE — Site Shell (light)
   ============================================================ */
@import url("./colors_and_type.css");

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ---------- NAV ---------- */
.site-nav {
  position: static;
  background: var(--sun-yellow);
  border-bottom: none;
}
.site-nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  padding: 12px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.site-nav__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.site-nav__logo img { height: 84px; width: auto; }

.site-nav__links {
  display: flex; align-items: center; gap: 4px;
}
.site-nav__links a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0 4px;
  margin: 0 14px;
  position: relative;
  transition: color 120ms ease;
}
.site-nav__links a:hover { color: var(--fg-muted); }
.site-nav__links a.is-active {
  color: var(--ink);
}
.site-nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: var(--sun-yellow);
}

.site-nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 120ms ease;
}
.site-nav__cta:hover { background: var(--ink-soft); }
.site-nav__cta svg { width: 14px; height: 14px; }

/* Tape strip — kept available but defaults to hidden, opt-in per page */
.tape-strip {
  display: none;
  height: 8px;
  background-image: repeating-linear-gradient(-45deg,
    var(--ink) 0, var(--ink) 8px,
    var(--sun-yellow) 8px, var(--sun-yellow) 16px);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  padding: 20px 32px;
  border: none;
  border-radius: 4px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  cursor: pointer;
  transition: background 140ms ease, transform 140ms ease;
}
.btn:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--yellow { background: var(--sun-yellow); color: var(--ink); }
.btn--yellow:hover { background: #FFD633; }
.btn--white { background: var(--paper); color: var(--ink); border: 1px solid var(--hairline-strong); }
.btn--white:hover { background: var(--paper-warm); border-color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--paper-warm); }
.btn--sm { padding: 12px 18px; font-size: 13px; }
.btn--lg { padding: 24px 36px; font-size: 18px; }
.btn svg { width: 18px; height: 18px; }

/* Kicker — small uppercase label, used sparingly */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--fg-muted);
}
.kicker--outline { color: var(--fg-muted); }
.kicker--yellow { color: var(--ink); }

/* ---------- DISPLAY HEADLINES ---------- */
.h-hero, .h-display, .h-section {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.92;
  margin: 0;
}
.h-hero { font-size: clamp(56px, 9vw, 128px); line-height: 0.9; }
.h-display { font-size: clamp(40px, 5vw, 72px); }
.h-section { font-size: clamp(32px, 4vw, 56px); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--narrow { max-width: 960px; }

/* ---------- FOOTER ---------- */
.site-foot {
  background: var(--paper);
  color: var(--ink);
  padding: 80px 32px 32px;
  border-top: 1px solid var(--hairline);
}
.site-foot__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
}
.site-foot h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  color: var(--fg-muted);
}
.site-foot__brand img { height: 72px; width: auto; margin-bottom: 20px; }
.site-foot__brand p {
  font-size: 14px; line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  max-width: 30ch;
}
.site-foot__brand .brand-line {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.site-foot__brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.site-foot__list { list-style: none; margin: 0; padding: 0; }
.site-foot__list li { margin-bottom: 10px; }
.site-foot__list a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}
.site-foot__list a:hover { color: var(--fg-muted); }

.site-foot__retailer {
  /* No more yellow border / shadow. Just text. */
  padding: 0;
  background: transparent;
  border: none;
}
.site-foot__retailer h4 { color: var(--fg-muted); margin-bottom: 12px; }
.site-foot__retailer p {
  font-size: 14px; line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 14px;
  max-width: 32ch;
}
.site-foot__retailer a {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--ink);
}
.site-foot__retailer a:hover { color: var(--fg-muted); border-bottom-color: var(--hairline-strong); }

.site-foot__legal {
  max-width: 1320px;
  margin: 28px auto 0;
  padding-top: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--fg-muted);
}
.site-foot__socials {
  display: flex; gap: 8px;
}
.site-foot__socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  transition: background 120ms ease;
}
.site-foot__socials a:hover { background: var(--paper-warm); }
.site-foot__socials svg { width: 16px; height: 16px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .site-nav__inner { padding: 10px 20px; gap: 16px; }
  .site-nav__logo img { height: 52px; }
  .site-nav__links { gap: 2px; }
  .site-nav__links a { padding: 10px 12px; font-size: 14px; }
  .site-nav__links a.is-active::after { bottom: 0; height: 2px; }
  .container { padding: 0 20px; }
  .site-foot__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-foot__retailer { grid-column: span 2; }
}
@media (max-width: 600px) {
  .site-foot__inner { grid-template-columns: 1fr; }
  .site-foot__retailer { grid-column: span 1; }
  .site-foot { padding: 56px 20px 24px; }
}

/* arrow icon */
.arr {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: -0.15em;
  flex-shrink: 0;
}
.btn .arr { width: 18px; height: 18px; }
/* Cap any inline SVG that lacks an explicit width attribute so it never
   renders at intrinsic size during a flash-of-unstyled-content. */
svg:not([width]) { width: 24px; height: 24px; max-width: 100%; }
