:root {
  --brown: #895023;
  --brown-dark: #5c0711;
  --marsala: #650914;
  --cream: #fff1c8;
  --gold: #d5a13a;
  --green: #04bf65;
  --text: #090909;
  --muted: #5a5a5a;
  --shadow: 0 18px 50px rgba(0, 0, 0, .15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Nunito", Arial, sans-serif;
}

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

.brand picture,
.hero picture,
.photo-strip picture,
.footer-logos picture {
  display: block;
  width: 100%;
}

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

.site-header {
  min-height: 166px;
  padding: 34px clamp(20px, 5vw, 82px);
  display: flex;
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  background: var(--brown);
}

.brand {
  width: min(560px, 42vw);
  min-height: 82px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 116px;
  object-fit: contain;
  filter: brightness(1.12);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  color: white;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  font-weight: 800;
}

.main-nav a {
  transition: color .2s ease, transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffc515;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: visible;
  background: var(--marsala);
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.signup-cta-band {
  padding: clamp(22px, 3.5vw, 42px) 20px;
  background: linear-gradient(135deg, var(--marsala), var(--brown-dark));
  text-align: center;
}

.signup-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(430px, 100%);
  min-height: clamp(64px, 7vw, 82px);
  border-radius: 999px;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--marsala);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.signup-cta:hover {
  transform: translateY(-3px) scale(1.02);
  background: #ffc515;
  color: #3b0610;
  box-shadow: 0 20px 42px rgba(0, 0, 0, .3);
}

.about-event {
  position: relative;
  padding: clamp(28px, 4vw, 58px) 20px clamp(70px, 9vw, 118px);
  background: linear-gradient(rgba(255, 248, 222, .87), rgba(255, 248, 222, .87)), url("assets/home-crowd-bg.png") center / cover;
  background-image: linear-gradient(rgba(255, 248, 222, .87), rgba(255, 248, 222, .87)), image-set(url("assets/home-crowd-bg.avif") type("image/avif"), url("assets/home-crowd-bg.webp") type("image/webp"), url("assets/home-crowd-bg.png") type("image/png"));
  text-align: center;
}

.about-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.about-event h1,
.about-event h2,
.store-section h1,
.section-title h1 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.1;
}

.about-event h1 {
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 700;
}

.about-event p {
  margin: 24px auto;
  max-width: 850px;
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.48;
}

.about-event h2 {
  margin: 28px 0 24px;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 400;
}

.video-wrap {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--marsala);
  box-shadow: var(--shadow);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-signup-cta {
  margin-top: clamp(28px, 4vw, 44px);
}

.photo-strip {
  background: white;
}

.photo-strip img {
  width: 100%;
  object-fit: cover;
}

.site-footer {
  padding: clamp(34px, 4.8vw, 64px) clamp(24px, 12vw, 190px);
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(280px, 1.2fr) minmax(190px, .8fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  background: var(--brown);
  color: white;
}

.site-footer.compact {
  margin-top: 40px;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
}

.social-links a {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease, transform .2s ease;
}

.social-links svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:hover {
  color: #ffc515;
  transform: translateY(-2px);
}

.footer-logos {
  display: grid;
  grid-template-columns: 92px minmax(220px, 1fr);
  gap: clamp(16px, 3vw, 30px);
  align-items: center;
  justify-content: center;
}

.footer-logos img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.church-mark {
  max-height: 96px;
}

.ministry-strip {
  max-height: 105px;
}

.address {
  display: grid;
  gap: 10px;
  justify-items: end;
  font-size: clamp(.95rem, 1.4vw, 1.3rem);
  text-align: right;
}

.address p {
  margin: 0;
}

.store-section,
.sponsor-section {
  background: white;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 6vw, 96px) clamp(90px, 14vw, 190px);
}

.store-section h1 {
  margin-bottom: clamp(40px, 6vw, 82px);
  text-align: center;
  font-size: clamp(2.05rem, 4.8vw, 4rem);
}

.product-grid {
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
  align-items: stretch;
}

.product-card {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid #eadfcf;
  border-radius: 8px;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

.canva-product {
  margin: 0;
  display: grid;
  gap: 10px;
}

.product-pair {
  position: relative;
  min-height: clamp(230px, 20vw, 315px);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: clamp(6px, 1vw, 14px);
  padding: clamp(12px, 1.7vw, 22px);
  background: #eadfd6;
  overflow: hidden;
}

.product-pair img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-pair picture {
  display: contents;
}

.shirt-pair .product-front {
  max-width: 88%;
}

.shirt-pair .product-back {
  max-width: 96%;
}

.hoodie-pair .product-front {
  max-width: 95%;
}

.hoodie-pair .product-back {
  max-width: 95%;
}

.canva-product figcaption {
  color: #090909;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(.74rem, .95vw, .92rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.product-media {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.product-media.single-image {
  grid-template-columns: 1fr;
}

.thumbs {
  display: grid;
  gap: 18px;
}

.thumb {
  width: 80px;
  height: 102px;
  padding: 4px;
  border: 1px solid transparent;
  background: white;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease;
}

.thumb.active,
.thumb:hover {
  border-color: var(--gold);
  transform: translateY(-1px);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-product {
  width: min(455px, 100%);
  max-height: 540px;
  margin: 0 auto;
  object-fit: contain;
}

.product-form {
  display: grid;
  align-content: start;
  gap: 18px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.product-form h2 {
  margin: 0 0 4px;
  color: var(--marsala);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1;
  text-transform: uppercase;
}

.product-form label,
.size-row p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 700;
}

.product-form select {
  width: min(520px, 100%);
  border: 2px solid #222;
  border-radius: 0;
  padding: 12px 14px;
  background: white;
  color: black;
  font: inherit;
  font-weight: 800;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.size-button {
  min-width: 56px;
  min-height: 54px;
  padding: 8px 13px;
  border: 1px solid #777;
  background: white;
  color: black;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.size-button:hover,
.size-button.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
  transform: translateY(-1px);
}

.price-box {
  width: min(430px, 100%);
  padding-top: 2px;
}

.price-box span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.price-box strong {
  display: block;
  min-height: 46px;
  color: var(--gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1;
}

.reserve-button,
.sponsor-price a {
  width: min(360px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 28px;
  border: 0;
  background: var(--green);
  color: white;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.reserve-button:hover,
.sponsor-price a:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 26px rgba(4, 191, 101, .25);
}

.store-note {
  width: min(850px, 100%);
  margin: clamp(56px, 8vw, 110px) auto 0;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.3;
}

.store-note p {
  margin: 28px 0;
}

.sponsor-section .lead {
  width: min(1000px, 100%);
  margin: 0 auto clamp(56px, 7vw, 90px);
  text-align: center;
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  line-height: 1.28;
}

.section-title {
  width: min(1160px, 100%);
  margin: 0 auto clamp(50px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 50px);
}

.section-title span {
  height: 2px;
  background: #dfc487;
}

.section-title h1 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.sponsor-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr) minmax(280px, 390px);
  gap: 18px;
  align-items: center;
}

.benefit-card {
  min-height: 275px;
  padding: 36px 26px;
  border: 1.5px solid #a7a7a7;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: white;
}

.benefit-card h2 {
  margin: 0 0 10px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  text-transform: uppercase;
}

.benefit-card p {
  margin: 0;
  font-size: clamp(1rem, 1.2vw, 1.23rem);
  line-height: 1.26;
}

.benefit-icon {
  color: var(--brown);
  font-family: Arial, sans-serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: .8;
  margin-bottom: 18px;
}

.sponsor-price {
  min-height: 345px;
  padding: 50px 36px;
  border-radius: 12px;
  background: var(--brown-dark);
  color: white;
  text-align: center;
}

.sponsor-price h2 {
  margin: 0 auto 22px;
  padding: 10px 18px;
  background: var(--gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.55rem);
  text-transform: uppercase;
}

.sponsor-price p {
  margin: 0 0 12px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
}

.sponsor-price span {
  display: block;
  margin-bottom: 26px;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.sponsor-price a {
  width: 100%;
  min-height: 60px;
  background: var(--gold);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

@media (max-width: 980px) {
  .site-header {
    min-height: 0;
    padding: 28px 22px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .brand {
    width: min(620px, 92vw);
    min-height: 86px;
  }

  .main-nav {
    justify-content: center;
    gap: 18px 28px;
  }

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

  .product-grid {
    width: min(620px, 100%);
  }

  .product-showcase {
    width: min(520px, 100%);
    margin: 0 auto;
  }

  .product-pair {
    min-height: clamp(210px, 43vw, 290px);
  }

  .product-media {
    grid-template-columns: 1fr;
  }

  .thumbs {
    order: 2;
    grid-template-columns: repeat(3, 80px);
    justify-content: center;
  }

  .product-form {
    justify-items: center;
    text-align: center;
  }

  .size-options {
    justify-content: center;
  }

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

  .social-links,
  .footer-logos {
    justify-content: center;
  }

  .footer-logos {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .address {
    justify-items: center;
    text-align: center;
  }

  .sponsor-grid {
    width: min(480px, 100%);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 24px 18px;
  }

  .brand {
    min-height: 72px;
  }

  .main-nav {
    font-size: 1rem;
  }

  .signup-cta-band {
    padding: 20px 18px;
  }

  .signup-cta {
    width: min(100%, 360px);
    min-height: 62px;
    padding: .95rem 1.4rem;
  }

  .store-section,
  .sponsor-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-media {
    gap: 14px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-pair {
    min-height: 280px;
  }

  .thumbs {
    grid-template-columns: repeat(3, 70px);
  }

  .thumb {
    width: 70px;
    height: 86px;
  }

  .section-title {
    grid-template-columns: 1fr;
  }

  .section-title span {
    display: none;
  }

  .benefit-card {
    min-height: 210px;
  }

  .footer-logos {
    grid-template-columns: 78px minmax(180px, 1fr);
  }

  .ministry-strip {
    max-height: 86px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding: 22px 14px;
  }

  .main-nav {
    gap: 12px 18px;
  }

  .product-card {
    padding: 18px 14px 22px;
  }

  .product-pair {
    min-height: 235px;
  }

  .footer-logos {
    grid-template-columns: 1fr;
  }

  .church-mark {
    max-height: 92px;
    width: 92px;
    margin: 0 auto;
  }
}
