:root{
  --ink:#171515;
  --paper:#f6f1eb;
  --paper2:#eee7df;
  --muted:#746d67;
  --accent:#7f2638;
  --line:rgba(23,21,21,.16);
  --dark:#11100f;
  --light:#f6f1eb;
  --dark-muted:rgba(246,241,235,.62);
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100svh;
  background:var(--paper);
  color:var(--ink);
  font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit}
img{display:block;max-width:100%}
.shell{
  width:min(var(--max),calc(100% - 32px));
  margin:0 auto;
  min-height:100svh;
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:20px;
  padding:24px 0 18px;
}
.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.wordmark{
  color:inherit;
  text-decoration:none;
  letter-spacing:.16em;
  font-size:.78rem;
  font-weight:750;
}
.identity{
  color:var(--muted);
  font-size:.75rem;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.hero{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:clamp(30px,5vw,76px);
  align-items:center;
}
.hero-media{
  overflow:hidden;
  border-radius:2px;
  box-shadow:0 24px 70px rgba(23,21,21,.12);
}
.hero-media img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--accent);
  font-size:.76rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
}
h1{
  margin:0;
  font-family:"Iowan Old Style","Palatino Linotype",Palatino,Baskerville,Georgia,serif;
  font-size:clamp(3.2rem,8.5vw,7.2rem);
  line-height:.88;
  letter-spacing:-.055em;
  font-weight:500;
}
.role{
  margin:12px 0 0;
  color:var(--muted);
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:lowercase;
}
.blurb{
  margin:24px 0 0;
  max-width:29ch;
  font-family:"Iowan Old Style","Palatino Linotype",Palatino,Baskerville,Georgia,serif;
  font-style:italic;
  font-size:clamp(1.08rem,2.1vw,1.42rem);
  line-height:1.45;
}
.socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:30px;
}
.social-link,.cta{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 19px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  font-size:.9rem;
  font-weight:700;
  background:rgba(255,255,255,.28);
  transition:transform .16s ease,border-color .16s ease,background-color .16s ease;
}
.social-link:hover,.social-link:focus-visible,.cta:hover,.cta:focus-visible{
  transform:translateY(-1px);
  border-color:rgba(23,21,21,.38);
}
.private-entry{
  width:100%;
  min-height:52px;
  margin-top:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:999px;
  border:1px solid rgba(23,21,21,.30);
  background:var(--ink);
  color:var(--paper);
  text-decoration:none;
  font-size:.92rem;
  font-weight:750;
  letter-spacing:.01em;
  transition:transform .16s ease,background-color .16s ease,border-color .16s ease;
}
.private-entry:hover,.private-entry:focus-visible{
  transform:translateY(-1px);
  background:#000;
  border-color:#000;
}
.private-age{
  color:rgba(246,241,235,.62);
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.10em;
  text-transform:uppercase;
}
.footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  color:var(--muted);
  font-size:.76rem;
}
.footer-links{display:flex;align-items:center;gap:14px}
.footer a{text-decoration:none;min-height:44px;display:inline-flex;align-items:center}
.footer a:hover,.footer a:focus-visible{text-decoration:underline}

/* Dedicated 18+ conversion page */
body.private{
  background:var(--dark);
  color:var(--light);
}
.private .identity,.private .role{color:var(--dark-muted)}
.private .hero-media{box-shadow:0 24px 70px rgba(0,0,0,.34)}
.private .hero-media img{filter:saturate(.9) contrast(1.02)}
.private .eyebrow{color:#d7c5c9}
.private h1{
  font-size:clamp(3rem,7.8vw,6.5rem);
  max-width:9ch;
}
.age{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  margin-bottom:17px;
  padding:6px 10px;
  border:1px solid rgba(246,241,235,.25);
  border-radius:999px;
  color:#d5cdc4;
  font-size:.67rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.private-copy{
  margin:23px 0 0;
  max-width:31ch;
  color:rgba(246,241,235,.76);
  font-size:1.03rem;
  line-height:1.6;
}
.private .cta{
  margin-top:28px;
  min-height:58px;
  padding:15px 25px;
  border-radius:999px;
  border-color:var(--light);
  background:var(--light);
  color:var(--ink);
  font-size:.95rem;
}
.private .cta:hover,.private .cta:focus-visible{background:#fff}
.microcopy{
  margin:13px 0 0;
  max-width:42ch;
  color:rgba(246,241,235,.47);
  font-size:.72rem;
  line-height:1.55;
}
.private .footer{color:rgba(246,241,235,.46)}
.private .footer a{color:inherit}

/* Privacy / utility */
.simple .shell{display:block}
.simple main{
  width:min(700px,100%);
  margin:0 auto;
  padding:10svh 0 70px;
}
.simple h1{font-size:clamp(2.8rem,8vw,5.1rem)}
.prose{
  margin-top:30px;
  color:#4b4540;
  line-height:1.75;
}
.prose h2{margin:2rem 0 .5rem;color:var(--ink);font-size:1rem}
.prose p{margin:.8rem 0}
.back{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  margin-top:20px;
  color:var(--muted);
}
:focus-visible{outline:3px solid #c87c8c;outline-offset:3px}

@media(max-width:800px){
  .shell{min-height:auto;padding-top:18px}
  .hero{grid-template-columns:1fr;gap:28px}
  .hero-media{order:1}
  .hero-copy{order:2}
  .hero-media img{max-height:58svh}
  h1,.private h1{font-size:clamp(3.1rem,16vw,5.8rem)}
  .topbar .identity{display:none}
  .footer{margin-top:18px;align-items:flex-start}
}
@media(max-width:440px){
  .shell{width:calc(100% - 24px)}
  .socials{display:grid;grid-template-columns:1fr 1fr}
  .social-link{padding-inline:12px}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{transition:none!important}
}
