:root {
  color-scheme: light;
  --ink: #151718;
  --muted: #5d6463;
  --paper: #f7f3ec;
  --panel: #fffaf1;
  --line: rgba(21, 23, 24, 0.14);
  --gold: #b88438;
  --gold-dark: #80551d;
  --green: #123a32;
  --red: #b70818;
  --red-dark: #69070d;
  --red-black: #220407;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 22, 20, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

.footer a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, 0.76fr) minmax(420px, 1fr);
  gap: clamp(22px, 4vw, 62px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 4.2vw, 58px) clamp(20px, 5vw, 74px) 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 16%, rgba(183, 8, 24, 0.34), transparent 28%),
    linear-gradient(135deg, #060706 0%, #120507 42%, #32070d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 14px;
  background: var(--red);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(650px, 100%);
}

.hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -32px -26px -28px;
  background: linear-gradient(90deg, rgba(9, 11, 10, 0.58), rgba(9, 11, 10, 0));
  border-radius: 8px;
}

.hero-main-logo {
  display: block;
  width: clamp(102px, 10vw, 148px);
  height: clamp(102px, 10vw, 148px);
  margin-bottom: clamp(14px, 1.8vw, 22px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 16px;
  box-shadow: 0 24px 90px rgba(183, 8, 24, 0.34);
}

.eyebrow,
.section-kicker,
.tile-label,
.panel-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 6.3vw, 6.65rem);
  line-height: 0.88;
  letter-spacing: 0;
  max-width: 10.8ch;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-line {
  width: min(520px, 100%);
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
  line-height: 1.16;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-copy {
  width: min(560px, 100%);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.42;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

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

.button.primary:hover {
  background: #d71928;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.deadline-card {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 24px;
  z-index: 3;
  width: min(292px, calc(100% - 40px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.deadline-card span,
.deadline-card small {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.deadline-card strong {
  display: block;
  margin: 8px 0;
  font-size: 2rem;
}

.hero-collage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, minmax(58px, 9.3vh));
  gap: 16px;
  min-height: min(580px, calc(100svh - 72px));
}

.hero-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  pointer-events: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-main {
  grid-column: 1 / 8;
  grid-row: 1 / 6;
}

.hero-photo-a {
  grid-column: 5 / 9;
  grid-row: 4 / 7;
}

.hero-photo-b {
  grid-column: 6 / 9;
  grid-row: 1 / 3;
}

.band,
.details,
.signup {
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 8vw, 96px);
  align-items: end;
  background: var(--green);
  color: var(--white);
}

.intro p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.14rem;
  line-height: 1.75;
}

.community {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 1.2fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
  background:
    radial-gradient(circle at 0 10%, rgba(220, 12, 28, 0.34), transparent 34%),
    linear-gradient(90deg, #130405 0%, #230407 48%, #3a050b 100%);
  color: var(--white);
}

.community::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--red);
}

.community-copy {
  position: sticky;
  top: 110px;
}

.community-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 30px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(183, 8, 24, 0.32);
}

.community-copy p:last-child {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.photo-wall {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 128px;
  gap: 14px;
}

.photo-card {
  position: relative;
  grid-column: span 2;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #2a2420;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.photo-card.large {
  grid-column: span 3;
  grid-row: span 4;
}

.photo-card.wide {
  grid-column: span 5;
  grid-row: span 2;
}

.photo-card.panoramic {
  grid-column: span 5;
  grid-row: span 2;
}

.portrait-anchor img {
  object-position: 50% 28%;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.02);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.section-head {
  width: min(820px, 100%);
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 12ch;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.detail-tile {
  min-height: 240px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.detail-tile strong {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
}

.detail-tile p {
  color: var(--muted);
  line-height: 1.55;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 520px);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 84px);
  background:
    linear-gradient(90deg, rgba(183, 8, 24, 0.08), transparent 42%),
    #101413;
  color: var(--white);
}

.location-copy p:last-child {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
}

.location-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(183, 8, 24, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.location-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--red);
}

.location-badge {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
}

.location-panel h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.95;
}

.location-panel address {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  line-height: 1.65;
}

.location-panel dl {
  display: grid;
  gap: 18px;
  margin: 30px 0;
}

.location-panel dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.location-panel dt {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.location-button {
  width: fit-content;
}

.experience {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 88px);
  background: var(--panel);
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item span {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
}

.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.signup {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(135deg, #f8f2e7 0%, #eef1ec 100%);
}

.form-panel {
  width: 100%;
  max-width: 900px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(183, 8, 24, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-panel::before {
  content: "";
  display: block;
  height: 8px;
  margin: calc(clamp(22px, 3vw, 34px) * -1) calc(clamp(22px, 3vw, 34px) * -1) 26px;
  border-radius: 8px 8px 0 0;
  background: var(--red);
}

.form-panel h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1;
}

.form-panel p,
.form-placeholder p {
  color: var(--muted);
  line-height: 1.65;
}

.form-embed {
  position: relative;
  min-height: 820px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(21, 23, 24, 0.12);
  border-radius: 8px;
  background: #eef1f8;
}

.form-embed iframe {
  display: block;
  width: 99%;
  min-height: 820px;
  height: 820px;
  border: 0;
  background: #eef1f8;
}

.form-embed.is-loaded .form-placeholder {
  display: none;
}

.form-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 34px;
  text-align: center;
}

.form-placeholder strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.form-placeholder p {
  margin: 0 auto;
  max-width: 30ch;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px clamp(20px, 6vw, 84px);
  color: rgba(255, 255, 255, 0.72);
  background: #101413;
}

.footer p {
  margin: 0;
}

.feedback-disclaimer {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100% - 36px));
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(16, 20, 19, 0.92);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
  line-height: 1.45;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero-collage {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    min-height: 0;
    filter: saturate(0.9);
  }

  .hero-collage::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 11, 10, 0.9), rgba(9, 11, 10, 0.42));
  }

  .intro,
  .community,
  .location,
  .experience,
  .signup {
    grid-template-columns: 1fr;
  }

  .community-copy {
    position: static;
  }

  .photo-wall {
    grid-auto-rows: 132px;
  }

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

  .deadline-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100svh;
    padding: 22px 18px 22px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 15vw, 4.65rem);
  }

  .hero-main-logo {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.6;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .photo-wall {
    display: block;
  }

  .photo-card,
  .photo-card.large,
  .photo-card.wide {
    height: 260px;
    margin-bottom: 14px;
  }

  .detail-tile {
    min-height: 190px;
  }

  .timeline-item {
    grid-template-columns: 42px 1fr;
  }

  .form-panel {
    padding: 16px;
  }

  .form-panel h3 {
    max-width: 100%;
    font-size: clamp(1.85rem, 9vw, 2.2rem);
    line-height: 1;
    overflow-wrap: normal;
  }

  .form-embed,
  .form-embed iframe {
    min-height: 820px;
    height: 820px;
  }

  .footer {
    display: block;
  }

  .footer a {
    display: inline-block;
    margin-top: 12px;
  }

  .feedback-disclaimer {
    right: 12px;
    bottom: 12px;
    font-size: 0.78rem;
  }
}
