:root {
  --bg: #0a0608;
  --bg-2: #120a0e;
  --bg-3: #1c1018;
  --ink: #1a1014;
  --text: #faf6f0;
  --text-soft: rgba(250, 246, 240, 0.78);
  --text-mute: rgba(250, 246, 240, 0.52);
  --border: rgba(250, 246, 240, 0.08);
  --border-strong: rgba(250, 246, 240, 0.18);
  --burgundy: #a83960;
  --burgundy-dark: #7a1f3d;
  --burgundy-deep: #5a1730;
  --gold: #c9a96a;
  --gold-light: #e2c690;
  --cream: #f5efe6;
  --shadow: 0 24px 48px -12px rgba(0,0,0,0.6);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  overflow-x: clip;
}

html, body { max-width: 100vw; width: 100%; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0;
  color: var(--text);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); }
h4 { font-size: 0.95rem; font-weight: 600; }

.italic-accent {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 0.7em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.4rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── DEMO BANNER ─── */
.demo-banner {
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  color: var(--ink);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 999;
}

/* ─── PROMO BAR ─── */
.promo-bar {
  background: var(--burgundy-deep);
  color: var(--text);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
}

/* ─── HEADER ─── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 6, 8, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  background: linear-gradient(180deg, white 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-tag {
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav a:hover { color: var(--gold); }

.header-icons {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  color: var(--text-soft);
  position: relative;
}
.icon-btn:hover { background: rgba(255,255,255,0.08); color: white; }

.cart-badge {
  background: var(--burgundy);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  text-align: center;
}

@media (max-width: 980px) {
  .nav { display: none; }
  .header-inner { gap: 0.8rem; padding: 0.8rem 1rem; }
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 6rem 1.5rem 8rem;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(122,31,61,0.5), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(201,169,106,0.22), transparent 60%),
    linear-gradient(180deg, #0a0608 0, #150a0f 50%, #0a0608 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
}

.hero h1 {
  margin: 0.5rem 0 1.5rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--text-mute);
  letter-spacing: 0.04em;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  color: white;
  border: 0;
  box-shadow: 0 6px 20px -6px rgba(122,31,61,0.55);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--burgundy));
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -6px rgba(122,31,61,0.7);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}
.btn-outline:hover {
  background: white;
  color: var(--ink);
}

/* ─── BRAND STRIP ─── */
.brand-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 0;
}

.brand-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.strip-label {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}

.brand-row {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  transition: color 0.2s;
}
.brand-name:hover { color: var(--gold); }

/* ─── PRODUCT SECTION ─── */
.section-products {
  padding: 6rem 0 5rem;
  background: var(--bg);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head h2 { margin-bottom: 1rem; }

.section-head p {
  color: var(--text-mute);
  max-width: 540px;
  margin: 1rem auto 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  position: relative;
  display: block;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px -10px rgba(0,0,0,0.6);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

/* Stylized placeholder gradient backgrounds (no real product images for demo) */
.product-img-1 { background: radial-gradient(circle at 30% 30%, #e2c690 0%, #7a1f3d 60%, #1a0a10 100%); }
.product-img-2 { background: radial-gradient(circle at 70% 30%, #c9a96a 0%, #a83960 50%, #2a0a18 100%); }
.product-img-3 { background: radial-gradient(circle at 50% 50%, #f5d77a 0%, #5a1730 60%, #0d0408 100%); }
.product-img-4 { background: radial-gradient(circle at 30% 70%, #c9a96a 0%, #4a1428 60%, #150508 100%); }
.product-img-5 { background: radial-gradient(circle at 70% 70%, #e2c690 0%, #7a1f3d 50%, #1a0a10 100%); }
.product-img-6 { background: radial-gradient(circle at 50% 30%, #f5efe6 0%, #c9a96a 40%, #5a1730 100%); }

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--burgundy);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 2;
}
.badge.gold { background: var(--gold); color: var(--ink); }
.badge.burgundy { background: var(--burgundy); color: white; }

.product-card-info {
  padding: 1.4rem;
}

.brand-tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.product-card-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.5rem;
}

.material {
  font-size: 0.82rem;
  color: var(--text-mute);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.rating {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.rating small {
  color: var(--text-mute);
  font-size: 0.7rem;
  margin-left: 0.2rem;
}

/* ─── STORY SECTION ─── */
.section-story {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.story-text h2 { margin-bottom: 1.5rem; }

.story-text p {
  color: var(--text-soft);
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.75;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.value-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.value-list strong {
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.value-list span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.story-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-deep));
  border-left: 3px solid var(--gold);
  padding: 3rem 2.5rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
}

.visual-quote { color: white; }

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.visual-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0 0 1.5rem;
}

.quote-author {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── CATEGORIES ─── */
.section-categories {
  padding: 6rem 0;
  background: var(--bg);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  display: block;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s;
}

.cat-card:hover { transform: translateY(-4px); }

.cat-1 { background: radial-gradient(circle at 30% 30%, #c9a96a 0%, #5a1730 60%, #0d0408 100%); }
.cat-2 { background: radial-gradient(circle at 70% 50%, #a83960 0%, #1a0a10 60%, #0a0608 100%); }
.cat-3 { background: radial-gradient(circle at 50% 80%, #f5d77a 0%, #7a1f3d 50%, #150508 100%); }

.cat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: white;
}

.cat-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.cat-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: white;
  margin: 0 0 0.6rem;
}

.cat-cta {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: var(--bg-2);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-item {
  text-align: center;
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--text-mute);
  font-size: 0.86rem;
  margin: 0;
  line-height: 1.55;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--burgundy-deep), var(--bg-2));
}

.news-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 800px) { .news-row { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; } }

.news-row h2 { color: white; margin-bottom: 0.6rem; }
.news-row p { color: var(--text-soft); max-width: 460px; }

@media (max-width: 800px) { .news-row p { margin-left: auto; margin-right: auto; } }

.news-form {
  display: flex;
  gap: 0.5rem;
}

.news-form input {
  flex: 1;
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-strong);
  color: white;
  font-family: inherit;
  outline: 0;
  transition: border-color 0.2s;
}
.news-form input::placeholder { color: var(--text-mute); }
.news-form input:focus { border-color: var(--gold); }

.news-form button {
  padding: 1rem 1.6rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.news-form button:hover { background: white; }

/* ─── FOOTER ─── */
.footer {
  background: #050204;
  color: var(--text-soft);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: linear-gradient(180deg, white, var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.brand-blurb {
  font-size: 0.86rem;
  color: var(--text-mute);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-lang { display: flex; gap: 0.4rem; }

.footer-lang button {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-mute);
  padding: 0.35rem 0.8rem;
  font-family: inherit;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.15s;
}
.footer-lang button:hover { border-color: var(--gold); color: var(--gold); }
.footer-lang button.active { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 700; }

.footer h4 {
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1rem;
}

.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a {
  font-size: 0.86rem;
  color: var(--text-mute);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-mute);
}

.footer-bottom a:hover { color: white; }
