:root {
  --ink: #17110f;
  --coal: #211917;
  --wine: #5d2020;
  --wine-dark: #351312;
  --gold: #f2c14e;
  --gold-soft: #fff1bd;
  --paper: #fffaf0;
  --cream: #f7efe2;
  --white: #ffffff;
  --muted: #6f6259;
  --line: rgba(35, 25, 21, .16);
  --success: #1f7a43;
  --danger: #a83232;
  --shadow: 0 18px 50px rgba(26, 14, 10, .16);
  --radius: 8px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, .94);
  border-bottom: 1px solid rgba(35, 25, 21, .12);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 126px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav__link {
  padding: 10px 13px;
  border-radius: 999px;
  color: #4d4039;
  font-size: 14px;
  font-weight: 700;
  transition: background .2s var(--ease), color .2s var(--ease);
}

.nav__link:hover {
  background: rgba(242, 193, 78, .18);
  color: var(--wine);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

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

.btn--header {
  min-height: 42px;
  padding: 11px 18px;
  background: var(--wine);
  color: var(--white);
  font-size: 14px;
}

.btn--gold {
  background: linear-gradient(180deg, #ffe08b 0%, var(--gold) 100%);
  color: #28170d;
  box-shadow: 0 12px 28px rgba(242, 193, 78, .28);
}

.btn--gold:hover {
  box-shadow: 0 16px 34px rgba(242, 193, 78, .36);
}

.btn--lg {
  min-height: 56px;
  padding-inline: 34px;
  font-size: 16px;
}

.btn--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: clamp(40px, 5vw, 58px) 0;
  background: var(--coal);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 11, 10, .95) 0%, rgba(18, 11, 10, .84) 40%, rgba(18, 11, 10, .48) 100%),
    url("https://static.wixstatic.com/media/12c8d5_f8a39003fe9f4897ad7e73fd92b9e8f7~mv2.jpg/v1/fill/w_1600,h_900,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/12c8d5_f8a39003fe9f4897ad7e73fd92b9e8f7~mv2.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
}

.hero__copy {
  max-width: 760px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.event-meta span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Montserrat", "Inter", sans-serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 790px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(34px, 3.65vw, 46px);
  font-weight: 900;
}

.hero__lead {
  max-width: 660px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.65vw, 20px);
}

.hero__time {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__time strong {
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(38px, 5vw, 52px);
  line-height: 1;
}

.hero__time span {
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero__actions span {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 700;
}

.hero__visual {
  justify-self: end;
  width: min(100%, 260px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.hero__visual img {
  width: 100%;
  border-radius: calc(var(--radius) - 2px);
}

.section {
  padding: clamp(68px, 9vw, 120px) 0;
}

.section--dark {
  background: #120c0b;
  color: var(--white);
}

.section--form {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .92), rgba(255, 250, 240, .98)),
    url("https://static.wixstatic.com/media/12c8d5_d9fdbff9fd384bafaca40f41fb9a0b19~mv2.jpg/v1/fill/w_1600,h_640,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/12c8d5_d9fdbff9fd384bafaca40f41fb9a0b19~mv2.jpg") center / cover no-repeat;
}

.section--light {
  background: var(--cream);
}

.section--audience {
  background: #1b1210;
  color: var(--white);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.intro__media img,
.split__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.intro__text h2,
.form-copy h2,
.split__text h2,
.section__head h2,
.final-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
}

.intro__text p,
.split__text p,
.final-cta p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .74);
  font-size: 17px;
}

.split__text p {
  color: var(--muted);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--wine);
}

.link-cta {
  display: inline-flex;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 900;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 460px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.form-copy {
  padding-top: 24px;
}

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

.benefits li {
  position: relative;
  padding-left: 26px;
  color: #463832;
  font-weight: 700;
}

.benefits li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 5px rgba(93, 32, 32, .12);
}

.signup {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(93, 32, 32, .18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.signup__head {
  margin-bottom: 22px;
}

.signup__head strong {
  display: block;
  color: var(--wine);
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 900;
}

.signup__head span {
  color: var(--muted);
  font-size: 14px;
}

.signup label:not(.check) {
  display: block;
  margin: 14px 0 6px;
  color: #352720;
  font-size: 13px;
  font-weight: 800;
}

.signup input[type="text"],
.signup input[type="email"],
.signup input[type="tel"] {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d7c9ba;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fffdf8;
  outline: none;
  transition: border .2s var(--ease), box-shadow .2s var(--ease);
}

.signup input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 4px rgba(93, 32, 32, .11);
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.check input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--wine);
}

.check a {
  color: var(--wine);
  font-weight: 800;
}

.signup__note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-message {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
}

.form-message.is-success {
  display: block;
  background: rgba(31, 122, 67, .1);
  color: var(--success);
}

.form-message.is-error {
  display: block;
  background: rgba(168, 50, 50, .1);
  color: var(--danger);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.address {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 22px;
  border-left: 5px solid var(--wine);
  border-radius: var(--radius);
  background: var(--white);
}

.address span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.address strong {
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
}

.address small {
  color: var(--muted);
  font-size: 14px;
}

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.section__head h2 {
  color: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.audience-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.audience-card span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 900;
}

.audience-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 22px;
}

.audience-card p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.final-cta {
  position: relative;
  padding: clamp(80px, 10vw, 135px) 0;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 11, 10, .84), rgba(18, 11, 10, .92)),
    url("https://static.wixstatic.com/media/12c8d5_d9fdbff9fd384bafaca40f41fb9a0b19~mv2.jpg/v1/fill/w_1600,h_760,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/12c8d5_d9fdbff9fd384bafaca40f41fb9a0b19~mv2.jpg") center / cover no-repeat;
}

.final-cta__inner {
  position: relative;
  max-width: 760px;
}

.final-cta span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.footer {
  padding: 46px 0;
  background: #090706;
  color: rgba(255, 255, 255, .72);
  text-align: center;
}

.footer__inner {
  max-width: 840px;
}

.footer img {
  width: 190px;
  margin: 0 auto 18px;
}

.footer p {
  margin: 0 auto 18px;
  font-size: 14px;
  text-transform: uppercase;
}

.footer small {
  display: block;
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
}

.footer small + small {
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .header__inner {
    min-height: 70px;
  }

  .btn--header {
    display: none;
  }

  .burger {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav__link {
    padding: 13px 14px;
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
  }

  .hero__inner,
  .intro,
  .form-layout,
  .split {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: start;
    max-width: 330px;
  }

  .form-layout {
    gap: 28px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1140px);
  }

  .brand img {
    width: 104px;
  }

  .hero {
    padding: 54px 0 68px;
  }

  .hero__bg {
    background:
      linear-gradient(180deg, rgba(18, 11, 10, .95), rgba(18, 11, 10, .7)),
      url("https://static.wixstatic.com/media/12c8d5_f8a39003fe9f4897ad7e73fd92b9e8f7~mv2.jpg/v1/fill/w_900,h_1200,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/12c8d5_f8a39003fe9f4897ad7e73fd92b9e8f7~mv2.jpg") center / cover no-repeat;
  }

  .event-meta span {
    width: 100%;
    text-align: center;
  }

  .hero__time {
    display: block;
  }

  .hero__time span {
    display: block;
    margin-top: 6px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    width: 250px;
  }

  .section {
    padding: 58px 0;
  }

  .signup {
    padding: 22px;
  }

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

  .audience-card {
    min-height: auto;
  }
}
