:root {
  --ivory: #fbf6ee;
  --cream: #fffaf2;
  --champagne: #f1e4ce;
  --gold: #b98a3a;
  --deep-gold: #8a5d1e;
  --charcoal: #29231f;
  --muted: #776b5e;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(84, 58, 22, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.9), transparent 28%),
    linear-gradient(135deg, var(--cream), var(--ivory) 48%, #f4eadc);
  font-family: Inter, system-ui, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.announcement {
  text-align: center;
  padding: 10px 16px;
  color: var(--deep-gold);
  background: #fff4df;
  border-bottom: 1px solid rgba(185,138,58,.22);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(251, 246, 238, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(185,138,58,.18);
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 58px; height: 58px; object-fit: contain; }
.brand strong {
  display: block;
  font-family: Playfair Display, serif;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: .04em;
}
.brand small, .venture {
  display: block;
  color: var(--deep-gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; }
.nav-cta { color: var(--deep-gold); font-weight: 700; }
.nav-toggle { display: none; background: none; border: 0; font-size: 28px; }

.hero {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: clamp(45px, 7vw, 96px) clamp(18px, 5vw, 70px);
}
.eyebrow {
  color: var(--deep-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: Playfair Display, serif; margin: 0; line-height: 1.05; }
h1 { font-size: clamp(58px, 10vw, 134px); letter-spacing: .03em; }
h2 { font-size: clamp(36px, 5vw, 68px); }
h3 { font-size: 28px; }
.tagline {
  max-width: 710px;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.12;
  color: #4a3c31;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.button.primary { background: linear-gradient(135deg, #c99b4f, #8f611f); color: white; box-shadow: var(--shadow); }
.button.secondary { background: rgba(255,255,255,.5); color: var(--deep-gold); }
.button:hover { transform: translateY(-3px); }
.hero-card {
  padding: 12px;
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(185,138,58,.28);
  border-radius: 38px;
  box-shadow: var(--shadow);
}
.hero-card img { border-radius: 28px; aspect-ratio: 4 / 5; object-fit: cover; }

.section { padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 70px); }
.intro { padding-top: 10px; text-align: center; }
.intro p {
  margin: auto;
  max-width: 880px;
  font-family: Cormorant Garamond, serif;
  font-size: clamp(26px, 4vw, 52px);
  color: #5c4a3c;
}
.section-heading { max-width: 850px; margin-bottom: 34px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.product-card {
  overflow: hidden;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(185,138,58,.24);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(84,58,22,.08);
}
.product-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.product-card div { padding: 22px; }
.product-card p { color: var(--muted); min-height: 44px; }
.product-card span { color: var(--deep-gold); font-size: 13px; font-weight: 700; }
.product-card.featured { transform: translateY(-12px); }

.split {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 40px;
  align-items: start;
}
.text-panel {
  padding: clamp(26px, 4vw, 48px);
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(185,138,58,.24);
  border-radius: 32px;
  box-shadow: var(--shadow);
  font-size: 18px;
  line-height: 1.8;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.benefits div {
  padding: 30px;
  min-height: 210px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,246,230,.55));
  border: 1px solid rgba(185,138,58,.24);
  border-radius: 28px;
}
.benefits strong {
  display: block;
  margin-bottom: 16px;
  font-family: Playfair Display, serif;
  font-size: 26px;
}
.benefits span { color: var(--muted); line-height: 1.7; }

.launch {
  margin: 0 clamp(18px, 5vw, 70px) clamp(40px, 6vw, 80px);
  text-align: center;
  background:
    linear-gradient(rgba(255,250,242,.83), rgba(255,250,242,.9)),
    url('assets/hero-collection.jpeg') center/cover;
  border: 1px solid rgba(185,138,58,.28);
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.launch img { width: 160px; margin: 0 auto 18px; }
.launch p { color: var(--muted); font-size: 18px; }
.launch .contact-actions { justify-content: center; }
.launch small { display: block; margin-top: 24px; color: var(--deep-gold); }

footer {
  display: grid;
  gap: 8px;
  text-align: center;
  padding: 34px 18px 44px;
  border-top: 1px solid rgba(185,138,58,.2);
  color: var(--muted);
}
footer strong { font-family: Playfair Display, serif; font-size: 28px; color: var(--charcoal); }
footer span { color: var(--deep-gold); letter-spacing: .2em; text-transform: uppercase; font-size: 12px; }

@media (max-width: 1050px) {
  .hero, .split { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid rgba(185,138,58,.2);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: auto; }
  .product-grid, .benefits { grid-template-columns: 1fr; }
  .product-card.featured { transform: none; }
  .brand img { width: 48px; height: 48px; }
}
