* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #071f41;
  --deep: #04152d;
  --panel: #0b2d57;
  --panel-light: #123d70;
  --red: #f3273a;
  --white: #f8fbff;
  --ice: #d7e9f8;
  --muted: #b9c8d8;
  --ink: #24364b;
  --line: rgba(255,255,255,0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--deep);
  color: var(--white);
  font-family: "Source Sans 3", Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 8%;
  background: rgba(4,21,45,0.92);
  border-bottom: 3px solid var(--red);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 42px;
}

.brand span {
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header nav a {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  min-height: 92vh;
  overflow: hidden;
  padding: 138px 8% 92px;
  background:
    linear-gradient(180deg, rgba(4,21,45,0.1), rgba(4,21,45,0.92)),
    radial-gradient(circle at 76% 32%, rgba(243,39,58,0.24), transparent 30%),
    linear-gradient(135deg, #143d68, var(--deep));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 68%);
}

.rink-lights {
  position: absolute;
  inset: 0 0 auto;
  height: 190px;
  background:
    radial-gradient(circle at 16% 40%, rgba(255,255,255,0.72), transparent 3%),
    radial-gradient(circle at 32% 36%, rgba(255,255,255,0.6), transparent 3%),
    radial-gradient(circle at 50% 34%, rgba(255,255,255,0.64), transparent 3%),
    radial-gradient(circle at 68% 36%, rgba(255,255,255,0.6), transparent 3%),
    radial-gradient(circle at 84% 40%, rgba(255,255,255,0.72), transparent 3%);
  opacity: 0.45;
}

.hero-content,
.hero-product {
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 0.9;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-shadow: 0 4px 0 rgba(0,0,0,0.4);
}

.subhead {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 1100px;
  color: var(--ice);
  font-size: 22px;
}

.deadline-card {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 430px);
  margin-top: 34px;
  padding: 24px 28px;
  background: rgba(11,45,87,0.9);
  border: 1px solid rgba(215,233,248,0.26);
  border-left: 6px solid var(--red);
  border-radius: 8px;
}

.deadline-card > span,
.snapshot-card span,
.bundle-card span,
.item-card span,
.payment-card span,
.total-bar span,
label span {
  color: var(--ice);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.deadline-card > strong {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 54px;
  line-height: 1;
}

.deadline-card p {
  color: var(--ice);
  font-size: 22px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 6px;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-button {
  border: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.secondary-button {
  border: 1px solid rgba(255,255,255,0.32);
  color: var(--white);
}

.hero-product {
  position: relative;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  width: min(100%, 640px);
}

.hero-product-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  padding: 14px 14px 12px;
  box-shadow: 0 24px 44px rgba(0,0,0,0.28);
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
  grid-column: span 2;
}

.hero-product-card:hover,
.hero-product-card:focus-visible {
  box-shadow: 0 30px 52px rgba(0,0,0,0.34);
  transform: translateY(-3px);
}

.hero-product-card img {
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter: none;
}

.zoomable-image {
  cursor: zoom-in;
}

.price-badge {
  position: static;
  grid-row: 2;
  display: inline-flex;
  align-items: baseline;
  justify-self: stretch;
  justify-content: center;
  gap: 5px;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(0,0,0,0.22);
  margin-top: 10px;
  padding: 7px 9px;
  transform: none;
}

.jibbitz-price {
  transform: none;
}

.price-badge strong {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.price-badge span {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.snapshot-section,
.content-section {
  padding: 92px 8%;
}

.snapshot-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: rgba(255,255,255,0.16);
}

.snapshot-card {
  background: var(--panel);
  padding: 24px;
}

.snapshot-card strong {
  color: var(--white);
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 23px;
  line-height: 1.1;
  margin-top: 4px;
  text-transform: uppercase;
}

.content-section.dark {
  background: var(--navy);
}

.product-section,
.order-section,
.donate-section {
  background: var(--white);
  color: var(--deep);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading h2,
.donate-panel h2 {
  font-family: "Oswald", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  color: #30435b;
  font-size: 19px;
}

.dark .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.bundle-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.bundle-card,
.item-card,
.order-form,
.confirmation,
.donate-panel {
  border-radius: 8px;
}

.bundle-card {
  display: grid;
  gap: 22px;
  background: var(--navy);
  color: var(--white);
  padding: 28px;
}

.main-bundle img {
  width: min(100%, 360px);
  margin: 0 auto;
}

.bundle-card h3,
.item-card h3,
.payment-card h3,
.confirmation h3,
.order-item strong {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.05;
  margin: 8px 0 10px;
  text-transform: uppercase;
}

.bundle-card p {
  color: var(--muted);
}

.item-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.item-card {
  background: #fff;
  border: 1px solid #d7e0ea;
  box-shadow: 0 18px 44px rgba(4,21,45,0.1);
  overflow: hidden;
}

.item-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #edf3f8;
  padding: 14px;
}

.item-card span,
.item-card h3 {
  color: var(--deep);
  display: block;
  padding: 0 20px;
}

.item-card span {
  color: var(--red);
  padding-top: 20px;
}

.item-card h3 {
  min-height: 66px;
  padding-bottom: 22px;
}

.order-form,
.confirmation {
  display: grid;
  gap: 24px;
  background: var(--navy);
  padding: 28px;
}

.form-section {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.form-section legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  padding: 0 8px;
  text-transform: uppercase;
}

.form-section legend span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(215,233,248,0.28);
  border-radius: 6px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  resize: vertical;
}

.order-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 120px;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
}

.order-item img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: contain;
}

.order-item-copy span {
  color: var(--red);
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.order-item label {
  width: 120px;
}

.order-item-copy p {
  color: var(--muted);
}

.total-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.total-bar strong {
  display: block;
  color: var(--red);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
}

.confirmation {
  margin-top: 24px;
}

.confirmation[hidden] {
  display: none;
}

.confirmation p:not(.eyebrow) {
  color: var(--ice);
}

.confirmation pre {
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, sans-serif;
  padding: 18px;
  white-space: pre-wrap;
}

.confirmation .primary-button {
  width: fit-content;
}

.payment-card {
  background: var(--panel-light);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.payment-card.preferred {
  background:
    linear-gradient(135deg, rgba(243,39,58,0.22), rgba(215,233,248,0.08)),
    var(--panel);
  border-color: rgba(243,39,58,0.48);
}

.payment-card span {
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.payment-card strong {
  color: var(--ice);
  display: block;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.payment-card p {
  color: var(--muted);
  margin-top: 12px;
}

.mockup-note {
  padding: 28px 8%;
  background: #eef4f9;
  color: var(--ink);
}

.mockup-note div {
  display: flex;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
}

.mockup-note strong {
  color: var(--deep);
  font-family: "Oswald", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.mockup-note p {
  color: #4d5f73;
}

.donate-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 30px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px 8%;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer img {
  height: 42px;
  width: auto;
}

.footer div {
  display: grid;
  gap: 4px;
  text-align: right;
}

.footer strong {
  color: var(--white);
  font-family: "Oswald", Arial, sans-serif;
  text-transform: uppercase;
}

.footer a {
  color: var(--white);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(4,21,45,0.9);
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox img {
  max-width: min(100%, 1120px);
  max-height: 88vh;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  padding: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.42);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
  font-family: "Oswald", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 10px 16px;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero,
  .bundle-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    justify-self: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 720px);
  }

  .hero-product-card,
  .hero-jibbitz {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .site-header nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 176px;
  }

  .donate-panel,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer div {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .snapshot-section,
  .content-section,
  .footer {
    padding-left: 6%;
    padding-right: 6%;
  }

  .site-header nav a {
    font-size: 13px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .subhead {
    font-size: 23px;
  }

  .hero-copy {
    font-size: 19px;
  }

  .deadline-card strong {
    font-size: 44px;
  }

  .price-badge {
    padding: 6px 8px;
  }

  .price-badge strong {
    font-size: 18px;
  }

  .hero-product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-item {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .total-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .order-item label,
  .total-bar .primary-button,
  .confirmation .primary-button {
    width: 100%;
  }
}
