/* Tokens */
:root {
  --ink: #101217;
  --muted: #63717d;
  --line: #dde6e1;
  --soft: #f5f8f6;
  --green: #00b85a;
  --acid: #b9ff4b;
  --radius: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(22px, 5vw, 92px);
  background: rgba(8,10,12,.88);
  color: #fff;
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border-bottom: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 18px 46px rgba(0,0,0,.16);
}
.brand { display: flex; align-items: center; gap: 16px; flex-shrink: 0; text-decoration: none; min-width: 0; }
.brand img {
  width: auto;
  height: 48px;
  max-width: 182px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
}
.brand span {
  display: block;
  max-width: 138px;
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 1.7px;
  color: rgba(255,255,255,.52);
  font-weight: 800;
}
.site-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.065);
}
.site-nav a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255,255,255,.74);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s, transform .2s;
}
.site-nav a:hover { color: #101217; background: var(--acid); transform: translateY(-1px); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; height: 2px; background: #fff; margin: 8px 8px; border-radius: 2px; }

/* Hero Banner */
.hero { overflow: hidden; }
.hero-home {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 96px) 0;
  background: #050e08;
  color: #fff;
}
.hero-home::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(5,14,8,.95) 0%, rgba(5,14,8,.68) 42%, rgba(5,14,8,.12) 100%),
    linear-gradient(to top, rgba(5,14,8,.92) 0%, transparent 52%);
  pointer-events: none;
}
.hero-orb { display: none; }
.hero-orb-left { width: 38vw; aspect-ratio: 1; left: -8%; top: -12%; background: radial-gradient(circle, rgba(157,244,216,.9), transparent); }
.hero-orb-right { width: 34vw; aspect-ratio: 1; right: -5%; bottom: -18%; background: radial-gradient(circle, rgba(255,207,87,.85), transparent); }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-copy { position: relative; z-index: 2; max-width: 800px; padding-bottom: clamp(40px, 6vw, 80px); }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--green);
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; display: block; width: 22px; height: 2px; background: var(--green); flex-shrink: 0; }
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: 0; }
.hero h1 { font-size: clamp(54px, 9vw, 128px); font-weight: 800; letter-spacing: 0; color: #fff; margin-bottom: 16px; text-shadow: 0 8px 32px rgba(0,0,0,.28); }
.hero p { font-size: clamp(16px, 1.4vw, 20px); color: rgba(255,255,255,.75); max-width: 600px; margin-bottom: 28px; }
.hero-actions, .section-actions, .age-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-chip-row { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-chip-row span { padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 24px;
  border-radius: 10px; border: 2px solid transparent;
  font-weight: 700; font-size: 15px; cursor: pointer;
  transition: all .2s ease;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: #008840; border-color: #008840; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,166,79,.3); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--soft); border-color: var(--ink); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.38); backdrop-filter: blur(10px); }
.btn-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-specs {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-specs span { padding: 22px clamp(14px, 2.5vw, 32px); border-right: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); font-size: 13px; font-weight: 600; }
.hero-specs span:last-child { border-right: 0; }
.hero-specs strong { display: block; font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
/* Metric Strip */
.metric-strip { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--soft); border-bottom: 1px solid var(--line); }
.metric { padding: 28px clamp(16px, 4vw, 64px); border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: clamp(28px, 4.5vw, 52px); font-weight: 800; color: var(--green); line-height: 1; }
.metric span { font-size: 13px; font-weight: 600; color: var(--muted); margin-top: 4px; display: block; }
/* Sections */
.section { padding: clamp(60px, 8vw, 110px) clamp(24px, 6vw, 96px); background: #fff; }
.section-soft { background: var(--soft); }
.section-scenes { background: #f0f6f3; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(30px, 4.5vw, 58px); font-weight: 800; max-width: 640px; }
.section-head p { color: var(--muted); max-width: 460px; font-size: 15px; line-height: 1.7; }
/* Products */
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.product-card {
  border-radius: var(--radius); border: 1px solid var(--line);
  background: #fff; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(13,17,23,.09); }
.product-card > img { aspect-ratio: 1; object-fit: contain; width: 100%; padding: 20px; background: var(--soft); }
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-body .category { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--green); letter-spacing: 1px; }
.product-body h3 { font-size: 18px; font-weight: 700; margin: 6px 0; line-height: 1.2; }
.product-body p { font-size: 13px; color: var(--muted); flex: 1; }
.spec-list { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.spec-list span { font-size: 12px; font-weight: 700; padding: 5px 10px; background: var(--soft); border-radius: 999px; }
/* Experience Band */
.experience-band {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #0d1117; color: #fff;
  min-height: 520px;
}
.experience-copy { padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 80px); align-self: center; }
.experience-copy h2 { font-size: clamp(32px, 4.5vw, 66px); font-weight: 800; margin-bottom: 16px; }
.experience-copy p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.scene-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.scene-tags span { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.experience-band > img { width: 100%; object-fit: cover; min-height: 480px; display: block; }
/* Scene Gallery */
.scene-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.scene-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.scene-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(13,17,23,.12); }
.scene-visual {
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.scene-icon { font-size: 44px; }
.scene-label { font-size: 13px; font-weight: 700; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,.5); }
.scene-body { padding: 16px 18px; flex: 1; }
.scene-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.scene-body p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 0; }
/* Split Band */
.split-band { display: grid; grid-template-columns: 1fr 1fr; background: #111; color: #fff; }
.split-band > div { padding: clamp(48px, 8vw, 96px) clamp(24px, 6vw, 96px); }
.split-band > div:first-child { align-self: center; }
.split-band h2 { font-size: clamp(26px, 3.5vw, 50px); font-weight: 800; margin-bottom: 14px; }
.split-band p { color: rgba(255,255,255,.7); font-size: 16px; margin-bottom: 28px; }
.video-panel { background: #05090b; min-height: 420px; display: grid; place-items: center; overflow: hidden; }
.media-panel img { width: 100%; height: 100%; max-height: 720px; object-fit: contain; background: #05090b; }
.play-mark { width: 90px; height: 90px; border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 40px; }
.wide-media { width: min(100%, 960px); margin: 0 auto; border-radius: var(--radius); border: 1px solid var(--line); }
/* News */
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.news-card {
  border-radius: var(--radius); border: 1px solid var(--line);
  background: #fff; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(13,17,23,.10); }
.news-card img { aspect-ratio: 16/10; object-fit: cover; width: 100%; background: var(--soft); }
.news-card div { padding: 20px; flex: 1; }
.news-card time { font-size: 12px; font-weight: 700; color: var(--green); }
.news-card h3 { font-size: 19px; font-weight: 700; margin-top: 8px; margin-bottom: 8px; line-height: 1.3; }
.news-card p { color: var(--muted); font-size: 14px; margin: 0; }
.news-readmore {
  display: inline-flex;
  margin-top: 16px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.news-card:hover .news-readmore { color: var(--ink); }
.news-detail-section {
  display: grid;
  gap: clamp(44px, 7vw, 84px);
}
.news-article {
  max-width: 980px;
  margin: 0 auto;
}
.news-article-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 30px;
}
.news-article-body {
  color: #243038;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.85;
}
.news-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.related-news {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}



/* Flavor Panel */
.flavor-panel {
  background: #06080b;
  color: #fff;
  padding: clamp(60px, 8vw, 110px) clamp(22px, 6vw, 92px);
}
.flavor-panel-inner {
  max-width: 1360px;
  margin: 0 auto;
}
.flavor-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.flavor-brand-block .flavor-brand-name {
  font-family: sans-serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, #fff 30%, #9df4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.flavor-brand-block .flavor-sub {
  font-family: sans-serif;
  font-size: clamp(13px, 1.5vw, 18px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 900;
  margin-top: 6px;
}
.flavor-badge-row {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.flavor-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.flavor-badge strong { font-size: clamp(22px, 3vw, 34px); font-family: sans-serif; color: #fff; }
.flavor-badge span { font-size: 12px; color: rgba(255,255,255,.6); font-weight: 700; }
.flavor-product-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flavor-product-img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,166,79,.28));
}
.flavor-grid-label {
  text-align: center;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.flavor-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px 14px 14px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  position: relative;
}
.flavor-card:hover {
  background: rgba(157,244,216,.1);
  border-color: rgba(157,244,216,.36);
  transform: translateY(-3px);
}
.flavor-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.flavor-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.flavor-card-name {
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.flavor-rating-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  margin-bottom: 5px;
}
.flavor-stars {
  display: inline-flex;
  gap: 2px;
}
.flavor-star { color: rgba(255,255,255,.2); font-size: 9px; }
.flavor-star.on { color: #ffcf57; }
.flavor-coming {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-top: 24px;
}

/* Inner pages */
.page-hero { padding: 80px clamp(24px, 6vw, 96px) 48px; background: var(--soft); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(38px, 7vw, 82px); font-weight: 800; margin-top: 10px; }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 17px; margin-top: 16px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-chip { border: 1px solid var(--line); padding: 9px 16px; border-radius: 999px; font-weight: 700; font-size: 13px; background: #fff; cursor: pointer; }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.detail-image { background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.detail-image img { width: 100%; object-fit: contain; }
.detail-copy h1 { font-size: clamp(34px, 4.5vw, 64px); font-weight: 800; }
.detail-copy p { color: var(--muted); font-size: 17px; margin-top: 14px; }
.table-specs { width: 100%; border-collapse: collapse; margin-top: 22px; }
.table-specs th, .table-specs td { text-align: left; border-bottom: 1px solid var(--line); padding: 13px 0; font-size: 14px; }
.form-panel { max-width: 820px; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 38px); background: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 13px; }
.field input, .field textarea, .field select { border: 1.5px solid var(--line); border-radius: 8px; padding: 12px 14px; width: 100%; background: #fff; transition: border-color .15s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); }
.field textarea { min-height: 130px; resize: vertical; }
.alert { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-weight: 700; font-size: 14px; }
.alert-success { background: #e8f8ef; color: #075e25; }
.alert-warning { background: #fffbe6; color: #7a5400; }
.alert-danger  { background: #fff0f0; color: #9b1111; }
/* Footer */
.site-footer { background: #090b0f; color: #fff; padding: 68px clamp(24px, 6vw, 96px) 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 42px; margin-bottom: 50px; }
.footer-logo { width: auto; height: 46px; max-width: 170px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.55); font-size: 14px; }
.site-footer a { display: block; color: rgba(255,255,255,.65); margin: 9px 0; font-size: 14px; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.site-footer h3 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 13px 8px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.footer-social a span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(185,255,75,.16);
  color: var(--acid);
  font-size: 11px;
}
.footer-social a:hover { background: rgba(185,255,75,.14); border-color: rgba(185,255,75,.35); color: #fff; transform: translateY(-1px); }
.subscribe-form input { width: 100%; margin-bottom: 10px; border: 1.5px solid rgba(255,255,255,.15); background: rgba(255,255,255,.07); color: #fff; border-radius: 8px; padding: 12px 14px; }
.subscribe-form input::placeholder { color: rgba(255,255,255,.35); }
.subscribe-form input:focus { outline: none; border-color: var(--green); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.38); }
/* Age Gate */
.age-gate { position: fixed; inset: 0; background: rgba(13,17,23,.88); z-index: 500; display: grid; place-items: center; padding: 20px; }
.age-gate[hidden] { display: none; }
.age-card { width: min(100%, 460px); background: #fff; border-radius: 20px; padding: 40px 36px; text-align: center; }
.age-logo { width: 150px; height: auto; margin: 0 auto 22px; }
.age-card h2 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.age-card p { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
/* Admin */
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 240px 1fr; background: var(--soft); }
.admin-sidebar { background: #0d1117; color: #fff; padding: 24px; }
.admin-sidebar a { display: block; padding: 10px 0; color: rgba(255,255,255,.65); font-weight: 600; font-size: 14px; }
.admin-sidebar a:hover { color: #fff; }
.admin-content { padding: 32px; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 18px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
.admin-table th, .admin-table td { border-bottom: 1px solid var(--line); text-align: left; padding: 12px 14px; font-size: 14px; }
.admin-table th { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; background: var(--soft); }
.social-editor { display: grid; gap: 10px; }
.social-editor-row { display: grid; grid-template-columns: 150px 170px 1fr auto; gap: 10px; align-items: center; }
.social-add { margin-top: 10px; justify-self: start; }


/* Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .flavor-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .site-header { height: 68px; }
  .nav-toggle { display: flex; flex-direction: column; justify-content: center; }
  .site-nav {
    position: fixed; top: 68px; left: 0; right: 0;
    display: none; flex-direction: column; align-items: stretch;
    background: rgba(8,10,12,.96); border: 0; border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 10px 20px 20px; gap: 0;
    border-radius: 0;
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; color: rgba(255,255,255,.78); }
  .site-nav a:hover { padding-left: 12px; color: var(--acid); background: transparent; }
  .hero-home { min-height: 100svh; padding-top: 80px; }
  .hero-home::after { background: linear-gradient(0deg, rgba(5,14,8,.95) 0%, rgba(5,14,8,.65) 55%, rgba(5,14,8,.18) 100%); }
  .hero h1 { font-size: 52px; }
  .hero-specs { grid-template-columns: repeat(2, 1fr); }
  .hero-specs span:nth-child(2) { border-right: 0; }
  .hero-specs span:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-band, .split-band, .detail-grid, .footer-grid, .flavor-hero-split { grid-template-columns: 1fr; }
  .experience-band > img { min-height: 300px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .flavor-grid { grid-template-columns: repeat(3, 1fr); }
  .scene-gallery { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .social-editor-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .brand { gap: 10px; }
  .brand img { height: 38px; max-width: 136px; }
  .brand span { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid, .metric-strip, .scene-gallery { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-specs { grid-template-columns: 1fr; }
  .hero-specs span { border-right: 0 !important; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-specs span:last-child { border-bottom: 0; }
  .section { padding: 48px 20px; }
  .split-band > div { padding: 36px 22px; }
  .footer-bottom { flex-direction: column; }
  .social-editor-row { grid-template-columns: 1fr; }
}

/* Premium UI refresh */
:root {
  --ink: #0b1014;
  --muted: #66737b;
  --line: #dfe8e3;
  --soft: #f4f7f3;
  --green: #00b96b;
  --acid: #d8ff4f;
  --teal: #24d6bd;
  --surface: #ffffff;
  --radius: 8px;
  --shadow-sm: 0 12px 32px rgba(8, 18, 24, .08);
  --shadow-md: 0 26px 70px rgba(8, 18, 24, .14);
}

body {
  background:
    linear-gradient(180deg, #f8faf6 0, #fff 420px),
    #fff;
}

.site-header {
  height: 78px;
  background: rgba(7, 12, 14, .82);
  border-bottom-color: rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.20);
}

.brand img {
  height: 44px;
}

.site-nav {
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.site-nav a {
  color: rgba(255,255,255,.78);
}

.hero-home {
  min-height: calc(100svh - 78px);
  padding-top: clamp(88px, 11vw, 132px);
  background: #050908;
}

.hero-home::after {
  background:
    radial-gradient(circle at 76% 20%, rgba(216,255,79,.18) 0, transparent 26%),
    linear-gradient(94deg, rgba(4,9,8,.98) 0%, rgba(4,9,8,.76) 42%, rgba(4,9,8,.20) 100%),
    linear-gradient(to top, rgba(4,9,8,.96) 0%, rgba(4,9,8,.18) 58%, transparent 100%);
}

.hero-media img {
  filter: saturate(1.05) contrast(1.04);
}

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

.eyebrow {
  color: var(--green);
  letter-spacing: 2px;
}

.hero h1 {
  font-size: clamp(58px, 10vw, 138px);
  font-weight: 900;
}

.hero p {
  max-width: 680px;
  color: rgba(255,255,255,.80);
}

.btn {
  min-height: 48px;
  border-radius: 8px;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--teal));
  color: #06110d;
  border-color: transparent;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1af08d, #5be7d5);
  color: #06110d;
  box-shadow: 0 16px 36px rgba(0,185,107,.26);
}

.hero-chip-row span,
.scene-tags span,
.flavor-badge {
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-specs {
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.metric-strip {
  max-width: min(1180px, calc(100% - 48px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(222,232,227,.86);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
}

.metric {
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,248,.94));
}

.metric strong {
  color: var(--ink);
}

.section {
  padding-block: clamp(72px, 8vw, 120px);
}

.section-head h2 {
  font-weight: 900;
}

.product-grid {
  gap: 18px;
}

.product-card,
.news-card,
.scene-card {
  border-color: rgba(18,31,36,.10);
  box-shadow: 0 1px 0 rgba(18,31,36,.04);
}

.product-card {
  background: linear-gradient(180deg, #fff, #fbfdfb);
}

.product-card:hover,
.news-card:hover,
.scene-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card > img {
  padding: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(0,185,107,.11), transparent 38%),
    linear-gradient(180deg, #f7faf6, #eef5f0);
}

.spec-list span,
.filter-chip {
  border: 1px solid rgba(18,31,36,.08);
}

.experience-band {
  background:
    radial-gradient(circle at 12% 20%, rgba(0,185,107,.26), transparent 28%),
    linear-gradient(135deg, #07100e 0%, #10151a 100%);
}

.experience-band > img {
  height: 100%;
  filter: saturate(1.06) contrast(1.04);
}

.section-scenes {
  background:
    linear-gradient(180deg, #f5f9f5, #eaf2ee);
}

.scene-gallery {
  gap: 18px;
}

.scene-card {
  background: rgba(255,255,255,.92);
}

.scene-visual {
  height: 220px;
  overflow: hidden;
}

.scene-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.62), transparent 62%);
  pointer-events: none;
}

.scene-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.scene-card:hover .scene-visual img {
  transform: scale(1.06);
}

.scene-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

.split-band {
  background:
    radial-gradient(circle at 80% 10%, rgba(216,255,79,.16), transparent 30%),
    #080b0d;
}

.media-panel img {
  padding: clamp(18px, 3vw, 34px);
}

.flavor-panel {
  background:
    radial-gradient(circle at 18% 0, rgba(0,185,107,.22), transparent 30%),
    radial-gradient(circle at 86% 32%, rgba(216,255,79,.12), transparent 26%),
    linear-gradient(180deg, #050708, #0c1113);
}

.flavor-product-img img {
  border-radius: 8px;
}

.flavor-card {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.flavor-dot {
  border-radius: 8px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
}

.flavor-star {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  color: transparent;
  font-size: 0;
}

.flavor-star.on {
  background: #ffcf57;
  box-shadow: 0 0 10px rgba(255,207,87,.45);
}

.news-card img {
  filter: saturate(1.04);
}

.site-footer {
  background:
    radial-gradient(circle at 12% 0, rgba(0,185,107,.18), transparent 28%),
    #070a0d;
}

.age-card,
.form-panel,
.admin-card {
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .site-header { height: 68px; }
  .metric-strip {
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .hero h1 { font-size: clamp(48px, 13vw, 76px); }
}

@media (max-width: 600px) {
  .hero-home {
    min-height: auto;
    padding-inline: 20px;
  }
  .hero-copy {
    padding-bottom: 34px;
  }
  .btn {
    width: 100%;
  }
  .hero-actions .btn {
    width: auto;
    flex: 1 1 180px;
  }
  .product-card > img {
    padding: 16px;
  }
  .scene-visual {
    height: 240px;
  }
}

.mobile-cta { display: none; }
@media (max-width: 600px) {
  .mobile-cta {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 200;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(10,14,12,.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .mobile-cta .btn { flex: 1 1 auto; width: auto; justify-content: center; }
  body { padding-bottom: 66px; }
}
