:root {
  --bg: #120906;
  --bg-2: #1c0e08;
  --panel: #26130b;
  --panel-2: #f5eee2;
  --text: #f7f0e6;
  --muted: #cdbba6;
  --gold: #c69a4a;
  --gold-light: #e1bd73;
  --line: rgba(198,154,74,.35);
  --ink: #24140d;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; }
button { font: inherit; }

.concept-bar {
  text-align: center;
  padding: 8px 16px;
  color: var(--gold-light);
  background: #221108;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: .08em;
}

.site-header {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: center;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(27px, 3vw, 39px);
  color: var(--gold-light);
}
.brand span { font-size: .56em; }
.main-nav { display: flex; gap: 26px; }
.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
}
.main-nav a:hover { color: var(--gold-light); }
.language-switch { display: flex; align-items: center; gap: 7px; color: #8f7966; }
.lang {
  border: 0;
  padding: 6px 2px;
  background: transparent;
  color: #9f8b79;
  cursor: pointer;
}
.lang.is-active { color: var(--gold-light); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  min-height: 650px;
  padding: 58px 28px 48px;
  gap: 40px;
}
.eyebrow,
.section-kicker {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
h1 {
  font-size: clamp(49px, 6.3vw, 88px);
  line-height: .98;
  margin-bottom: 24px;
}
.hero-sub {
  max-width: 520px;
  color: #eadfce;
  font-size: clamp(18px, 2vw, 23px);
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-block;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
}
.button-primary { background: linear-gradient(180deg, #d8ad5a, #b98531); color: #1d1009; }
.button-secondary { border: 1px solid var(--gold); color: var(--text); }
.hero-visual { margin: 0; }
.hero-visual img {
  width: 100%;
  display: block;
  border-radius: 3px;
  box-shadow: 0 28px 70px rgba(0,0,0,.34);
}

.intro,
.products,
.shelf-section,
.gifts,
.story,
.cta-panel {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.intro { padding-top: 90px; padding-bottom: 90px; text-align: center; }
.intro h2,
.products h2,
.shelf-section h2,
.gifts h2,
.story h2,
.cta-panel h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  margin-bottom: 20px;
}
.section-lead { max-width: 760px; margin: 0 auto 52px; color: var(--muted); font-size: 18px; }
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  text-align: left;
}
.three-up article {
  min-height: 225px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.005));
}
.number { color: var(--gold); font-size: 13px; letter-spacing: .14em; }
.three-up h3 { margin: 42px 0 8px; font-size: 27px; }
.three-up p { color: var(--muted); margin-bottom: 0; }

.products { padding-top: 88px; padding-bottom: 90px; border-top: 1px solid var(--line); }
.section-heading-row {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 44px;
}
.section-heading-row > p { color: var(--muted); font-size: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: #f2eadf;
  color: var(--ink);
  min-height: 530px;
  padding: 26px;
}
.product-card h3 { font-size: 28px; margin: 26px 0 6px; }
.product-card p { color: #6c5748; }
.pack {
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198,154,74,.55);
  position: relative;
  overflow: hidden;
}
.pack::before {
  content: '';
  position: absolute;
  width: 160%; height: 160%;
  border: 1px solid rgba(198,154,74,.18);
  border-radius: 50%;
  top: 44%; left: -30%;
}
.pack-brand { font-family: Georgia, serif; color: var(--gold-light); font-size: 28px; z-index: 1; }
.pack strong { font-family: Georgia, serif; font-size: 62px; margin-top: 95px; font-weight: 400; z-index: 1; }
.pack small { text-transform: uppercase; letter-spacing: .15em; z-index: 1; }
.pack-dark { background: #1b110d; color: #e6c982; }
.pack-light { background: #e9decd; color: #50301f; }
.pack-light .pack-brand { color: #6d4127; }
.pack-origin { background: linear-gradient(160deg, #332016, #16100c); color: #e7c785; }

.shelf-section {
  padding-top: 90px;
  padding-bottom: 90px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 55px;
  align-items: center;
}
.shelf-copy p:last-child { color: var(--muted); font-size: 18px; }
.wrapper-stage {
  min-height: 430px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, #4c2a18 0, #1c0d07 38%, #0d0705 78%);
  border: 1px solid var(--line);
  padding: 50px;
}
.wrapper-mini {
  width: min(100%, 620px);
  aspect-ratio: 2.15/1;
  background: #2a160e;
  border-left: 12px solid #c89b47;
  border-right: 12px solid #c89b47;
  box-shadow: 0 28px 40px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.mini-mark { font-family: Georgia, serif; color: #e2bd70; font-size: clamp(34px, 5vw, 70px); }
.mini-rule { width: 62%; height: 1px; background: #a77b38; margin: 18px 0; }
.mini-copy { letter-spacing: .2em; color: #d6c3ac; }

.gifts {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 75px;
  border-top: 1px solid var(--line);
}
.gift-copy p:last-child { color: var(--muted); font-size: 18px; }
.gift-box {
  width: min(100%, 500px);
  aspect-ratio: 1.55/1;
  background: #20110b;
  border: 1px solid #805c2c;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.32);
}
.gift-box span { font-family: Georgia, serif; font-size: 38px; color: var(--gold-light); z-index: 2; }
.ribbon-v,.ribbon-h { position: absolute; background: #4a2b1c; }
.ribbon-v { width: 54px; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); }
.ribbon-h { height: 54px; left: 0; right: 0; top: 50%; transform: translateY(-50%); }

.story {
  padding-top: 100px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 85px;
  border-top: 1px solid var(--line);
}
.story-copy { color: #dccdbb; font-size: 20px; }

.cta-panel {
  margin-top: 30px;
  margin-bottom: 90px;
  padding-top: 68px;
  padding-bottom: 68px;
  border: 1px solid var(--line);
  text-align: center;
  background: #1d0f09;
}
.cta-panel p:not(.section-kicker) { color: var(--muted); max-width: 700px; margin: 0 auto 28px; }

footer {
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #a89280;
  font-size: 13px;
}

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding-top: 20px; }
  .hero-visual { max-width: 760px; }
  .three-up,
  .product-grid { grid-template-columns: 1fr; }
  .section-heading-row,
  .shelf-section,
  .gifts,
  .story { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .pack { height: 300px; }
}

@media (max-width: 620px) {
  .concept-bar { font-size: 11px; }
  .site-header { padding: 0 18px; min-height: 68px; }
  .brand { font-size: 27px; }
  .hero,
  .intro,
  .products,
  .shelf-section,
  .gifts,
  .story,
  .cta-panel { padding-left: 18px; padding-right: 18px; }
  .hero { padding-top: 38px; gap: 26px; }
  h1 { font-size: 48px; }
  .hero-actions { flex-direction: column; }
  .button { text-align: center; }
  .intro { padding-top: 70px; padding-bottom: 70px; }
  .three-up article { min-height: 0; }
  .wrapper-stage { padding: 20px; min-height: 300px; }
  .wrapper-mini { border-left-width: 7px; border-right-width: 7px; }
  .mini-copy { font-size: 10px; }
  footer { flex-direction: column; }
}
