@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap");

:root {
  --ink: #101010;
  --ink-soft: #2b2825;
  --muted: #706964;
  --paper: #fffdf8;
  --soft: #f6f0e8;
  --cream: #eee3d6;
  --line: #ded6cc;
  --brand: #9b241e;
  --brand-dark: #741913;
  --brown: #2a1b14;
  --green: #3f5b45;
  --gold: #b9935a;
  --white: #fff;
  --header: 64px;
  --shadow: 0 24px 70px rgba(42, 27, 20, 0.1);
  --container: min(1180px, calc(100% - 48px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Poppins",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.74;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.45s ease;
}
body.is-loaded {
  opacity: 1;
}
body.locked {
  overflow: hidden;
}
::selection {
  background: var(--brand);
  color: #fff;
}
::-moz-selection {
  background: var(--brand);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -80px;
  background: var(--brand);
  color: #fff;
  padding: 10px 14px;
  z-index: 200;
  transition: 0.25s;
}
.skip-link:focus {
  top: 18px;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  position: relative;
  padding: 112px 0;
}
.section.tight {
  padding: 82px 0;
}
.section.soft {
  background: var(--soft);
}
.section.dark {
  background: #111;
  color: #fff;
  overflow: hidden;
}
.section.brand {
  background: var(--brand);
  color: #fff;
  overflow: hidden;
}
.section.dark .lead,
.section.dark .muted,
.section.brand .lead,
.section.brand .muted {
  color: rgba(255, 255, 255, 0.72);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header);
  z-index: 80;
  background: rgba(255, 253, 248, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 16, 16, 0.08);
  transition:
    height 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.site-header.is-scrolled {
  height: 58px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 16px 50px rgba(42, 27, 20, 0.06);
}
.header-inner {
  height: 100%;
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: 238px 1fr 142px;
  gap: 22px;
  align-items: center;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(155, 36, 30, 0.18);
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}
.main-nav a {
  font-size: 0.69rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: #38332f;
  font-weight: 500;
  position: relative;
  padding: 12px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 7px;
  height: 1px;
  background: var(--brand);
  transition: right 0.32s var(--ease);
}
.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}
.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1px;
  background: var(--ink);
  transition:
    transform 0.28s var(--ease),
    top 0.28s var(--ease),
    opacity 0.2s;
}
.nav-toggle span:nth-child(1) {
  top: 15px;
}
.nav-toggle span:nth-child(2) {
  top: 22px;
}
.nav-toggle span:nth-child(3) {
  top: 29px;
}
.nav-toggle.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}
.mobile-panel {
  display: none;
}

/* Buttons */
.btn {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  --btn-border: var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-color);
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.7rem;
  font-weight: 700;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s var(--ease),
    color 0.3s var(--ease),
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: rgba(155, 36, 30, 0.08);
  transition: height 0.32s var(--ease);
  z-index: 0;
}
.btn span,
.btn {
  isolation: isolate;
}
.btn:hover::after {
  height: 100%;
}
.btn:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 18px 42px rgba(42, 27, 20, 0.08);
}
.btn-primary {
  --btn-bg: var(--brand);
  --btn-color: #fff;
  --btn-border: var(--brand);
}
.btn-primary::after {
  background: rgba(0, 0, 0, 0.12);
}
.btn-primary:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}
.btn-light {
  --btn-color: #fff;
  --btn-border: rgba(255, 255, 255, 0.38);
}
.btn-light::after {
  background: #fff;
}
.btn-light:hover {
  color: var(--ink);
  border-color: #fff;
}
.btn-small {
  min-height: 40px;
  padding-inline: 20px;
  font-size: 0.66rem;
}
.header-actions .btn-small {
  --btn-border: rgba(155, 36, 30, 0.18);
  --btn-color: var(--ink);
}
.header-actions .btn-small:hover {
  --btn-bg: #b12a22;
  --btn-border: #6f1713;
  --btn-color: #fff;
  border-color: #6f1713;
  background: #b12a22;
  color: #fff;
  box-shadow: 0 14px 32px rgba(111, 23, 19, 0.18);
}
.header-actions .btn-small::after {
  background: rgba(111, 23, 19, 0.14);
}

/* Type */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  color: var(--brand);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.display {
  font-size: clamp(3.45rem, 8.7vw, 7.45rem);
  line-height: 0.94;
  letter-spacing: -0.072em;
  margin: 0 0 30px;
  font-weight: 700;
}
.display-sm {
  font-size: clamp(2.65rem, 5vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 0 0 28px;
  font-weight: 700;
}
.title {
  font-size: clamp(2.15rem, 4vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
  font-weight: 700;
}
.title em,
.display em,
.display-sm em {
  font-style: italic;
  font-weight: 300;
  color: var(--brand);
  letter-spacing: -0.055em;
}
.lead {
  max-width: 680px;
  margin: 0 0 28px;
  color: #47413d;
  font-size: 1.02rem;
  line-height: 1.86;
  font-weight: 400;
}
.muted {
  color: var(--muted);
}
.text-narrow {
  max-width: 560px;
}
.text-wide {
  max-width: 820px;
}

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: var(--header);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #0d0705 0%,
    #1b100b 34%,
    #5b3826 70%,
    #9b7454 100%
  );
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.9) 0%, rgba(19, 11, 7, 0.68) 38%, rgba(90, 55, 37, 0.28) 70%, rgba(155, 116, 84, 0.12) 100%),
    linear-gradient(180deg, rgba(14, 9, 6, 0.48) 0%, rgba(14, 9, 6, 0.08) 30%, rgba(8, 5, 3, 0.8) 100%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  filter: saturate(0.9) contrast(0.96) brightness(0.78);
  opacity: 0.82;
  transform: translate3d(0, 0, 0) scale(1.045);
  will-change: transform;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: auto;
  padding: 78px 0 48px;
}
.hero-copy {
  max-width: 620px;
}
.hero .display {
  color: #fff;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.hero .display em,
.hero .display-sm em,
.hero .title em {
  color: #fff;
}
.hero .eyebrow {
  color: #fff;
}
.hero .lead {
  max-width: 565px;
  color: rgba(255, 255, 255, 0.78);
}
.hero .btn {
  --btn-color: #f7eadb;
  --btn-border: rgba(247, 234, 219, 0.52);
}
.hero .btn-primary {
  --btn-bg: #a52b24;
  --btn-color: #fff;
  --btn-border: #a52b24;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 3;
  transform: translateX(-50%);
  font-size: 0.55rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: #8f8780;
  text-align: center;
}
.scroll-hint span {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
  letter-spacing: 0;
  animation: floatDown 1.7s infinite;
}
@keyframes floatDown {
  50% {
    transform: translateY(7px);
    opacity: 0.55;
  }
}
.page-hero {
  min-height: 68svh;
  padding-top: var(--header);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #0d0705 0%,
    #1b100b 34%,
    #5b3826 70%,
    #9b7454 100%
  );
  color: #fff;
}
.page-hero .hero-bg {
  inset: 0;
  opacity: 0.74;
  filter: saturate(0.9) contrast(0.96) brightness(0.84);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 3, 0.9) 0%, rgba(19, 11, 7, 0.68) 38%, rgba(90, 55, 37, 0.28) 70%, rgba(155, 116, 84, 0.12) 100%),
    linear-gradient(180deg, rgba(14, 9, 6, 0.48) 0%, rgba(14, 9, 6, 0.08) 30%, rgba(8, 5, 3, 0.72) 100%);
}
.page-hero .eyebrow,
.page-hero .display,
.page-hero .display-sm,
.page-hero .title,
.page-hero .title em,
.page-hero .display em,
.page-hero .display-sm em {
  color: #fff;
}
.page-hero .display,
.page-hero .display-sm,
.page-hero .title {
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}
.page-hero .lead,
.page-hero.dark-page .lead {
  color: rgba(255, 255, 255, 0.78);
}
.page-hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: end;
  padding: 112px 0 94px;
}

/* Layout */
.grid {
  display: grid;
  gap: 30px;
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.split {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 86px;
  align-items: center;
}
.split.reverse {
  grid-template-columns: 1fr 0.82fr;
}
.split.reverse .split-copy {
  order: 2;
}
.split.reverse .split-media {
  order: 1;
}
.image-stack {
  position: relative;
  min-height: 520px;
}
.image-stack .main-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  height: 440px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.image-stack .small-img {
  position: absolute;
  left: 6%;
  bottom: 0;
  width: 42%;
  height: 230px;
  object-fit: cover;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}
.image-tag {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  background: var(--paper);
  padding: 18px 26px;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8c827b;
  font-weight: 700;
}
.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.1s var(--ease),
    filter 0.5s var(--ease);
}
.image-frame:hover img {
  transform: scale(1.045);
  filter: saturate(0.95) contrast(0.98);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(0, 0, 0, 0),
    transparent
  );
  transform: translateX(-120%);
  transition: transform 0.85s var(--ease);
  pointer-events: none;
}
.image-frame:hover::after {
  transform: translateX(120%);
}
.tall {
  height: 620px;
}
.mid {
  height: 430px;
}
.short {
  height: 300px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 58px;
}
.stat strong {
  display: block;
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.stat span {
  display: block;
  margin-top: 10px;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7d756e;
  font-weight: 700;
}

/* Product cards */
.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
  margin-top: 56px;
}
.product-card {
  --tone: var(--brand);
  --tone-soft: rgba(155, 36, 30, 0.22);
  position: relative;
  background: var(--paper);
}
.product-card:nth-child(2) {
  margin-top: 74px;
}
.product-card:nth-child(3) {
  margin-top: 28px;
}
.tone-black {
  --tone: #101010;
  --tone-soft: rgba(0, 0, 0, 0.24);
}
.tone-red {
  --tone: #9b241e;
  --tone-soft: rgba(155, 36, 30, 0.28);
}
.tone-white {
  --tone: #fff;
  --tone-soft: rgba(255, 255, 255, 0.64);
}
.product-media {
  position: relative;
  aspect-ratio: 4/4.65;
  background: var(--soft);
  overflow: hidden;
  transition:
    box-shadow 0.36s var(--ease),
    transform 0.36s var(--ease);
}
.product-media::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 8px;
  height: 34px;
  border-radius: 50%;
  background: var(--tone-soft);
  filter: blur(28px);
  opacity: 0;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 0.36s var(--ease),
    transform 0.36s var(--ease);
  z-index: 1;
  pointer-events: none;
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 54%,
    var(--tone-soft),
    transparent 58%
  );
  opacity: 0;
  mix-blend-mode: multiply;
  transition: opacity 0.36s var(--ease);
  z-index: 2;
  pointer-events: none;
}
.tone-white .product-media::after {
  mix-blend-mode: screen;
}
.product-card:hover .product-media {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(42, 27, 20, 0.12);
}
.product-card:hover .product-media::before {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.product-card:hover .product-media::after {
  opacity: 0.46;
}
.tone-black:hover .product-media::after {
  opacity: 0.34;
}
.tone-white:hover .product-media::after {
  opacity: 0.55;
}
.product-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.95s var(--ease),
    filter 0.45s var(--ease);
}
.product-card:hover .product-media img {
  transform: scale(1.045) translateY(-3px);
  filter: saturate(0.94) contrast(0.99);
}
.product-body {
  padding: 20px 22px 24px;
}
.product-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.product-title {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.price {
  color: var(--brand);
  font-weight: 700;
  font-size: 1.02rem;
  white-space: nowrap;
}
.kicker {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #8a827b;
  font-weight: 700;
  margin: 7px 0 11px;
}
.product-body p {
  margin: 0 0 16px;
  color: #77706a;
  font-size: 0.84rem;
  line-height: 1.7;
}

.card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 34px;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 36, 30, 0.34);
  box-shadow: var(--shadow);
}
.card .num {
  color: var(--brand);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}
.card h3 {
  margin: 16px 0 10px;
  font-size: 1.24rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.card p {
  margin: 0;
  color: #746d66;
  font-size: 0.93rem;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 54px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.step {
  min-height: 260px;
  padding: 30px 24px;
  border-right: 1px solid var(--line);
  transition:
    background 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.step:last-child {
  border-right: 0;
}
.step:hover {
  background: #faf5ee;
  transform: translateY(-4px);
}
.step span {
  font-size: 0.62rem;
  color: var(--brand);
  letter-spacing: 0.22em;
  font-weight: 700;
}
.step h3 {
  font-size: 1.08rem;
  line-height: 1.22;
  margin: 54px 0 12px;
  font-weight: 700;
}
.step p {
  margin: 0;
  color: #756e68;
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Science */
.dark-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: grayscale(0.1) contrast(1.1);
}
.science-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  gap: 86px;
  align-items: center;
}
.profile-bars {
  display: grid;
  gap: 22px;
  margin-top: 54px;
}
.profile-row {
  display: grid;
  grid-template-columns: 112px 1fr 120px;
  gap: 18px;
  align-items: center;
}
.profile-name {
  font-weight: 700;
}
.profile-note {
  text-align: right;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}
.bar {
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
  position: relative;
}
.bar span {
  position: absolute;
  left: 0;
  top: -2px;
  height: 5px;
  width: var(--value);
  background: var(--brand);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.1s var(--ease) 0.18s;
}
.is-visible .bar span {
  transform: scaleX(1);
}
.subscribe-card {
  background: rgba(255, 255, 255, 0.62);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 42px 34px;
  backdrop-filter: blur(12px);
}
.subscribe-card .eyebrow {
  margin-bottom: 22px;
}
.subscribe-card h3 {
  font-size: 1.65rem;
  line-height: 1.08;
  margin: 0 0 26px;
  font-weight: 700;
  letter-spacing: -0.045em;
}
.plan-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.85rem;
  cursor: pointer;
  transition: 0.25s var(--ease);
}
.plan-option:hover,
.plan-option.is-active {
  border-color: var(--brand);
  background: rgba(155, 36, 30, 0.08);
}
.plan-option small {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

/* Catalog */
.catalog-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 36px 0 48px;
}
.filter-btn {
  border: 1px solid var(--line);
  background: transparent;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: 0.25s var(--ease);
}
.filter-btn:hover,
.filter-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.catalog-card {
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease),
    max-height 0.28s var(--ease);
  position: relative;
}
.catalog-card.is-hidden {
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.catalog-card .product-media {
  aspect-ratio: 4/4.4;
}
.catalog-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}
.catalog-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.tag {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 6px 9px;
  color: #7b746f;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.5);
}
.micro-grid {
  display: grid;
  gap: 34px;
}
.microlote-card {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}
.microlote-card .image-frame {
  min-height: 420px;
}
.micro-content {
  padding: 42px;
}
.micro-content h2 {
  font-size: 2.15rem;
  line-height: 1;
  margin: 0 0 16px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.micro-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.spec {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.spec span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  color: #8b837c;
  text-transform: uppercase;
  font-weight: 700;
}
.spec strong {
  font-size: 0.96rem;
  font-weight: 600;
}
.taste-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.taste-list span {
  background: var(--soft);
  padding: 8px 10px;
  font-size: 0.72rem;
}

/* Experience */
.experience-tabs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 58px;
  align-items: start;
}
.tab-buttons {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 96px;
}
.tab-btn {
  text-align: left;
  border: 1px solid var(--line);
  background: transparent;
  padding: 18px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  transition: 0.25s var(--ease);
}
.tab-btn:hover,
.tab-btn.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.tab-panel {
  display: none;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: center;
}
.tab-panel.is-active {
  display: grid;
  animation: panelIn 0.5s var(--ease);
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tab-copy {
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.tab-copy h2 {
  font-size: 2.2rem;
  line-height: 1.04;
  margin: 0 0 18px;
  font-weight: 700;
  letter-spacing: -0.055em;
}
.tab-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.tab-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #746c66;
}

/* Sustainability / contact */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  min-height: 240px;
}
.pillar span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 38px;
}
.pillar h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: -0.035em;
}
.pillar p {
  margin: 0;
  color: #756e68;
}
.producer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.producer {
  background: var(--soft);
  padding: 30px;
  border-left: 3px solid var(--brand);
}
.producer h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 700;
}
.producer p {
  margin: 0;
  color: #746d66;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 68px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}
.contact-item {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.contact-item strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8b837c;
}
.copy-btn {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
  transition: 0.25s;
}
.copy-btn:hover,
.copy-btn.copied {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.form-card {
  background: var(--soft);
  padding: 40px;
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.field.full {
  grid-column: 1/-1;
}
.field label {
  font-size: 0.62rem;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: #776f68;
  font-weight: 700;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 14px 14px;
  color: var(--ink);
  outline: none;
  transition: 0.25s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(155, 36, 30, 0.08);
}
.field textarea {
  min-height: 150px;
  resize: vertical;
}
.form-status {
  margin-top: 16px;
  color: var(--brand);
  font-weight: 600;
}

/* FAQ / CTA / Footer */
.faq {
  border-top: 1px solid var(--line);
  margin-top: 42px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 22px;
  background: transparent;
  border: 0;
  padding: 25px 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.faq-btn::after {
  content: "+";
  color: var(--brand);
  font-size: 1.4rem;
  font-weight: 300;
  transition: 0.28s;
}
.faq-item.is-open .faq-btn::after {
  transform: rotate(45deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq-item.is-open .faq-panel {
  max-height: 220px;
}
.faq-content {
  padding: 0 0 24px;
  color: #756e68;
  max-width: 760px;
}
.faq-content p {
  margin: 0;
}
.cta-band {
  padding: 88px 0;
  background: var(--brand);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 42px;
}
.cta-inner h2 {
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 0;
  font-weight: 700;
}
.cta-inner p {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.76);
  margin: 18px 0 0;
}
.cta-band .eyebrow {
  color: #fff;
}
.site-footer {
  background: var(--brand);
  color: #fff;
  padding: 94px 0 52px;
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: "MONTE NEGRO";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -48px;
  font-size: clamp(4.5rem, 13vw, 12rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.1em;
  color: rgba(255, 255, 255, 0.085);
  white-space: nowrap;
  pointer-events: none;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 0.75fr;
  gap: 78px;
}
.footer-logo {
  color: #fff;
}
.footer-logo .logo-mark {
  background: #fff;
}
.footer-text {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 26px;
}
.footer-title {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.63rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-links {
  display: grid;
  gap: 12px;
}
.footer-links a,
.footer-contact a {
  color: #fff;
  font-size: 0.92rem;
}
.footer-contact p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.78);
}
.socials {
  display: flex;
  gap: 12px;
  margin-top: 26px;
}
.socials a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 74px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.61rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #111;
  color: #fff;
  padding: 14px 18px;
  z-index: 120;
  border-left: 4px solid var(--brand);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s var(--ease);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}
.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* Scroll animation states */
[data-animate] {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
[data-animate="fade-left"] {
  transform: translateX(44px);
}
[data-animate="fade-right"] {
  transform: translateX(-44px);
}
[data-animate="scale-in"] {
  transform: scale(0.96);
  filter: blur(2px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}
.delay-1 {
  transition-delay: 0.09s;
}
.delay-2 {
  transition-delay: 0.18s;
}
.delay-3 {
  transition-delay: 0.27s;
}
.delay-4 {
  transition-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none !important;
    filter: none !important;
  }
  .hero-bg {
    transform: none !important;
  }
}

@media (max-width: 1040px) {
  :root {
    --container: min(100% - 34px, 920px);
  }
  .header-inner {
    grid-template-columns: 1fr auto auto;
  }
  .main-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .header-actions .btn {
    display: none;
  }
  .mobile-panel {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    top: 58px;
    z-index: 70;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 26px 60px rgba(42, 27, 20, 0.1);
    padding: 24px 17px;
    transform: translateY(-120%);
    transition: 0.35s var(--ease);
  }
  .mobile-panel.is-open {
    transform: translateY(0);
  }
  .mobile-panel a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.82rem;
    letter-spacing: 0.19em;
    text-transform: uppercase;
    font-weight: 700;
  }
  .page-hero .hero-content,
  .split,
  .split.reverse,
  .science-wrap,
  .contact-grid,
  .experience-tabs {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .split.reverse .split-copy,
  .split.reverse .split-media {
    order: initial;
  }
  .page-hero .hero-bg {
    inset: 0;
    opacity: 0.58;
  }
  .catalog-grid,
  .producer-grid,
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-line {
    grid-template-columns: 1fr 1fr;
  }
  .step {
    border-bottom: 1px solid var(--line);
  }
  .product-row {
    grid-template-columns: 1fr 1fr;
  }
  .product-card:nth-child(n) {
    margin-top: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px;
  }
  .footer-grid > div:first-child {
    grid-column: 1/-1;
  }
  .microlote-card,
  .tab-panel {
    grid-template-columns: 1fr;
  }
  .tab-buttons {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .image-stack {
    min-height: 450px;
  }
  .image-stack .main-img {
    height: 360px;
  }
  .image-stack .small-img {
    height: 210px;
  }
}
@media (max-width: 720px) {
  :root {
    --container: calc(100% - 28px);
    --header: 58px;
  }
  body {
    font-size: 15px;
    line-height: 1.72;
  }
  .site-header {
    height: 58px;
  }
  .header-inner {
    gap: 10px;
  }
  .logo {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }
  .logo-mark {
    width: 9px;
    height: 9px;
  }
  .section {
    padding: 76px 0;
  }
  .section.tight {
    padding: 62px 0;
  }
  .hero {
    min-height: 92svh;
  }
  .hero-bg {
    opacity: 0.28;
    background-position: center;
  }
  .hero-content {
    padding: 72px 0 58px;
  }
  .display {
    font-size: clamp(3.35rem, 17vw, 6.5rem);
  }
  .display-sm {
    font-size: clamp(2.7rem, 13vw, 5rem);
  }
  .title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }
  .lead {
    font-size: 0.98rem;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 30px;
  }
  .btn {
    width: 100%;
    min-height: 50px;
    padding-inline: 18px;
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .catalog-grid,
  .producer-grid,
  .pillars,
  .product-row,
  .stats,
  .footer-grid,
  .form-grid,
  .tab-buttons {
    grid-template-columns: 1fr;
  }
  .product-card:nth-child(n) {
    margin-top: 0;
  }
  .process-line {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: none;
  }
  .profile-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .profile-note {
    text-align: left;
  }
  .image-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }
  .image-stack .main-img,
  .image-stack .small-img {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .image-stack .small-img {
    border: 0;
  }
  .image-tag {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
  }
  .tall,
  .mid,
  .short {
    height: auto;
    aspect-ratio: 4/3;
  }
  .cta-inner {
    display: block;
  }
  .footer-bottom {
    display: grid;
  }
  .contact-item {
    display: grid;
  }
  .copy-btn {
    width: 100%;
  }
  .micro-content,
  .tab-copy,
  .form-card,
  .card {
    padding: 26px;
  }
  .microlote-card .image-frame,
  .tab-panel .image-frame {
    min-height: auto;
    aspect-ratio: 4/3;
  }
  .scroll-hint {
    display: none;
  }
  .page-hero {
    min-height: auto;
  }
  .page-hero .hero-content {
    padding: 90px 0 64px;
  }
  .toast {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .catalog-actions {
    display: grid;
  }
  .catalog-actions .btn {
    width: 100%;
  }
  .site-footer::after {
    bottom: -24px;
    font-size: 20vw;
  }
  .mobile-panel {
    top: 58px;
  }
}
