:root {
  --ink: #071f3a;
  --navy: #0c345a;
  --navy-deep: #071d35;
  --blue: #2236c9;
  --blue-soft: #e7ebff;
  --muted: #546173;
  --paper: #f7f9fc;
  --panel: #ffffff;
  --line: #d8deea;
  --gold: #d4a941;
  --disabled: #767f8f;
  --shadow: 0 18px 42px rgba(7, 31, 58, 0.16);
  --radius: 8px;
  --space: clamp(1rem, 4vw, 1.4rem);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #0c345a 0 92px, transparent 92px),
    radial-gradient(circle at top right, rgba(34, 54, 201, 0.16), transparent 18rem),
    linear-gradient(180deg, #f9fbff, var(--paper));
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(7, 31, 58, 0.035) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(0deg, rgba(7, 31, 58, 0.018) 0 1px, transparent 1px 9px);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.05rem, 10.5vw, 3rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.8rem, 8vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-180%);
  background: #fff;
  color: var(--navy);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  display: grid;
  gap: 0.8rem;
  width: min(calc(100% - 24px), 1120px);
  margin: 0 auto;
  padding: 14px 0 18px;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
}

.top-nav {
  display: flex;
  width: 100%;
  gap: 0.45rem;
}

.top-nav a {
  flex: 1 1 0;
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.top-nav a[aria-current="page"] {
  background: #fff;
  color: var(--navy);
}

.hero,
.page-hero,
.notice-band,
.section,
.help-panel,
.about-grid,
.wide-panel,
.site-footer {
  width: min(calc(100% - 24px), 1120px);
  margin-inline: auto;
}

.hero {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 2.4rem;
}

.hero-copy,
.hero-card,
.page-hero,
.notice-band,
.merch-card,
.step-list li,
.info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(7, 31, 58, 0.08);
}

.hero-copy {
  min-width: 0;
  overflow: hidden;
  padding: clamp(1.1rem, 5vw, 2rem);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.quick-actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.button,
.order-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.button:hover,
.button:focus-visible,
.order-link:hover,
.order-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(7, 31, 58, 0.2);
}

.primary,
.order-link {
  background: var(--blue);
  color: #fff;
}

.secondary {
  background: #fff;
  color: var(--blue);
}

.hero-card {
  display: grid;
  gap: 1rem;
  overflow: hidden;
  padding: 1rem;
}

.hero-logo {
  width: min(58vw, 220px);
  margin: 0 auto;
}

.brand-board {
  display: grid;
  gap: 0.65rem;
}

.board-panel {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(7, 31, 58, 0.12);
}

.navy-panel {
  background: var(--navy);
}

.light-panel {
  display: grid;
  align-content: start;
  gap: 0.42rem;
  min-height: 150px;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 88% 72%, rgba(34, 54, 201, 0.12) 0 24%, transparent 25%),
    #fff;
}

.light-panel span {
  display: block;
  height: 10px;
  max-width: 68%;
  background: var(--navy);
  border-radius: 999px;
}

.light-panel span:nth-child(2) {
  max-width: 46%;
  background: var(--muted);
  opacity: 0.55;
}

.light-panel span:nth-child(3) {
  max-width: 56%;
  background: var(--muted);
  opacity: 0.35;
}

.board-logo {
  position: absolute;
  left: 11%;
  bottom: 12%;
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.notice-band {
  overflow: hidden;
  padding: 1rem;
  background: var(--navy-deep);
  color: #fff;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 2.5rem 0 0;
}

.section-heading {
  margin-bottom: 1rem;
}

.merch-grid {
  display: grid;
  gap: 0.9rem;
}

.merch-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-rows: minmax(134px, auto) auto min-content;
  gap: 1rem;
  padding: 1rem;
}

.merch-card.available {
  border-top: 6px solid var(--blue);
}

.merch-card.planned {
  border-top: 6px solid var(--gold);
}

.card-copy p:not(.status) {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.status {
  width: fit-content;
  margin: 0 0 0.6rem;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ready {
  background: var(--blue-soft);
  color: var(--blue);
}

.soon {
  background: #fff3cc;
  color: #695008;
}

.order-link {
  width: 100%;
}

.order-link.is-disabled {
  border-color: #c9d0db;
  background: #eef1f6;
  color: var(--disabled);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}

.item-visual {
  position: relative;
  overflow: hidden;
  min-height: 134px;
  background:
    linear-gradient(135deg, rgba(34, 54, 201, 0.14), transparent 58%),
    var(--navy);
  border-radius: var(--radius);
}

.item-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: rgba(255, 255, 255, 0.08);
}

.business-card-preview {
  display: block;
  min-height: 134px;
  padding: 0;
  background: var(--navy);
  border: 1px solid var(--line);
}

.business-card-preview::after {
  display: none;
}

.product-photo {
  min-height: 168px;
  padding: 0;
  background: var(--navy);
  border: 1px solid var(--line);
}

.product-photo::after {
  display: none;
}

.product-photo img {
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}

.business-card-preview img {
  object-position: 54% 50%;
}

.coat-photo img {
  object-position: 50% 38%;
}

.stickers span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 12px 20px rgba(7, 31, 58, 0.2);
}

.stickers span::before {
  content: "WMCAA";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.mugs span {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 76px;
  height: 82px;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 4px solid var(--blue);
  border-radius: 8px 8px 24px 24px;
  box-shadow: inset 0 -16px 0 rgba(34, 54, 201, 0.12), 0 14px 20px rgba(7, 31, 58, 0.16);
}

.mugs span::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 18px;
  width: 28px;
  height: 34px;
  border: 8px solid var(--blue);
  border-left: 0;
  border-radius: 0 24px 24px 0;
}

.step-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  min-width: 0;
  overflow: hidden;
  padding: 1rem;
}

.step-list span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  place-items: center;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-weight: 900;
}

.step-list strong {
  display: block;
  font-size: 1.12rem;
}

.step-list p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.help-panel {
  display: grid;
  gap: 0.8rem;
  margin-top: 2.5rem;
  padding: 1.1rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.help-panel .eyebrow,
.help-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.help-panel p {
  margin: 0;
}

.page-hero {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.1rem;
}

.page-hero img {
  width: min(56vw, 220px);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 0.9rem;
  padding-top: 1rem;
}

.info-panel {
  min-width: 0;
  overflow: hidden;
  padding: 1.1rem;
}

.info-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.wide-panel {
  margin-top: 0.9rem;
}

.wide-panel .button {
  width: 100%;
  margin-top: 1rem;
}

.site-footer {
  display: grid;
  gap: 0.35rem;
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

:focus-visible {
  outline: 4px solid rgba(212, 169, 65, 0.82);
  outline-offset: 3px;
}

@media (min-width: 620px) {
  body {
    font-size: 17px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .top-nav {
    min-width: 320px;
  }

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

  .hero-card {
    grid-template-columns: 180px 1fr;
    align-items: center;
  }

  .hero-logo {
    width: 180px;
  }

  .merch-grid,
  .step-list,
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-item {
    grid-column: span 2;
  }

  .wide-panel .button {
    width: fit-content;
  }
}

@media (min-width: 920px) {
  body {
    background:
      linear-gradient(180deg, #0c345a 0 86px, transparent 86px),
      radial-gradient(circle at top right, rgba(34, 54, 201, 0.16), transparent 26rem),
      linear-gradient(180deg, #f9fbff, var(--paper));
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    align-items: center;
    padding-top: 2rem;
  }

  .hero-copy,
  .hero-card {
    min-height: 560px;
  }

  h1 {
    font-size: clamp(3.5rem, 4.7vw, 4.2rem);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-card {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .hero-logo {
    width: 230px;
  }

  .brand-board {
    grid-template-columns: 1fr;
  }

  .merch-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .featured-item {
    grid-column: span 1;
  }

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

  .help-panel,
  .page-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
    align-items: center;
  }

  .page-hero img {
    width: min(26vw, 300px);
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
