:root {
  --obsidian: #070605;
  --charcoal: #151312;
  --espresso: #201916;
  --ivory: #f6efe3;
  --muted: rgba(246, 239, 227, 0.72);
  --faint: rgba(246, 239, 227, 0.14);
  --gold: #d7b46a;
  --bronze: #9b6a3e;
  --platinum: #d6d0c6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: linear-gradient(rgba(7, 6, 5, 0.92), rgba(7, 6, 5, 0.22) 72%, rgba(7, 6, 5, 0));
}

.brand-lockup,
nav {
  display: flex;
  align-items: center;
}

.brand-lockup {
  text-decoration: none;
}

.brand-lockup img {
  width: 104px;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

nav {
  flex-wrap: wrap;
  gap: 20px;
}

nav a {
  color: rgba(246, 239, 227, 0.86);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(118px, 13vh, 150px) clamp(26px, 5vw, 72px) clamp(38px, 7vh, 80px);
  overflow: hidden;
  isolation: isolate;
}

.screensaver {
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: min(70vh, 760px);
  aspect-ratio: 4 / 5;
  order: 2;
  overflow: hidden;
  border: 1px solid rgba(215, 180, 106, 0.28);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}

.screensaver::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(215, 180, 106, 0.18);
  pointer-events: none;
}

.screensaver img {
  object-position: center;
}

.screensaver img:first-child {
  object-position: 42% center;
}

.screensaver img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: cinematicFade 32s infinite;
}

.screensaver img:nth-child(2) {
  animation-delay: 8s;
}

.screensaver img:nth-child(3) {
  animation-delay: 16s;
}

.screensaver img:nth-child(4) {
  animation-delay: 24s;
}

.hero::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 35% 42%, rgba(215, 180, 106, 0.11), transparent 30%),
    linear-gradient(90deg, rgba(7, 6, 5, 0.74), rgba(7, 6, 5, 0.26), rgba(7, 6, 5, 0.68)),
    linear-gradient(0deg, rgba(7, 6, 5, 0.88), rgba(7, 6, 5, 0.1) 58%);
}

@keyframes cinematicFade {
  0%,
  100% {
    opacity: 0;
    transform: scale(1.07);
  }
  7%,
  28% {
    opacity: 1;
  }
  34% {
    opacity: 0;
    transform: scale(1);
  }
}

.deco-frame {
  position: absolute;
  inset: clamp(92px, 8vw, 118px) clamp(18px, 4vw, 58px) clamp(24px, 4vw, 58px);
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(215, 180, 106, 0.34);
}

.deco-frame::before,
.deco-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(34vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.deco-frame::before {
  top: 18px;
}

.deco-frame::after {
  bottom: 18px;
}

.hero-copy {
  width: min(620px, 100%);
  padding: 0;
  order: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

.source-mark img {
  width: min(190px, 76%);
  margin: auto;
}

h1 {
  max-width: 600px;
  margin-bottom: 22px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: 0.92;
}

h2 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.1;
}

.hero-copy p:not(.eyebrow),
.statement p,
.editorial-split p,
.mockup-copy p,
.heirloom-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 1px solid currentColor;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 320ms ease,
    border-color 320ms ease,
    transform 320ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--bronze), #c89454);
  border-color: rgba(215, 180, 106, 0.7);
}

.button.ghost {
  background: rgba(246, 239, 227, 0.05);
  backdrop-filter: blur(16px);
}

section:not(.hero) {
  padding: clamp(78px, 9vw, 138px) clamp(20px, 5vw, 84px);
}

.statement {
  display: grid;
  min-height: 76svh;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 44%, rgba(215, 180, 106, 0.12), transparent 28%),
    var(--obsidian);
}

.statement p {
  margin-left: auto;
  margin-right: auto;
}

.editorial-split,
.mockups,
.heirloom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
  background: var(--charcoal);
}

.editorial-split figure,
.mockup-image {
  margin: 0;
  position: relative;
}

.editorial-split figure::after,
.mockup-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(215, 180, 106, 0.36);
  pointer-events: none;
}

.editorial-split img,
.mockup-image img {
  width: 100%;
  min-height: 62vh;
  object-fit: cover;
}

.brand-system {
  background:
    linear-gradient(rgba(7, 6, 5, 0.9), rgba(7, 6, 5, 0.9)),
    url("./assets/4k/rooftop-immersive-private-event-4k.jpg") center / cover;
}

.section-intro {
  max-width: 860px;
  margin-bottom: 42px;
}

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

.logo-grid article,
.tier-row article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--faint);
  background: rgba(246, 239, 227, 0.045);
  backdrop-filter: blur(18px);
}

.logo-grid article {
  display: grid;
  align-content: space-between;
}

.logo-grid p,
.tier-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.logo {
  min-height: 118px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  text-align: center;
}

.wordmark {
  font-size: 34px;
}

.monogram {
  grid-template-columns: auto auto;
  gap: 0;
  color: var(--gold);
  font-size: 54px;
}

.monogram span:first-child {
  transform: translateX(8px);
}

.monogram span:last-child {
  transform: translateX(-8px);
}

.frame-logo span {
  padding: 18px 26px;
  border: 1px solid var(--gold);
  border-left-width: 4px;
  border-right-width: 4px;
  font-size: 24px;
}

.emblem span,
.hospitality span {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 28px;
}

.portal {
  position: relative;
}

.portal span {
  width: 94px;
  height: 94px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.portal b {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.signature {
  grid-template-columns: auto 34px auto;
  gap: 10px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
}

.signature span {
  height: 1px;
  background: var(--gold);
}

.hospitality,
.title-card {
  gap: 12px;
}

.hospitality small,
.title-card small {
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.title-card span {
  font-size: 30px;
}

.mockups {
  background: var(--espresso);
}

.heirloom {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background:
    radial-gradient(circle at 18% 25%, rgba(215, 180, 106, 0.1), transparent 30%),
    var(--obsidian);
}

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

.tier-row span {
  display: block;
  margin-bottom: 62px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.quiet-proof {
  text-align: center;
  background: #0c0a09;
}

.quiet-proof h2 {
  margin-left: auto;
  margin-right: auto;
}

.proof-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.proof-links a {
  padding: 12px 16px;
  border: 1px solid var(--faint);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  min-height: 92svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  background: url("./assets/4k/gta-immersive-first-dance-4k.jpg") center / cover;
}

.final-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1040px) {
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 20px 0;
  }

  nav {
    width: 100%;
    gap: 10px 12px;
  }

  .editorial-split,
  .mockups,
  .heirloom,
  .tier-row {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 0;
  }
}

@media (max-width: 540px) {
  .brand-lockup img {
    width: 74px;
  }

  nav a {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .hero-copy {
    width: min(100%, 330px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 132px 20px 42px;
    gap: 24px;
  }

  .screensaver {
    min-height: auto;
    aspect-ratio: 4 / 5;
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  h1 {
    max-width: 310px;
    font-size: 42px;
    line-height: 0.96;
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy p:not(.eyebrow),
  .statement p,
  .editorial-split p,
  .mockup-copy p,
  .heirloom-copy p {
    font-size: 18px;
  }

  .button {
    width: min(100%, 310px);
  }

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

  .editorial-split img,
  .mockup-image img {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }
}
