:root {
  --bg: #050403;
  --bg-soft: #0d0a07;
  --panel: #11100e;
  --panel-2: #17120d;
  --text: #f6ead6;
  --muted: #c2ad8e;
  --soft: #8d785c;
  --gold: #d7ad62;
  --gold-2: #f0d399;
  --line: rgba(215, 173, 98, 0.32);
  --field: rgba(255, 247, 231, 0.055);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 173, 98, 0.12), transparent 28rem),
    linear-gradient(180deg, #060504 0%, #0a0705 46%, #040302 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.page {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(215, 173, 98, 0.22);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 6px;
  border: 1px solid rgba(215, 173, 98, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.brand-logo {
  width: 68px;
  height: 68px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

.topbar-title {
  color: var(--gold-2);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: linear-gradient(135deg, #f6dba5, #bd8540);
  color: #15100a;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(215, 173, 98, 0.2);
}

.button.secondary {
  background: rgba(8, 6, 4, 0.58);
  color: var(--gold-2);
}

.music-toggle {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(215, 173, 98, 0.48);
  border-radius: 999px;
  background: rgba(7, 5, 3, 0.72);
  color: var(--gold-2);
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.music-toggle:hover {
  transform: translateY(-2px);
  border-color: var(--gold-2);
}

.music-toggle.is-playing {
  background: linear-gradient(135deg, rgba(246, 219, 165, 0.92), rgba(189, 133, 64, 0.92));
  color: #15100a;
}

.music-icon,
.music-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.music-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 150px 0 74px;
  display: grid;
  align-items: end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.74) 36%, rgba(0, 0, 0, 0.22) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), #050403 96%),
    var(--hero-image) center / cover no-repeat;
  animation: heroDrift 18s ease-in-out infinite alternate;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(215, 173, 98, 0.34);
  z-index: 3;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  gap: 56px;
  align-items: end;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.88) contrast(1.08) brightness(0.82);
  z-index: 1;
  transition: opacity 900ms ease;
}

.hero-video.is-playing {
  opacity: 0.62;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5.2rem, 12vw, 10.5rem);
  font-weight: 600;
  line-height: 0.78;
  text-transform: uppercase;
}

.script {
  margin: 22px 0 0;
  color: #fff6e7;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-style: italic;
  line-height: 1;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: #d7cab8;
  font-size: 1.05rem;
  line-height: 1.8;
}

.date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin: 36px 0 34px;
}

.date-card {
  min-width: 112px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.36);
  text-align: center;
}

.date-card strong {
  display: block;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.3rem;
  line-height: 0.88;
}

.date-card span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-badge {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.badge-label {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.badge-value {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1.05;
}

.section {
  padding: 84px 0;
  border-top: 1px solid rgba(215, 173, 98, 0.14);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(255, 247, 231, 0.035), transparent),
    #080604;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-title {
  margin: 0;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.section-note {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.facts-grid,
.privilege-grid,
.service-grid {
  display: grid;
  gap: 18px;
}

.facts-grid {
  grid-template-columns: repeat(5, 1fr);
}

.fact,
.privilege,
.service-card,
.highlight-card,
.form-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 247, 231, 0.055), rgba(0, 0, 0, 0.3));
}

.fact {
  min-height: 142px;
  padding: 24px;
  display: grid;
  align-content: space-between;
}

.icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold-2);
}

.icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fact span,
.privilege span,
.service-card span {
  color: var(--soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.fact strong,
.privilege strong,
.service-card strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.1;
}

.privilege-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.privilege {
  min-height: 230px;
  padding: 0 24px 26px;
  overflow: hidden;
}

.privilege-media,
.service-media {
  margin: 0 -24px 22px;
  background-image:
    linear-gradient(180deg, transparent 62%, rgba(5, 4, 3, 0.82)),
    var(--media-image);
  background-position: center, var(--media-position);
  background-size: cover, 200% 300%;
  border-bottom: 1px solid rgba(215, 173, 98, 0.22);
}

.privilege-media {
  aspect-ratio: 4 / 3;
  height: auto;
}

.privilege p,
.service-card p {
  margin: 14px 0 0;
  color: #cabca8;
  font-size: 0.93rem;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 34px;
  align-items: start;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  min-height: 380px;
  padding: 0 24px 24px;
  position: relative;
  overflow: hidden;
}

.service-media {
  aspect-ratio: 4 / 3;
  height: auto;
  background-size: cover, 200% 200%;
}

.reels-section {
  background:
    radial-gradient(circle at 72% 16%, rgba(215, 173, 98, 0.14), transparent 24rem),
    #060504;
}

.reels-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 44px;
  align-items: center;
}

.reels-layout .section-note {
  margin-top: 18px;
}

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

.reel-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #100c08;
  box-shadow: var(--shadow);
}

.reel-card:nth-child(2) {
  transform: translateY(28px);
}

.reel-poster,
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-video {
  opacity: 0;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.06) brightness(0.88);
  transition: opacity 700ms ease;
}

.reel-video.is-playing {
  opacity: 1;
}

.reel-card:nth-child(2) .reel-video {
  object-position: center center;
}

.reel-card:nth-child(3) .reel-video {
  object-position: 70% center;
}

.reel-poster {
  background-image: var(--reel-image);
  background-size: cover;
  background-position: var(--reel-position);
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
}

.reel-overlay {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.reel-overlay span {
  color: var(--gold-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.reel-overlay strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(215, 173, 98, 0.18);
  transform: rotate(22deg);
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.highlight-card {
  padding: 24px;
}

.highlight-card strong {
  display: block;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.highlight-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-panel {
  padding: 30px;
  position: sticky;
  top: 22px;
  box-shadow: var(--shadow);
}

.form-panel h2 {
  margin: 0 0 22px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(246, 234, 214, 0.26);
  border-radius: 0;
  background: var(--field);
  color: var(--text);
  outline: none;
}

.field::placeholder {
  color: rgba(246, 234, 214, 0.52);
}

select.field {
  color: rgba(246, 234, 214, 0.74);
}

textarea.field {
  min-height: 92px;
  padding-top: 14px;
  resize: vertical;
}

.form-note {
  margin: 16px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  padding: 86px 0;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.9)),
    url("assets/philo-vip-hero.png") center 62% / cover no-repeat;
}

.final-cta h2 {
  margin: 0;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
}

.final-cta p {
  max-width: 620px;
  margin: 14px auto 28px;
  color: #d7cab8;
  line-height: 1.8;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(215, 173, 98, 0.18);
  background: #030302;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-logo {
  width: 74px;
  height: 74px;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  object-fit: cover;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
    filter: saturate(0.95) brightness(0.92);
  }

  to {
    transform: scale(1.045);
    filter: saturate(1.05) brightness(1);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .facts-grid,
  .privilege-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reels-layout {
    grid-template-columns: 1fr;
  }

  .form-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    min-height: 76px;
  }

  .topbar-title {
    display: none;
  }

  .topbar .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.68rem;
  }

  .music-toggle {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding: 0 13px;
    font-size: 0.66rem;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .hero {
    padding: 116px 0 54px;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.5)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2), #050403 96%),
      var(--hero-image) center / cover no-repeat;
  }

  .hero-video {
    opacity: 0;
  }

  .hero-video.is-playing {
    opacity: 0.48;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 22vw, 7rem);
  }

  .date-card {
    flex: 1 1 88px;
    min-width: 88px;
    padding: 14px 10px;
  }

  .date-card strong {
    font-size: 2.45rem;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: grid;
  }

  .facts-grid,
  .privilege-grid,
  .service-grid,
  .highlight-row,
  .reels-grid {
    grid-template-columns: 1fr;
  }

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

  .reel-card:nth-child(2) {
    transform: none;
  }

  .footer-inner {
    display: grid;
  }
}
