
:root {
  --bg: #100d12;
  --bg-soft: #171219;
  --panel: rgba(255,255,255,.045);
  --text: #f3edf2;
  --muted: #b9aeb8;
  --line: rgba(255,255,255,.13);
  --accent: #d7a8b8;
  --accent-2: #8f6675;
  --shadow: 0 30px 90px rgba(0,0,0,.45);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(143,102,117,.18), transparent 35%),
    radial-gradient(circle at 90% 30%, rgba(215,168,184,.11), transparent 34%),
    var(--bg);
  font-family: var(--sans);
  min-height: 100vh;
}

body.locked { overflow: hidden; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  z-index: 50;
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}
.wordmark-main {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: .18em;
}
.wordmark-sub {
  color: var(--muted);
  font-size: .58rem;
  letter-spacing: .28em;
}
nav { display: flex; gap: 28px; }
nav a {
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
nav a:hover { color: var(--text); }

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

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 76px;
  padding: 76px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.hero h1, .section h2, .age-card h1 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.9rem);
  line-height: .92;
}
.hero h1 em {
  color: var(--accent);
  font-weight: 400;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.05rem;
}

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

.button {
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 750;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: var(--accent);
  color: #1a1115;
  border-color: var(--accent);
}
.button-primary:hover { background: #e4bdca; }
.button-ghost { background: transparent; }
.button-ghost:hover { border-color: rgba(255,255,255,.4); }
.button-wide { width: 100%; }

.hero-art {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.frame {
  width: min(100%, 390px);
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  background: #171219;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.frame::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    inset 0 0 70px rgba(16,13,18,.22),
    0 0 0 1px rgba(215,168,184,.04);
}

.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16,13,18,.05) 0%, transparent 46%, rgba(16,13,18,.64) 100%),
    linear-gradient(90deg, rgba(16,13,18,.10), transparent 35%);
}

.portrait-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: url("portrait-v2.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  filter: saturate(.88) contrast(1.02) brightness(.86);
}

.portrait-signature {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 44px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  color: rgba(255,255,255,.88);
}

.portrait-signature span {
  font-family: var(--serif);
  font-size: .92rem;
  letter-spacing: .16em;
}

.portrait-signature small {
  color: rgba(255,255,255,.62);
  font-size: .52rem;
  letter-spacing: .18em;
  text-align: right;
}

.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .2em;
}
.marquee i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}
.section h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 1.02;
}
.prose {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.75rem);
  line-height: 1.65;
}
.prose p:first-child { margin-top: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 280px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.card-number {
  color: var(--accent);
  font-size: .72rem;
  letter-spacing: .18em;
}
.card h3 {
  margin: 70px 0 16px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
}
.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 80px;
  align-items: end;
}
.contact-panel > div > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-actions small {
  color: var(--muted);
  line-height: 1.6;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--muted);
  font-size: .72rem;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer strong {
  color: var(--text);
  font-family: var(--serif);
  letter-spacing: .14em;
}
footer p { margin: 0; }

.hidden { display: none !important; }

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10,8,11,.92);
  backdrop-filter: blur(18px);
}
.age-gate.dismissed { display: none; }
.age-card {
  width: min(100%, 520px);
  padding: 44px;
  background: #151117;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.age-card h1 {
  margin: 0 0 16px;
  font-size: 3.5rem;
}
.age-card > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 850px) {
  nav { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 58px;
  }
  .hero-art { min-height: auto; }
  .frame { width: min(82vw, 390px); }
  .split, .contact-panel { grid-template-columns: 1fr; gap: 40px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 220px; }
  .card h3 { margin-top: 48px; }
  .marquee span:nth-of-type(3), .marquee i:nth-of-type(3) { display: none; }
}

@media (max-width: 520px) {
  .site-header, main, footer { width: min(100% - 28px, 1180px); }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
  .hero-actions .button { width: 100%; }
  .section { padding: 78px 0; }
  .marquee { font-size: .56rem; letter-spacing: .13em; }
  .marquee span:nth-of-type(4), .marquee i:nth-of-type(2) { display: none; }
  .age-card { padding: 30px 24px; }
  .age-card h1 { font-size: 2.7rem; }
  .age-actions .button { width: 100%; }
  footer { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
