:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: #101010;
  --panel-2: #161616;
  --text: #f4f4f0;
  --muted: #9d9d98;
  --line: rgba(255,255,255,.14);
  --green: #15d45b;
  --green-2: #0ba545;
  --blue: #0d2ea8;
  --yellow: #ffda1a;
  --max: 1240px;
  --radius: 22px;
  --shadow: 0 30px 90px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--green); color: #041009; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 110px 0; position: relative; }
.section-tight { padding: 74px 0; }
.section-dark { background: #070707; }
.section-panel { background: var(--panel); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
}
.eyebrow::before { content:""; width: 24px; height: 1px; background: currentColor; }
.display {
  margin: 16px 0 22px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(54px, 8.3vw, 126px);
  line-height: .84;
  letter-spacing: -.04em;
  text-transform: uppercase;
  font-weight: 900;
}
.title {
  margin: 12px 0 18px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .93;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.subtitle { margin: 0; max-width: 700px; color: var(--muted); font-size: clamp(17px, 2vw, 21px); line-height: 1.65; }
.editorial { font-family: "Cormorant Garamond", Georgia, serif; font-style: italic; font-weight: 500; text-transform: none; }
.accent { color: var(--green); }

.btn {
  appearance: none;
  border: 1px solid transparent;
  background: var(--green);
  color: #06130a;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); background: #39e878; }
.btn-outline { background: transparent; color: var(--text); border-color: var(--line); }
.btn-outline:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.35); }
.btn-dark { background: #070707; color: white; border-color: #070707; }
.btn-small { min-height: 40px; padding: 0 16px; font-size: 11px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(5,5,5,.86); backdrop-filter: blur(18px); border-color: var(--line); }
.nav { width: min(calc(100% - 40px), var(--max)); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; z-index: 1002; }
.brand img { width: 205px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: #dfdfdc; }
.nav-links a:hover, .nav-links a.active { color: var(--green); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.04); align-items: center; justify-content: center; cursor: pointer; z-index: 1002; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { width: 17px; height: 1px; background: white; display: block; position: relative; transition: .25s ease; }
.menu-toggle span::before, .menu-toggle span::after { content:""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open span::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #050505;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.08) brightness(.72); transform: scale(1.02); }
.hero-media::after {
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(2,2,2,.92) 0%, rgba(2,2,2,.58) 42%, rgba(2,2,2,.15) 72%),
    linear-gradient(0deg, #050505 0%, rgba(5,5,5,.08) 36%, rgba(5,5,5,.25) 100%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; align-items: end; min-height: 100vh; padding-top: 140px; padding-bottom: 80px; }
.hero-copy { max-width: 790px; }
.hero .display { max-width: 850px; }
.hero-lead { max-width: 650px; font-size: clamp(17px, 2vw, 22px); line-height: 1.55; color: #d2d2cf; margin-bottom: 30px; }
.hero-side { justify-self: end; align-self: center; display: grid; gap: 16px; width: min(330px, 100%); }
.hero-card { border: 1px solid var(--line); background: rgba(10,10,10,.5); backdrop-filter: blur(12px); padding: 22px; border-radius: var(--radius); }
.hero-card strong { display: block; font-family:"Barlow Condensed"; font-size: 28px; text-transform: uppercase; }
.hero-card span { color: var(--muted); font-size: 13px; line-height: 1.5; }
.hero-vertical { position:absolute; right: -8px; top: 50%; z-index: 1; transform: translateY(-50%); writing-mode: vertical-rl; text-transform: uppercase; font-family: "Barlow Condensed"; font-size: clamp(120px, 18vw, 270px); line-height: .75; font-weight: 900; letter-spacing: -.06em; color: rgba(255,255,255,.028); pointer-events:none; }

.page-hero { min-height: 70vh; padding-top: 130px; display: grid; align-items: end; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero .hero-media::after { background: linear-gradient(90deg, rgba(3,3,3,.92), rgba(3,3,3,.45) 55%, rgba(3,3,3,.2)), linear-gradient(0deg,#050505,transparent 45%); }
.page-hero .container { position:relative; z-index:2; padding-bottom: 75px; }
.page-hero .display { max-width: 950px; }

.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #0b0b0b; }
.marquee-track { width: max-content; display: flex; gap: 34px; padding: 18px 0; animation: marquee 28s linear infinite; }
.marquee-item { font-family: "Barlow Condensed"; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; font-size: 22px; white-space: nowrap; color: #d7d7d3; display:flex; align-items:center; gap: 34px; }
.marquee-item::after { content:"◆"; color: var(--green); font-size: 12px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 100px); align-items: center; }
.split-reverse .media-card { order: 2; }
.media-card { position: relative; min-height: 580px; border-radius: 28px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.media-card img { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; filter: saturate(.75) contrast(1.08); }
.media-card::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg,transparent 45%,rgba(0,0,0,.55)); }
.media-label { position:absolute; z-index:2; left:22px; bottom:20px; text-transform:uppercase; letter-spacing:.14em; font-size:11px; font-weight:900; }
.copy-block p { color: var(--muted); line-height: 1.75; font-size: 17px; }
.copy-block .pullquote { color: var(--text); font-family: "Cormorant Garamond"; font-size: clamp(32px,4vw,52px); line-height:1; font-style: italic; margin: 26px 0; }

.scale-bg { position:relative; overflow:hidden; }
.scale-bg::before {
  content:""; position:absolute; inset:-30%; pointer-events:none; opacity:.12; transform:rotate(-8deg);
  background:
    radial-gradient(ellipse at 50% 100%, transparent 38%, rgba(255,255,255,.6) 40%, rgba(255,255,255,.6) 44%, transparent 46%) 0 0/54px 36px,
    radial-gradient(ellipse at 50% 0%, transparent 38%, rgba(255,255,255,.25) 40%, rgba(255,255,255,.25) 44%, transparent 46%) 27px 18px/54px 36px;
}
.scale-bg > * { position:relative; z-index:1; }

.stat-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:1px; background: var(--line); border:1px solid var(--line); border-radius:24px; overflow:hidden; margin-top:50px; }
.stat { background:#090909; padding:32px 26px; min-height:160px; }
.stat strong { display:block; font-family:"Barlow Condensed"; font-size:44px; line-height:1; margin-bottom:10px; }
.stat span { color:var(--muted); font-size:13px; line-height:1.5; }

.card-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:44px; }
.card { border:1px solid var(--line); border-radius:22px; background:linear-gradient(180deg,#111,#0b0b0b); overflow:hidden; position:relative; transition: transform .3s ease, border-color .3s ease; }
.card:hover { transform:translateY(-5px); border-color:rgba(255,255,255,.28); }
.card-media { height:300px; overflow:hidden; background:#0c0c0c; position:relative; }
.card-media img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; filter:saturate(.8); }
.card:hover .card-media img { transform:scale(1.035); }
.card-body { padding:24px; }
.card-kicker { color:var(--green); text-transform:uppercase; font-size:11px; letter-spacing:.14em; font-weight:900; }
.card h3 { margin:9px 0 12px; font-family:"Barlow Condensed"; font-size:32px; line-height:1; text-transform:uppercase; }
.card p { color:var(--muted); line-height:1.6; font-size:14px; }
.card-link { margin-top:18px; display:inline-flex; gap:10px; align-items:center; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.card-link::after { content:"→"; color:var(--green); transition:transform .2s ease; }
.card-link:hover::after { transform:translateX(4px); }

.feature-card { min-height:580px; border-radius:28px; border:1px solid var(--line); position:relative; overflow:hidden; display:flex; align-items:flex-end; padding:36px; }
.feature-card > img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter:saturate(.72) contrast(1.08); }
.feature-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.86)); }
.feature-card-content { position:relative; z-index:2; max-width:660px; }
.feature-card h3 { margin:0 0 10px; font-family:"Barlow Condensed"; font-size:clamp(44px,6vw,86px); text-transform:uppercase; line-height:.88; }
.feature-card p { color:#d0d0cc; max-width:560px; line-height:1.6; }

.gallery { display:grid; grid-template-columns:1.25fr .75fr .75fr; grid-template-rows:270px 270px; gap:14px; margin-top:45px; }
.gallery figure { margin:0; position:relative; overflow:hidden; border-radius:18px; border:1px solid var(--line); }
.gallery figure:first-child { grid-row:1 / span 2; }
.gallery img { width:100%; height:100%; object-fit:cover; filter:saturate(.76) contrast(1.05); transition:transform .5s ease; }
.gallery figure:hover img { transform:scale(1.035); }
.gallery .snake-frame { background:#0a0a0a; }
.gallery .snake-frame img { object-fit:cover; opacity:.82; }

.cta-panel { border-radius:30px; border:1px solid var(--line); overflow:hidden; position:relative; padding:clamp(36px,7vw,86px); min-height:460px; display:flex; align-items:center; background:#0a0a0a; }
.cta-panel::before { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(0,0,0,.92),rgba(0,0,0,.3)),url('../img/snake-close.webp') center/cover; opacity:.8; }
.cta-panel > div { position:relative; z-index:2; max-width:750px; }
.cta-panel h2 { font-family:"Barlow Condensed"; text-transform:uppercase; font-size:clamp(52px,7vw,100px); line-height:.86; margin:0 0 24px; }

.info-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:40px; }
.info-card { border:1px solid var(--line); background:#0d0d0d; padding:30px; border-radius:22px; }
.info-card .num { width:44px; height:44px; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; color:var(--green); font-weight:900; font-size:12px; margin-bottom:28px; }
.info-card h3 { font-family:"Barlow Condensed"; text-transform:uppercase; font-size:31px; margin:0 0 10px; }
.info-card p { margin:0; color:var(--muted); line-height:1.65; font-size:14px; }

.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:36px; }
.product { background:#0d0d0d; border:1px solid var(--line); border-radius:22px; overflow:hidden; }
.product-media { height:300px; background:#111; overflow:hidden; position:relative; }
.product-media img { width:100%; height:100%; object-fit:cover; filter:saturate(.72); }
.product-badge { position:absolute; top:14px; left:14px; background:var(--green); color:#07120a; padding:7px 10px; border-radius:999px; font-size:10px; text-transform:uppercase; font-weight:900; letter-spacing:.08em; }
.product-body { padding:22px; }
.product h3 { margin:0 0 8px; font-family:"Barlow Condensed"; text-transform:uppercase; font-size:30px; }
.product-meta { color:var(--muted); font-size:13px; line-height:1.55; min-height:42px; }
.product-price { display:block; margin:18px 0; font-weight:800; color:#e8e8e4; }
.product-actions { display:flex; gap:10px; }

.cart-fab { position:fixed; right:22px; bottom:22px; z-index:990; width:58px; height:58px; border-radius:50%; border:1px solid rgba(255,255,255,.2); background:var(--green); color:#07120a; display:grid; place-items:center; font-weight:900; cursor:pointer; box-shadow:0 15px 45px rgba(0,0,0,.45); }
.cart-count { position:absolute; right:-3px; top:-3px; width:22px; height:22px; border-radius:50%; display:grid; place-items:center; background:#fff; color:#050505; font-size:10px; border:2px solid #050505; }
.cart-drawer { position:fixed; top:0; right:0; width:min(430px,100%); height:100vh; z-index:1500; background:#0b0b0b; border-left:1px solid var(--line); transform:translateX(100%); transition:transform .35s ease; display:flex; flex-direction:column; }
.cart-drawer.open { transform:translateX(0); }
.cart-head { display:flex; align-items:center; justify-content:space-between; padding:22px; border-bottom:1px solid var(--line); }
.cart-head h3 { margin:0; font-family:"Barlow Condensed"; text-transform:uppercase; font-size:30px; }
.icon-btn { width:40px; height:40px; border-radius:50%; border:1px solid var(--line); background:#111; color:#fff; cursor:pointer; }
.cart-items { padding:18px 22px; overflow:auto; flex:1; }
.cart-item { display:grid; grid-template-columns:1fr auto; gap:10px; padding:16px 0; border-bottom:1px solid var(--line); }
.cart-item strong { font-size:14px; }
.cart-item span { color:var(--muted); font-size:12px; }
.cart-footer { border-top:1px solid var(--line); padding:22px; }
.overlay { position:fixed; inset:0; z-index:1400; background:rgba(0,0,0,.7); opacity:0; pointer-events:none; transition:.3s ease; }
.overlay.open { opacity:1; pointer-events:auto; }

.member-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:50px; align-items:start; }
.member-box { border:1px solid var(--line); border-radius:24px; background:#0c0c0c; padding:30px; }
.tabs { display:flex; gap:8px; padding:5px; border:1px solid var(--line); background:#080808; border-radius:999px; margin-bottom:26px; }
.tab-btn { flex:1; min-height:42px; border:none; border-radius:999px; background:transparent; color:var(--muted); cursor:pointer; font-weight:800; font-size:12px; text-transform:uppercase; letter-spacing:.08em; }
.tab-btn.active { background:var(--green); color:#06130a; }
.tab-panel { display:none; }
.tab-panel.active { display:block; }
.form-grid { display:grid; gap:14px; }
.field { display:grid; gap:8px; }
.field label { font-size:11px; text-transform:uppercase; letter-spacing:.1em; font-weight:800; color:#cfcfcc; }
.field input, .field textarea, .field select { width:100%; border:1px solid var(--line); border-radius:13px; background:#080808; color:#fff; padding:14px 15px; outline:none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color:var(--green); }
.field textarea { min-height:130px; resize:vertical; }
.form-note { color:var(--muted); font-size:12px; line-height:1.55; }
.member-dashboard { display:none; }
.member-dashboard.active { display:block; }
.perk-list { display:grid; gap:10px; margin-top:24px; }
.perk { padding:14px 16px; border:1px solid var(--line); border-radius:14px; display:flex; align-items:center; justify-content:space-between; gap:15px; }
.perk span { color:var(--muted); font-size:13px; }

.contact-grid { display:grid; grid-template-columns:.75fr 1.25fr; gap:50px; align-items:start; }
.contact-list { display:grid; gap:12px; margin-top:28px; }
.contact-list div { border-bottom:1px solid var(--line); padding:14px 0; }
.contact-list small { display:block; color:var(--muted); text-transform:uppercase; letter-spacing:.1em; font-size:10px; margin-bottom:5px; }
.contact-list strong { font-size:15px; }

.timeline { display:grid; gap:1px; background:var(--line); border:1px solid var(--line); border-radius:22px; overflow:hidden; margin-top:42px; }
.timeline-row { background:#0b0b0b; display:grid; grid-template-columns:130px 1fr; gap:30px; padding:28px; }
.timeline-row strong { color:var(--green); font-family:"Barlow Condensed"; font-size:28px; text-transform:uppercase; }
.timeline-row h3 { margin:0 0 7px; font-family:"Barlow Condensed"; text-transform:uppercase; font-size:28px; }
.timeline-row p { margin:0; color:var(--muted); line-height:1.6; font-size:14px; }

.site-footer { border-top:1px solid var(--line); background:#050505; padding:70px 0 28px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .8fr .8fr .8fr; gap:40px; }
.footer-logo img { width:210px; margin-bottom:18px; }
.footer-logo p { color:var(--muted); max-width:330px; line-height:1.6; font-size:13px; }
.footer-col h4 { text-transform:uppercase; letter-spacing:.12em; font-size:11px; margin:0 0 16px; color:#f1f1ed; }
.footer-col a { display:block; color:var(--muted); font-size:13px; margin:10px 0; }
.footer-col a:hover { color:var(--green); }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid var(--line); margin-top:52px; padding-top:22px; color:#73736f; font-size:11px; }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

.notice { border:1px solid rgba(21,212,91,.28); background:rgba(21,212,91,.06); color:#cbf7d9; padding:14px 16px; border-radius:13px; line-height:1.55; font-size:12px; }

@media (max-width: 1020px) {
  .nav-links { position:fixed; inset:0; background:#050505; flex-direction:column; justify-content:center; gap:26px; transform:translateY(-100%); transition:transform .35s ease; z-index:1001; }
  .nav-links.open { transform:translateY(0); }
  .nav-links a { font-family:"Barlow Condensed"; font-size:34px; }
  .nav-actions .btn { display:none; }
  .menu-toggle { display:flex; }
  .hero-grid { grid-template-columns:1fr; }
  .hero-side { display:none; }
  .split, .member-layout, .contact-grid { grid-template-columns:1fr; }
  .split-reverse .media-card { order:0; }
  .media-card { min-height:480px; }
  .card-grid, .product-grid { grid-template-columns:repeat(2,1fr); }
  .stat-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 700px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:78px 0; }
  .site-header { height:72px; }
  .brand img { width:170px; }
  .hero-grid { padding-top:120px; padding-bottom:48px; }
  .hero-media::after { background:linear-gradient(0deg,#050505 0%,rgba(5,5,5,.28) 50%,rgba(5,5,5,.32)), linear-gradient(90deg,rgba(0,0,0,.7),rgba(0,0,0,.15)); }
  .hero .display { font-size:clamp(58px,20vw,92px); }
  .display { font-size:clamp(54px,18vw,90px); }
  .title { font-size:clamp(44px,14vw,68px); }
  .page-hero { min-height:66vh; }
  .media-card { min-height:390px; }
  .stat-grid, .card-grid, .product-grid, .info-grid { grid-template-columns:1fr; }
  .gallery { grid-template-columns:1fr 1fr; grid-template-rows:300px 220px 220px; }
  .gallery figure:first-child { grid-column:1 / span 2; grid-row:auto; }
  .feature-card { min-height:520px; padding:26px; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; }
  .timeline-row { grid-template-columns:1fr; gap:8px; }
}
