:root {
  --bg: #0d0d0f;
  --bg-soft: #121417;
  --surface: #17191d;
  --surface-2: #1d2025;
  --text: #f2f0ed;
  --muted: #9ea5af;
  --silver: #c7ccd1;
  --smoked-blue: #414e63;
  --line: rgba(242, 240, 237, .12);
  --line-strong: rgba(242, 240, 237, .22);
  --shadow: 0 30px 80px rgba(0,0,0,.38);
  --radius: 24px;
  --max: 1240px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 86% 4%, rgba(65,78,99,.28), transparent 28rem),
    radial-gradient(circle at 8% 36%, rgba(199,204,209,.06), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.announcement {
  min-height: 34px; display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid var(--line); color: #d9dde2; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; background: #090a0c;
}
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(18px);
  background: rgba(13,13,15,.78); border-bottom: 1px solid var(--line);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  width: 36px; height: 36px; border: 1px solid var(--line-strong); border-radius: 11px;
  display: grid; place-items: center; position: relative; overflow: hidden;
  background: linear-gradient(145deg, #20242a, #0c0d0f); box-shadow: inset 0 1px rgba(255,255,255,.08);
  font-family: Georgia, serif; color: #e2e5e9;
}
.brand-mark .k { font-size: 24px; transform: translateX(-2px); }
.brand-mark .v { position: absolute; font-size: 16px; right: 5px; bottom: 2px; color: #8994a5; }
.brand-name { font-size: 15px; letter-spacing: .28em; text-transform: uppercase; white-space: nowrap; }
.nav { display: flex; align-items: center; gap: 28px; color: #c9cdd2; font-size: 13px; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: white; }
.header-cta { padding: 10px 15px; border: 1px solid var(--line-strong); border-radius: 999px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.menu-toggle { display:none; border:0; background:transparent; padding:10px; }
.menu-toggle span { display:block; width:22px; height:1px; background:#fff; margin:5px 0; }
.hero { padding: 68px 0 60px; min-height: calc(100svh - 106px); display:flex; align-items:center; }
.hero-grid { display:grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items:center; }
.kicker { color: var(--silver); font-size: 12px; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 20px; }
h1, h2, h3 { margin: 0; font-weight: 500; line-height: 1.02; }
h1 { font-size: clamp(52px, 7vw, 102px); letter-spacing: -.055em; max-width: 760px; }
h1 .serif { font-family: Georgia, serif; font-style: italic; font-weight: 400; color: var(--silver); }
.hero-copy { color: #b4bac2; max-width: 600px; font-size: clamp(16px,1.5vw,19px); margin: 26px 0 30px; }
.price-line { display:flex; align-items:center; gap:16px; margin-bottom:28px; }
.price { font-size: 30px; letter-spacing: -.03em; }
.pack { color: var(--muted); font-size: 13px; border-left:1px solid var(--line-strong); padding-left:16px; }
.actions { display:flex; flex-wrap:wrap; gap:12px; }
.btn {
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 14px 22px;
  min-height: 50px; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  cursor:pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease;
  background: transparent;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.48); }
.btn-primary { background: linear-gradient(135deg, #f1f2f3, #b9c0c9); color:#0c0d0f; border-color: transparent; font-weight: 650; }
.btn-dark { background:#111317; }
.micro { margin-top:17px; color:#8f96a0; font-size:12px; display:flex; gap:18px; flex-wrap:wrap; }
.hero-visual { position:relative; }
.hero-visual::before { content:""; position:absolute; inset:9% 4% -5% 16%; border-radius:50%; background:rgba(65,78,99,.34); filter: blur(75px); }
.hero-card { position:relative; border:1px solid var(--line); border-radius:32px; overflow:hidden; box-shadow:var(--shadow); background:#111216; }
.hero-card img { aspect-ratio:1; object-fit:cover; }
.hero-label { position:absolute; left:22px; right:22px; bottom:20px; display:flex; justify-content:space-between; align-items:end; gap:20px; }
.hero-label span { padding:9px 13px; border:1px solid rgba(255,255,255,.22); border-radius:999px; background:rgba(10,11,13,.62); backdrop-filter: blur(16px); font-size:11px; letter-spacing:.15em; text-transform:uppercase; }
.section { padding: 100px 0; border-top:1px solid var(--line); }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:40px; margin-bottom:44px; }
.section-title { font-size: clamp(38px,5vw,68px); letter-spacing:-.04em; max-width:760px; }
.section-copy { color:var(--muted); max-width:480px; }
.values { display:grid; grid-template-columns:repeat(4,1fr); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.value { padding:28px; min-height:170px; border-right:1px solid var(--line); background:rgba(255,255,255,.018); }
.value:last-child { border-right:0; }
.value-number { font-family: Georgia, serif; color:#76859b; font-size:20px; margin-bottom:40px; }
.value h3 { font-size:17px; margin-bottom:8px; }
.value p { margin:0; color:var(--muted); font-size:13px; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.product-card { display:block; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; background:#111317; transition:transform .25s ease, border-color .25s ease; }
.product-card:hover { transform:translateY(-5px); border-color:rgba(255,255,255,.28); }
.product-card-image { aspect-ratio:1; overflow:hidden; background:#111; }
.product-card-image img { width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.product-card:hover img { transform:scale(1.025); }
.product-card-body { padding:22px; display:flex; justify-content:space-between; align-items:end; gap:18px; }
.product-card h3 { font-size:20px; margin-bottom:6px; }
.product-card p { margin:0; color:var(--muted); font-size:13px; }
.product-card-price { white-space:nowrap; font-size:18px; }
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.story-panel { min-height:520px; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; position:relative; background:#121418; }
.story-panel img { width:100%; height:100%; object-fit:cover; }
.story-copy { padding:48px; display:flex; flex-direction:column; justify-content:space-between; }
.story-copy blockquote { margin:0; font-family:Georgia,serif; font-size:clamp(34px,4.5vw,62px); line-height:1.08; color:#e5e7ea; }
.story-copy p { color:var(--muted); max-width:430px; }
.faq { max-width:860px; margin:0 auto; }
details { border-top:1px solid var(--line); padding:22px 0; }
details:last-child { border-bottom:1px solid var(--line); }
summary { cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:20px; font-size:17px; }
summary::-webkit-details-marker { display:none; }
summary::after { content:"+"; color:var(--muted); font-size:24px; line-height:1; }
details[open] summary::after { content:"–"; }
details p { color:var(--muted); max-width:700px; margin:16px 0 0; }
.newsletter { border:1px solid var(--line); border-radius:32px; padding:58px; text-align:center; background:radial-gradient(circle at 50% 0, rgba(65,78,99,.24), transparent 60%), #111317; }
.newsletter h2 { font-size:clamp(36px,5vw,64px); }
.newsletter p { color:var(--muted); }
.footer { border-top:1px solid var(--line); padding:54px 0 26px; }
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:40px; }
.footer-brand p { color:var(--muted); max-width:350px; }
.footer-col h4 { margin:0 0 16px; font-size:12px; letter-spacing:.16em; text-transform:uppercase; color:#c9ced5; }
.footer-col a { display:block; color:var(--muted); margin:9px 0; font-size:14px; }
.footer-col a:hover { color:white; }
.footer-bottom { margin-top:45px; padding-top:20px; border-top:1px solid var(--line); color:#757c86; font-size:12px; display:flex; justify-content:space-between; gap:20px; }

/* Product page */
.page-hero { padding:64px 0 42px; }
.breadcrumb { font-size:12px; color:#8e959f; margin-bottom:30px; }
.product-layout { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr); gap:54px; align-items:start; }
.gallery { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.gallery-item { border:1px solid var(--line); border-radius:20px; overflow:hidden; background:#111317; }
.gallery-item:first-child { grid-column:1/-1; }
.gallery-item img { width:100%; aspect-ratio:1; object-fit:cover; }
.product-panel { position:sticky; top:110px; }
.product-panel h1 { font-size:clamp(44px,6vw,74px); }
.product-subtitle { font-family:Georgia,serif; font-style:italic; color:var(--silver); font-size:24px; margin:10px 0 24px; }
.product-description { color:#b2b8c0; margin:24px 0; }
.choice-row { display:flex; gap:10px; flex-wrap:wrap; margin:20px 0 28px; }
.choice { padding:10px 14px; border:1px solid var(--line-strong); border-radius:999px; font-size:12px; color:#d7dbe0; }
.delivery-box { border:1px solid var(--line); background:#121418; border-radius:18px; padding:18px; margin:20px 0; display:flex; justify-content:space-between; gap:20px; font-size:13px; }
.delivery-box span:last-child { color:#9fb0c5; }
.full { width:100%; }
.feature-list { padding:0; list-style:none; margin:28px 0; }
.feature-list li { padding:12px 0; border-bottom:1px solid var(--line); color:#c7ccd2; font-size:14px; }
.specs { border:1px solid var(--line); border-radius:20px; overflow:hidden; }
.spec-row { display:grid; grid-template-columns:140px 1fr; padding:15px 18px; border-bottom:1px solid var(--line); font-size:13px; }
.spec-row:last-child { border-bottom:0; }
.spec-row span:first-child { color:#858d98; }
.mobile-buy { display:none; }

/* Legal/content pages */
.content-page { padding:70px 0 100px; }
.content-wrap { max-width:850px; }
.content-wrap h1 { font-size:clamp(42px,6vw,72px); margin-bottom:24px; }
.content-wrap h2 { font-size:26px; margin:44px 0 14px; }
.content-wrap p, .content-wrap li { color:#b0b6bf; }
.warning { border:1px solid rgba(255,183,77,.35); background:rgba(255,183,77,.08); padding:18px; border-radius:16px; color:#ffd29b; margin:24px 0; }
.contact-card { border:1px solid var(--line); border-radius:24px; padding:30px; background:#121418; margin-top:28px; }

@media (max-width: 920px) {
  .nav { display:none; position:absolute; left:0; right:0; top:72px; background:#0d0d0f; border-bottom:1px solid var(--line); padding:22px; flex-direction:column; align-items:flex-start; }
  .nav.open { display:flex; }
  .menu-toggle { display:block; }
  .header-cta { display:none; }
  .hero { min-height:auto; padding-top:44px; }
  .hero-grid, .product-layout, .story-grid { grid-template-columns:1fr; }
  .hero-grid { gap:40px; }
  .hero-visual { order:-1; }
  h1 { font-size:clamp(48px,13vw,82px); }
  .section { padding:74px 0; }
  .section-head { align-items:flex-start; flex-direction:column; }
  .values { grid-template-columns:1fr 1fr; }
  .value:nth-child(2) { border-right:0; }
  .value:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .product-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .product-panel { position:static; }
  .gallery { order:2; }
}
@media (max-width: 620px) {
  .container { width:min(calc(100% - 24px), var(--max)); }
  .announcement { font-size:10px; letter-spacing:.09em; text-align:center; padding:6px 12px; }
  .header-inner { min-height:64px; }
  .brand-name { font-size:12px; letter-spacing:.2em; }
  .hero { padding:28px 0 52px; }
  .hero-card { border-radius:24px; }
  .hero-label { left:12px; right:12px; bottom:12px; }
  .hero-label span:last-child { display:none; }
  .price-line { margin-bottom:22px; }
  .actions .btn { width:100%; }
  .values, .product-grid, .footer-grid { grid-template-columns:1fr; }
  .value { border-right:0; border-bottom:1px solid var(--line); min-height:140px; }
  .value:last-child { border-bottom:0; }
  .product-card-body { padding:18px; }
  .story-panel { min-height:430px; }
  .story-copy { padding:28px; }
  .newsletter { padding:40px 20px; border-radius:24px; }
  .footer-bottom { flex-direction:column; }
  .gallery { grid-template-columns:1fr; }
  .gallery-item:first-child { grid-column:auto; }
  .product-layout { gap:30px; }
  .product-panel .buy-primary { display:none; }
  .mobile-buy { display:flex; position:fixed; z-index:60; left:0; right:0; bottom:0; padding:10px 12px calc(10px + env(safe-area-inset-bottom)); background:rgba(13,13,15,.92); border-top:1px solid var(--line); backdrop-filter:blur(16px); gap:12px; align-items:center; }
  .mobile-buy .mobile-price { min-width:68px; }
  .mobile-buy .btn { flex:1; min-height:48px; }
  body.product-page { padding-bottom:82px; }
  .spec-row { grid-template-columns:110px 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; transition:none !important; animation:none !important; }
}
