@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Manrope:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");
:root {
  --ink: #10241d;
  --pine: #173e30;
  --paper: #f3f0e8;
  --white: #fff;
  --gold: #d4ad5d;
  --line: #d8d1c4;
  --muted: #66706b;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
}
.skip {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: -5rem;
  background: #fff;
  padding: 0.8rem 1rem;
}
.skip:focus {
  top: 1rem;
}
.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: #fff;
  border-bottom: 1px solid #ffffff30;
}
.brand img {
  display: block;
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
}
nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
nav a {
  text-decoration: none;
  font-size: 0.84rem;
  color: #ffffffc7;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: var(--gold);
  color: #13231d;
  font-weight: 600;
  cursor: pointer;
  transition:
    0.2s transform,
    0.2s background;
}
.button:hover {
  transform: translateY(-2px);
  background: #e3c47e;
}
.button--small {
  padding: 11px 19px;
  font-size: 0.83rem;
}
.button--gold {
  margin-top: 28px;
}
.button--dark {
  background: var(--ink);
  color: white;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.19em;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow--dark {
  color: #80672f;
}
.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero__image,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image {
  object-position: center 45%;
}
.hero__veil {
  background:
    linear-gradient(
      90deg,
      rgba(7, 22, 16, 0.92) 0%,
      rgba(7, 22, 16, 0.65) 46%,
      rgba(7, 22, 16, 0.15) 80%
    ),
    linear-gradient(0deg, rgba(7, 22, 16, 0.7), transparent 55%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 10vh;
}
.hero h1,
.section h2,
.dialog h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
  margin: 18px 0 0;
}
.hero h1 {
  font-size: clamp(4rem, 8.8vw, 8.5rem);
  max-width: 950px;
}
.hero__lead {
  max-width: 570px;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #ffffffc4;
  margin: 30px 0;
}
.actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.text-link {
  text-underline-offset: 5px;
  font-size: 0.9rem;
}
.hero__caption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  margin: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff88;
}
.section {
  padding-block: 120px;
}
.statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.section h2 {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
}
.statement h2 {
  max-width: 600px;
}
.large-copy {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  line-height: 1.35;
  margin-top: 55px;
}
.journey {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  counter-reset: x;
}
.journey li {
  position: relative;
  border-top: 1px solid var(--line);
  padding: 19px 0 19px 36px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}
.journey li:before {
  content: "↓";
  position: absolute;
  left: 0;
  color: #997c3c;
}
.network,
.rounds {
  background: var(--ink);
  color: white;
}
.network__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10vw;
}
.network h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}
.network__grid > div > p:last-child {
  max-width: 500px;
  color: #ffffff9c;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid #ffffff22;
}
.steps li > span {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--gold);
}
.steps strong {
  font-size: 1.05rem;
}
.steps p {
  margin: 5px 0 0;
  color: #ffffff80;
  font-size: 0.9rem;
}
.section-head {
  max-width: 800px;
  margin-bottom: 60px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  min-height: 430px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #f8f6f1;
}
.card--prime {
  background: var(--pine);
  color: white;
  border-color: var(--pine);
  transform: translateY(-18px);
}
.card__index {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold);
}
.card__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 58px;
}
.card h3 {
  font-family: var(--display);
  font-size: 2.25rem;
  line-height: 1.05;
  margin: 10px 0;
}
.card p:not(.card__label) {
  font-size: 0.9rem;
  color: var(--muted);
}
.card--prime p:not(.card__label) {
  color: #ffffffa6;
}
.card__link {
  margin-top: auto;
  padding: 16px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: none;
  text-align: left;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  color: inherit;
}
.card--prime .card__link {
  border-color: #ffffff30;
}
.card__buy {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  text-underline-offset: 4px;
  text-decoration: underline;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.prime {
  background: #d9d1c1;
}
.prime__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 8vw;
}
.prime__visual {
  height: 680px;
  overflow: hidden;
}
.prime__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prime__copy h2 {
  font-size: clamp(3rem, 5vw, 5.2rem);
}
.prime__copy > p:not(.eyebrow, .fine) {
  font-family: var(--display);
  font-size: 1.4rem;
  line-height: 1.4;
}
.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}
.pillars span {
  border: 1px solid #81755e;
  border-radius: 999px;
  padding: 8px 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.65rem;
}
.fine {
  font-size: 0.76rem;
  color: #5b625d;
  margin-top: 25px;
}
.payment-link {
  display: inline-flex;
  gap: 9px;
  margin: 18px 0 0 12px;
  padding: 0;
  border: 0;
  background: transparent;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}
.payment-note {
  max-width: 520px;
  margin: 14px 0 0 !important;
  font-family: var(--sans) !important;
  font-size: 0.72rem !important;
  color: #5b625d;
}
.next-event {
  background: #10241d;
  color: #fff;
}
.next-event__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
}
.next-event__image-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 4px 80px 4px 4px;
}
.next-event__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, #07110d99);
  pointer-events: none;
}
.next-event__image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
}
.next-event__image-wrap > span {
  position: absolute;
  z-index: 1;
  left: 25px;
  bottom: 23px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.next-event__copy h2 {
  margin: 18px 0 25px;
}
.next-event__when {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 18px 0 8px;
}
.next-event__when time {
  display: flex;
  align-items: center;
  gap: 11px;
}
.next-event__when time > strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(5.8rem, 8vw, 8.5rem);
  font-weight: 500;
  line-height: 0.72;
}
.next-event__when time > span {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 0.9;
}
.next-event__when time small {
  color: #ffffff80;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}
.next-event__divider {
  width: 1px;
  height: 75px;
  background: #ffffff30;
}
.next-event__when > p {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 8px;
  margin: 0;
  color: #fff;
}
.next-event__when > p strong {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 0.85;
}
.next-event__when > p small {
  align-self: end;
  color: #ffffff80;
  font-size: 0.62rem;
  text-transform: uppercase;
}
.next-event__lead {
  max-width: 570px;
  color: #ffffffbd;
  font-size: 1.06rem;
  line-height: 1.7;
}
.event-facts {
  margin: 32px 0 25px;
  border-top: 1px solid #ffffff24;
}
.event-facts > div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #ffffff24;
}
.event-facts dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.event-facts dd {
  margin: 0;
  font-size: 0.88rem;
}
.event-cost {
  max-width: 600px;
  color: #ffffffa8;
  font-size: 0.78rem;
  line-height: 1.65;
}
.event-cost strong {
  color: #fff;
}
.text-link--light {
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
}
.event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.event__intro > p:last-child {
  max-width: 470px;
  color: var(--muted);
}
.timeline {
  position: relative;
  padding-left: 26px;
  border-left: 1px solid #a88a4c;
}
.timeline article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 0 0 55px;
}
.timeline article:last-of-type {
  padding-bottom: 0;
}
.timeline time {
  font-family: var(--display);
  font-size: 1.55rem;
}
.timeline h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.6rem;
}
.timeline p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.rounds {
  background: #142d24;
}
.section-head--light {
  max-width: 850px;
}
.round-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #ffffff33;
}
.round-grid article {
  min-height: 220px;
  padding: 28px 18px;
  border-right: 1px solid #ffffff22;
}
.round-grid span {
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.5rem;
}
.round-grid h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 70px;
}
.closing {
  text-align: center;
  background: var(--gold);
}
.instagram {
  background: #e6e0d5;
}
.instagram__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  align-items: center;
}
.instagram h2 {
  max-width: 760px;
}
.instagram p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
}
.instagram__button {
  display: inline-flex;
  margin-top: 22px;
  text-decoration: none;
}
.instagram__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  width: 100%;
}
.instagram__gallery a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #d3cec3;
  box-shadow: 0 12px 30px #2519291a;
}
.instagram__gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}
.instagram__gallery a:hover img {
  transform: scale(1.035);
}
.instagram__handle {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 11px 15px;
  border-radius: 999px;
  background: #ffffffed;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 7px 25px #09171033;
}
.whatsapp {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 8px 14px 8px 8px;
  border: 1px solid #ffffff26;
  border-radius: 18px;
  background: linear-gradient(135deg, #22b861, #15934a);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 38px #06150d66, inset 0 1px #ffffff26;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px #06150d70, inset 0 1px #ffffff30;
}
.whatsapp:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
.whatsapp__icon {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #ffffff1f;
}
.whatsapp__icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}
.whatsapp__icon svg path + path {
  fill: currentColor;
  stroke: none;
}
.whatsapp__copy {
  display: flex;
  flex-direction: column;
  min-width: 112px;
}
.whatsapp__copy small {
  color: #ffffffb8;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.whatsapp__copy strong {
  margin-top: 2px;
  font-family: var(--display);
  font-size: 1.14rem;
  font-weight: 600;
}
.whatsapp__arrow {
  margin-left: 2px;
  color: #ffffffb8;
  font-size: 0.85rem;
}
.event-teaser {
  position: fixed;
  z-index: 20;
  left: 20px;
  bottom: 20px;
  width: 290px;
  border-radius: 18px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 35px #06150d55;
  transition: width 0.3s ease, border-radius 0.3s ease;
}
.event-teaser__open {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 82px;
  padding: 10px 45px 10px 10px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.event-teaser__date {
  display: flex;
  flex: 0 0 62px;
  height: 62px;
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 0.8;
}
.event-teaser__date small {
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
}
.event-teaser__details {
  display: flex;
  min-width: 0;
  flex-direction: column;
  white-space: nowrap;
  overflow: hidden;
}
.event-teaser__details > small {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.event-teaser__details > strong {
  margin-top: 3px;
  font-family: var(--display);
  font-size: 1.2rem;
}
.event-teaser__details > em {
  margin-top: 4px;
  font-size: 0.62rem;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.event-teaser__minimize {
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  border: 1px solid #10241d28;
  border-radius: 50%;
  background: #ffffff88;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
}
.event-teaser--collapsed {
  width: 82px;
  border-radius: 18px;
}
.event-teaser--collapsed .event-teaser__open {
  padding-right: 10px;
}
.event-teaser--collapsed .event-teaser__details {
  width: 0;
  opacity: 0;
}
.event-teaser--collapsed .event-teaser__minimize {
  top: -8px;
  right: -8px;
  background: #fff;
}
.closing h2 {
  font-size: clamp(4.5rem, 9vw, 9rem);
}
.closing p:not(.eyebrow) {
  font-family: var(--display);
  font-size: 1.4rem;
}
.closing .button {
  margin-top: 25px;
}
.footer {
  background: #0b1c16;
  color: #fff;
  padding: 60px 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer img {
  filter: brightness(0) invert(1);
  width: 150px;
  height: auto;
}
.footer p,
.footer a {
  font-size: 0.76rem;
  color: #ffffff80;
}
.footer__grid > div {
  text-align: right;
}
.footer a {
  text-underline-offset: 4px;
}
.footer__credit {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid #ffffff17;
  text-align: center;
}
.footer__credit a {
  color: #ffffffc7;
  font-weight: 600;
}
.footer__credit a:hover {
  color: #fff;
}
.dialog {
  width: min(900px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  border: 0;
  padding: 0;
  background: transparent;
}
.event-dialog {
  width: min(1050px, calc(100% - 24px));
  max-height: calc(100dvh - 24px);
  border: 0;
  padding: 0;
  border-radius: 24px;
  background: var(--paper);
}
.event-dialog::backdrop {
  background: #07110de8;
  backdrop-filter: blur(8px);
}
.event-dialog__panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 650px;
}
.event-dialog__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
  box-shadow: 0 6px 25px #07110d33;
}
.event-dialog__image {
  min-height: 100%;
  overflow: hidden;
}
.event-dialog__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-dialog__content {
  padding: clamp(40px, 6vw, 75px);
}
.event-dialog h2 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 5vw, 5rem);
}
.event-dialog__when {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 12px 0 22px;
  padding-bottom: 19px;
  border-bottom: 1px solid #d4cec3;
}
.event-dialog__when time {
  display: flex;
  align-items: center;
  gap: 10px;
}
.event-dialog__when time strong {
  color: #8c6d2d;
  font-family: var(--display);
  font-size: clamp(4.8rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.7;
}
.event-dialog__when time span {
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}
.event-dialog__when time small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.6rem;
}
.event-dialog__when > p {
  margin: 0;
  font-family: var(--display);
  font-size: 1.65rem;
  white-space: nowrap;
}
.event-dialog__when > p small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.58rem;
  text-transform: uppercase;
}
.event-dialog__meta {
  color: var(--muted);
  line-height: 1.7;
}
.event-dialog__schedule {
  padding: 0;
  margin: 28px 0;
  list-style: none;
  border-top: 1px solid #d4cec3;
}
.event-dialog__schedule li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid #d4cec3;
  font-size: 0.85rem;
}
.event-dialog__schedule time {
  color: #84692f;
  font-weight: 700;
}
.event-dialog__cost {
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.6;
}
.event-dialog__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
}
.event-dialog__actions > a {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  text-underline-offset: 4px;
}
.dialog::backdrop {
  background: #07110ddd;
  backdrop-filter: blur(7px);
}
.dialog__panel {
  position: relative;
  background: var(--paper);
  padding: 50px;
  border-radius: 24px;
  max-height: calc(100dvh - 24px);
  overflow: auto;
}
.dialog__close {
  position: absolute;
  right: 22px;
  top: 15px;
  border: 0;
  background: none;
  font-size: 2rem;
  cursor: pointer;
}
.dialog h2 {
  font-size: 3.8rem;
}
.dialog__intro {
  color: var(--muted);
  max-width: 650px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.dialog label,
.dialog legend {
  font-size: 0.78rem;
  font-weight: 600;
}
.dialog input,
.dialog select,
.dialog textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  border: 1px solid #c9c3b8;
  background: #fff;
  border-radius: 9px;
  padding: 12px;
  color: var(--ink);
}
.dialog input:focus,
.dialog select:focus,
.dialog textarea:focus {
  outline: 3px solid #d4ad5d55;
  border-color: #9e7d39;
}
.dialog fieldset {
  border: 0;
  padding: 0;
  margin: 25px 0;
}
.choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 9px;
}
.choices label {
  position: relative;
}
.choices input {
  position: absolute;
  opacity: 0;
}
.choices span {
  display: block;
  border: 1px solid #c9c3b8;
  background: #fff;
  padding: 13px;
  border-radius: 9px;
  text-align: center;
}
.choices input:checked + span {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.question {
  display: block;
}
.consent {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-top: 22px;
  font-weight: 400 !important;
  line-height: 1.5;
}
.consent input {
  margin: 2px 0 0;
  width: 18px;
  height: 18px;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
}
.form-status {
  font-size: 0.82rem;
  margin: 0;
}
.form-status.error {
  color: #a11f1f;
}
.trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
}
.success {
  padding: 50px 0;
}
.success h3 {
  font-family: var(--display);
  font-size: 3rem;
  margin: 0;
}
.success p {
  color: var(--muted);
}
.success__payment {
  display: inline-flex;
  margin-top: 18px;
  text-decoration: none;
}
@media (max-width: 900px) {
  .header nav {
    display: none;
  }
  .header {
    height: 76px;
  }
  .brand img {
    width: 125px;
  }
  .section {
    padding-block: 84px;
  }
  .statement,
  .network__grid,
  .prime__grid,
  .event,
  .instagram__grid,
  .next-event__grid {
    grid-template-columns: 1fr;
  }
  .statement,
  .network__grid,
  .prime__grid,
  .event,
  .next-event__grid {
    gap: 54px;
  }
  .large-copy {
    margin-top: 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 340px;
  }
  .card--prime {
    transform: none;
  }
  .prime__visual {
    height: 500px;
    order: 2;
  }
  .instagram__gallery {
    max-width: 720px;
  }
  .next-event__image-wrap {
    min-height: 500px;
  }
  .event-dialog__panel {
    grid-template-columns: 0.75fr 1.25fr;
  }
  .round-grid {
    grid-template-columns: 1fr;
  }
  .round-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #ffffff22;
    display: grid;
    grid-template-columns: 45px 1fr;
    align-items: center;
  }
  .round-grid h3 {
    margin: 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__grid > div {
    text-align: left;
  }
  .hero__content {
    padding-bottom: 12vh;
  }
  .hero__veil {
    background: linear-gradient(
      0deg,
      rgba(7, 22, 16, 0.92) 0%,
      rgba(7, 22, 16, 0.35) 85%
    );
  }
  .hero__image {
    object-position: 38% center;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }
  .header {
    padding-inline: 15px;
  }
  .button--small {
    font-size: 0.72rem;
    padding: 10px 14px;
  }
  .hero {
    min-height: 700px;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 5rem);
  }
  .hero__lead {
    font-size: 0.95rem;
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .section h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }
  .section {
    padding-block: 70px;
  }
  .statement {
    grid-template-columns: 1fr;
  }
  .prime__visual {
    height: 400px;
  }
  .form-grid,
  .choices {
    grid-template-columns: 1fr;
  }
  .dialog__panel {
    padding: 42px 20px 25px;
  }
  .dialog h2 {
    font-size: 2.8rem;
  }
  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .form-footer .button {
    width: 100%;
  }
  .timeline article {
    grid-template-columns: 75px 1fr;
  }
  .hero__caption {
    display: none;
  }
  .whatsapp__copy,
  .whatsapp__arrow {
    display: none;
  }
  .whatsapp {
    padding: 8px;
    right: 14px;
    bottom: 14px;
    min-height: 0;
    border-radius: 16px;
  }
  .whatsapp__icon {
    width: 46px;
    height: 46px;
  }
  .event-teaser {
    left: 14px;
    bottom: 14px;
    width: min(280px, calc(100vw - 86px));
  }
  .event-teaser--collapsed {
    width: 78px;
  }
  .event-teaser__open {
    min-height: 78px;
  }
  .event-teaser__date {
    flex-basis: 58px;
    height: 58px;
  }
  .next-event__image-wrap {
    min-height: 390px;
    border-radius: 4px 45px 4px 4px;
  }
  .event-facts > div {
    grid-template-columns: 85px 1fr;
  }
  .event-dialog {
    width: calc(100% - 16px);
    max-height: calc(100dvh - 16px);
  }
  .event-dialog__panel {
    display: block;
    min-height: 0;
  }
  .event-dialog__image {
    height: 190px;
  }
  .event-dialog__content {
    padding: 28px 20px 30px;
  }
  .event-dialog h2 {
    font-size: 2.8rem;
  }
  .event-dialog__when {
    align-items: flex-start;
    flex-direction: column;
  }
  .event-dialog__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .event-dialog__actions .button {
    width: 100%;
  }
  .instagram__gallery {
    display: flex;
    gap: 10px;
    width: calc(100vw - 15px);
    margin-right: -15px;
    padding-right: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .instagram__gallery::-webkit-scrollbar {
    display: none;
  }
  .instagram__gallery a {
    flex: 0 0 min(76vw, 310px);
    scroll-snap-align: start;
  }
  .instagram__handle {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
.legal {
  max-width: 820px;
}
.legal__eyebrow {
  margin-top: 60px;
}
.legal h1 {
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
}
.legal h2 {
  font-family: var(--display);
  font-size: 2rem;
}
