/* FOCUS Theme — focus.css */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:        #080808;
  --cream:        #f7f3ed;
  --gold:         #c8a96e;
  --mid:          #888888;
  --white:        #ffffff;
  --border:       rgba(200,169,110,0.2);
  --border-light: rgba(8,8,8,0.1);
  --nav-h:        64px;
  --pad-x:        clamp(1.25rem, 6vw, 5rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ──────────────────────────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}

.nav-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  letter-spacing: 0.15em;
  color: var(--black);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--black); }

.nav-links .nav-cta {
  background: var(--black);
  color: var(--cream);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem var(--pad-x);
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */

.btn-primary,
.btn-secondary,
.btn-cream,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-primary {
  background: var(--black);
  color: var(--cream);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: rgba(8,8,8,0.25);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-cream {
  background: var(--cream);
  color: var(--black);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: rgba(247,243,237,0.55);
  border-color: rgba(247,243,237,0.2);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  max-width: 16ch;
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--mid);
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(136,136,136,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: slide 2.2s ease-in-out infinite;
}

@keyframes slide {
  0%   { left: -100%; }
  50%  { left: 0; }
  100% { left: 100%; }
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.hero-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── INFO STRIP ───────────────────────────────────────────────────────────── */

.intro-strip {
  background: var(--black);
  padding: 3.5rem var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.strip-item {
  border-left: 1px solid var(--gold);
  padding-left: 1.25rem;
}

.strip-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.strip-value {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
}

/* ── SECTION HEADER ───────────────────────────────────────────────────────── */

.section-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-body {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--mid);
  line-height: 1.75;
  max-width: 50ch;
}

/* ── BLENDS ───────────────────────────────────────────────────────────────── */

.blends {
  padding: 6rem var(--pad-x);
}

.blends-header {
  margin-bottom: 3rem;
}

.blends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.blend-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.blend-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.blend-card:hover { background: var(--white); }
.blend-card:hover::after { transform: scaleX(1); }

.blend-number {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.blend-name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.01em;
}

.blend-roast {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  border-left: 2px solid var(--gold);
  padding-left: 0.6rem;
}

.blend-desc {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
}

.blend-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
}

.blend-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
}

.blend-link {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}

.blend-link:hover { gap: 0.7rem; }

/* ── MANIFESTO ────────────────────────────────────────────────────────────── */

.manifesto {
  background: var(--black);
  padding: 6rem var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-left .section-label,
.manifesto-left .section-label::before { color: var(--gold); background: var(--gold); }

.manifesto-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.manifesto-body {
  font-size: 1rem;
  color: rgba(247,243,237,0.5);
  line-height: 1.8;
}

.manifesto-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.manifesto-point {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}

.manifesto-point-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.manifesto-point-body {
  font-size: 0.875rem;
  color: rgba(247,243,237,0.45);
  line-height: 1.75;
}

/* ── TAGLINE BAND ─────────────────────────────────────────────────────────── */

.tagline-band {
  padding: 5rem var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.tagline-sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
}

.tagline-main {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 4.5vw, 3.2rem);
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── SUBSCRIPTION ─────────────────────────────────────────────────────────── */

.subscription {
  padding: 6rem var(--pad-x);
}

.subscription-inner {
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.sub-left {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--black);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sub-label {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sub-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.sub-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.sub-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-perks li {
  font-size: 0.875rem;
  color: rgba(247,243,237,0.55);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sub-perks li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.65rem;
}

.sub-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.sub-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.sub-price-label {
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.1em;
}

.sub-right {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sub-right-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.sub-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sub-option {
  border: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 2px;
}

.sub-option:hover,
.sub-option.active {
  border-color: var(--gold);
  background: rgba(200,169,110,0.06);
}

.sub-option-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--black);
}

.sub-option-detail {
  font-size: 0.7rem;
  color: var(--mid);
  margin-top: 0.2rem;
}

.sub-option-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.sub-btn {
  width: 100%;
  margin-top: 0.25rem;
}

.sub-note {
  font-size: 0.65rem;
  color: var(--mid);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── CTA ──────────────────────────────────────────────────────────────────── */

.cta {
  background: var(--black);
  padding: 7rem var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

.cta-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 20ch;
}

.cta-sub {
  font-size: 0.95rem;
  color: rgba(247,243,237,0.45);
  max-width: 42ch;
  line-height: 1.75;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(247,243,237,0.07);
  padding: 3rem var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.15em;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  align-items: center;
}

.footer-links a {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,237,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(247,243,237,0.07);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(247,243,237,0.2);
  letter-spacing: 0.06em;
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
}

.badge {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,237,0.3);
  border: 1px solid rgba(247,243,237,0.1);
  padding: 0.3rem 0.6rem;
  border-radius: 1px;
}




/* ── BLEND PROMO CARD ─────────────────────────────────────────────────────── */

.blend-card--promo {
  background: var(--black);
  justify-content: center;
  gap: 1.25rem;
}

.blend-card--promo::after {
  background: var(--gold);
}

.blend-card--promo:hover {
  background: #111;
}

.blend-promo-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.blend-promo-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.blend-promo-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.blend-promo-body {
  font-size: 0.875rem;
  color: rgba(247,243,237,0.45);
  line-height: 1.75;
  flex: 1;
}

.blend-card--promo .blend-price {
  color: var(--cream);
}

.blend-link--light {
  color: var(--gold);
}

/* ── PROOF BAND ───────────────────────────────────────────────────────────── */

.proof-band {
  background: var(--black);
  border-top: 1px solid rgba(247,243,237,0.07);
  padding: 4rem var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(200,169,110,0.2);
  margin: 0 clamp(1.5rem, 3vw, 3rem);
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.proof-num {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.75rem;
  color: rgba(247,243,237,0.45);
  line-height: 1.5;
  max-width: 20ch;
}

@media (max-width: 768px) {
  .proof-band {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .proof-divider { display: none; }
  .proof-item { padding: 0; }
}

@media (max-width: 480px) {
  .proof-band {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */

.how-it-works {
  padding: 6rem var(--pad-x);
  background: var(--cream);
}

.how-header {
  margin-bottom: 4rem;
  max-width: 600px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}

.how-step {
  background: var(--cream);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: background 0.3s;
}

.how-step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.how-step:hover { background: var(--white); }
.how-step:hover::after { transform: scaleX(1); }

.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.step-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--black);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.75;
}

@media (max-width: 680px) {
  .how-steps {
    grid-template-columns: 1fr;
  }
}

/* ── BUNDLE ───────────────────────────────────────────────────────────────── */

.bundle {
  background: var(--black);
  padding: 6rem var(--pad-x);
}

.bundle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.bundle-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bundle-text .section-label { color: var(--gold); }
.bundle-text .section-label::before { background: var(--gold); }

.bundle-text .section-title {
  color: var(--cream);
}

.bundle-text .section-body {
  color: rgba(247,243,237,0.5);
  max-width: 44ch;
}

.bundle-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-left: 1px solid var(--border);
  padding-left: 1.25rem;
}

.bundle-list li {
  font-size: 0.8rem;
  color: rgba(247,243,237,0.55);
  letter-spacing: 0.04em;
}

.bundle-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.bundle-price {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}

.bundle-save {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 1px;
}

.bundle-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.bundle-stack {
  border: 1px solid var(--border);
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  position: relative;
}

.bundle-stack::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(200,169,110,0.1);
  pointer-events: none;
}

.bundle-tag {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.bundle-stack-label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bundle-stack-sub {
  font-size: 0.75rem;
  color: rgba(247,243,237,0.4);
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .bundle-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ── BLEND CARD IMAGE ─────────────────────────────────────────────────────── */

.blend-card-img {
  margin: -2.5rem -2rem 0;
  overflow: hidden;
  height: 180px;
}

.blend-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blend-card:hover .blend-card-img img {
  transform: scale(1.04);
}

/* ── HERO WITH BG IMAGE ───────────────────────────────────────────────────── */

.hero--has-bg {
  color: var(--cream);
}

.hero--has-bg .hero-eyebrow,
.hero--has-bg .hero-eyebrow::before { color: var(--gold); background: var(--gold); }
.hero--has-bg .hero-headline { color: var(--cream); }
.hero--has-bg .hero-sub { color: rgba(247,243,237,0.7); }
.hero--has-bg .btn-secondary { border-color: rgba(247,243,237,0.4); color: var(--cream); }
.hero--has-bg .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.hero--has-bg .hero-stat-num { color: var(--cream); }

/* ── WOO ──────────────────────────────────────────────────────────────────── */

.focus-woo-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) var(--pad-x) 4rem;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .manifesto {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { padding-bottom: 6rem; }
  .hero-stats { display: none; }

  .subscription-inner { grid-template-columns: 1fr; }

  .blends-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .blends-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn-primary,
  .btn-secondary,
  .btn-cream,
  .btn-ghost {
    padding: 0.9rem 1.75rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn-cream,
  .cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
