@font-face { font-family: "Anton"; src: url("/fonts/anton.woff2") format("woff2"); font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter.woff2") format("woff2"); font-weight: 100 900; font-display: swap; }

:root {
  --ink: #1b120b;
  --brown: #2b1a0f;
  --amber: #c8781d;
  --honey: #e3a54a;
  --cream: #f5ecdf;
  --wax: #eadbc5;
  --muted: #7a6a5b;
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "Inter", system-ui, -apple-system, sans-serif;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 60px; }
body { font-family: var(--body); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

h1, h2, h3, .logo, .drop-price, .stat strong { font-family: var(--display); font-weight: 400; text-transform: uppercase; letter-spacing: .005em; line-height: .92; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--honey); margin-bottom: 18px; }
.eyebrow.dark { color: var(--amber); }

/* Top bar */
.topbar { background: var(--ink); color: var(--wax); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; overflow: hidden; white-space: nowrap; padding: 9px 0; }
.marquee-track, .strip-track { display: inline-flex; animation: marquee 38s linear infinite; }
.marquee-track span { padding: 0 48px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 18px var(--pad); background: rgba(245, 236, 223, 0); transition: background .35s, box-shadow .35s, color .35s; color: var(--cream); margin-bottom: -68px; }
.nav.solid { background: rgba(245, 236, 223, .94); backdrop-filter: blur(12px); color: var(--ink); box-shadow: 0 1px 0 rgba(27, 18, 11, .08); }
.logo { font-size: 30px; letter-spacing: .06em; }
.nav-links { display: flex; gap: 34px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: currentColor; transition: width .25s; }
.nav-links a:hover::after { width: 100%; }
.burger { display: none; width: 32px; height: 20px; position: relative; }
.burger span { position: absolute; left: 0; right: 0; height: 2px; background: currentColor; transition: transform .3s, top .3s; }
.burger span:first-child { top: 4px; }
.burger span:last-child { top: 14px; }
.burger.open span:first-child { top: 9px; transform: rotate(45deg); }
.burger.open span:last-child { top: 9px; transform: rotate(-45deg); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 16px 30px; border-radius: 999px; font-size: 15px; font-weight: 600; transition: transform .2s, background .2s, color .2s, border-color .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--honey); }
.btn-ghost { border: 1.5px solid rgba(245, 236, 223, .6); color: var(--cream); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245, 236, 223, .1); }
.btn-amber { background: var(--honey); color: var(--ink); }
.btn-amber:hover { background: var(--cream); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--amber); }

/* Hero */
.hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; color: var(--cream); display: flex; align-items: flex-end; }
.hero-img { position: absolute; inset: 0; object-position: 70% center; transform: scale(1.06); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 11, 5, .78) 0%, rgba(20, 11, 5, .35) 50%, rgba(20, 11, 5, 0) 75%), linear-gradient(0deg, rgba(20, 11, 5, .55) 0%, rgba(20, 11, 5, 0) 45%); }
.hero-content { position: relative; padding: 130px var(--pad) clamp(48px, 9vh, 110px); max-width: 900px; }
.hero h1 { font-size: clamp(52px, min(11vw, 16vh), 168px); animation: rise 1s .15s both cubic-bezier(.2, .7, .2, 1); }
.hero h1 span { color: var(--honey); }
.hero .eyebrow { animation: rise 1s both cubic-bezier(.2, .7, .2, 1); }
.hero-sub { font-size: clamp(16px, 1.4vw, 19px); max-width: 440px; margin: clamp(16px, 3vh, 26px) 0 clamp(20px, 4vh, 34px); color: rgba(245, 236, 223, .85); line-height: 1.55; animation: rise 1s .3s both cubic-bezier(.2, .7, .2, 1); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; animation: rise 1s .45s both cubic-bezier(.2, .7, .2, 1); }
@keyframes rise { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }
.scroll-cue { position: absolute; right: var(--pad); bottom: 40px; width: 52px; height: 52px; border: 1.5px solid rgba(245, 236, 223, .5); border-radius: 50%; display: grid; place-items: center; font-size: 20px; animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(8px); } }

/* Sections */
.section { padding: clamp(80px, 11vw, 150px) var(--pad); }
.section-cream { background: var(--wax); }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(40px, 5vw, 64px); max-width: 780px; }
.section-head.row { flex-direction: row; justify-content: space-between; align-items: flex-end; max-width: none; flex-wrap: wrap; gap: 24px; }
.section-head h2 { font-size: clamp(48px, 7vw, 104px); }
.section-head p { font-size: 18px; color: var(--muted); max-width: 460px; line-height: 1.55; }

/* Collections */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.col-card { position: relative; aspect-ratio: 3 / 4.2; overflow: hidden; border-radius: 4px; color: var(--cream); }
.col-card img { transition: transform 1.1s cubic-bezier(.2, .7, .2, 1); }
.col-card:hover img { transform: scale(1.07); }
.col-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20, 11, 5, .8) 0%, rgba(20, 11, 5, 0) 55%); }
.col-info { position: absolute; left: 28px; right: 28px; bottom: 28px; z-index: 1; }
.col-num { font-size: 13px; font-weight: 600; letter-spacing: .2em; color: var(--honey); }
.col-info h3 { font-size: clamp(44px, 5vw, 72px); margin: 6px 0 8px; }
.col-info p { font-size: 15px; opacity: .85; }
.col-link { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 600; border-bottom: 1.5px solid var(--honey); padding-bottom: 3px; transition: letter-spacing .3s; }
.col-card:hover .col-link { letter-spacing: .06em; }

/* Strip */
.strip { background: var(--amber); color: var(--ink); overflow: hidden; white-space: nowrap; padding: 22px 0; }
.strip-track { animation-duration: 30s; align-items: center; }
.strip span { font-family: var(--display); font-size: clamp(28px, 3.4vw, 46px); text-transform: uppercase; padding: 0 28px; }
.strip i { font-style: normal; font-size: 22px; }

/* Products */
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 11px 22px; border-radius: 999px; border: 1.5px solid rgba(27, 18, 11, .2); font-size: 14px; font-weight: 600; transition: all .2s; }
.chip:hover { border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 18px; }
.product { transition: opacity .35s, transform .35s; }
.product.hide { display: none; }
.p-img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; background: var(--cream); }
.p-img img { transition: transform .9s cubic-bezier(.2, .7, .2, 1); }
.product:hover .p-img img { transform: scale(1.05); }
.tag { position: absolute; top: 16px; left: 16px; background: var(--cream); padding: 7px 13px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: .04em; }
.p-body { display: flex; justify-content: space-between; gap: 16px; margin-top: 18px; }
.p-body h3 { font-size: 30px; }
.notes { font-size: 14px; color: var(--muted); margin-top: 8px; }
.price { font-size: 17px; font-weight: 700; white-space: nowrap; }
.meta { font-size: 13px; color: var(--muted); margin-top: 6px; font-weight: 500; }

/* Drop */
.drop { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; color: var(--cream); background: var(--ink); }
.drop-img { position: absolute; inset: 0; object-position: 75% center; }
.drop-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20, 11, 5, .85) 0%, rgba(20, 11, 5, .45) 45%, rgba(20, 11, 5, 0) 75%), linear-gradient(0deg, rgba(20, 11, 5, .85) 0%, rgba(20, 11, 5, 0) 55%); }
.drop-content { position: relative; padding: 0 var(--pad); max-width: 820px; margin-top: auto; padding-bottom: clamp(60px, 9vh, 110px); }
.drop h2 { font-size: clamp(60px, 9vw, 140px); }
.drop-content > p:not(.eyebrow) { font-size: 18px; line-height: 1.6; max-width: 520px; margin: 24px 0 32px; color: rgba(245, 236, 223, .85); }
.drop-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.drop-price { font-size: 54px; color: var(--honey); }

/* Ritual */
.ritual { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; background: var(--cream); }
.ritual-img { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; }
.ritual h2 { font-size: clamp(44px, 5.5vw, 84px); margin-bottom: 44px; }
.steps { list-style: none; display: flex; flex-direction: column; }
.steps li { display: flex; gap: 26px; padding: 26px 0; border-top: 1px solid rgba(27, 18, 11, .15); }
.steps li:last-child { border-bottom: 1px solid rgba(27, 18, 11, .15); }
.steps span { font-family: var(--display); font-size: 32px; color: var(--amber); line-height: 1; }
.steps h4 { font-size: 18px; margin-bottom: 6px; }
.steps p { color: var(--muted); line-height: 1.55; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--brown); color: var(--cream); }
.stat { padding: clamp(40px, 6vw, 80px) var(--pad); border-right: 1px solid rgba(245, 236, 223, .12); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: clamp(48px, 5.5vw, 84px); color: var(--honey); margin-bottom: 10px; }
.stat span { font-size: 15px; opacity: .8; }

/* Circle */
.circle { background: var(--honey); padding: clamp(80px, 10vw, 140px) var(--pad); text-align: center; }
.circle-inner { max-width: 760px; margin: 0 auto; }
.circle h2 { font-family: var(--display); font-size: clamp(48px, 7vw, 100px); text-transform: uppercase; line-height: .92; }
.circle p { font-size: 18px; margin: 22px auto 34px; max-width: 480px; line-height: 1.55; }
.signup { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; }
.signup input { flex: 1; min-width: 0; padding: 16px 24px; border-radius: 999px; border: 1.5px solid var(--ink); background: rgba(245, 236, 223, .5); font: inherit; font-size: 15px; outline: none; }
.signup input:focus { background: var(--cream); }
.signup-ok { font-weight: 700; font-size: 18px; margin: 0 auto; }

/* Footer */
.footer { background: var(--ink); color: var(--wax); padding: 80px var(--pad) 36px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(234, 219, 197, .15); }
.footer .logo { font-size: 64px; color: var(--cream); }
.footer-brand p { margin-top: 14px; opacity: .7; }
.footer h5 { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--honey); margin-bottom: 18px; }
.footer-top a { display: block; margin-bottom: 10px; opacity: .8; transition: opacity .2s; }
.footer-top a:hover { opacity: 1; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; opacity: .6; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 960px) {
  .nav-links { position: fixed; inset: 0; background: var(--ink); color: var(--cream); flex-direction: column; justify-content: center; align-items: center; gap: 26px; font-family: var(--display); font-size: 44px; font-weight: 400; text-transform: uppercase; transform: translateY(-100%); visibility: hidden; transition: transform .45s cubic-bezier(.2, .7, .2, 1), visibility 0s .45s; }
  .nav-links.open { transform: none; visibility: visible; transition: transform .45s cubic-bezier(.2, .7, .2, 1); }
  .nav.solid { backdrop-filter: none; background: var(--cream); }
  .hero-shade { background: linear-gradient(0deg, rgba(20, 11, 5, .92) 0%, rgba(20, 11, 5, .7) 40%, rgba(20, 11, 5, .15) 75%, rgba(20, 11, 5, .35) 100%); }
  .burger { display: block; z-index: 60; }
  .burger.open { color: var(--cream); }
  .collections, .products { grid-template-columns: 1fr 1fr; }
  .collections .col-card:last-child { grid-column: span 2; aspect-ratio: 16 / 10; }
  .ritual { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(245, 236, 223, .12); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .collections, .products { grid-template-columns: 1fr; }
  .collections .col-card:last-child { grid-column: auto; aspect-ratio: 3 / 4.2; }
  .hero-img { object-position: 78% center; }
  .signup { flex-direction: column; }
  .drop-img { object-position: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
