:root {
  --bg: #0a0604;
  --bg-soft: #120b08;
  --panel: rgba(255,255,255,.03);
  --gold: #c89b58;
  --gold-soft: #f0d7ab;
  --text: #f5ead7;
  --muted: rgba(245,234,215,.72);
  --line: rgba(200,155,88,.28);
  --shadow: 0 15px 45px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #090503 0%, #0f0906 100%);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.top-banner {
  text-align: center; padding: 10px 14px; font-size: 13px; letter-spacing: .03em;
  background: #140c08; border-bottom: 1px solid var(--line); color: var(--gold-soft);
}
.nav {
  position: relative; z-index: 3; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 24px 0;
}
.brand-wrap { display: flex; align-items: center; gap: 14px; }
.logo { width: 52px; height: 52px; }
.brand, h1, h2, h3, .signature { font-family: 'Cormorant Garamond', serif; }
.brand { font-size: 34px; line-height: 1; color: var(--gold-soft); }
.brand-sub { font-size: 12px; text-transform: uppercase; letter-spacing: .2em; color: rgba(240,215,171,.74); }
.nav-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.nav-actions a, .cart-toggle {
  font-size: 14px; color: var(--gold-soft); background: transparent; border: 0; cursor: pointer;
}
.badge {
  display: inline-flex; min-width: 22px; height: 22px; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--gold); color: #1a1209; font-weight: 700; margin-left: 6px;
}
.hero {
  position: relative; min-height: 92vh;
  background:
   linear-gradient(to bottom, rgba(0,0,0,.2), rgba(10,6,4,.96)),
   url('https://images.unsplash.com/photo-1506377585622-bedcbb027afc?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.hero-overlay {
  position: absolute; inset: 0; background: radial-gradient(circle at top, rgba(200,155,88,.18), transparent 38%);
}
.hero-content { position: relative; z-index: 2; display: grid; place-items: center; min-height: calc(92vh - 90px); }
.hero-inner { text-align: center; max-width: 900px; padding-bottom: 50px; }
.crest {
  width: 88px; height: 88px; margin: 0 auto 18px; border-radius: 999px; display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--gold-soft);
  border: 1px solid rgba(200,155,88,.55); background: rgba(0,0,0,.28); box-shadow: 0 0 30px rgba(200,155,88,.1);
}
.hero h1 { font-size: clamp(58px, 9vw, 90px); margin: 0; color: var(--gold-soft); font-weight: 600; }
.hero p { font-size: clamp(22px, 3vw, 34px); margin: 16px 0 0; color: rgba(245,234,215,.95); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; padding: 14px 24px; border: 1px solid var(--gold);
  transition: .22s ease; cursor: pointer; font-weight: 600;
}
.btn-gold { background: var(--gold); color: #1c1208; margin-top: 30px; }
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold-soft); }
.btn-outline:hover { background: rgba(200,155,88,.08); }
.btn-disabled { width: 100%; opacity: .75; cursor: not-allowed; }
.hero-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-features div { display: grid; gap: 6px; }
.hero-features strong { font-size: 24px; color: var(--gold-soft); }
.hero-features span {
  font-size: 12px; text-transform: uppercase; letter-spacing: .24em; color: rgba(240,215,171,.7);
}
.section { padding: 88px 0; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,.015), rgba(0,0,0,.08)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 40px; }
.section-heading-left { justify-content: flex-start; }
.line { width: 90px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-heading h2 { font-size: clamp(42px, 5vw, 58px); color: var(--gold-soft); margin: 0; font-weight: 600; }
.products { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; }
.product-card { text-align: center; }
.product-image-wrap {
  padding: 14px; border: 1px solid rgba(110,77,36,.45);
  background: radial-gradient(circle at top, rgba(214,160,85,.08), transparent 55%), linear-gradient(to bottom, rgba(255,255,255,.02), rgba(0,0,0,.18));
  box-shadow: var(--shadow);
}
.product-image { width: 100%; height: 280px; object-fit: cover; }
.product-card h3 { font-size: 34px; color: var(--gold-soft); margin: 18px 0 6px; font-weight: 600; }
.region { text-transform: uppercase; letter-spacing: .16em; color: var(--gold); font-size: 13px; }
.note { color: var(--muted); min-height: 48px; line-height: 1.7; }
.price { font-size: 32px; color: var(--gold-soft); font-weight: 700; margin: 14px 0; }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 46px; align-items: center; }
.story-image {
  min-height: 390px; border: 1px solid var(--line); box-shadow: var(--shadow);
  background: url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}
.story-text p { color: var(--muted); line-height: 1.9; font-size: 17px; }
.signature {
  margin-top: 24px; display: inline-block; padding: 10px 18px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 36px; color: var(--gold-soft);
}
.reassurance { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reassurance article { text-align: center; }
.icon { color: var(--gold); font-size: 28px; margin-bottom: 14px; }
.reassurance h3 { font-size: 34px; color: var(--gold-soft); margin: 0 0 10px; }
.reassurance p { color: var(--muted); line-height: 1.8; }
.legal-preview { padding-top: 0; }
.legal-card {
  border: 1px solid var(--line); background: var(--panel); padding: 28px; box-shadow: var(--shadow); text-align: center;
}
.legal-card h3 { font-size: 42px; color: var(--gold-soft); margin: 0 0 10px; }
.legal-card p { color: var(--muted); line-height: 1.8; max-width: 760px; margin: 0 auto 20px; }
.legal-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.footer {
  padding: 28px 16px 42px; text-align: center; border-top: 1px solid var(--line); color: rgba(240,215,171,.72);
}
.footer-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; }
.cart-drawer {
  position: fixed; top: 0; right: -430px; width: min(430px, 92vw); height: 100vh; background: #130c09;
  border-left: 1px solid var(--line); z-index: 50; transition: right .28s ease; display: flex; flex-direction: column;
  box-shadow: -10px 0 35px rgba(0,0,0,.35);
}
.cart-drawer.open { right: 0; }
.cart-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); opacity: 0; visibility: hidden; transition: .25s ease; z-index: 45;
}
.cart-backdrop.visible { opacity: 1; visibility: visible; }
.cart-header, .cart-footer { padding: 22px; border-bottom: 1px solid var(--line); }
.cart-header { display: flex; justify-content: space-between; align-items: center; }
.cart-header h2 { font-size: 42px; margin: 0; color: var(--gold-soft); }
.close-btn { background: transparent; border: 0; color: var(--gold-soft); font-size: 32px; cursor: pointer; }
.cart-items { padding: 20px; overflow: auto; flex: 1; display: grid; gap: 14px; }
.cart-item { display: grid; grid-template-columns: 84px 1fr; gap: 14px; border-bottom: 1px solid rgba(200,155,88,.14); padding-bottom: 14px; }
.cart-item img { width: 84px; height: 104px; object-fit: cover; }
.cart-item-info { display: grid; gap: 4px; }
.cart-item-info strong { color: var(--gold-soft); }
.cart-item-info span { color: var(--muted); font-size: 14px; }
.qty-controls { display: flex; align-items: center; gap: 10px; margin-top: 6px; }
.qty-btn {
  width: 28px; height: 28px; border: 1px solid var(--line); background: transparent; color: var(--gold-soft); cursor: pointer;
}
.cart-row { display: flex; justify-content: space-between; gap: 10px; color: var(--gold-soft); margin-bottom: 12px; }
.cart-note { color: var(--muted); font-size: 14px; line-height: 1.7; justify-content: flex-start; }
.empty-cart { color: var(--muted); }
.page-legal .hero-mini {
  padding: 76px 0 30px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(200,155,88,.08), transparent);
}
.page-legal h1 { margin: 0; font-size: clamp(52px, 8vw, 78px); color: var(--gold-soft); }
.page-legal .intro { color: var(--muted); max-width: 800px; line-height: 1.8; }
.legal-layout { padding: 54px 0 80px; }
.legal-block {
  border: 1px solid var(--line); background: var(--panel); padding: 24px; margin-bottom: 22px; box-shadow: var(--shadow);
}
.legal-block h2 { font-size: 36px; margin: 0 0 12px; color: var(--gold-soft); }
.legal-block p, .legal-block li { color: var(--muted); line-height: 1.85; }
.legal-block ul { padding-left: 20px; margin: 0; }
@media (max-width: 1100px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero-features, .reassurance, .story-grid, .products { grid-template-columns: 1fr; }
  .hero-inner { padding-bottom: 24px; }
  .brand { font-size: 30px; }
  .section { padding: 64px 0; }
}


#coffretCard {
  display: grid;
  gap: 28px;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(200,155,88,.10), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 18%);
}
.nav {
  padding: 20px 0;
  align-items: center;
}
.brand-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-nav {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.35));
}
.hero {
  min-height: 100vh;
  background:
   linear-gradient(to bottom, rgba(0,0,0,.30), rgba(10,6,4,.97)),
   radial-gradient(circle at top center, rgba(200,155,88,.16), transparent 32%),
   url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero-content {
  min-height: calc(100vh - 120px);
  padding: 30px 0 70px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 34px 28px 28px;
  border: 1px solid rgba(200,155,88,.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(20,12,8,.50), rgba(9,5,3,.72));
  backdrop-filter: blur(3px);
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}
.hero-logo {
  width: min(540px, 92%);
  margin: 0 auto 22px;
  filter: drop-shadow(0 12px 34px rgba(0,0,0,.46));
}
.hero-kicker {
  margin-bottom: 8px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
}
h1 {
  font-size: clamp(52px, 7vw, 86px);
  line-height: .92;
  margin: 0 0 14px;
  color: var(--gold-soft);
  text-shadow: 0 10px 24px rgba(0,0,0,.28);
}
.hero-inner p {
  max-width: 700px;
  margin: 0 auto 26px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245,234,215,.86);
}
.nav-actions {
  gap: 14px;
}
.nav-actions a, .cart-toggle {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .25s ease;
}
.nav-actions a:hover, .cart-toggle:hover {
  border-color: rgba(200,155,88,.28);
  background: rgba(255,255,255,.03);
}
.section-heading h2 {
  font-size: clamp(40px, 5vw, 58px);
  color: var(--gold-soft);
}
.section-intro,
.story-text p,
.reassurance p,
.legal-card p {
  color: rgba(245,234,215,.80);
}
.story-image {
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid rgba(200,155,88,.22);
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.42)),
    url('https://images.unsplash.com/photo-1506377585622-bedcbb027afc?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  box-shadow: var(--shadow);
}
.coffret-grid {
  display: grid;
  gap: 24px;
}
.coffret-card {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(200,155,88,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.018));
  box-shadow: var(--shadow);
}
.footer {
  border-top: 1px solid rgba(200,155,88,.18);
  background: #080503;
}
.footer::before {
  content: "";
  display: block;
  width: 180px;
  height: 76px;
  margin: 0 auto 22px;
  background: url('logo-site.png') center/contain no-repeat;
  opacity: .96;
}
@media (max-width: 920px) {
  .nav {
    flex-direction: column;
    justify-content: center;
  }
  .nav-actions {
    justify-content: center;
  }
  .logo-nav { width: 150px; }
  .hero-inner {
    padding: 28px 18px 22px;
  }
}
@media (max-width: 640px) {
  .nav-actions {
    gap: 8px;
  }
  .nav-actions a, .cart-toggle {
    font-size: 13px;
    padding: 8px 10px;
  }
  .hero-logo {
    width: min(420px, 96%);
  }
  .hero-inner p {
    font-size: 16px;
  }
}

.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  text-align: left;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(200,155,88,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.015));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 4 / 4.5;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,155,88,.14);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.product-card:hover .product-image {
  transform: scale(1.04);
}

.product-copy {
  padding: 24px 24px 22px;
  display: grid;
  gap: 12px;
}

.product-tag,
.coffret-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(200,155,88,.22);
  background: rgba(200,155,88,.08);
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card h3,
.coffret-card h3,
.modal-copy h3 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: .95;
  margin: 2px 0 0;
  color: var(--gold-soft);
}

.region,
.modal-region {
  color: rgba(200,155,88,.92);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
}

.note,
.modal-intro,
.coffret-copy p,
.coffret-list li,
.modal-spec span {
  color: rgba(245,234,215,.82);
  line-height: 1.75;
}

.product-bottom,
.coffret-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.price,
.coffret-price,
.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  line-height: .95;
  color: var(--gold-soft);
}

.card-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(200,155,88,.22);
  cursor: pointer;
  font-weight: 600;
  transition: .25s ease;
}

.btn-secondary,
.btn-outline {
  background: transparent;
  color: var(--gold-soft);
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(255,255,255,.04);
}

.btn-gold {
  background: linear-gradient(180deg, #d4b06d, #bb8a45);
  color: #1c1107;
  border-color: rgba(0,0,0,.08);
}

.btn-gold:hover {
  filter: brightness(1.04);
}

.product-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: 70;
  transition: .25s ease;
  padding: 20px;
}

.product-modal.open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.68);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  z-index: 65;
}

.modal-backdrop.visible {
  opacity: 1;
  visibility: visible;
}

.product-modal-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: 30px;
  border: 1px solid rgba(200,155,88,.22);
  background: linear-gradient(180deg, #120b08, #0b0604);
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.modal-copy {
  padding: 42px 34px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.refined-specs {
  display: grid;
  gap: 12px;
  margin: 6px 0 10px;
}

.modal-spec {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(200,155,88,.16);
  background: rgba(255,255,255,.025);
}

.modal-spec strong {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.coffret-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.coffret-copy {
  padding: 24px;
  display: grid;
  gap: 12px;
}

.coffret-visual {
  aspect-ratio: 4 / 3;
}

.coffret-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

@media (max-width: 1100px) {
  .products,
  .coffret-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .products,
  .coffret-grid,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .products,
  .coffret-grid {
    grid-template-columns: 1fr;
  }

  .product-copy,
  .coffret-copy,
  .modal-copy {
    padding: 20px;
  }

  .price,
  .coffret-price,
  .modal-price {
    font-size: 42px;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .btn {
    width: 100%;
  }
}


.floating-cart {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(200,155,88,.26);
  background: linear-gradient(180deg, rgba(18,11,8,.96), rgba(9,5,3,.98));
  color: var(--gold-soft);
  box-shadow: 0 16px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.04);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, opacity .22s ease;
}

.floating-cart:hover {
  transform: translateY(-2px);
  border-color: rgba(240,215,171,.36);
  box-shadow: 0 22px 50px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
}

.floating-cart.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.floating-cart-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #d4b06d, #bb8a45);
  color: #1c1107;
  font-size: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}

.floating-cart-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.floating-cart-copy strong {
  font-size: 14px;
  line-height: 1.1;
  color: var(--gold-soft);
}

.floating-cart-copy span {
  font-size: 13px;
  color: rgba(245,234,215,.76);
}

@media (max-width: 640px) {
  .floating-cart {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
  }
}
