:root {
  --ink: #161114;
  --muted: #6f5964;
  --pink: #e88aae;
  --rose: #b83b73;
  --blush: #ffe2ec;
  --soft: #fff6f9;
  --gold: #d8a72f;
  --teal: #158c8c;
  --line: #edd5df;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(67, 28, 45, 0.16);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-script {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--rose);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a,
.footer-links a {
  text-decoration: none;
}

nav a:hover,
.footer-links a:hover {
  color: var(--rose);
}

.nav-cta {
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.88rem;
}

.section,
.section-band {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-band {
  background:
    radial-gradient(circle at 8% 10%, rgba(232, 138, 174, 0.22), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(216, 167, 47, 0.18), transparent 30%),
    linear-gradient(135deg, #fff8fb 0%, #ffffff 54%, #fff1f6 100%);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "DM Serif Display", Georgia, serif;
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
}

h3 {
  margin: 0;
  font-size: 1.18rem;
}

.hero-lede,
.section-heading p,
.lead-magnet p,
.split-section p,
.founder-note p {
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.7;
}

.hero-lede {
  max-width: 660px;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 14px 32px rgba(184, 59, 115, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.hero-stats {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 960px);
  margin: 0;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-stats dt {
  font-size: 1.25rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.hero-media::before {
  content: "";
  position: absolute;
  width: min(94%, 520px);
  aspect-ratio: 1;
  background: var(--blush);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.book-cover {
  position: relative;
  width: min(74%, 360px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(65, 19, 39, 0.22);
}

.quote-card {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(72%, 310px);
  padding: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote-card p {
  margin: 0 0 6px;
  color: #ffc3d9;
  font-weight: 800;
}

.quote-card strong {
  color: var(--white);
  font-size: 1.2rem;
}

.lead-magnet {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.lead-magnet p {
  color: #f4dbe5;
}

.lead-magnet .eyebrow {
  color: #ffc3d9;
}

.signup-form,
.mini-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: #fffafd;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  min-height: 104px;
  padding-top: 13px;
  resize: vertical;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-card img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
}

.product-card p {
  color: var(--muted);
  line-height: 1.6;
}

.tag {
  display: inline-flex;
  margin: 0 0 9px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.price-row span {
  padding: 8px 11px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.soft {
  background:
    radial-gradient(circle at 86% 16%, rgba(21, 140, 140, 0.1), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #fff6f9 100%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  background: var(--teal);
  border-radius: 50%;
}

.mini-form h3 {
  font-size: 1.4rem;
}

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

.event-cards article {
  padding: 24px;
  min-height: 210px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.event-cards span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #ffc3d9;
  font-weight: 900;
}

.event-cards p {
  color: #f4dbe5;
  line-height: 1.6;
}

.shop-preview {
  background: var(--soft);
}

.apparel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.apparel-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.apparel-grid a {
  display: block;
  text-decoration: none;
}

.section-action {
  display: flex;
  margin-top: 28px;
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 74px);
}

.shop-hero-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.shop-hero-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 226, 236, 0.9), transparent 58%),
    #fff6f9;
  padding: 10px;
  box-shadow: 0 18px 52px rgba(67, 28, 45, 0.14);
}

.shop-hero-gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: 0.78;
}

.shop-page {
  background: var(--white);
}

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

.shirt-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.shirt-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.shirt-card-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.shirt-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.shirt-card-body .shirt-price {
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 900;
}

.size-row,
.color-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-button,
.color-button {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  padding: 0 8px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.size-button.is-selected,
.color-button.is-selected {
  color: var(--white);
  background: var(--rose);
  border-color: var(--rose);
}

.color-button {
  grid-auto-flow: column;
  gap: 7px;
  min-width: auto;
  padding: 0 10px;
}

.color-button span {
  width: 14px;
  height: 14px;
  background: var(--swatch);
  border: 1px solid rgba(22, 17, 20, 0.24);
  border-radius: 50%;
}

.color-button.is-selected span {
  border-color: rgba(255, 255, 255, 0.76);
}

.quantity-label {
  max-width: 130px;
}

.quantity-input {
  min-height: 42px;
}

.add-shirt-button {
  width: 100%;
}

.card-note {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.request-summary {
  margin-top: 26px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.request-summary h3 {
  margin-bottom: 14px;
}

.request-summary ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.request-summary li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  line-height: 1.45;
}

.request-summary li.empty-request {
  display: block;
}

.request-summary button {
  flex: 0 0 auto;
  padding: 8px 10px;
  color: var(--rose);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.request-total {
  margin: 16px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.founder-note {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
  color: #f4dbe5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: #ffc3d9;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .shop-hero,
  .lead-magnet,
  .split-section,
  .founder-note {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 390px;
  }

  .product-grid,
  .event-cards {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand-mark span {
    font-size: 0.95rem;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-stats,
  .product-card {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-top: 10px;
  }

  .hero-media {
    min-height: 340px;
  }

  .book-cover {
    width: min(70%, 250px);
  }

  .quote-card {
    right: 12px;
    bottom: 18px;
  }

  .lead-magnet,
  .section,
  .section-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .apparel-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-gallery,
  .shirt-grid {
    grid-template-columns: 1fr;
  }

  .shop-hero-gallery img:first-child {
    grid-row: auto;
    aspect-ratio: 1;
  }

  .site-footer {
    flex-direction: column;
  }
}
