:root {
  --red: #d00000;
  --deep-red: #850000;
  --ink: #171717;
  --muted: #5f5f5f;
  --sand: #f7efe3;
  --white: #ffffff;
  --line: #e6ded2;
  --shadow: 0 18px 60px rgba(39, 13, 13, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

code {
  background: rgba(133, 0, 0, 0.08);
  border-radius: 5px;
  padding: 0.12rem 0.35rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--white);
  z-index: 20;
}

.skip-link:focus {
  left: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.site-header.is-scrolled .brand {
  color: var(--ink);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: #000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

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

.brand small {
  font-size: 0.78rem;
  opacity: 0.86;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--white);
  font-weight: 800;
}

.site-header.is-scrolled .nav-menu {
  color: var(--ink);
}

.nav-menu a {
  text-decoration: none;
}

.nav-menu a:hover {
  color: #ffdddd;
}

.site-header.is-scrolled .nav-menu a:hover {
  color: var(--red);
}

.site-header.is-scrolled .brand-logo {
  border-color: rgba(208, 0, 0, 0.25);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  padding: 9px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 40%, rgba(0, 0, 0, 0.1) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 38%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
  padding-top: 5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--red);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero .eyebrow {
  color: #ffd2d2;
}

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

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.94;
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin: 0 0 0.35rem;
}

.hero-copy {
  max-width: 610px;
  margin: 1.25rem 0 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0.72rem 1.1rem;
  text-decoration: none;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
}

.button-primary {
  background: var(--red);
  color: var(--white);
}

.button-primary:hover {
  background: var(--deep-red);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -58px;
  position: relative;
  z-index: 2;
}

.stat {
  background: var(--white);
  border-radius: 8px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  font-size: 1.35rem;
}

.stat span {
  color: var(--muted);
}

.split,
.two-column,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 3rem;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.feature-list > div,
.join-grid article,
.event-card,
.callout,
.membership-card,
.path-card,
.news-card,
.schedule-card,
.product-card,
.social-card,
.embed-card,
.social-callout {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.callout {
  box-shadow: var(--shadow);
  border-top: 6px solid var(--red);
}

.callout-date {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--red);
  margin: 0.25rem 0 1rem;
}

.text-link {
  color: var(--red);
  font-weight: 900;
}

.section-red {
  width: 100%;
  max-width: none;
  background: var(--deep-red);
  color: var(--white);
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
}

.section-red .eyebrow,
.section-red code {
  color: #ffd8d8;
}

.section-red code {
  background: rgba(255, 255, 255, 0.14);
}

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

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

.event-card {
  color: var(--ink);
}

.news-section {
  display: grid;
  gap: 1.25rem;
}

.feed-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: -0.75rem;
}

.feed-tab {
  border: 1px solid rgba(208, 0, 0, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--deep-red);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0.55rem 0.9rem;
}

.feed-tab:hover,
.feed-tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.news-card .text-link {
  margin-top: auto;
}

.schedules-section {
  display: grid;
  gap: 1.25rem;
}

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

.schedule-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.schedule-details {
  display: grid;
  gap: 0.7rem;
  margin: 0;
}

.schedule-details div {
  display: grid;
  gap: 0.1rem;
}

.schedule-details dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-details dd {
  margin: 0;
  font-weight: 800;
}

.schedule-official {
  background: #1a0808;
  color: var(--white);
}

.schedule-official .event-date {
  background: rgba(255, 255, 255, 0.14);
  color: #ffd8d8;
}

.store-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  padding: 8.5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: 2rem;
  align-items: center;
}

.store-hero-copy h1 {
  color: var(--ink);
}

.store-hero-copy p {
  max-width: 620px;
}

.store-hero-image {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.store-secondary {
  color: var(--deep-red);
  border-color: rgba(208, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.store-secondary:hover {
  color: var(--white);
  background: var(--deep-red);
}

.store-intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1rem;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-card .price {
  margin: 0;
  color: var(--red);
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 950;
}

.product-card .button {
  margin-top: auto;
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  padding: 8.5rem 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 2rem;
  align-items: center;
}

.social-hero h1 {
  color: var(--ink);
}

.social-hero p {
  max-width: 680px;
}

.social-callout {
  box-shadow: var(--shadow);
  border-top: 6px solid var(--red);
}

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

.social-card,
.embed-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-card .button {
  margin-top: auto;
}

.embed-card code {
  display: block;
  white-space: normal;
  color: var(--muted);
}

.social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-tags span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  padding: 0.55rem 0.9rem;
}

.join-section {
  display: grid;
  gap: 2rem;
}

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

.membership-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  text-align: left;
}

.membership-card.is-featured {
  border-color: rgba(208, 0, 0, 0.55);
  box-shadow: var(--shadow);
}

.membership-card .price {
  margin: 0;
  color: var(--red);
  font-size: 2rem;
  line-height: 1;
  font-weight: 950;
}

.membership-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.membership-card li + li {
  margin-top: 0.35rem;
}

.membership-card .button {
  margin-top: auto;
}

.membership-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-paths {
  padding-top: 1rem;
}

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

.path-card {
  display: grid;
  gap: 0.8rem;
}

.path-card .button {
  justify-self: start;
}

.event-date {
  display: inline-flex;
  margin: 0 0 0.9rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(208, 0, 0, 0.1);
  color: var(--red);
  font-weight: 900;
}

.two-column {
  grid-template-columns: 0.7fr 1.3fr;
}

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

.sponsors {
  text-align: left;
}

.sponsors .section-heading {
  margin-left: 0;
  margin-right: 0;
}

.sponsor-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.sponsor-logo {
  min-height: 108px;
  display: grid;
  place-items: center;
  border: 2px dashed #d8cabb;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--muted);
  font-weight: 900;
}

.watch-site-section {
  padding-top: 1rem;
}

.watch-site-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: center;
  background: #1a0808;
  color: var(--white);
  border-radius: 8px;
  padding: 2rem;
}

.watch-site-panel .membership-card {
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cabaa7;
  border-radius: 8px;
  padding: 0.75rem;
  font: inherit;
  background: #fffdf9;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(208, 0, 0, 0.2);
  border-color: var(--red);
}

.honeypot {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #140606;
  color: rgba(255, 255, 255, 0.82);
  padding: 2rem 1rem;
  text-align: center;
}

.footer-logo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer p {
  margin: 0.25rem 0;
}

.thank-you-logo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.8rem;
  }

  .hero {
    min-height: 680px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, 0.68), transparent 45%);
  }

  .stats-band,
  .feature-list,
  .event-grid,
  .news-grid,
  .schedule-panel,
  .membership-grid,
  .path-grid,
  .store-hero,
  .store-intro,
  .product-grid,
  .social-hero,
  .social-grid,
  .embed-grid,
  .sponsor-row,
  .watch-site-panel,
  .split,
  .two-column,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .stats-band {
    margin-top: 0;
    padding-top: 2rem;
  }
}

@media (max-width: 560px) {
  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

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