:root {
  color-scheme: dark;
  --bg: #090908;
  --panel: #141110;
  --panel-2: #201918;
  --text: #fff8ef;
  --muted: #c7b8ad;
  --line: rgba(255, 248, 239, 0.16);
  --accent: #c43e4f;
  --accent-2: #d9ad66;
  --shadow: rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

button,
a.button {
  -webkit-tap-highlight-color: transparent;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(9, 9, 8, 0.82), rgba(9, 9, 8, 0.88)),
    radial-gradient(circle at 40% 20%, rgba(196, 62, 79, 0.38), transparent 34%),
    var(--bg);
}

.age-gate.hidden {
  display: none;
}

.gate-panel {
  width: min(100%, 440px);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 17, 16, 0.96);
  box-shadow: 0 24px 70px var(--shadow);
}

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

.gate-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.gate-panel p {
  color: var(--muted);
}

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

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  border-color: rgba(255, 248, 239, 0.32);
  background: rgba(255, 248, 239, 0.08);
}

.button.ghost {
  border-color: var(--line);
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 70px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 76px) 64px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.94) 0%, rgba(9, 9, 8, 0.7) 44%, rgba(9, 9, 8, 0.22)),
    linear-gradient(0deg, rgba(9, 9, 8, 0.86), rgba(9, 9, 8, 0.08) 52%, rgba(9, 9, 8, 0.3)),
    url("./assets/brand/banner.webp") center / cover no-repeat;
  filter: saturate(1.04);
  transform: scale(1.02);
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-backdrop::before {
  right: 9%;
  bottom: 12%;
  width: min(34vw, 390px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 239, 0.24);
  box-shadow:
    inset 0 0 80px rgba(217, 173, 102, 0.12),
    0 0 90px rgba(217, 173, 102, 0.18);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.hero-logo {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.46));
}

.profile-image {
  position: absolute;
  right: max(-44vw, -520px);
  bottom: 4px;
  width: min(320px, 28vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 248, 239, 0.26);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

.hero-copy {
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.notice {
  padding: 18px clamp(18px, 6vw, 76px);
  border-block: 1px solid var(--line);
  background: #110f0e;
  color: var(--muted);
}

.notice strong {
  color: var(--text);
}

.section {
  padding: 74px clamp(18px, 6vw, 76px);
}

.section-heading {
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

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

.preview-card,
.set-card,
.faq-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.preview-card {
  overflow: hidden;
}

.preview-card h3,
.preview-card p,
.faq-grid h3,
.faq-grid p {
  margin-inline: 18px;
}

.preview-card p,
.faq-grid p,
.set-meta,
.set-description {
  color: var(--muted);
}

.preview-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(rgba(9, 9, 8, 0.28), rgba(9, 9, 8, 0.68)),
    linear-gradient(135deg, #5c2027, #17100f 55%, #665034);
}

.preview-media::after {
  content: "CENSORED";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 46%;
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(255, 248, 239, 0.28);
  background: rgba(8, 8, 8, 0.88);
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.preview-media span {
  color: rgba(255, 248, 239, 0.62);
  font-weight: 800;
}

.preview-media.alt {
  background:
    linear-gradient(rgba(9, 9, 8, 0.24), rgba(9, 9, 8, 0.74)),
    linear-gradient(145deg, #2a2420, #7a2c39 47%, #191313);
}

.clip-sample {
  background:
    linear-gradient(rgba(9, 9, 8, 0.24), rgba(9, 9, 8, 0.74)),
    linear-gradient(135deg, #121212, #47372c 45%, #732b39);
}

.clip-sample::after {
  content: "TEASER";
}

.play-button {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 248, 239, 0.5);
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.12);
  cursor: default;
}

.play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin: 21px 0 0 28px;
  border-block: 14px solid transparent;
  border-left: 20px solid var(--text);
}

.sets {
  background: #0d0b0a;
}

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

.set-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 20px;
}

.set-card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.set-price {
  margin: 18px 0 0;
  color: var(--accent-2);
  font-size: 2rem;
  font-weight: 900;
}

.set-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.set-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.set-card .button {
  width: 100%;
  margin-top: auto;
}

.faq-grid > div {
  padding: 18px 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .hero {
    min-height: 72svh;
    padding-top: 80px;
  }

  .profile-image {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(220px, 56vw);
    margin: 0 0 18px;
  }

  .preview-grid,
  .set-list,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

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