:root {
  --black: #101010;
  --ink: #171717;
  --muted: #66625f;
  --line: #e8e1da;
  --paper: #f7f3ee;
  --white: #ffffff;
  --red: #ef1b2d;
  --red-dark: #bf1020;
  --lime: #b8ff6a;
  --steel: #d9e3e9;
  --shadow: 0 18px 60px rgba(20, 18, 16, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(16, 16, 16, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: var(--white);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.header-actions,
.nav-links {
  align-items: center;
  display: flex;
}

.brand {
  font-weight: 850;
  gap: 10px;
}

.brand img {
  background: var(--red);
  border-radius: 50%;
  height: 46px;
  width: 46px;
}

.nav-links {
  gap: 24px;
  justify-content: center;
}

.nav-links a,
.footer a {
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 760;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--white);
}

.header-actions {
  gap: 10px;
  justify-content: flex-end;
}

.lang-toggle,
.header-cta,
.btn {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  min-height: 42px;
}

.lang-toggle {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  padding: 0 15px;
}

.header-cta {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  padding: 0 18px;
}

.hero {
  background: var(--black);
  color: var(--white);
  display: grid;
  min-height: calc(100vh - 75px);
  overflow: hidden;
  position: relative;
}

.hero-media {
  inset: 0;
  position: absolute;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, .94) 0%, rgba(16, 16, 16, .72) 43%, rgba(16, 16, 16, .2) 100%),
    linear-gradient(0deg, rgba(16, 16, 16, .66), rgba(16, 16, 16, .1));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.hero-content {
  align-self: end;
  max-width: 850px;
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 92px) clamp(44px, 7vw, 86px);
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 92px);
  max-width: 780px;
}

.hero-copy {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 22px);
  margin: 24px 0 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 0 22px;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
}

.btn.secondary {
  background: var(--white);
  color: var(--black);
}

.btn:hover,
.header-cta:hover,
.mobile-bar a:last-child:hover {
  background: var(--red-dark);
  color: var(--white);
}

.quick-facts {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px 0 0;
  max-width: 760px;
}

.quick-facts div,
.info-card,
.contact-panel,
.choice-list a {
  background: var(--white);
  border: 1px solid rgba(16, 16, 16, .08);
}

.quick-facts div {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .18);
  border-radius: 8px;
  padding: 16px;
}

.quick-facts dt,
.contact-panel span,
.action-strip span,
.choice-list strong {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.quick-facts dt {
  color: rgba(255, 255, 255, .58);
}

.quick-facts dd {
  font-size: 17px;
  font-weight: 850;
  margin: 4px 0 0;
}

.action-strip {
  background: var(--lime);
  color: var(--black);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-strip a {
  border-right: 1px solid rgba(16, 16, 16, .16);
  padding: 24px clamp(18px, 4vw, 54px);
}

.action-strip strong {
  display: block;
  font-size: clamp(17px, 2vw, 24px);
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.section {
  padding: clamp(58px, 9vw, 110px) clamp(20px, 6vw, 92px);
}

.split,
.membership,
.contact {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: .74fr 1.26fr;
}

.section h2 {
  font-size: clamp(32px, 5vw, 64px);
  max-width: 720px;
}

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

.info-card {
  border-radius: 8px;
  min-height: 230px;
  padding: 24px;
}

.icon {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  margin-bottom: 22px;
  width: 44px;
}

.info-card h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.info-card p,
.membership-copy p,
.contact p,
.footer p {
  color: var(--muted);
  margin: 0;
}

.membership {
  background: var(--steel);
}

.membership-copy p,
.contact p {
  font-size: 18px;
  margin-top: 22px;
  max-width: 640px;
}

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

.choice-list a {
  align-items: center;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  min-height: 82px;
  padding: 20px 22px;
}

.choice-list a::after {
  color: var(--red);
  content: ">";
  font-size: 28px;
  font-weight: 900;
}

.choice-list span {
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 900;
}

.choice-list a:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery button {
  aspect-ratio: 1.22;
  background: var(--black);
  border: 0;
  border-radius: 8px;
  cursor: zoom-in;
  overflow: hidden;
  padding: 0;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
  width: 100%;
}

.gallery button:hover img {
  transform: scale(1.04);
}

.contact {
  background: var(--black);
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, .72);
}

.contact-panel {
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  font-style: normal;
  gap: 1px;
  overflow: hidden;
}

.contact-panel a {
  background: var(--white);
  display: block;
  font-size: 18px;
  font-weight: 850;
  padding: 22px;
  overflow-wrap: anywhere;
}

.contact-panel a:hover {
  background: var(--lime);
}

.footer {
  align-items: center;
  background: #070707;
  color: var(--white);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 92px) 96px;
}

.footer p {
  color: rgba(255, 255, 255, .64);
  max-width: 760px;
}

.footer div {
  display: flex;
  gap: 18px;
}

.mobile-bar {
  background: var(--white);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -10px 28px rgba(16, 16, 16, .12);
  display: none;
  gap: 8px;
  left: 0;
  padding: 10px;
  position: fixed;
  right: 0;
  z-index: 30;
}

.mobile-bar a {
  align-items: center;
  background: var(--paper);
  border-radius: 999px;
  display: flex;
  flex: 1;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
}

.mobile-bar a:last-child {
  background: var(--red);
  color: var(--white);
}

.lightbox {
  align-items: center;
  background: rgba(8, 8, 8, .92);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 50;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  border-radius: 8px;
  max-height: 88vh;
  object-fit: contain;
}

.lightbox button {
  background: var(--white);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 32px;
  height: 48px;
  line-height: 1;
  position: absolute;
  right: 22px;
  top: 22px;
  width: 48px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(16, 16, 16, .92) 0%, rgba(16, 16, 16, .74) 55%, rgba(16, 16, 16, .28) 100%);
  }

  .hero-content {
    padding-top: 150px;
  }

  .quick-facts,
  .split,
  .membership,
  .contact,
  .action-strip {
    grid-template-columns: 1fr;
  }

  .action-strip a {
    border-bottom: 1px solid rgba(16, 16, 16, .16);
    border-right: 0;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-bar {
    display: flex;
  }
}

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

  .brand span,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 116px 18px 112px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .info-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    display: none;
  }

  .choice-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .choice-list a::after {
    content: "";
  }
}
