:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: rgba(19, 19, 19, .78);
  --line: rgba(255,255,255,.12);
  --text: #f5f2ec;
  --muted: #aaa69f;
  --silver: #d4d0c8;
  --warm: #9e8d72;
  --warm-light: #c8b89d;
  --max: 1180px;
  --serif: "Cinzel", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body { margin: 0; color: var(--text); background: var(--bg); font-family: var(--sans); line-height: 1.6; overflow-x: hidden; }
body.age-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); }
.eyebrow { margin: 0 0 13px; color: var(--warm-light); font-size: .75rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 600; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid transparent; border-radius: 2px; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 600; cursor: pointer; transition: .25s ease; }
.btn-primary { background: var(--text); color: #080808; }
.btn-primary:hover { background: var(--warm-light); transform: translateY(-2px); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: var(--text); background: rgba(0,0,0,.15); }
.btn-ghost:hover { border-color: var(--text); background: rgba(255,255,255,.07); }

.age-gate { position: fixed; inset: 0; z-index: 999; display: grid; place-items: center; padding: 24px; background: radial-gradient(circle at center, rgba(45,40,34,.35), rgba(0,0,0,.97) 65%), #030303; transition: opacity .35s ease, visibility .35s ease; }
.age-gate.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-card { width: min(560px, 100%); padding: 42px; text-align: center; border: 1px solid var(--line); background: rgba(10,10,10,.88); box-shadow: 0 30px 90px rgba(0,0,0,.75); backdrop-filter: blur(16px); }
.age-logo { width: 154px; margin: -2px auto 24px; filter: drop-shadow(0 15px 20px rgba(0,0,0,.45)); }
.age-card h1 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(1.75rem,5vw,2.65rem); letter-spacing: .04em; font-weight: 500; }
.age-card > p:not(.eyebrow) { margin: 0 auto 28px; max-width: 460px; color: var(--muted); font-size: .92rem; }
.age-actions { display: flex; gap: 12px; justify-content: center; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; right: 0; height: 84px; display: flex; align-items: center; justify-content: space-between; padding: 0 max(28px, calc((100vw - var(--max))/2)); border-bottom: 1px solid transparent; transition: .3s ease; }
.site-header.scrolled { height: 70px; background: rgba(7,7,7,.88); border-color: var(--line); backdrop-filter: blur(16px); }
.brand, .footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); text-transform: uppercase; letter-spacing: .14em; font-size: .87rem; font-weight: 600; }
.brand img, .footer-brand img { border-radius: 50%; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: rgba(255,255,255,.78); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; font-weight: 600; transition: color .2s ease; }
.site-nav a:hover { color: white; }
.site-nav .nav-cta { border: 1px solid rgba(255,255,255,.35); padding: 10px 15px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; height: 1px; background: white; margin: 7px 0; transition: .2s; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-image { position: absolute; inset: 0; background-image: url('../img/jax-kane-hero.webp'); background-size: cover; background-position: center 24%; filter: contrast(1.03); transform: scale(1.015); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,3,3,.98) 0%, rgba(3,3,3,.77) 37%, rgba(3,3,3,.18) 68%, rgba(3,3,3,.25) 100%), linear-gradient(0deg, #080808 0%, transparent 28%, rgba(0,0,0,.3) 100%); }
.hero-content { position: relative; z-index: 2; width: min(var(--max), calc(100% - 56px)); margin: 0 auto; padding: 148px 0 90px; }
.hero-logo { width: 146px; margin-bottom: 18px; filter: drop-shadow(0 14px 30px rgba(0,0,0,.55)); }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 7vw, 6.7rem); line-height: .98; letter-spacing: .005em; font-weight: 500; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.58); }
.hero-copy { max-width: 590px; margin: 27px 0 30px; color: #c7c3bc; font-size: 1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.status-row { margin-top: 44px; display: flex; gap: 28px; flex-wrap: wrap; color: #b7b3ac; text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; }
.status-row span { display: flex; align-items: center; gap: 8px; }
.status-row i { width: 5px; height: 5px; border-radius: 50%; background: var(--warm-light); box-shadow: 0 0 12px var(--warm-light); }
.scroll-cue { position: absolute; right: max(28px, calc((100vw - var(--max))/2)); bottom: 44px; z-index: 3; width: 28px; height: 48px; border: 1px solid rgba(255,255,255,.28); border-radius: 20px; }
.scroll-cue span { position: absolute; top: 9px; left: 50%; width: 3px; height: 7px; border-radius: 4px; background: white; transform: translateX(-50%); animation: scroll 1.8s infinite; }
@keyframes scroll { 0%{opacity:0;transform:translate(-50%,0)}35%{opacity:1}100%{opacity:0;transform:translate(-50%,18px)} }

.section { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 650px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .collab-copy h2 { margin: 0 0 18px; font-family: var(--serif); font-weight: 500; font-size: clamp(2.3rem,5vw,4.6rem); line-height: 1.06; letter-spacing: .01em; text-transform: uppercase; }
.section-heading > p:last-child, .about-copy > p, .collab-copy > p { color: var(--muted); }
.featured-links { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 14px; }
.access-card { min-height: 280px; padding: 30px; display: flex; justify-content: space-between; align-items: flex-end; border: 1px solid var(--line); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); transition: .28s ease; position: relative; overflow: hidden; }
.access-card::before { content:""; position:absolute; inset:auto -60px -85px auto; width:180px; height:180px; border:1px solid rgba(255,255,255,.08); border-radius:50%; transition:.35s; }
.access-card:hover { border-color: rgba(255,255,255,.34); transform: translateY(-5px); background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.015)); }
.access-card:hover::before { transform:scale(1.25); border-color:rgba(200,184,157,.25); }
.access-card.featured { background: linear-gradient(145deg, rgba(168,151,122,.22), rgba(255,255,255,.025)); }
.card-kicker { color: var(--warm-light); text-transform: uppercase; letter-spacing: .19em; font-size: .64rem; }
.access-card h3 { margin: 10px 0 8px; font-family: var(--serif); text-transform: uppercase; letter-spacing: .05em; font-size: 1.55rem; font-weight: 500; }
.access-card p { max-width: 290px; margin: 0; color: var(--muted); font-size: .86rem; }
.arrow { align-self: flex-start; font-size: 1.35rem; opacity: .62; }
.social-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 14px; }
.social-grid a { display: flex; align-items: center; gap: 14px; min-height: 88px; padding: 16px 20px; border: 1px solid var(--line); transition: .25s ease; }
.social-grid a:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.3); }
.social-grid svg { width: 24px; height: 24px; fill: var(--silver); flex: 0 0 auto; }
.social-grid span { display: grid; }
.social-grid strong { font-family: var(--serif); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 500; }
.social-grid small { color: var(--muted); font-size: .7rem; }

.about-section { display: grid; grid-template-columns: 1fr .95fr; align-items: center; gap: 80px; }
.about-art { position: relative; }
.about-art::before { content:""; position:absolute; inset:28px -28px -28px 28px; border:1px solid rgba(255,255,255,.13); z-index:-1; }
.about-art img { width:100%; aspect-ratio:1/1; object-fit:cover; filter: grayscale(1) contrast(1.06); }
.about-copy > p { max-width: 560px; }
.about-facts { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 35px; padding-top: 30px; border-top: 1px solid var(--line); }
.about-facts div { display: grid; gap: 3px; }
.about-facts strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.about-facts span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .09em; }

.collab-section { padding-top: 60px; }
.collab-panel { padding: 60px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; border: 1px solid var(--line); background: radial-gradient(circle at 10% 10%, rgba(158,141,114,.17), transparent 35%), var(--bg-soft); }
.email-link { display: inline-flex; align-items:center; gap:14px; margin-top: 12px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.4); font-size: clamp(.92rem,2vw,1.1rem); }
.email-link span { color: var(--warm-light); }
.contact-form { display: grid; gap: 17px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: grid; gap: 8px; color: #c4c0b9; text-transform: uppercase; letter-spacing: .12em; font-size: .65rem; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.16); border-radius: 0; outline: 0; padding: 14px 15px; background: rgba(0,0,0,.32); color: white; text-transform: none; letter-spacing: normal; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--warm-light); box-shadow: 0 0 0 1px var(--warm-light); }
.contact-form .btn { justify-self: start; margin-top: 5px; }
.form-note { margin: -3px 0 0; color: #78746e; font-size: .72rem; }

.site-footer { width: min(var(--max), calc(100% - 56px)); margin: 0 auto; min-height: 120px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: #817e78; font-size: .68rem; }
.footer-links { display: flex; gap: 20px; text-transform: uppercase; letter-spacing: .11em; }
.footer-brand { color: var(--text); }

@media (max-width: 920px) {
  .site-header { padding: 0 22px; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 70px; left: 14px; right: 14px; display: grid; gap: 0; padding: 10px; background: rgba(8,8,8,.98); border: 1px solid var(--line); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .2s; }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: 15px; }
  .site-nav .nav-cta { border:0; padding:15px; }
  .featured-links { grid-template-columns: 1fr; }
  .access-card { min-height: 220px; }
  .social-grid { grid-template-columns: 1fr 1fr; }
  .about-section { grid-template-columns: 1fr; gap: 70px; }
  .about-art { max-width: 650px; }
  .collab-panel { grid-template-columns: 1fr; gap: 40px; padding: 42px; }
}
@media (max-width: 620px) {
  .age-card { padding: 30px 22px; }
  .age-actions { flex-direction: column; }
  .hero-content, .section, .site-footer { width: min(100% - 36px, var(--max)); }
  .hero-content { padding-bottom: 65px; }
  .hero-image { background-position: 60% 18%; opacity: .72; }
  .hero-shade { background: linear-gradient(0deg,#080808 2%,rgba(3,3,3,.52) 53%,rgba(3,3,3,.62) 100%), linear-gradient(90deg,rgba(3,3,3,.88),transparent); }
  .hero h1 { font-size: clamp(2.55rem,14vw,4.2rem); }
  .hero-copy { font-size: .9rem; }
  .hero-logo { width: 115px; }
  .status-row { gap: 13px 18px; }
  .scroll-cue { display:none; }
  .section { padding: 90px 0; }
  .section-heading h2, .about-copy h2, .collab-copy h2 { font-size: clamp(2rem,10vw,3rem); }
  .social-grid { grid-template-columns: 1fr; }
  .about-art::before { inset: 16px -12px -16px 12px; }
  .about-facts { gap:12px; }
  .about-facts strong { font-size: 1.25rem; }
  .about-facts span { font-size:.57rem; }
  .collab-panel { padding: 30px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .site-footer { padding: 30px 0; flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) { html{scroll-behavior:auto} *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important} }
