:root {
  --ink: #1f1d17;
  --ink-soft: #6d675f;
  --cream: #f4f2ea;
  --cream-deep: #e6e1d6;
  --green: #1f3a2e;
  --terracotta: #9c6d54;
  --line: rgba(31, 29, 23, 0.28);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.2) 0 1px, transparent 1px);
  background-size: 4px 5px, 7px 6px;
  mix-blend-mode: soft-light;
}

.panel {
  position: relative;
  overflow: hidden;
}

.dark {
  background: var(--ink);
  color: var(--cream);
}

.cream {
  background: var(--cream);
  color: var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 24px;
  padding: 30px clamp(24px, 5vw, 72px);
  color: var(--cream);
  transition: color 0.35s ease, padding 0.35s ease, background 0.35s ease;
}

.site-header.is-light {
  color: var(--ink);
}

.site-header.is-compact {
  padding-top: 18px;
  background: linear-gradient(to bottom, rgba(244, 242, 234, 0.82), rgba(244, 242, 234, 0));
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-right {
  justify-content: flex-end;
}

.brand {
  display: grid;
  justify-items: center;
  line-height: 1;
  text-transform: uppercase;
}

.brand span {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;
}

.brand small {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.menu-toggle,
.menu-close {
  position: relative;
  width: 42px;
  height: 30px;
  border: 0;
  padding: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle span,
.menu-close::before,
.menu-close::after {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease;
}

.menu-toggle span:first-child {
  top: 10px;
}

.menu-toggle span:last-child {
  top: 18px;
}

.menu-toggle:hover span:first-child {
  transform: translateX(-5px);
}

.menu-toggle:hover span:last-child {
  transform: translateX(5px);
}

.menu-close::before,
.menu-close::after {
  top: 15px;
}

.menu-close::before {
  transform: rotate(45deg);
}

.menu-close::after {
  transform: rotate(-45deg);
}

.hero {
  min-height: 100svh;
  padding: 0;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  filter: saturate(0.86) contrast(0.95) brightness(0.78);
  transform: scale(1.04);
  animation: heroIn 1.4s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(20, 18, 14, 0.18), rgba(20, 18, 14, 0.1) 35%, rgba(20, 18, 14, 0.38)),
    radial-gradient(circle at 50% 75%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 88px);
  right: clamp(20px, 6vw, 88px);
  bottom: clamp(44px, 7vw, 92px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero h1,
.vision h2,
.partners h2,
.footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  line-height: 0.9;
}

.hero h1 {
  max-width: 1200px;
  font-size: clamp(62px, 13vw, 206px);
  color: #fffdf2;
  text-wrap: balance;
}

.hero-content > p:last-child {
  max-width: 410px;
  margin: 18px 0 0;
  color: rgba(255, 253, 242, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.vision {
  min-height: 112svh;
  display: grid;
  place-items: center;
  padding: clamp(80px, 10vw, 140px) clamp(18px, 5vw, 80px);
}

.vision::before,
.activities::before,
.partners::before,
.footer::before,
.menu-overlay::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(31, 29, 23, 0.04), transparent);
  content: "";
}

.vision-copy {
  position: relative;
  z-index: 8;
  max-width: 770px;
  text-align: center;
}

.vision h2 {
  font-size: clamp(34px, 5.3vw, 78px);
  line-height: 1.06;
  text-wrap: balance;
}

.signature {
  position: relative;
  width: 130px;
  height: 50px;
  margin: 28px auto 0;
  opacity: 0.6;
}

.signature span {
  position: absolute;
  left: 12px;
  width: 90px;
  height: 1px;
  background: var(--ink);
  transform-origin: left center;
}

.signature span:first-child {
  top: 20px;
  transform: rotate(-16deg);
}

.signature span:last-child {
  top: 27px;
  transform: rotate(8deg);
}

.floating {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(31, 29, 23, 0.08);
  will-change: transform;
}

.floating-one {
  top: 16%;
  left: 9%;
  width: clamp(130px, 15vw, 230px);
  aspect-ratio: 1.08;
  transform: rotate(-2deg);
}

.floating-two {
  top: 14%;
  right: 6%;
  width: clamp(135px, 15vw, 230px);
  aspect-ratio: 1;
  transform: rotate(3deg);
}

.floating-three {
  right: 9%;
  bottom: 14%;
  width: clamp(110px, 12vw, 170px);
  aspect-ratio: 1;
}

.floating-four {
  left: 34%;
  bottom: 11%;
  width: clamp(120px, 14vw, 205px);
  aspect-ratio: 1.12;
}

.activities {
  min-height: 105svh;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(26px, 6vw, 86px);
  padding: clamp(74px, 9vw, 130px) clamp(24px, 9vw, 150px);
}

.activity-copy {
  position: relative;
  z-index: 4;
  max-width: 560px;
}

.activity-list {
  display: grid;
  justify-items: start;
}

.activity {
  border: 0;
  padding: 0;
  background: transparent;
  color: rgba(31, 29, 23, 0.22);
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 300;
  line-height: 1.02;
  cursor: pointer;
  transition: color 0.35s ease, transform 0.35s ease;
}

.activity.active {
  color: var(--ink);
  transform: translateX(0);
}

.activity:not(.active):hover {
  color: rgba(31, 29, 23, 0.48);
  transform: translateX(10px);
}

.activity-frame {
  position: relative;
  z-index: 3;
  aspect-ratio: 0.82;
  min-height: 560px;
  background: var(--cream-deep);
  overflow: hidden;
}

.activity-img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18%) scale(1.05);
  filter: saturate(0.9) contrast(0.96);
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.activity-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.side-strip {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: 142px;
  opacity: 0.32;
}

.side-strip img {
  aspect-ratio: 0.78;
  height: auto;
}

.side-strip-left {
  left: -18px;
  top: 11%;
}

.side-strip-right {
  right: -18px;
  top: 10%;
}

.club {
  min-height: 100svh;
}

.club > img {
  position: absolute;
  inset: 0;
  filter: saturate(0.8) brightness(0.7);
}

.club-card {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(720px, calc(100% - 36px));
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 22px;
  padding: 24px;
  background: rgba(244, 242, 234, 0.92);
  color: var(--ink);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
}

.club-card .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.club-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 300;
}

.club-card span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.partners {
  min-height: 100svh;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 34px;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 5vw, 72px);
  text-align: center;
}

.partners h2 {
  max-width: 820px;
  font-size: clamp(44px, 7vw, 104px);
  line-height: 0.94;
  text-wrap: balance;
}

.photo-stack {
  position: relative;
  width: clamp(170px, 20vw, 285px);
  aspect-ratio: 0.78;
}

.photo-stack img {
  position: absolute;
  inset: 0;
  box-shadow: 0 18px 34px rgba(31, 29, 23, 0.12);
}

.photo-stack img:nth-child(1) {
  transform: rotate(-4deg) translate(-16px, 4px);
}

.photo-stack img:nth-child(2) {
  transform: rotate(5deg) translate(18px, -8px);
}

.photo-stack img:nth-child(3) {
  transform: rotate(1deg);
}

.partners p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.wordmark-row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 36px;
  color: rgba(31, 29, 23, 0.46);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 30px);
}

.footer {
  min-height: 70svh;
  display: grid;
  place-items: center;
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 70px) 30px;
  text-align: center;
}

.footer h2 {
  color: rgba(244, 242, 234, 0.62);
  font-size: clamp(78px, 15vw, 220px);
  text-transform: uppercase;
}

.footer form {
  width: min(420px, 100%);
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.footer label {
  color: rgba(244, 242, 234, 0.56);
  font-size: 12px;
}

.footer form div {
  display: grid;
  grid-template-columns: 1fr 42px;
  border-bottom: 1px solid rgba(244, 242, 234, 0.5);
}

.footer input,
.footer button {
  border: 0;
  background: transparent;
  color: var(--cream);
  min-height: 42px;
}

.footer input {
  min-width: 0;
  text-align: center;
  outline: 0;
}

.footer input::placeholder {
  color: rgba(244, 242, 234, 0.6);
  text-transform: uppercase;
}

.footer button {
  cursor: pointer;
  font-size: 20px;
}

.footer-bottom,
.menu-footer {
  position: absolute;
  left: clamp(20px, 5vw, 70px);
  right: clamp(20px, 5vw, 70px);
  bottom: 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(244, 242, 234, 0.54);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-overlay {
  position: fixed;
  inset: 18px;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px clamp(22px, 4vw, 64px);
  background: rgba(244, 242, 234, 0.97);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.menu-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
}

.menu-top .brand {
  grid-column: 2;
}

.menu-close {
  grid-column: 3;
  justify-self: end;
}

.menu-links {
  display: grid;
  align-content: center;
  gap: 0;
}

.menu-links a {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  padding-left: var(--x);
  border-top: 1px dashed var(--line);
  color: rgba(31, 29, 23, 0.52);
  font-family: var(--serif);
  font-size: clamp(58px, 9vw, 130px);
  line-height: 0.8;
  transition: color 0.28s ease, padding-left 0.36s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.menu-links a:last-child {
  border-bottom: 1px dashed var(--line);
}

.menu-links a::before {
  position: absolute;
  inset: 14px 0;
  z-index: -1;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.2, 0.9, 0.2, 1);
  content: "";
}

.menu-links a:hover {
  color: var(--cream);
  padding-left: calc(var(--x) + 2%);
}

.menu-links a:hover::before {
  transform: scaleX(1);
}

.menu-links span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin-left: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
  flex: 0 0 auto;
}

.menu-links a:hover span {
  opacity: 1;
  transform: scale(1);
}

.menu-footer {
  color: rgba(31, 29, 23, 0.52);
}

[data-reveal] {
  opacity: 0;
  transform: translate(-50%, -42%);
  transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 20px;
  }

  .nav-left {
    display: none;
  }

  .brand {
    justify-items: start;
  }

  .nav-right a {
    display: none;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 116px);
  }

  .vision {
    min-height: 104svh;
  }

  .floating-one {
    left: 5%;
    top: 14%;
  }

  .floating-two {
    right: 3%;
    top: 10%;
  }

  .floating-three {
    right: 7%;
    bottom: 13%;
  }

  .floating-four {
    left: 9%;
    bottom: 10%;
  }

  .activities {
    grid-template-columns: 1fr;
    padding: 78px 20px;
  }

  .activity-frame {
    min-height: 420px;
    aspect-ratio: 1;
  }

  .side-strip {
    display: none;
  }

  .club-card {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .wordmark-row,
  .footer-bottom,
  .menu-footer {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-overlay {
    inset: 0;
  }

  .menu-links a {
    min-height: 92px;
    padding-left: 0;
    font-size: clamp(54px, 15vw, 86px);
  }

  .menu-links a:hover {
    padding-left: 10px;
  }

  .menu-links span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
