:root {
  color-scheme: dark;
  --ink: #f7efe6;
  --muted: #b9ada4;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #0d0a0e;
  --soft: #151017;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: #1d151c;
  --teal: #38d6cc;
  --rose: #d94b63;
  --gold: #d8a84b;
  --navy: #080609;
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 168, 75, 0.11), transparent 28rem),
    linear-gradient(180deg, #0b080c 0%, #110d12 42%, #0d0a0e 100%);
  line-height: 1.65;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 7, 11, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 8px 18px rgba(56, 214, 204, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(216, 168, 75, 0.14);
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 64px));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(8, 6, 9, 0.96) 0%, rgba(10, 7, 11, 0.88) 36%, rgba(10, 7, 11, 0.42) 68%, rgba(10, 7, 11, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 6, 9, 0.18), rgba(8, 6, 9, 0.72)),
    url("/av-actress-hero.png") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(13, 10, 14, 0.92));
  pointer-events: none;
}

.hero-inner,
.section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 22px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 84px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 850;
  font-size: 0.92rem;
}

h1,
h2,
h3 {
  line-height: 1.16;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 6.6vw, 5.7rem);
  max-width: 10.5ch;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.lead {
  max-width: 760px;
  color: rgba(247, 239, 230, 0.79);
  font-size: 1.13rem;
  margin: 24px 0 0;
  overflow-wrap: anywhere;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 6px;
  font-weight: 850;
  border: 1px solid rgba(216, 168, 75, 0.85);
  background: linear-gradient(180deg, #e0b35d, #b87d22);
  color: #130c07;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.32);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 239, 230, 0.86);
  font-size: 0.92rem;
}

.hero-points strong {
  color: var(--gold);
}

.notice {
  max-width: 660px;
  border-left: 4px solid var(--rose);
  background: rgba(217, 75, 99, 0.12);
  color: #f4cbd2;
  padding: 14px 16px;
  margin-top: 24px;
  border-radius: 0 6px 6px 0;
  font-weight: 650;
}

.band {
  border-bottom: 1px solid var(--line);
}

.band.soft {
  background: rgba(255, 255, 255, 0.035);
}

.gallery-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.055)),
    #100c12;
}

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

.section-head p {
  max-width: 720px;
  color: var(--muted);
  margin: 0;
}

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

.portrait-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080609;
  box-shadow: 0 20px 44px var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04);
  transition: transform 220ms ease;
}

.portrait-card:hover img {
  transform: scale(1.035);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
}

.portrait-one img {
  object-position: 57% center;
}

.portrait-two img {
  object-position: 75% center;
}

.portrait-three img {
  object-position: 47% center;
}

.portrait-four img {
  object-position: 88% center;
}

.portrait-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.portrait-card strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
}

.portrait-card span {
  display: block;
  color: rgba(247, 239, 230, 0.72);
  font-size: 0.88rem;
  margin-top: 2px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.card strong,
.metric strong {
  color: var(--gold);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metric {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 3px;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-link {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.article-link:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 168, 75, 0.45);
  background: rgba(255, 255, 255, 0.075);
}

.article-meta {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.tag {
  display: inline-flex;
  padding: 3px 8px;
  border: 1px solid rgba(216, 168, 75, 0.5);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
}

.content {
  max-width: 860px;
  margin: 0 auto;
}

.content h1 {
  max-width: 12ch;
}

.content p,
.card p {
  color: var(--muted);
  margin: 0;
}

.content section {
  margin-top: 30px;
}

.content ul,
.content ol {
  color: var(--muted);
  padding-left: 22px;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.footer {
  background: #080609;
  color: #d9d0c7;
}

.footer .section-inner {
  padding-top: 34px;
  padding-bottom: 34px;
}

.footer a {
  color: #fff;
  font-weight: 700;
}

.footer small {
  display: block;
  color: #9f938d;
  margin-top: 12px;
}

.download-card {
  display: block;
}

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

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nav-links a {
    text-align: center;
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero {
    min-height: 720px;
    background:
      linear-gradient(180deg, rgba(8, 6, 9, 0.94) 0%, rgba(8, 6, 9, 0.72) 44%, rgba(8, 6, 9, 0.96) 100%),
      url("/av-actress-hero.png") 70% center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 76px;
    padding-bottom: 60px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.2vw, 2.8rem);
    max-width: 100%;
  }

  .hero-copy {
    max-width: calc(100vw - 44px);
  }

  .lead {
    max-width: 31ch;
    font-size: 1.02rem;
    word-break: break-all;
  }

  .notice {
    max-width: 31ch;
    word-break: break-all;
  }

  .grid.two,
  .grid.three,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .article-link {
    grid-template-columns: 1fr;
  }

}

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

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

  .portrait-card,
  .portrait-card img {
    min-height: 360px;
  }

  .hero-points {
    align-items: stretch;
    flex-direction: column;
  }
}
