:root {
  --ink: #171717;
  --charcoal: #25272a;
  --black: #0f1011;
  --cream: #f7f0e6;
  --paper: #fbf7ef;
  --sand: #e7d8c4;
  --warm: #d8c3aa;
  --line: rgba(23, 23, 23, .18);
  --red: #b5161d;
  --rose: #c45c78;
  --blue: #6aa6cb;
  --gold: #b89b70;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0, rgba(255,255,255,.88), transparent 28rem),
    linear-gradient(180deg, var(--paper), #f1e6d7);
  font-family: var(--sans);
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: multiply;
}
a { color: inherit; }
.shell { width: min(1220px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(14px);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: .22em;
  text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-weight: 800;
  font-size: .76rem;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--red); }
.nav-cta { border: 1px solid var(--ink); padding: 11px 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 74px;
  background:
    linear-gradient(90deg, rgba(251,247,239,.97) 0 55%, rgba(19,20,21,.95) 55%),
    linear-gradient(135deg, var(--paper), var(--sand));
}
.lifestyle-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: 0;
  background: #15110e;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,9,8,.66) 0%, rgba(10,9,8,.32) 38%, rgba(10,9,8,.04) 72%),
    linear-gradient(0deg, rgba(10,9,8,.68) 0%, transparent 44%);
}
.hero::after {
  content: "";
  position: absolute;
  right: -10rem;
  bottom: -18rem;
  width: 48rem;
  height: 48rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181,22,29,.18), transparent 65%);
}
.lifestyle-hero::after { display: none; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  padding: 90px 0;
}
.eyebrow, .section-kicker {
  color: var(--red);
  font-weight: 900;
  font-size: .75rem;
  letter-spacing: .23em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1, .stance-hero h1 {
  margin: 18px 0 24px;
  font-size: clamp(4.8rem, 10vw, 9.4rem);
  line-height: .82;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 560px;
  color: #3a332c;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}
.lifestyle-hero .eyebrow { color: #ff333a; }
.lifestyle-hero h1 {
  max-width: 650px;
  color: #fff7ed;
  text-shadow: 0 3px 30px rgba(0,0,0,.55);
}
.lifestyle-hero .hero-copy {
  color: #f3dfc7;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 28px; }
.button {
  display: inline-block;
  padding: 16px 24px;
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-decoration: none;
  text-transform: uppercase;
}
.button.secondary { background: var(--charcoal); border-color: var(--charcoal); }
.text-link {
  color: var(--red);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.light-link { color: #f8ddc0; }
.hero-product {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  background: #151617;
  box-shadow: 0 35px 70px rgba(27, 21, 15, .24);
}
.hero-product img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-product figcaption {
  margin: 0;
  padding: 20px 24px 24px;
  color: #eadcca;
  background: #151617;
  font: 1.2rem/1.4 var(--serif);
}
.hero-product figcaption strong {
  color: #ff3138;
  font-family: var(--sans);
  letter-spacing: .04em;
}

.product-showcase {
  padding: 92px 0;
  background: linear-gradient(135deg, #151617, #27211d);
  color: #f8efe4;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.product-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: #101112;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.product-card img { display: block; width: 100%; height: auto; }
.product-showcase h2 {
  margin: 8px 0 20px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: .94;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.product-showcase p { color: #decbb7; font-size: 1.08rem; }

.story-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 12% 0, rgba(181,22,29,.12), transparent 25rem),
    linear-gradient(180deg, #f8efe4, #e9d8c4);
}
.section-head.compact { max-width: 760px; margin-left: auto; margin-right: auto; }
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.story-card {
  overflow: hidden;
  border: 1px solid rgba(23,23,23,.18);
  background: rgba(255,255,255,.5);
  box-shadow: 0 24px 60px rgba(64, 42, 24, .14);
}
.story-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}
.story-copy { padding: 28px; }
.story-copy h3 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.story-copy p:last-child {
  margin-bottom: 0;
  color: #4d443b;
  font-size: 1.04rem;
}

.bottle {
  width: 156px;
  height: 198px;
  position: relative;
  display: grid;
  place-items: center;
  border: 7px double rgba(255,255,255,.72);
  border-radius: 10px 10px 18px 18px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255,255,255,.34), transparent 20%),
    linear-gradient(110deg, rgba(255,255,255,.2), transparent 24%),
    var(--shade, #223344);
  color: white;
  box-shadow: 0 28px 45px rgba(34, 25, 18, .24), inset 8px 0 18px rgba(255,255,255,.16);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .14em;
}
.bottle::before {
  content: "";
  width: 82px;
  height: 78px;
  position: absolute;
  top: -76px;
  border-radius: 8px 8px 2px 2px;
  background: #171717;
  box-shadow: inset 8px 0 13px rgba(255,255,255,.08);
}
.bottle.featured { transform: rotate(-3deg) scale(1.12); }
.bottle.small-feature { transform: rotate(5deg) scale(.9); }
.bottle.matte { background: var(--shade); }
.bottle.light { border-color: rgba(38,38,38,.36); }

.collections { padding: 94px 0; background: linear-gradient(180deg, var(--cream), #efe1cf); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2, .board-section h2, .signup h2 {
  margin: 8px 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .94;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.collection {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.52);
  box-shadow: 0 18px 50px rgba(70, 51, 32, .08);
}
.collection + .collection { margin-top: 28px; }
.collection.quietly {
  color: #f7eee4;
  background:
    radial-gradient(circle at 83% 12%, rgba(196,92,120,.26), transparent 22rem),
    linear-gradient(135deg, #1b1d1f, #111213);
}
.collection-title {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}
.collection h3 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.collection-title p:last-child { max-width: 420px; margin-bottom: 0; font-size: 1.1rem; }
.quietly .section-kicker, .quietly .shade strong, .quietly .shade span { color: #e96b8b; }
.shade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.shade-grid.five { grid-template-columns: repeat(5, 1fr); }
.shade {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.swatch {
  width: 112px;
  height: 112px;
  margin: 12px auto 24px;
  border: 9px solid rgba(255,255,255,.66);
  border-radius: 50%;
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.7), transparent 18%),
    radial-gradient(circle at 50% 70%, rgba(0,0,0,.18), transparent 52%),
    var(--shade);
  box-shadow:
    0 22px 34px rgba(35, 24, 14, .18),
    inset 8px -10px 18px rgba(0,0,0,.18),
    inset -8px 10px 16px rgba(255,255,255,.24);
}
.matte-swatch {
  background: var(--shade);
  box-shadow: 0 22px 34px rgba(35, 24, 14, .18);
}
.oil-swatch {
  background:
    radial-gradient(circle at 28% 20%, rgba(255,255,255,.68), transparent 18%),
    linear-gradient(135deg, rgba(111,45,139,.55), transparent 25%, rgba(20,97,102,.45) 48%, transparent 66%),
    var(--shade);
}
.shade strong {
  display: block;
  min-height: 2.4em;
  letter-spacing: .08em;
  line-height: 1.08;
  text-transform: uppercase;
}
.shade small { max-width: 180px; color: #514941; }
.quietly .shade small { color: #e7d5c4; }
.shade span {
  display: block;
  margin-top: 16px;
  color: #7b1117;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.special-shade { position: relative; }
.special-shade::before {
  content: "Special Edition";
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.board-section { padding: 92px 0; background: var(--paper); }
.board-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.board-grid p { color: #4c443c; font-size: 1.08rem; }
.board-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(23,23,23,.2);
  background: #111;
  box-shadow: 0 28px 70px rgba(47, 31, 18, .22);
}
.board-card img { display: block; width: 100%; height: auto; }

.reasons {
  padding: 58px 0;
  color: #f6eadb;
  background: #141516;
}
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reason-grid div { padding: 0 28px; border-left: 1px solid rgba(255,255,255,.22); }
.reason-grid h3 { color: var(--gold); letter-spacing: .08em; text-transform: uppercase; }
.reason-grid p { margin-bottom: 0; color: #dccaba; }

.signup { padding: 92px 0; text-align: center; background: linear-gradient(180deg, #f7efe5, #efe0cf); }
.signup p { color: #534b43; }
.signup-form { display: flex; justify-content: center; max-width: 660px; margin: 28px auto 0; }
.signup-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--ink);
  padding: 16px;
  background: rgba(255,255,255,.4);
  font: inherit;
}
.signup-form button {
  border: 0;
  padding: 16px 24px;
  background: var(--charcoal);
  color: white;
  font: inherit;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-row { display: flex; justify-content: space-between; gap: 24px; }

.stance-page { background: var(--paper); }
.stance-hero { padding: 108px 0 82px; border-bottom: 1px solid var(--line); background: linear-gradient(125deg, #f8f4ed 0 65%, #e6ddd1 65%); }
.stance-hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.stance-hero h1 { max-width: 980px; font-size: clamp(4rem, 9vw, 8rem); }
.stance-hero .lead { max-width: 720px; margin: 0; font: 1.65rem/1.35 var(--serif); }
.stance-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23,23,23,.18);
  background: #151617;
  box-shadow: 0 26px 60px rgba(48, 32, 19, .18);
}
.stance-visual img { display: block; width: 100%; height: auto; }
.manifesto { padding: 110px 0; }
.manifesto-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.manifesto-aside { position: sticky; top: 128px; }
.manifesto-aside p { max-width: 280px; font: italic 1.25rem/1.4 var(--serif); color: #655b52; }
.manifesto-copy { font: clamp(1.45rem, 2.8vw, 2.35rem)/1.42 var(--serif); }
.manifesto-copy p { margin-bottom: 1.2em; }
.manifesto-copy .quiet { color: #675f58; }
.manifesto-copy .turn { padding: 34px 0; font-family: var(--sans); font-size: clamp(2.2rem, 5vw, 4.6rem); font-weight: 900; line-height: .95; text-transform: uppercase; }
.freedoms { margin: 42px 0; padding: 42px 0 42px 40px; border-left: 5px solid var(--red); }
.freedoms p { margin-bottom: .5em; }
.final-rule { margin-top: 90px; padding: 70px 24px; text-align: center; color: white; background: var(--charcoal); }
.final-rule span { display: block; color: #d4bdb8; font-size: .75rem; letter-spacing: .25em; text-transform: uppercase; }
.final-rule strong { display: block; margin-top: 10px; font-size: clamp(4rem, 12vw, 9rem); line-height: .9; text-transform: uppercase; }

@media (max-width: 980px) {
  .hero { background: linear-gradient(180deg, var(--paper) 0 55%, #151617 55%); }
  .lifestyle-hero { background: #15110e; }
  .hero-grid, .board-grid, .reason-grid, .stance-hero-grid, .product-grid, .story-grid { grid-template-columns: 1fr; }
  .shade-grid.five { grid-template-columns: repeat(2, 1fr); }
  .collection-title { display: block; }
}

@media (max-width: 800px) {
  .shell { width: min(100% - 28px, 1220px); }
  .nav { min-height: 68px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 56px 0; }
  .lifestyle-hero {
    min-height: 0;
    display: block;
    padding: 14px 0 0;
    background: #15110e;
  }
  .hero-image {
    position: relative;
    inset: auto;
    display: block;
    width: min(100% - 28px, 760px);
    height: auto;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,.2);
    object-fit: contain;
    object-position: center center;
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
  }
  .hero-overlay {
    display: none;
  }
  .hero-content {
    padding: 34px 0 48px;
  }
  .hero-product figcaption { padding: 18px; }
  .collection { padding: 24px 16px; }
  .shade-grid, .shade-grid.five { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .reason-grid div { padding: 0; border-left: 0; }
  .signup-form { flex-direction: column; gap: 10px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 30px; }
  .manifesto-aside { position: static; }
  .stance-hero { background: var(--paper); }
  .manifesto { padding: 70px 0; }
  .footer-row { flex-direction: column; }
}

@media (max-width: 520px) {
  .hero h1, .stance-hero h1 { font-size: clamp(3.7rem, 18vw, 5rem); }
  .bottle.featured { transform: rotate(-3deg) scale(.9); }
  .bottle.small-feature { transform: rotate(5deg) scale(.72); }
  .shade-grid, .shade-grid.five { grid-template-columns: 1fr; }
}
