:root {
  --olive-bright: #7d752f;
  --olive: #8c8130;
  --olive-dark: #585323;
  --iron: #191911;
  --bone: #e2e1dc;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--bone);
  font-family: "Work Sans", sans-serif;
  background:
    radial-gradient(circle at 24% 18%, rgba(140, 129, 48, 0.28), transparent 30%),
    radial-gradient(circle at 82% 78%, rgba(88, 83, 35, 0.24), transparent 34%),
    linear-gradient(145deg, #050505 0%, #12120c 52%, var(--iron) 100%);
}

main {
  display: grid;
  padding: 32px 24px 24px;
  gap: 24px;
  justify-items: center;
}

.card,
.event-banner,
.content-section,
.site-footer {
  width: min(100%, 1120px);
}

.card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 15, 15, 0.72);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 16px;
  display: flex;
  width: min(calc(100% - 48px), 1120px);
  min-height: 64px;
  margin: 16px auto 0;
  padding: 9px 10px 9px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10, 10, 8, 0.88);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.nav-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: auto;
  height: 38px;
}

.nav-logo-name {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}

.site-nav a {
  color: rgba(230, 230, 230, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav .nav-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  border-radius: 999px;
  color: var(--iron);
  background: var(--olive);
}

.menu-toggle {
  display: none;
  width: 46px;
  min-height: 46px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle-bars {
  display: grid;
  gap: 5px;
}

.menu-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 34px;
}

.brand-mark {
  display: block;
  width: auto;
  height: 68px;
  flex: 0 0 auto;
}

.brand-name {
  display: block;
  width: min(62vw, 260px);
  height: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--olive);
  font-family: "Oswald", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(3.1rem, 6.2vw, 4.65rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.intro {
  max-width: 34rem;
  margin: 28px 0 0;
  color: rgba(230, 230, 230, 0.76);
  font-size: 1.1rem;
  line-height: 1.65;
}

.updates {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.updates h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.updates p {
  margin: 10px 0 0;
  color: rgba(230, 230, 230, 0.62);
  line-height: 1.6;
}

.form-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: rgba(230, 230, 230, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
}

input,
button {
  min-height: 52px;
  font: inherit;
}

input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

input::placeholder {
  color: rgba(230, 230, 230, 0.42);
}

input:focus {
  outline: 3px solid rgba(140, 129, 48, 0.28);
  border-color: rgba(140, 129, 48, 0.72);
}

.form-trap {
  position: absolute;
  left: -5000px;
}

button {
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  color: var(--iron);
  background: var(--olive);
  font-weight: 700;
  cursor: pointer;
}

.submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.submit-row button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.note {
  margin: 0;
  color: rgba(230, 230, 230, 0.46);
  font-size: 0.84rem;
}

.privacy-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(230, 230, 230, 0.46);
  font-size: 0.8rem;
  line-height: 1.55;
}

.content-section {
  padding: clamp(34px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(15, 15, 15, 0.54);
}

.section-heading {
  max-width: 730px;
}

.section-heading h2,
.why-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.why-copy > p:last-child {
  margin: 22px 0 0;
  color: rgba(230, 230, 230, 0.68);
  font-size: 1.06rem;
  line-height: 1.75;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.foundation-note {
  margin: 0;
  padding: clamp(26px, 4vw, 42px);
  border-left: 4px solid var(--olive);
  border-radius: 0 22px 22px 0;
  color: var(--white);
  background: rgba(140, 129, 48, 0.12);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.25;
  text-transform: uppercase;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.audience-card {
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}

.audience-card .number {
  display: block;
  margin-bottom: 24px;
  color: var(--olive);
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.audience-card p {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "+";
  color: var(--olive);
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  transform: translateY(-52%);
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 780px;
  margin: -2px 58px 22px 24px;
  color: rgba(230, 230, 230, 0.66);
  line-height: 1.7;
}

.location-line {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(230, 230, 230, 0.62);
  font-size: 0.95rem;
  font-weight: 600;
}

.location-line svg {
  width: 18px;
  height: 18px;
  color: var(--olive);
  flex: 0 0 auto;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  padding: 0 13px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(230, 230, 230, 0.68);
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(140, 129, 48, 0.7);
  color: var(--white);
  background: rgba(140, 129, 48, 0.12);
}

.social-links svg {
  width: 18px;
  height: 18px;
  color: var(--olive);
  flex: 0 0 auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: rgba(230, 230, 230, 0.48);
  font-size: 0.82rem;
  line-height: 1.5;
}

.site-footer .location-line {
  justify-self: start;
}

@media (max-width: 1160px) {
  .card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 84px;
  }

  .site-header {
    top: 10px;
    display: flex;
    width: calc(100% - 24px);
    min-height: 58px;
    padding: 8px 8px 8px 14px;
    flex-wrap: wrap;
    gap: 8px;
    border-radius: 20px;
  }

  .nav-logo-mark {
    height: 34px;
  }

  .nav-logo-name {
    width: 140px;
  }

  .js .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    flex: 0 0 100%;
    width: 100%;
    padding-top: 8px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .js .site-nav {
    display: none;
  }

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

  .site-nav a {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  .site-nav .nav-cta {
    min-height: 44px;
    margin-top: 4px;
    justify-content: center;
  }

  main {
    padding: 12px;
  }

  .card {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

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

  .card > div:first-child {
    text-align: center;
  }

  .brand-lockup {
    gap: 10px;
    margin-bottom: 28px;
    justify-content: center;
    width: 100%;
  }

  .brand-mark {
    height: 54px;
  }

  .brand-name {
    width: min(70vw, 230px);
  }

  h1,
  .intro {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .site-footer .location-line {
    justify-self: center;
  }

  .form-shell {
    grid-template-columns: 1fr;
  }

  .submit-row {
    display: grid;
  }

  .submit-row button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .nav-logo-name {
    width: 128px;
  }

  .content-section {
    padding: 28px 22px;
    border-radius: 22px;
  }
}

.event-banner {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 34px);
  min-height: 164px;
  padding: 14px clamp(20px, 3vw, 30px) 14px 14px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(140, 129, 48, 0.58);
  border-radius: 24px;
  background:
    linear-gradient(100deg, rgba(140, 129, 48, 0.23), rgba(255, 255, 255, 0.035) 58%, rgba(140, 129, 48, 0.12));
  box-shadow: inset 4px 0 0 var(--olive);
}

.event-banner-date {
  display: grid;
  min-height: 132px;
  padding: 13px 10px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(140, 129, 48, 0.55);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(140, 129, 48, 0.24), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.2);
  font-family: "Oswald", sans-serif;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.event-banner-date span {
  color: var(--olive);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.event-banner-date strong {
  margin: 2px 0 5px;
  font-size: 3.5rem;
  letter-spacing: -0.05em;
}

.event-banner-date small {
  color: rgba(230, 230, 230, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.event-banner-image {
  display: block;
  height: 136px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.event-banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 180ms ease;
}

.event-banner-image:hover img,
.event-banner-image:focus-visible img {
  transform: scale(1.025);
}

.event-banner-copy .event-banner-label {
  margin: 0 0 8px;
  color: var(--olive);
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.event-banner-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.event-banner-copy > p:not(.event-banner-label) {
  max-width: 42rem;
  margin: 8px 0 0;
  color: rgba(230, 230, 230, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.event-banner-cta {
  display: inline-flex;
  min-height: 44px;
  padding: 11px 18px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--olive);
  color: var(--iron);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}

.event-banner-cta:hover,
.event-banner-cta:focus-visible {
  background: #aaa04a;
  transform: translateY(-1px);
}

@media (max-width: 840px) {
  .event-banner {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .event-banner-image,
  .event-banner-date {
    height: 124px;
    min-height: 124px;
  }

  .event-banner-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: -12px;
  }
}

@media (max-width: 560px) {
  .event-banner {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    padding: 12px 16px 16px 12px;
    border-radius: 20px;
  }

  .event-banner-image,
  .event-banner-date {
    height: 104px;
    min-height: 104px;
  }

  .event-banner-date strong {
    font-size: 2.75rem;
  }

  .event-banner-date small {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .event-banner-copy .event-banner-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .event-banner-copy h2 {
    font-size: 1.55rem;
  }

  .event-banner-copy > p:not(.event-banner-label) {
    display: none;
  }

  .event-banner-cta {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
    justify-content: center;
  }
}
