/* ---------- Tokens ---------- */
:root {
  --bg: #0f0b08;
  --bg-elev: #171210;
  --cream: #f4ead8;
  --cream-soft: #e9dfcc;
  --coffee: #3a2418;
  --coffee-light: #6b4632;
  --accent: #c08a4a;
  --accent-hover: #d49a58;
  --text: #f4ead8;
  --text-dim: rgba(244, 234, 216, 0.72);
  --text-dark: #1a0f0a;
  --line: rgba(244, 234, 216, 0.14);
  --radius: 4px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --max: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: 0.01em; line-height: 1.15; margin: 0; }
p { margin: 0 0 1em; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--cream); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(15, 11, 8, 0.0);
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(15, 11, 8, 0.92);
  border-bottom-color: var(--line);
  backdrop-filter: saturate(140%) blur(8px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.brand-logo { height: 34px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav > a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-soft);
  transition: color 0.2s ease;
}
.site-nav > a:hover { color: var(--accent); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.lang-btn {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 4px 2px;
  letter-spacing: 0.1em;
}
.lang-btn.active { color: var(--accent); font-weight: 500; }
.lang-btn:hover { color: var(--cream); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.55);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,0.55) 0%, rgba(15,11,8,0.35) 40%, rgba(15,11,8,0.9) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  padding: 140px 24px 100px;
}
.hero-title {
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 400;
  margin: 0 0 28px;
}
.hero-title em {
  display: block;
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
  font-size: 0.7em;
  margin-top: 6px;
}
.hero-sub {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-dim);
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Pillars ---------- */
.pillars { padding: 110px 0; background: var(--bg-elev); }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pillar:hover { border-color: var(--accent); transform: translateY(-4px); }
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
  font-size: 20px;
}
.pillar h3 { font-size: 26px; margin-bottom: 12px; }
.pillar p { color: var(--text-dim); margin: 0; }

/* ---------- Product ---------- */
.product { padding: 120px 0; }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-media {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.product-media img {
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}
.product-text h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.price { display: flex; align-items: baseline; gap: 14px; margin: 0 0 26px; }
.price-now { font-family: var(--serif); font-size: 40px; color: var(--accent); font-weight: 500; }
.price-was { text-decoration: line-through; color: var(--text-dim); font-size: 18px; }
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
}
.feature-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--cream-soft);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 14px;
  height: 2px;
  background: var(--accent);
}
.feature-list li:last-child { border-bottom: 0; }
.product-cta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.fineprint {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

/* ---------- Story ---------- */
.story {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}
.story-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
}
.story-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,11,8,0.6), rgba(15,11,8,0.9));
}
.story-content {
  position: relative;
  text-align: center;
  max-width: 780px;
}
.story-content h2 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 20px; }
.story-lead { font-size: 20px; color: var(--accent); margin-bottom: 26px; font-family: var(--serif); font-style: italic; }
.story blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 40px auto;
  max-width: 520px;
  text-align: left;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.story blockquote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--text-dim);
}
.story-close { font-size: 18px; margin: 20px 0 36px; color: var(--cream-soft); }

/* ---------- Footer ---------- */
.site-footer {
  background: #090705;
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand img { height: 32px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-dim); font-size: 14px; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-soft);
}
.footer-links a:hover { color: var(--accent); }
.footer-meta {
  font-size: 13px;
  color: var(--text-dim);
  text-align: right;
}
.footer-meta a { color: var(--text-dim); }
.footer-meta a:hover { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 20px; }
  .product-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-media img { max-height: 420px; }
  .footer-row { grid-template-columns: 1fr; text-align: left; }
  .footer-meta { text-align: left; }
}
@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: rgba(15, 11, 8, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    gap: 18px;
    padding: 28px 24px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
  }
  .site-nav.open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; }
  .hero-content { padding: 120px 24px 80px; }
  .product { padding: 80px 0; }
  .pillars { padding: 70px 0; }
  .story { padding: 90px 0; }
}
