:root {
  --navy: #071b3b;
  --royal: #173f8a;
  --red: #b11428;
  --cream: #f6f0e6;
  --gold: #f2c14e;
  --white: #ffffff;
  --ink: #0d1321;
  --shadow: 0 18px 45px rgba(7, 27, 59, 0.18);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 249, 240, 0.86) 0%, rgba(232, 238, 251, 0.82) 52%, rgba(255, 253, 248, 0.88) 100%),
    radial-gradient(circle at top left, rgba(242, 193, 78, 0.24), transparent 28%),
    url("lake-ontario-background.png") center / cover fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.hero {
  padding: 1.5rem 1.25rem 4rem;
}

.topbar,
.hero-grid,
.story-section,
.buy-section,
.banner-strip {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

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

.brand,
.eyebrow,
h1,
h2,
h3,
.price,
.button,
.badge,
.buy-title,
.shirt-title {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.04em;
}

.brand {
  color: var(--navy);
  font-size: 1.05rem;
}

.ghost-link {
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(7, 27, 59, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-size: 0.9rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.95;
}

.lede {
  max-width: 42rem;
  margin-bottom: 1.75rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #d43e4b);
  box-shadow: 0 10px 24px rgba(177, 20, 40, 0.28);
}

.button-secondary {
  border: 1px solid rgba(7, 27, 59, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.button-disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(7, 27, 59, 0.08);
  font-size: 0.9rem;
}

.product-card,
.buy-card,
.story-grid article {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(7, 27, 59, 0.08);
  box-shadow: var(--shadow);
}

.product-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1.8rem;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(23, 63, 138, 0.1), transparent 55%),
    repeating-linear-gradient(
      180deg,
      transparent,
      transparent 26px,
      rgba(177, 20, 40, 0.06) 26px,
      rgba(177, 20, 40, 0.06) 52px
    );
  pointer-events: none;
}

.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.85rem;
}

.shirt-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.shirt-frame {
  width: min(100%, 320px);
  aspect-ratio: 4 / 4.5;
  padding: 1.25rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(23, 63, 138, 0.08), rgba(255, 255, 255, 0.85)),
    linear-gradient(135deg, rgba(242, 193, 78, 0.45), transparent 48%);
}

.shirt-outline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  clip-path: polygon(25% 6%, 36% 0, 64% 0, 75% 6%, 92% 20%, 80% 30%, 84% 100%, 16% 100%, 20% 30%, 8% 20%);
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), rgba(241, 243, 248, 0.94)),
    linear-gradient(180deg, rgba(23, 63, 138, 0.08), rgba(177, 20, 40, 0.08));
  border: 4px solid rgba(7, 27, 59, 0.14);
}

.shirt-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
}

.shirt-title {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.92;
  text-align: center;
}

.shirt-wave {
  max-width: 10rem;
  color: var(--red);
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.5;
}

.price-block {
  position: relative;
  z-index: 1;
  text-align: center;
}

.price-label,
.price-note,
.buy-subtitle {
  font-size: 0.9rem;
}

.price {
  margin: 0.35rem 0;
  color: var(--red);
  font-size: 3rem;
}

.banner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 4rem;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(7, 27, 59, 0.08);
}

.banner-strip span {
  padding: 1rem;
  text-align: center;
  color: var(--white);
  font-family: "Anton", sans-serif;
}

.banner-strip span:nth-child(1),
.banner-strip span:nth-child(4) {
  background: var(--red);
}

.banner-strip span:nth-child(2) {
  color: var(--navy);
  background: var(--cream);
}

.banner-strip span:nth-child(3) {
  background: var(--royal);
}

.story-section,
.buy-section {
  padding: 0 0 4rem;
}

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

h2 {
  margin-bottom: 0.75rem;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.story-grid article,
.buy-card {
  border-radius: 1.4rem;
  padding: 1.5rem;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 1.35rem;
}

.story-grid p,
.buy-copy p,
.buy-card p {
  line-height: 1.8;
}

.buy-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.buy-title {
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 1.8rem;
}

.button-full {
  width: 100%;
  margin: 1rem 0 0.75rem;
}

code {
  padding: 0.12rem 0.3rem;
  border-radius: 0.35rem;
  background: rgba(7, 27, 59, 0.08);
}

@media (max-width: 960px) {
  .hero-grid,
  .buy-section,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    order: -1;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-inline: 0.85rem;
  }

  .topbar,
  .banner-strip {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .banner-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .shirt-visual {
    min-height: 340px;
  }

  .shirt-frame {
    width: min(100%, 270px);
  }
}
