:root {
  --paper: #f3eee5;
  --paper-soft: #fbf7ef;
  --ink: #171716;
  --muted: #69635b;
  --wine: #8e2f28;
  --gold: #b39158;
  --cobalt: #1453ff;
  --charcoal: #101010;
  --line: rgba(23, 23, 22, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  color: var(--paper-soft);
  background: linear-gradient(to bottom, rgba(16, 16, 16, 0.56), rgba(16, 16, 16, 0));
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  background: rgba(243, 238, 229, 0.88);
  border-bottom: 1px solid rgba(23, 23, 22, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.section-pad {
  padding: 96px 56px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.cobalt {
  color: var(--cobalt);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  font-size: 84px;
}

h2 {
  font-size: 58px;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.parallax-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  isolation: isolate;
}

.parallax-media {
  position: absolute;
  inset: -14vh 0;
  z-index: -1;
  will-change: transform;
}

.parallax-media img {
  transform: scale(1.08);
}

.hero .parallax-media img {
  object-position: center 22%;
}

.hero {
  display: flex;
  align-items: flex-start;
  min-height: 100svh;
  padding-top: 0;
}

.hero-title-block {
  width: 100%;
  padding: 88px 58px 34px;
  background: var(--paper);
}

.hero-title-block h1 {
  max-width: 920px;
}

.hero-title-block p:last-child {
  position: absolute;
  top: 118px;
  right: 58px;
  max-width: 340px;
  text-align: right;
}

.hero-title-block .eyebrow {
  position: absolute;
  top: 90px;
  right: 58px;
  color: var(--ink);
}

.hero-title-block::before,
.closing-copy::before,
.contact-copy::before {
  content: "";
  display: block;
  width: 88px;
  height: 4px;
  margin-bottom: 16px;
  background: var(--wine);
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 0.75fr);
  gap: 72px;
  align-items: center;
  min-height: 92svh;
}

.intro-copy {
  max-width: 660px;
}

.intro-copy p:last-child {
  max-width: 570px;
  margin-top: 42px;
}

.intro-photo {
  height: 74svh;
  margin: 0;
}

.split-feature {
  display: flex;
  align-items: stretch;
  min-height: 100svh;
}

.dark-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 16, 16, 0.22);
}

.split-copy {
  align-self: stretch;
  width: min(46vw, 560px);
  margin-left: auto;
  padding: 124px 72px;
  color: var(--paper-soft);
  background: rgba(16, 16, 16, 0.64);
}

.split-copy h2,
.split-copy p {
  color: var(--paper-soft);
}

.paper-feature .split-copy {
  margin-right: auto;
  margin-left: 0;
  color: var(--ink);
  background: rgba(243, 238, 229, 0.84);
}

.paper-feature .split-copy h2,
.paper-feature .split-copy p {
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 66px;
  min-height: 92svh;
}

.proof-copy {
  align-self: start;
  position: sticky;
  top: 96px;
}

.proof-copy h2 {
  max-width: 380px;
  font-size: 50px;
}

.proof-copy p {
  max-width: 350px;
  margin-top: 36px;
}

.image-grid {
  display: grid;
  gap: 28px;
  align-content: center;
}

.image-grid figure {
  margin: 0;
  min-height: 210px;
  border: 1px solid rgba(23, 23, 22, 0.08);
}

.corporate-grid {
  grid-template-columns: 0.72fr 1.42fr;
  grid-template-rows: 1fr 1fr;
}

.corporate-grid .large {
  grid-row: 1 / 3;
  grid-column: 2;
}

.corporate-proof {
  align-items: start;
  padding-top: 118px;
  padding-bottom: 132px;
}

.corporate-story,
.social-story,
.private-story {
  min-width: 0;
}

.corporate-story figure,
.social-story figure,
.private-story figure {
  margin: 0;
  overflow: hidden;
  background: #e7dfd4;
  box-shadow: 0 24px 50px rgba(23, 23, 22, 0.08);
}

.corporate-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.72fr);
  grid-template-rows: 330px 340px;
  gap: clamp(28px, 3.4vw, 58px);
  align-items: start;
}

.corporate-lead {
  grid-column: 1;
  grid-row: 1 / 3;
  height: min(76svh, 720px);
}

.corporate-conversation {
  grid-column: 2;
  height: 330px;
  margin-top: 72px;
}

.corporate-listening {
  grid-column: 2;
  height: 380px;
}

.social-wall {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(58px, 6vw, 112px);
  padding: 118px 56px 132px;
  background: var(--paper);
}

.sticky-story {
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: 70svh;
}

.sticky-story h2 {
  font-size: 54px;
}

.sticky-story p:last-child {
  margin-top: 42px;
}

.wall-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr;
  gap: clamp(28px, 3vw, 52px);
  padding-bottom: 96px;
}

.wall-grid img {
  height: 320px;
}

.wall-grid img:first-child {
  grid-column: span 2;
  height: 430px;
}

.wall-grid img.tall {
  height: 430px;
}

.wall-grid img:nth-child(3) {
  height: 430px;
}

.social-story {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(260px, 0.76fr);
  gap: clamp(28px, 3.6vw, 62px);
  align-items: start;
}

.social-lead {
  grid-column: 1 / 3;
  height: min(64svh, 620px);
}

.social-reaction {
  grid-column: 1;
  grid-row: 3;
  height: 520px;
  margin-top: 0;
}

.social-table {
  grid-column: 1;
  grid-row: 2;
  height: 360px;
  margin-top: 34px;
}

.social-side {
  grid-column: 2;
  grid-row: 2 / 4;
  display: grid;
  gap: clamp(26px, 3vw, 48px);
}

.social-service {
  height: 370px;
}

.social-portrait {
  height: 470px;
  width: 82%;
  margin-left: auto;
}

.private-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(16, 16, 16, 0.08);
}

.glass-copy {
  align-self: flex-end;
  width: min(50vw, 580px);
  margin: 0 0 64px 64px;
  padding: 48px;
  background: rgba(243, 238, 229, 0.8);
  backdrop-filter: blur(10px);
}

.glass-copy h2 {
  font-size: 54px;
}

.glass-copy p:last-child {
  margin-top: 28px;
  color: var(--ink);
}

.proof-points dl {
  margin: 42px 0 0;
}

.proof-points dt {
  margin-top: 28px;
  font-size: 17px;
  font-weight: 700;
}

.proof-points dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.42;
}

.private-grid {
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr 0.74fr;
}

.private-grid figure {
  min-height: 260px;
}

.private-grid .wide {
  min-height: 220px;
}

.crop-hat-room {
  object-position: center 18%;
}

.private-proof {
  align-items: start;
  padding-top: 118px;
  padding-bottom: 132px;
}

.private-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.78fr);
  gap: clamp(28px, 3.4vw, 58px);
  align-items: start;
}

.private-lead {
  grid-column: 1 / 3;
  height: min(66svh, 640px);
}

.private-spread-card {
  height: 360px;
  margin-top: 74px;
}

.private-champagne-card {
  height: 500px;
}

.private-pool-card {
  grid-column: 1 / 3;
  width: min(82%, 960px);
  height: 430px;
  margin-left: auto;
}

.brand-hero {
  min-height: 100svh;
}

.brand-hero .parallax-media img {
  object-position: center 42%;
}

.blue-band {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 54px 64px 64px;
  color: var(--paper-soft);
  background: rgba(20, 83, 255, 0.9);
}

.blue-band .eyebrow,
.blue-band h2,
.blue-band p {
  color: var(--paper-soft);
}

.blue-band h2 {
  font-size: 58px;
}

.blue-band p {
  max-width: 330px;
  margin-bottom: 22px;
  font-weight: 700;
  text-align: right;
}

.brand-proof,
.house,
.details {
  display: grid;
  grid-template-columns: minmax(270px, 0.36fr) minmax(0, 1fr);
  gap: clamp(58px, 6vw, 120px);
  min-height: 100svh;
  align-items: start;
}

.fan-proof {
  padding-top: 118px;
  padding-bottom: 132px;
}

.fan-story,
.environment-story,
.detail-composition {
  min-width: 0;
}

.fan-story figure,
.environment-story figure,
.detail-composition figure {
  margin: 0;
  overflow: hidden;
  background: #e7dfd4;
  box-shadow: 0 24px 50px rgba(23, 23, 22, 0.08);
}

.fan-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 3.8vw, 64px);
  align-items: start;
}

.fan-lead {
  grid-column: 1 / 3;
  height: min(72svh, 700px);
}

.fan-pair {
  display: grid;
  grid-column: 1 / 3;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr);
  gap: clamp(28px, 3.4vw, 56px);
  align-items: start;
}

.fan-pair figure:first-child {
  height: 410px;
  margin-top: 72px;
}

.fan-vertical {
  height: 560px;
}

.fan-wide {
  height: 520px;
}

.fan-small {
  align-self: end;
  height: 370px;
  margin-top: 96px;
}

.environment-proof {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--paper-soft);
}

.environment-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(28px, 3.4vw, 60px);
}

.env-wide {
  grid-column: 1 / 3;
  height: min(68svh, 650px);
}

.env-lane,
.env-mosaic {
  display: grid;
  gap: clamp(26px, 3vw, 48px);
}

.env-lane {
  margin-top: 78px;
}

.env-lane figure:first-child {
  height: 560px;
}

.env-lane figure:last-child {
  height: 340px;
}

.env-mosaic {
  grid-template-columns: minmax(0, 0.95fr) minmax(230px, 0.72fr);
  align-items: start;
}

.env-mosaic .wide {
  grid-column: 1 / 3;
  height: 390px;
}

.env-mosaic figure:not(.wide) {
  height: 460px;
}

.details {
  padding-top: 126px;
  padding-bottom: 142px;
}

.detail-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(250px, 0.82fr) minmax(220px, 0.62fr);
  grid-template-rows: 270px 310px 260px;
  gap: clamp(24px, 3vw, 46px);
  align-items: stretch;
}

.detail-composition img {
  object-position: center;
}

.detail-lead {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.detail-product {
  grid-column: 3;
  grid-row: 1 / 3;
}

.detail-product img {
  object-position: 68% center;
}

.detail-tote {
  grid-column: 1;
  grid-row: 3;
}

.detail-pool {
  grid-column: 2;
  grid-row: 3;
}

.detail-balls {
  grid-column: 3;
  grid-row: 3;
}

.closing {
  min-height: 96svh;
}

.closing-copy {
  position: absolute;
  top: 84px;
  left: 62px;
  max-width: 610px;
  color: var(--paper-soft);
  text-shadow:
    0 2px 4px rgba(16, 16, 16, 0.34),
    0 12px 34px rgba(16, 16, 16, 0.56);
}

.closing-copy h2,
.closing-copy p {
  color: var(--paper-soft);
  text-shadow:
    0 2px 4px rgba(16, 16, 16, 0.34),
    0 12px 34px rgba(16, 16, 16, 0.56);
}

.closing-copy h2 {
  font-size: 62px;
}

.closing-copy p {
  max-width: 600px;
  margin-top: 34px;
}

.contact {
  display: grid;
  grid-template-columns: 0.92fr 0.88fr;
  gap: 76px;
  align-items: center;
  min-height: 96svh;
}

.contact figure {
  height: 82svh;
  margin: 0;
}

.contact figure img {
  object-position: center;
}

.contact-copy h2 {
  font-size: 58px;
}

.contact-copy address {
  margin-top: 82px;
  font-style: normal;
  font-size: 18px;
  line-height: 1.7;
}

.contact-copy strong {
  font-size: 24px;
}

.contact-copy a {
  border-bottom: 1px solid transparent;
}

.contact-copy a:hover {
  border-bottom-color: var(--ink);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 680ms ease, transform 680ms ease;
}

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

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

  .parallax-media,
  .reveal {
    transform: none !important;
    transition: none;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-links {
    display: none;
  }

  .section-pad {
    padding: 76px 24px;
  }

  h1 {
    font-size: 54px;
  }

  h2,
  .proof-copy h2,
  .sticky-story h2,
  .glass-copy h2,
  .blue-band h2,
  .closing-copy h2,
  .contact-copy h2 {
    font-size: 42px;
  }

  p {
    font-size: 16px;
  }

  .parallax-section {
    overflow: visible;
    min-height: auto;
  }

  .split-feature,
  .brand-hero,
  .closing,
  .hero {
    display: block;
    min-height: auto;
  }

  .parallax-section .parallax-media {
    position: relative;
    inset: auto;
    z-index: 0;
    height: 58svh;
    transform: none !important;
  }

  .parallax-section .parallax-media img {
    transform: none;
  }

  .hero {
    display: block;
  }

  .hero .parallax-media {
    height: 56svh;
  }

  .hero-title-block {
    position: relative;
    z-index: 1;
    padding: 82px 22px 32px;
  }

  .hero-title-block .eyebrow,
  .hero-title-block p:last-child {
    position: static;
    max-width: none;
    margin-top: 20px;
    text-align: left;
  }

  .intro,
  .proof-grid,
  .social-wall,
  .brand-proof,
  .house,
  .details,
  .contact {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .social-wall {
    padding: 76px 24px;
  }

  .intro-photo,
  .contact figure {
    height: 58svh;
  }

  .split-copy,
  .glass-copy {
    position: relative;
    z-index: 1;
    width: auto;
    margin: auto 20px 38px;
    padding: 30px;
  }

  .split-copy {
    align-self: flex-end;
  }

  .proof-copy,
  .sticky-story {
    position: static;
    min-height: auto;
  }

  .corporate-grid,
  .corporate-story,
  .private-grid,
  .private-story,
  .social-story,
  .social-side,
  .fan-story,
  .fan-pair,
  .environment-story,
  .env-lane,
  .env-mosaic,
  .detail-composition,
  .wall-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 24px;
  }

  .corporate-grid .large,
  .corporate-lead,
  .corporate-conversation,
  .corporate-listening,
  .social-lead,
  .social-table,
  .social-reaction,
  .social-service,
  .social-portrait,
  .private-lead,
  .private-spread-card,
  .private-champagne-card,
  .private-pool-card,
  .wall-grid img:first-child,
  .fan-lead,
  .fan-pair,
  .fan-pair figure:first-child,
  .fan-vertical,
  .fan-wide,
  .fan-small,
  .env-wide,
  .env-mosaic .wide,
  .detail-lead,
  .detail-product,
  .detail-tote,
  .detail-pool,
  .detail-balls {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .social-portrait,
  .private-pool-card {
    width: 100%;
    margin-left: 0;
  }

  .image-grid figure,
  .corporate-story figure,
  .social-story figure,
  .private-grid figure,
  .private-story figure,
  .fan-story figure,
  .fan-pair figure:first-child,
  .fan-vertical,
  .fan-wide,
  .fan-small,
  .environment-story figure,
  .env-lane figure:first-child,
  .env-lane figure:last-child,
  .env-mosaic .wide,
  .env-mosaic figure:not(.wide),
  .detail-composition figure,
  .wall-grid img,
  .wall-grid img:first-child,
  .wall-grid img.tall {
    min-height: 0;
    height: 56svh;
  }

  .fan-proof,
  .corporate-proof,
  .private-proof,
  .environment-proof,
  .details {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .env-lane {
    margin-top: 0;
  }

  .fan-story figure,
  .corporate-story figure,
  .social-story figure,
  .private-story figure,
  .environment-story figure,
  .detail-composition figure {
    box-shadow: 0 16px 34px rgba(23, 23, 22, 0.07);
  }

  .blue-band {
    position: relative;
    display: block;
    padding: 34px 24px 38px;
  }

  .blue-band p {
    max-width: none;
    margin-top: 22px;
    margin-bottom: 0;
    text-align: left;
  }

  .closing-copy {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    padding: 42px 22px 66px;
    color: var(--ink);
    background: var(--paper);
  }

  .closing-copy h2,
  .closing-copy p {
    color: var(--ink);
    text-shadow: none;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .proof-copy h2,
  .sticky-story h2,
  .glass-copy h2,
  .blue-band h2,
  .closing-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .section-pad {
    padding: 66px 18px;
  }

  .hero-title-block {
    padding-top: 76px;
  }

  .parallax-section {
    min-height: auto;
  }

  .split-feature,
  .brand-hero,
  .closing {
    min-height: auto;
  }

  .image-grid figure,
  .corporate-story figure,
  .social-story figure,
  .private-grid figure,
  .private-story figure,
  .fan-story figure,
  .fan-pair figure:first-child,
  .fan-vertical,
  .fan-wide,
  .fan-small,
  .environment-story figure,
  .env-lane figure:first-child,
  .env-lane figure:last-child,
  .env-mosaic .wide,
  .env-mosaic figure:not(.wide),
  .detail-composition figure,
  .wall-grid img,
  .wall-grid img:first-child,
  .wall-grid img.tall {
    height: 48svh;
  }

  .contact-copy address {
    margin-top: 52px;
  }
}
