@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --obsidian: #070707;
  --charcoal: #171717;
  --burgundy: #4a0710;
  --wine: #7a111f;
  --silver: #c8c3ba;
  --ivory: #f3eee6;
  --champagne: #b89b6a;
  --muted-text: rgba(243, 238, 230, 0.72);
  --faint-line: rgba(200, 195, 186, 0.16);
  --panel-line: rgba(184, 155, 106, 0.18);
  --display-stack: Canela, "Editorial New", "Noe Display", "Cormorant Garamond", Georgia, serif;
  --body-stack: "Suisse Int'l", "Neue Haas Grotesk", "Helvetica Neue", Inter, Arial, sans-serif;
  --label-stack: "Neue Montreal", Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ivory);
  background: var(--obsidian);
  font-family: var(--body-stack);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--ivory);
  background: var(--wine);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 24px 36px;
  color: var(--silver);
}

.brand {
  display: inline-flex;
  width: 168px;
  align-items: center;
  grid-column: 2;
  justify-self: center;
}

.header-nav {
  grid-column: 3;
  justify-self: end;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(200, 195, 186, 0.45);
  color: rgba(243, 238, 230, 0.82);
  font-family: var(--label-stack);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  border-color: var(--wine);
  color: var(--ivory);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  padding: 118px 36px 64px;
}

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

.hero-media {
  z-index: -3;
  background-image: url("assets/private-lounge.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.96) contrast(1.03) brightness(0.88);
  transform: scale(1.01);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.74) 0%, rgba(7, 7, 7, 0.52) 31%, rgba(7, 7, 7, 0.18) 69%, rgba(7, 7, 7, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.22) 0%, rgba(7, 7, 7, 0.08) 38%, rgba(7, 7, 7, 0.74) 100%),
    radial-gradient(circle at 50% 54%, rgba(74, 7, 16, 0.18), transparent 32%);
}

.hero-content {
  align-self: center;
  justify-self: center;
  width: min(100%, 640px);
  padding-bottom: 12px;
  text-align: center;
}

.kicker {
  margin: 0 0 20px;
  color: rgba(200, 195, 186, 0.76);
  font-family: var(--label-stack);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display-stack);
  font-weight: 400;
  line-height: 1;
}

h1 {
  max-width: 560px;
  color: var(--ivory);
  font-size: 72px;
}

.intro {
  max-width: 520px;
  margin: 24px auto 0;
  color: var(--muted-text);
  font-size: 18px;
  font-weight: 300;
}

.access-button,
.access-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 195, 186, 0.38);
  border-radius: 0;
  background: rgba(74, 7, 16, 0.46);
  color: var(--ivory);
  font-family: var(--label-stack);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.access-button {
  min-width: 176px;
  margin-top: 30px;
  padding: 0 26px;
}

.access-button:hover,
.access-button:focus-visible,
.access-form button:hover,
.access-form button:focus-visible {
  border-color: rgba(243, 238, 230, 0.72);
  background: rgba(122, 17, 31, 0.82);
  transform: translateY(-1px);
}

.phase-note {
  margin: 22px 0 0;
  color: rgba(200, 195, 186, 0.7);
  font-family: var(--label-stack);
  font-size: 13px;
}

.pillars-section {
  background: var(--obsidian);
  padding: 56px 36px 104px;
}

.pillars-heading {
  width: min(100%, 860px);
  margin: 0 auto 46px;
  text-align: center;
}

.pillars-heading h2 {
  color: var(--ivory);
  font-size: 54px;
}

.pillars-grid {
  display: grid;
  width: min(100%, 1500px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 0;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.08), rgba(7, 7, 7, 0.9)),
    linear-gradient(135deg, rgba(74, 7, 16, 0.42), transparent 54%),
    rgba(7, 7, 7, 0.72);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 32px;
  transition: filter 420ms ease, transform 420ms ease;
}

.pillar-card:hover {
  filter: brightness(1.08);
  transform: translateY(-6px);
}

.discreet-card {
  background-image:
    linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.9)),
    linear-gradient(135deg, rgba(74, 7, 16, 0.26), transparent 52%),
    url("assets/private-locations.jpg");
  background-position: center;
  background-size: cover;
}

.selected-card {
  background-image:
    linear-gradient(180deg, rgba(7, 7, 7, 0.04), rgba(7, 7, 7, 0.88)),
    linear-gradient(135deg, rgba(74, 7, 16, 0.22), transparent 52%),
    url("assets/selected-guests.jpg");
  background-position: center;
  background-size: cover;
}

.locations-card {
  background-image:
    linear-gradient(180deg, rgba(7, 7, 7, 0.02), rgba(7, 7, 7, 0.84)),
    linear-gradient(135deg, rgba(74, 7, 16, 0.18), transparent 52%),
    url("assets/discreet-access.jpg");
  background-position: center;
  background-size: cover;
}

@media (prefers-reduced-motion: reduce) {
  .request-section::before {
    animation: none;
  }

  .pillar-card {
    transition: none;
  }

  .pillar-card:hover {
    filter: none;
    transform: none;
  }
}

.pillar-card span {
  position: absolute;
  top: 30px;
  left: 32px;
  display: block;
  color: rgba(184, 155, 106, 0.78);
  font-family: var(--label-stack);
  font-size: 12px;
  font-weight: 600;
}

.pillar-card h2 {
  color: rgba(243, 238, 230, 0.92);
  font-size: 42px;
}

.pillar-card p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(243, 238, 230, 0.7);
  font-family: var(--body-stack);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

.request-section {
  scroll-margin-top: 96px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--obsidian);
  padding: 68px 36px 92px;
}

.request-section::before {
  position: absolute;
  z-index: 0;
  inset: -28%;
  background:
    radial-gradient(circle at 24% 36%, rgba(122, 17, 31, 0.34), transparent 31%),
    radial-gradient(circle at 74% 58%, rgba(74, 7, 16, 0.42), transparent 35%),
    radial-gradient(circle at 50% 100%, rgba(122, 17, 31, 0.24), transparent 38%);
  content: "";
  filter: blur(34px);
  opacity: 0.9;
  transform: translate3d(-1%, 0, 0) scale(1);
  animation: request-shader 18s ease-in-out infinite alternate;
}

.request-section::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.72), rgba(7, 7, 7, 0.18) 46%, rgba(7, 7, 7, 0.86));
  content: "";
  pointer-events: none;
}

.request-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 720px);
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  text-align: center;
}

.request-copy {
  max-width: 640px;
  margin: 0 auto;
}

.request-copy h2 {
  color: var(--ivory);
  font-size: 50px;
}

.request-copy p:last-child {
  max-width: 500px;
  margin: 22px auto 0;
  color: var(--muted-text);
  font-weight: 300;
}

.access-form {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--panel-line);
  padding-top: 30px;
  text-align: left;
}

@keyframes request-shader {
  0% {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  50% {
    transform: translate3d(1.5%, 1%, 0) scale(1.05);
  }

  100% {
    transform: translate3d(-0.5%, 1.5%, 0) scale(1.02);
  }
}

.access-form label {
  display: grid;
  gap: 8px;
  color: rgba(200, 195, 186, 0.82);
  font-family: var(--label-stack);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.access-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--faint-line);
  border-radius: 0;
  background: rgba(7, 7, 7, 0.62);
  color: var(--ivory);
  padding: 0 14px;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease;
}

.access-form input:focus {
  border-color: rgba(200, 195, 186, 0.56);
  background: rgba(7, 7, 7, 0.88);
}

.access-form button {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(200, 195, 186, 0.08);
  padding: 24px 36px;
  color: rgba(200, 195, 186, 0.64);
  font-family: var(--label-stack);
  font-size: 12px;
  text-transform: uppercase;
}

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

  .brand {
    width: 146px;
  }

  .hero {
    min-height: 88vh;
    padding: 108px 22px 44px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.68) 55%, rgba(7, 7, 7, 0.38) 100%),
      linear-gradient(180deg, rgba(7, 7, 7, 0.45) 0%, rgba(7, 7, 7, 0.2) 34%, rgba(7, 7, 7, 0.94) 100%),
      radial-gradient(circle at 22% 52%, rgba(74, 7, 16, 0.22), transparent 36%);
  }

  h1 {
    font-size: 54px;
  }

  .intro {
    font-size: 17px;
  }

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

  .pillar-card {
    min-height: 460px;
  }

  .request-section {
    padding: 38px 22px 76px;
  }

  .request-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .request-copy h2 {
    font-size: 40px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: absolute;
  }

  .header-nav a {
    min-height: 36px;
    font-size: 11px;
  }

  .hero {
    min-height: 88vh;
  }

  h1 {
    font-size: 44px;
  }

  .access-button {
    width: 100%;
  }
}
