:root {
  --black: #050505;
  --black-soft: #0b0b0d;
  --black-card: #111113;
  --off-white: #f5f2ed;
  --champagne: #e9ddcf;
  --gold-dark: #85412a;
  --gold: #c36f52;
  --gold-light: #e1a692;
  --copper: #b76548;
  --white: #fff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.48);
  --line: rgba(225, 166, 146, 0.18);
  --line-dark: rgba(5, 5, 5, 0.12);
  --gradient-gold: linear-gradient(120deg, #85412a 0%, #a6573c 24%, #e1a692 48%, #c36f52 70%, #984d33 100%);
  --font-display: "Manrope", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1180px;
  --section: clamp(72px, 10vw, 120px);
  --radius: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  padding-top: 18px;
}

.brand img {
  width: clamp(142px, 20vw, 212px);
}

.header-note {
  color: rgba(255, 255, 255, 0.6);
  font: 700 0.68rem/1 var(--font-display);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: clamp(126px, 15vw, 175px) 0 72px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0) 70%, var(--black) 100%),
    radial-gradient(circle at 75% 20%, rgba(195, 111, 82, 0.08), transparent 32%),
    var(--black);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow,
.offer-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero-glow-one {
  width: 540px;
  height: 540px;
  right: -250px;
  top: 5%;
  background: radial-gradient(circle, rgba(183, 101, 72, 0.14), transparent 70%);
}

.hero-glow-two {
  width: 380px;
  height: 380px;
  left: -230px;
  bottom: 0;
  background: radial-gradient(circle, rgba(225, 166, 146, 0.1), transparent 70%);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin-bottom: 15px;
  color: var(--gold-light);
  font: 800 0.72rem/1.35 var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.45rem, 8.5vw, 5.35rem);
  line-height: 0.98;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 6.2vw, 4.1rem);
  line-height: 1.02;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.15;
}

.text-gold {
  color: var(--gold-light);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  max-width: 420px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.7;
}

.date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}

.date-row span,
.date-row time {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  font: 700 0.76rem/1 var(--font-display);
}

.date-row .date-label {
  flex-basis: 100%;
  min-height: auto;
  margin: 0 0 3px;
  padding: 0 2px 8px;
  border-color: transparent;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.date-row time {
  color: var(--gold-light);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(195, 111, 82, 0.65);
}

.hero-photo {
  position: relative;
  width: min(100%, 470px);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(225, 166, 146, 0.22);
  border-radius: 32px 32px 10px 32px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.78), transparent 35%);
}

.hero-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}

.hero-photo figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-photo figcaption strong {
  color: var(--gold-light);
  font: 700 0.94rem/1.1 var(--font-display);
}

.early-cta {
  display: grid;
  justify-items: start;
  margin-top: 28px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0 0 2px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  font: 500 1.15rem/1 Arial, sans-serif;
  animation: scrollCue 1.8s ease-in-out infinite;
}

.scroll-cue:hover .scroll-arrow {
  border-color: rgba(225, 166, 146, 0.45);
}

@keyframes scrollCue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }

  50% {
    transform: translateY(7px);
    opacity: 1;
  }
}
.early-cta .button {
  width: min(100%, 390px);
}

.early-cta-light {
  justify-items: center;
  margin-top: 30px;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--black-soft);
}

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

.proof-strip-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 106px;
  padding: 24px 10px;
  border-right: 1px solid var(--line);
}

.proof-strip-grid > div:nth-child(2n) {
  border-right: 0;
}

.proof-strip-grid > div:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--gold-light);
  font: 700 1rem/1.2 var(--font-display);
}

.proof-strip span {
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 0.72rem;
}

.section {
  position: relative;
  padding: var(--section) 0;
}

.section-dark {
  background: var(--black);
}

.section-soft {
  background: var(--black-soft);
}

.section-light {
  background: var(--off-white);
  color: var(--black);
}

.section-champagne {
  background: var(--champagne);
  color: var(--black);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(36px, 6vw, 60px);
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 18px;
  color: var(--text-soft);
}

.section-heading.dark p:not(.eyebrow) {
  color: rgba(5, 5, 5, 0.62);
}

.section-heading.dark .eyebrow {
  color: var(--gold-dark);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.photo-mosaic figure {
  min-height: 230px;
  overflow: hidden;
  background: #ddd;
}

.photo-mosaic figure:first-child {
  border-radius: 26px 6px 6px 6px;
}

.photo-mosaic figure:nth-child(2) {
  border-radius: 6px 26px 6px 6px;
}

.photo-mosaic figure:nth-child(3) {
  border-radius: 6px 6px 6px 26px;
}

.photo-mosaic figure:last-child {
  border-radius: 6px 6px 26px 6px;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.photo-mosaic figure:hover img {
  transform: scale(1.025);
}

.split-heading {
  display: grid;
  gap: 52px;
}

.split-heading > div:first-child h2 {
  max-width: 720px;
}

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

.detail-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list article > span {
  color: var(--gold);
  font: 700 0.72rem/1.4 var(--font-display);
  letter-spacing: 0.12em;
}

.detail-list p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.day-grid {
  display: grid;
  gap: 16px;
}

.day-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
}

.day-card-dark {
  background: var(--black);
  color: var(--white);
}

.day-time {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(133, 65, 42, 0.1);
  color: var(--gold-dark);
  font: 800 0.68rem/1 var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.day-card-dark .day-time {
  background: rgba(225, 166, 146, 0.12);
  color: var(--gold-light);
}

.day-card > p {
  margin-top: 14px;
  color: rgba(5, 5, 5, 0.65);
}

.day-card-dark > p {
  color: var(--text-soft);
}

.day-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.day-card li {
  padding-top: 10px;
  border-top: 1px solid rgba(5, 5, 5, 0.11);
  font-size: 0.9rem;
  font-weight: 600;
}

.day-card-dark li {
  border-top-color: var(--line);
}

.content-grid {
  display: grid;
  align-items: center;
  gap: 46px;
}

.content-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px 32px 8px 32px;
}

.content-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(225, 166, 146, 0.2);
  border-radius: inherit;
  pointer-events: none;
}

.content-photo img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.content-photo.content-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 9px;
  overflow: visible;
  border-radius: 0;
}

.content-collage::after {
  display: none;
}

.content-collage figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(225, 166, 146, 0.2);
}

.content-collage-main {
  min-height: 410px;
  border-radius: 8px 28px 8px 28px;
}

.content-collage-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.content-collage-side figure:first-child {
  border-radius: 28px 8px 8px 8px;
}

.content-collage-side figure:last-child {
  border-radius: 8px 8px 28px 8px;
}

.content-collage img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 32px;
}

.topic-grid span {
  padding: 15px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.8rem;
  font-weight: 600;
}

.content-note {
  margin-top: 26px;
  color: var(--text-soft);
}

.audience-grid {
  display: grid;
  gap: 35px;
}

.audience-list {
  display: grid;
  gap: 12px;
}

.audience-list p {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.92rem;
}

.audience-list span {
  color: var(--gold-dark);
  font-weight: 800;
}

.format-preview-grid {
  display: grid;
  gap: 14px;
}

.format-preview {
  position: relative;
  min-height: 290px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black-card);
}

.format-preview.featured {
  background:
    radial-gradient(circle at 85% 15%, rgba(195, 111, 82, 0.18), transparent 35%),
    var(--black-card);
}

.format-number {
  margin-bottom: 38px;
  color: var(--gold);
  font: 700 0.72rem/1 var(--font-display);
  letter-spacing: 0.14em;
}

.format-preview p {
  max-width: 420px;
  margin-top: 12px;
  color: var(--text-soft);
}

.format-details {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  list-style: none;
}

.format-details li {
  position: relative;
  padding-left: 18px;
}

.format-details li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 24px;
}

.format-tags span {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(225, 166, 146, 0.1);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
}

.offer-section {
  overflow: hidden;
  background: var(--black);
}

.offer-glow {
  width: 650px;
  height: 650px;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(195, 111, 82, 0.13), transparent 70%);
}

.offer-grid {
  display: grid;
  gap: 16px;
}

.offer-card {
  position: relative;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.offer-card-featured {
  border-color: rgba(225, 166, 146, 0.35);
  background:
    radial-gradient(circle at 90% 0%, rgba(195, 111, 82, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.offer-head {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  margin-bottom: 34px;
}

.offer-kicker,
.offer-capacity {
  font: 800 0.7rem/1 var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-kicker {
  color: var(--gold-light);
}

.offer-capacity {
  color: var(--text-muted);
}

.price-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price {
  margin: 2px 0 28px;
  color: var(--white);
  font: 700 clamp(2.6rem, 9vw, 4.7rem)/1 var(--font-display);
  letter-spacing: -0.06em;
}

.payment-breakdown {
  border-block: 1px solid var(--line);
}

.payment-breakdown p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  color: var(--text-soft);
  font-size: 0.78rem;
}

.payment-breakdown p + p {
  border-top: 1px solid var(--line);
}

.payment-breakdown strong {
  color: var(--white);
  font: 700 0.84rem/1.3 var(--font-display);
  white-space: nowrap;
}

.installment {
  margin: 22px 0;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.installment strong {
  color: var(--gold-light);
}

.date-buttons {
  display: grid;
  gap: 9px;
}

.offer-action {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 520px;
  margin: 28px auto 0;
  text-align: center;
}

.offer-action .button {
  width: min(100%, 410px);
}

.offer-action p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  padding: 13px 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 800 0.78rem/1.2 var(--font-display);
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.button::after {
  content: "↗";
  margin-left: 8px;
  font-size: 0.96rem;
}

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

.button-primary {
  background: var(--gradient-gold);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(195, 111, 82, 0.18);
}

.button-primary:hover {
  box-shadow: 0 16px 42px rgba(195, 111, 82, 0.26);
}

.button-secondary {
  border-color: rgba(225, 166, 146, 0.35);
  background: transparent;
  color: var(--gold-light);
}

.fee-note {
  max-width: 780px;
  margin: 20px auto 0;
  color: var(--text-muted);
  font-size: 0.69rem;
  text-align: center;
}

.steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.steps li > span {
  color: var(--gold-dark);
  font: 700 0.72rem/1.4 var(--font-display);
  letter-spacing: 0.12em;
}

.steps strong {
  font-family: var(--font-display);
}

.steps p {
  margin-top: 5px;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.84rem;
}

.authority-section {
  background:
    radial-gradient(circle at 80% 40%, rgba(183, 101, 72, 0.1), transparent 30%),
    var(--black-soft);
}

.authority-grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

.authority-collage {
  position: relative;
  min-height: 470px;
}

.authority-main {
  width: 82%;
  height: 470px;
  object-fit: cover;
  border-radius: 28px 8px 28px 8px;
}

.authority-small {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 50%;
  height: 170px;
  object-fit: cover;
  border: 7px solid var(--black-soft);
  border-radius: 8px 22px 8px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

.authority-grid h2 {
  color: var(--gold-light);
}

.authority-lead {
  margin-top: 16px;
  color: var(--white) !important;
  font: 600 1.05rem/1.5 var(--font-display);
}

.authority-grid p {
  margin-top: 18px;
  color: var(--text-soft);
}

.authority-quote {
  margin-top: 30px;
  padding: 20px 0 20px 22px;
  border-left: 2px solid var(--gold);
  color: rgba(255, 255, 255, 0.88);
  font: 500 1rem/1.65 var(--font-display);
}

.final-cta {
  background: var(--black);
  text-align: center;
}

.final-cta-inner {
  max-width: 920px;
  padding: clamp(35px, 7vw, 70px) clamp(22px, 6vw, 60px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(195, 111, 82, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.final-cta img {
  width: min(70%, 360px);
  margin: 0 auto 30px;
}

.final-cta p {
  max-width: 650px;
  margin: 18px auto 0;
  color: var(--text-soft);
}

.final-buttons {
  display: grid;
  gap: 10px;
  max-width: 420px;
  margin: 30px auto 0;
}

.faq-section {
  background: var(--black-soft);
}

.faq-grid {
  display: grid;
  gap: 25px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 40px 22px 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);
  font: 600 0.94rem/1.4 var(--font-display);
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  color: var(--gold-light);
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list details p {
  padding: 0 40px 22px 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  background: var(--black);
  text-align: center;
}

.footer-inner img {
  width: 180px;
  margin: 0 auto 18px;
}

.footer-inner p {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.footer-inner .copyright {
  margin-top: 6px;
}

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

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

@media (min-width: 680px) {
  .proof-strip-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .proof-strip-grid > div {
    min-height: 118px;
    padding: 28px 18px;
  }

  .proof-strip-grid > div:nth-child(2n) {
    border-right: 1px solid var(--line);
  }

  .proof-strip-grid > div:last-child {
    border-right: 0;
  }

  .proof-strip-grid > div:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .photo-mosaic {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: 240px 240px;
  }

  .photo-mosaic .mosaic-wide:first-child {
    grid-column: span 7;
  }

  .photo-mosaic .mosaic-tall:nth-child(2) {
    grid-column: span 5;
    grid-row: span 2;
  }

  .photo-mosaic .mosaic-tall:nth-child(3) {
    grid-column: span 4;
  }

  .photo-mosaic .mosaic-wide:last-child {
    grid-column: span 3;
  }

  .day-grid,
  .format-preview-grid,
  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }


}

@media (min-width: 900px) {
  .container {
    width: min(100% - 80px, var(--container));
  }

  .site-header {
    width: min(100% - 80px, var(--container));
    padding-top: 24px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
    gap: 70px;
  }

  .hero-photo {
    justify-self: end;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 100px;
  }

  .content-grid {
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 90px;
  }

  .audience-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
    gap: 90px;
  }

  .authority-grid {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    gap: 100px;
  }

  .faq-grid {
    grid-template-columns: minmax(300px, 0.75fr) minmax(440px, 1.25fr);
    gap: 90px;
  }
}

@media (max-width: 679px) {
  .site-header {
    justify-content: center;
    padding-top: 16px;
  }

  .brand {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .brand img {
    width: min(68vw, 220px);
    margin-inline: auto;
  }

  .header-note {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy h1,
  .hero-lead {
    margin-inline: auto;
  }

  .date-row,
  .hero-points {
    justify-content: center;
  }

  .hero-points {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
  }

  .early-cta {
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  .proof-strip-grid > div {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #experiencia .section-heading {
    margin-inline: auto;
    text-align: center;
  }

  #experiencia .section-heading p:not(.eyebrow) {
    margin-inline: auto;
  }
}

@media (max-width: 430px) {
  .container,
  .site-header {
    width: min(100% - 28px, var(--container));
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(2.18rem, 11vw, 3.05rem);
  }

  .date-row .date-label {
    justify-content: center;
    padding-inline: 2px;
  }

  .content-collage-main {
    min-height: 350px;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .hero-photo {
    width: 100%;
  }

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

  .payment-breakdown p {
    align-items: flex-start;
  }

  .authority-collage {
    min-height: 420px;
  }

  .authority-main {
    height: 420px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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