:root {
  --charcoal: #121110;
  --charcoal-2: #1b1916;
  --brass: #b8925a;
  --brass-light: #d9b988;
  --cream: #ece3d1;
  --cream-dim: #b9ae98;
  --hair: rgba(184,146,90,0.25);

  --serif: 'Playfair Display', Georgia, serif;
  --body: 'EB Garamond', Georgia, serif;
  --label: 'Josefin Sans', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5vw;
  background: linear-gradient(to bottom, rgba(18,17,16,0.85), transparent);
}
.nav__mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brass-light);
  font-family: var(--label);
  letter-spacing: 3px;
  font-size: 14px;
}
.nav__logo { width: 22px; height: 22px; color: var(--brass-light); }
.nav__lang {
  background: none;
  border: 1px solid var(--brass);
  color: var(--brass-light);
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.25s ease;
}
.nav__lang:hover { background: rgba(184,146,90,0.12); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(ellipse at 50% 35%, #201d18 0%, #121110 72%);
  overflow: hidden;
}
.hero__smoke {
  position: absolute;
  top: -10%; left: 50%;
  width: 500px; height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(217,185,136,0.06) 0%, transparent 65%);
  animation: drift 14s ease-in-out infinite;
  pointer-events: none;
}
@keyframes drift {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0.7; }
  50% { transform: translateX(-48%) translateY(-30px) scale(1.08); opacity: 1; }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 11vw, 130px);
  letter-spacing: 0.12em;
  margin: 0;
  color: var(--cream);
}
.hero__tagline {
  font-family: var(--body);
  font-style: italic;
  color: var(--brass-light);
  font-size: clamp(14px, 2vw, 19px);
  letter-spacing: 0.04em;
  margin-top: 18px;
}
.hero__scroll {
  position: absolute;
  bottom: 40px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--cream-dim);
  opacity: 0.7;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__smoke { animation: none; }
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 160px 8vw;
  max-width: 780px;
  margin: 0 auto;
}
.manifesto--alt { border-top: 1px solid var(--hair); }
.manifesto__eyebrow {
  font-family: var(--label);
  color: var(--brass);
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.manifesto__text {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 25px);
  line-height: 1.9;
  color: var(--cream);
}

/* ===== WORLD IMAGE (full-bleed) ===== */
.world { width: 100%; }
.world__img { width: 100%; height: 80vh; object-fit: cover; }

/* ===== PRODUCT SECTIONS ===== */
.product {
  display: flex;
  align-items: center;
  gap: 6vw;
  padding: 90px 8vw;
  max-width: 1400px;
  margin: 0 auto;
}
.product--reverse { flex-direction: row-reverse; }
.product__media { flex: 1 1 50%; }
.product__media img { width: 100%; border-radius: 2px; }
.product__info { flex: 1 1 50%; }
.product__eyebrow {
  font-family: var(--label);
  color: var(--brass);
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product__info h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 0 0 20px 0;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.product__info p { color: var(--cream-dim); max-width: 46ch; }
.product__quote {
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-light);
  font-size: 20px;
}

/* ===== SPOUT GALLERY ===== */
.spout-gallery {
  display: flex;
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto 100px auto;
  padding: 0 8vw;
  flex-wrap: wrap;
}
.spout-gallery__item {
  flex: 1 1 200px;
  text-align: center;
}
.spout-gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 2px;
}
.spout-gallery__item span {
  display: block;
  margin-top: 10px;
  font-family: var(--label);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass-light);
}

/* ===== CATEGORY DIVIDER ===== */
.divider {
  text-align: center;
  padding: 70px 5vw 20px 5vw;
}
.divider h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  letter-spacing: 0.08em;
  color: var(--brass-light);
  border-bottom: 1px solid var(--hair);
  display: inline-block;
  padding-bottom: 18px;
}

/* ===== CTA / SAMPLE PACK ===== */
.cta {
  display: flex;
  align-items: center;
  gap: 6vw;
  padding: 120px 8vw;
  max-width: 1300px;
  margin: 0 auto;
}
.cta__img { flex: 1 1 45%; border-radius: 2px; }
.cta__content { flex: 1 1 55%; }
.cta__content h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--cream);
  margin: 0 0 20px 0;
}
.cta__content p { color: var(--cream-dim); max-width: 48ch; margin-bottom: 32px; }
.cta__button {
  display: inline-block;
  border: 1px solid var(--brass);
  color: var(--brass-light);
  font-family: var(--label);
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 34px;
  transition: background 0.25s ease, color 0.25s ease;
}
.cta__button:hover { background: var(--brass); color: var(--charcoal); }

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 100px 5vw 60px 5vw;
  border-top: 1px solid var(--hair);
}
.footer__logo { width: 40px; height: 40px; color: var(--brass); margin-bottom: 20px; }
.footer__tag {
  font-family: var(--body);
  font-style: italic;
  color: var(--brass-light);
  font-size: 15px;
  letter-spacing: 0.03em;
}
.footer__copy {
  font-family: var(--label);
  color: var(--cream-dim);
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 16px;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 860px) {
  .product, .product--reverse { flex-direction: column; }
  .cta { flex-direction: column; }
  .manifesto { padding: 100px 6vw; }
  .world__img { height: 55vh; }
}

/* ===== FOCUS VISIBILITY ===== */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 3px;
}
