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

html,
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

html {
  background: var(--paper);
}

body {
  min-height: 100dvh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body.is-nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-thread {
  display: none;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  padding-inline: var(--pad-x);
  margin-inline: auto;
}

.wrap > * {
  min-width: 0;
  max-width: 100%;
}

.wrap-narrow {
  max-width: 62.5rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-height);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  width: 100%;
  max-width: none;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  margin-inline: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 55;
  min-height: var(--touch-min);
}

.logo-mark {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: inset 0 0 0 1px rgba(243, 239, 224, 0.12);
  transition: transform 0.28s var(--ease), background-color 0.28s var(--ease), color 0.28s var(--ease);
}

.logo-mark svg {
  display: block;
}

.logo-mark-gold {
  background: var(--cream);
  color: var(--olive);
  width: 1.875rem;
  height: 1.875rem;
}

.logo-word {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: rotate(6deg) scale(1.04);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted);
}

.nav-desktop a:not(.btn) {
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size 380ms var(--ease), color 200ms;
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.nav-desktop a:not(.btn):hover {
  color: var(--ink);
  background-size: 100% 1px;
}

.menu-toggle {
  position: relative;
  z-index: 55;
  width: var(--touch-min);
  height: var(--touch-min);
  border: 0;
  border-radius: 50%;
  background: var(--olive);
  color: var(--gold);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.menu-toggle-bars,
.menu-toggle-bars::before,
.menu-toggle-bars::after {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 280ms var(--ease), opacity 200ms;
}

.menu-toggle-bars {
  position: relative;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-bars::before { top: -5px; }
.menu-toggle-bars::after { top: 5px; }

.menu-toggle.is-active .menu-toggle-bars {
  background: transparent;
}

.menu-toggle.is-active .menu-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 45;
  background: var(--linen);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 280ms var(--ease), visibility 280ms;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 7vw, 2.5rem);
  font-weight: 650;
  line-height: 1.2;
}

.nav-overlay-inner a {
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.nav-overlay-inner .btn {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  border-radius: var(--radius-pill);
  font-weight: 600;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-gold,
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid rgba(26, 26, 23, 0.28);
  padding: 0.7rem 1.4rem;
}

.btn-gold:hover,
.btn-ghost:hover {
  border-color: rgba(26, 26, 23, 0.5);
  box-shadow: 0 10px 22px rgba(26, 26, 23, 0.1);
}

.reserve-panel .btn-ghost,
.nav-overlay .btn-ghost {
  background: #f7f4ea;
  color: var(--olive);
  border-color: transparent;
}

.btn-nav {
  padding: 0.7rem 1.35rem;
}

.btn-lg {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100dvh;
  padding: calc(var(--header-height) + 1.1rem) 0 1.75rem;
  background: var(--linen);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 40rem;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: var(--text-hero);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 11em;
  text-wrap: balance;
  color: var(--ink);
}

.hero-stage,
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.18);
  transform-origin: right center;
  border-radius: 0;
  opacity: 0.9;
}

.hero-veil {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgb(247 244 234 / 0.92) 0%,
      rgb(247 244 234 / 0.78) 32%,
      rgb(247 244 234 / 0.32) 56%,
      rgb(247 244 234 / 0.08) 78%,
      rgb(239 230 200 / 0.04) 100%
    ),
    linear-gradient(
      180deg,
      rgb(247 244 234 / 0.28) 0%,
      transparent 18%,
      transparent 82%,
      rgb(247 244 234 / 0.16) 100%
    );
}

.mission-copy {
  display: none;
}

.mission-copy h2 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
}

.mission-copy p {
  font-size: 1.08rem;
  line-height: 1.5;
  color: #3f4038;
  max-width: 38rem;
}

.hero-lead {
  margin-top: 0.9rem;
  max-width: 38rem;
  color: #3a3b34;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.hero-actions .btn {
  width: 100%;
  padding-inline: 0.5rem;
  font-size: 0.8125rem;
}

.btn-ghost {
  border: 1.5px solid rgba(26, 26, 23, 0.28);
  background: var(--paper);
  color: var(--ink);
  padding: 0.65rem 1.2rem;
}

.hero-note {
  display: none;
}

.section {
  padding-block: var(--rhythm);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.waitlist-why,
.features,
.statement,
.audience,
.reserve {
  background: var(--paper);
}

.vision,
.privacy,
.faq {
  background: var(--linen);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: var(--text-h2);
  line-height: 1.14;
  letter-spacing: -0.018em;
}

.section-lead {
  margin-top: 0.85rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.audience-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  align-items: stretch;
  grid-template-columns: 1fr;
}

.audience-card {
  background: var(--linen);
  border-radius: var(--radius-card);
  padding: 1.2rem 1.15rem 1.3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.scoreboard {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--olive);
  color: var(--cream);
  border-radius: var(--radius-card);
}

.scoreboard article {
  min-width: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.65rem, 7vw, 2.15rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--gold);
}

.scoreboard h3,
.perk-row h3,
.feature-index h3,
.audience-card h3,
.cutout h3 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: var(--text-h3);
  margin: 0.5rem 0 0.35rem;
}

.scoreboard p {
  color: var(--cream-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  overflow-wrap: anywhere;
}

.perk-row p,
.feature-index p,
.audience-card p,
.cutout p,
.metric-row p:not(.metric-num) {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.perk-row {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.15rem;
}

.perk-row article {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.feature-index {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
}

.feature-index li {
  display: grid;
  gap: 0.35rem;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

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

.feature-index h3 {
  margin: 0;
}

.icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-mark);
  background: var(--gold);
  color: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
}

.icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.split-intro {
  display: grid;
  gap: 0.75rem;
}

.split-intro p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.vision-layout {
  display: grid;
  gap: 1.15rem;
}

.vision-copy p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42rem;
}

.vision-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: 50% 48%;
  border-radius: var(--radius-media);
}

.media {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-media);
  margin-top: 1.25rem;
}

.metric-row {
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.metric-num {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  line-height: 1;
  color: var(--ink);
}

.invert {
  background: var(--olive);
  color: var(--cream);
  border-top: 0;
}

.invert .section-title,
.invert h3 {
  color: var(--cream);
}

.invert-copy p,
.invert .cutout p {
  color: var(--cream-muted);
}

.cutout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.15rem;
  align-items: start;
  min-width: 0;
}

.cutout {
  min-width: 0;
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  row-gap: 0.2rem;
  align-items: start;
}

.cutout img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-media);
}

.cutout h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.cutout p {
  grid-column: 2;
  grid-row: 2;
}

.statement {
  padding-block: var(--rhythm);
}

.statement-copy {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-quote);
  line-height: 1.35;
  letter-spacing: -0.015em;
  max-width: 42rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

.privacy-photo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  aspect-ratio: 2 / 3;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius-media);
}

.audience-card {
  gap: 0.85rem;
}

.audience-card h3 {
  margin-top: 0.25rem;
}

.faq-grid {
  display: grid;
  gap: 1.1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(26, 26, 23, 0.12);
  border-radius: var(--radius-media);
  overflow: hidden;
}

.faq-item.is-open {
  background: var(--linen);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 0.95rem 1.1rem;
  min-height: var(--touch-min);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--ink);
}

.faq-sign {
  width: 2.125rem;
  height: 2.125rem;
  flex: none;
  border-radius: 50%;
  background: var(--olive);
  color: var(--cream);
  display: grid;
  place-items: center;
}

.faq-sign::before {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item.is-open .faq-sign::before {
  content: "−";
}

.faq-panel {
  padding: 0 1.1rem 1rem;
}

.faq-panel p {
  max-width: 35rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.faq .section-lead a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.reserve-layout {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
}

.reserve-panel {
  background: var(--olive);
  color: var(--cream);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.15rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.reserve-panel .section-title {
  color: var(--cream);
}

.reserve-panel > p {
  margin-top: 0.7rem;
  max-width: 32.5rem;
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  margin-top: 1.15rem;
  max-width: 100%;
  min-width: 0;
}

.waitlist-form input {
  width: 100%;
  min-width: 0;
  min-height: var(--touch-min);
  background: var(--cream-input);
  border: 1.5px solid var(--cream-border);
  color: var(--cream);
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.15rem;
  font-size: 1rem;
}

.waitlist-form .btn {
  width: 100%;
}

.waitlist-form input::placeholder {
  color: rgba(245, 241, 224, 0.55);
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-status {
  min-height: 1.1rem;
  margin-top: 0.55rem;
  font-size: var(--text-small);
  color: var(--cream-muted);
}

.form-status.is-ok {
  color: var(--gold);
}

.form-status.is-error {
  color: #f0c9a0;
}

.campaign-meter {
  margin-top: 1.35rem;
  border-top: 1px solid var(--cream-line);
  padding-top: 0.95rem;
}

.campaign-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9375rem;
}

.campaign-meta span:last-child {
  font-size: var(--text-small);
  color: var(--cream-faint);
}

.meter {
  margin-top: 0.85rem;
  height: 10px;
  border-radius: var(--radius-pill);
  background: rgba(245, 241, 224, 0.15);
  overflow: hidden;
}

.meter-fill {
  display: block;
  height: 100%;
  width: 43%;
  background: var(--gold);
  border-radius: var(--radius-pill);
  transform-origin: left center;
}

.reserve-photo {
  width: 100%;
  margin-top: 0;
  min-height: 0;
  height: auto;
  max-height: none;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 42% 50%;
}

.site-footer {
  background: var(--olive);
  color: var(--cream);
  padding-block: 1.75rem;
}

.footer-grid {
  display: grid;
  gap: 1.15rem;
}

.footer-grid p {
  margin-top: 1rem;
  max-width: 18.75rem;
  color: var(--cream-faint);
  font-size: 0.9375rem;
}

.footer-grid nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-grid nav a,
.footer-contact a {
  color: rgba(245, 241, 224, 0.75);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

@media (min-width: 577px) {
  .hero-actions {
    display: flex;
    width: auto;
  }

  .hero-actions .btn {
    width: auto;
    padding-inline: 1.25rem;
    font-size: 0.9375rem;
  }

  .waitlist-form {
    display: flex;
    flex-wrap: wrap;
    max-width: 35rem;
  }

  .waitlist-form input {
    flex: 1 1 12rem;
    width: auto;
  }

  .waitlist-form .btn {
    width: auto;
  }

  .hero-copy h1 {
    line-height: 1.05;
  }

  .hero-lead {
    font-size: 1.2rem;
    line-height: 1.55;
    margin-top: 1.1rem;
  }

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

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  .nav-desktop {
    display: flex;
    gap: 1.35rem;
  }

  .hero-line-shift {
    margin-left: 0;
  }

  .mission-copy {
    display: block;
    margin: 1.6rem 0 0;
    max-width: 36rem;
  }

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

  .scoreboard {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 1.5rem 0;
  }

  .stat-num {
    font-size: var(--text-stat);
  }

  .scoreboard article {
    padding: 0 1.35rem;
  }

  .scoreboard article + article {
    border-left: 1px solid var(--cream-line);
  }

  .feature-index li {
    grid-template-columns: minmax(11rem, 0.38fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.05rem 0;
  }

  .faq-grid {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: 2rem;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-grid nav a,
  .footer-contact a {
    min-height: 2.1rem;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 100dvh;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 2.5rem;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: 34rem;
  }

  .hero-copy h1 {
    line-height: 1.05;
    max-width: 11ch;
  }

  .hero-photo {
    opacity: 0.92;
    object-position: right center;
    transform: scale(1.14);
    transform-origin: right center;
  }

  .hero-veil {
    background:
      linear-gradient(
        90deg,
        rgb(247 244 234 / 0.86) 0%,
        rgb(247 244 234 / 0.58) 30%,
        rgb(247 244 234 / 0.18) 54%,
        rgb(247 244 234 / 0.04) 76%,
        transparent 100%
      ),
      linear-gradient(
        180deg,
        rgb(247 244 234 / 0.22) 0%,
        transparent 16%,
        transparent 86%,
        rgb(247 244 234 / 0.1) 100%
      );
  }

  .waitlist-why {
    padding-top: clamp(2.75rem, 4vw, 4rem);
  }

  .split-intro {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
  }

  .vision-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    grid-template-areas:
      "copy photo"
      "metrics metrics";
    column-gap: clamp(2rem, 4.5vw, 4rem);
    row-gap: 2rem;
    align-items: center;
  }

  .vision-copy {
    grid-area: copy;
    padding-top: 0;
  }

  .vision-copy .section-title {
    max-width: 13ch;
  }

  .vision-photo {
    grid-area: photo;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: 50% 48%;
  }

  .vision-layout .metric-row {
    grid-area: metrics;
    margin-top: 0;
    align-self: stretch;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .privacy-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.82fr);
    gap: clamp(2rem, 4.5vw, 4rem);
    align-items: center;
  }

  .privacy-photo {
    width: auto;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(34rem, 70vh);
    aspect-ratio: 2 / 3;
    object-fit: contain;
    object-position: center;
  }

  .audience-grid,
  .cutout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cutout {
    display: block;
  }

  .cutout img {
    height: auto;
    max-height: none;
    aspect-ratio: 1;
  }

  .cutout h3 {
    margin: 0.5rem 0 0.35rem;
  }

  .reserve-layout {
    grid-template-columns: 1.1fr minmax(18rem, 0.95fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  .reserve-panel {
    padding: 1.75rem 1.6rem;
    height: auto;
  }

  .reserve-photo {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    object-position: 42% 50%;
    align-self: center;
  }

  .metric-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 1441px) {
  .hero,
  .section,
  .site-footer,
  .invert {
    max-width: 100%;
  }

  .wrap,
  .header-inner,
  .reserve-layout {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .cutout img {
    transform: none;
  }
}
