/* Morrow & Oak — Editorial coffee subscription */

:root {
  --cream: #F6F0E7;
  --beige: #E9DED0;
  --taupe: #CBBEAF;
  --espresso: #3B2A24;
  --forest: #314D43;
  --forest-deep: #243a33;
  --sage: #667A6E;
  --gold: #B89D6A;
  --ink: #1f1714;
  --ink-soft: rgba(31, 23, 20, 0.65);
  --ink-mute: rgba(31, 23, 20, 0.45);
  --divider: rgba(59, 42, 36, 0.12);
  --card: #FBF6EE;
  --shadow-soft: 0 2px 14px rgba(59, 42, 36, 0.06), 0 24px 48px rgba(59, 42, 36, 0.08);
  --shadow-card: 0 1px 2px rgba(59, 42, 36, 0.04), 0 18px 40px rgba(59, 42, 36, 0.07);
  --shadow-lift: 0 30px 80px rgba(59, 42, 36, 0.18);
  --serif: "Cormorant Garamond", "Cormorant", "Source Serif Pro", Georgia, serif;
  --sans: "DM Sans", "Inter Tight", -apple-system, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture applied globally as a fixed overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.16 0 0 0 0 0.14 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Type */
.serif { font-family: var(--serif); font-weight: 500; letter-spacing: -0.01em; }
.sans { font-family: var(--sans); }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.02;
  margin: 0;
  color: var(--espresso);
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

p { margin: 0; color: var(--ink-soft); }

/* Layout */
.page {
  position: relative;
  z-index: 2;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Announcement bar */
.announce {
  background: var(--espresso);
  color: var(--cream);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 11px 24px;
  font-weight: 400;
  position: relative;
  z-index: 50;
}
.announce strong { color: var(--gold); font-weight: 500; letter-spacing: 0.14em; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  background: rgba(246, 240, 231, 0.85);
  border-bottom: 1px solid rgba(59, 42, 36, 0.06);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px 48px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 32px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: var(--espresso);
  align-items: center;
}
.nav-right { justify-content: flex-end; }
.nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color .2s ease;
}
.nav a:hover { color: var(--forest); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.brand {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--espresso);
  font-weight: 500;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.brand .amp {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
  padding: 0 2px;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(246,240,231,0.97);
  backdrop-filter: blur(12px);
  z-index: 39;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.mobile-nav a:hover { color: var(--forest); }
.mobile-nav .mobile-nav-sub {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.mobile-nav .mobile-nav-sub a { font-size: 14px; font-family: var(--sans); }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  color: var(--espresso);
  position: relative;
  transition: all .2s ease;
}
.icon-btn:hover { background: var(--beige); }
.cart-badge {
  position: absolute;
  top: -2px; right: -2px;
  background: var(--forest);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  width: 17px; height: 17px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--sans);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(49, 77, 67, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(59, 42, 36, 0.25);
}
.btn-ghost:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.btn-cream {
  background: var(--cream);
  color: var(--espresso);
}
.btn-cream:hover { background: #fff; }

/* HERO */
.hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 3px; height: 3px;
  background: var(--sage);
  border-radius: 50%;
}
.hero h1 {
  text-align: center;
  font-size: clamp(56px, 7.5vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 1100px;
  margin: 0 auto;
}
.hero h1 em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.hero-sub {
  text-align: center;
  max-width: 540px;
  margin: 28px auto 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  position: relative;
  z-index: 3;
}

/* Hero scene with bag + floating beans + side cards */
.hero-stage {
  position: relative;
  margin: 64px auto 0;
  max-width: 1280px;
  height: 640px;
}

/* User-supplied hero assets */
.hero-bag-img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 580px;
  width: auto;
  z-index: 2;
  filter: drop-shadow(0 40px 50px rgba(36, 25, 20, 0.28));
  pointer-events: none;
  user-select: none;
}
.hero-beans {
  position: absolute;
  height: 520px;
  width: auto;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  top: 60px;
  filter: drop-shadow(0 24px 28px rgba(36, 25, 20, 0.18));
}
.hero-beans-l {
  left: 0;
}
.hero-beans-r {
  right: 0;
}

@media (max-width: 1100px) {
  .hero-bag-img { height: 460px; }
  .hero-beans { height: 380px; top: 280px; }
}
@media (max-width: 720px) {
  .hero-bag-img { height: 360px; }
  .hero-beans { height: 240px; opacity: 0.75; top: 320px; }
}

/* Coffee bag */
.bag {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 280px;
  height: 460px;
  filter: drop-shadow(0 40px 60px rgba(36, 58, 51, 0.35));
}
.bag-body {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3a5a4e 0%, #2b443b 50%, #1f342c 100%);
  border-radius: 14px 14px 18px 18px;
  overflow: hidden;
}
/* the pinched top */
.bag::before {
  content: "";
  position: absolute;
  top: -16px; left: 12%; right: 12%;
  height: 28px;
  background: linear-gradient(180deg, #243a33 0%, #2e4940 100%);
  border-radius: 8px 8px 4px 4px;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
/* side seam shading */
.bag-body::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 14%;
  background: linear-gradient(90deg, rgba(0,0,0,0.18), transparent);
}
.bag-body::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 14%;
  background: linear-gradient(270deg, rgba(0,0,0,0.18), transparent);
}
.bag-content {
  position: relative;
  z-index: 1;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 42px 24px 28px;
  color: #e7ddc7;
}
.bag-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}
.bag-brand .amp { font-style: italic; padding: 0 2px; color: var(--gold); }
.bag-tag {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.7;
}
/* line-art mark */
.bag-mark {
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1px solid rgba(231, 221, 199, 0.55);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bag-mark svg { width: 60px; height: 60px; }
.bag-mark::before, .bag-mark::after {
  content: attr(data-top);
  position: absolute;
  font-family: var(--sans);
  font-size: 7.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.75;
  width: 110px;
  text-align: center;
  pointer-events: none;
}
.bag-mark::before { top: -2px; }
.bag-mark::after { content: attr(data-bottom); bottom: -2px; }

.bag-label {
  background: #f1e8d6;
  color: var(--espresso);
  border-radius: 8px;
  padding: 12px 18px 11px;
  text-align: center;
  width: 80%;
  box-shadow: inset 0 0 0 1px rgba(59, 42, 36, 0.08);
}
.bag-label .roast {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 4px;
}
.bag-label .name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
}
.bag-label .notes {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* bag color variants */
.bag.bag-cream .bag-body { background: linear-gradient(135deg, #efe2cb 0%, #e0d0b3 50%, #cdb992 100%); }
.bag.bag-cream::before { background: linear-gradient(180deg, #c9b791 0%, #d9c6a4 100%); }
.bag.bag-cream .bag-content { color: var(--espresso); }
.bag.bag-cream .bag-mark { border-color: rgba(59, 42, 36, 0.4); }
.bag.bag-cream .bag-label { background: #fff8eb; }

.bag.bag-espresso .bag-body { background: linear-gradient(135deg, #4a352c 0%, #34221c 50%, #221511 100%); }
.bag.bag-espresso::before { background: linear-gradient(180deg, #221511 0%, #34221c 100%); }

/* Floating beans (photos) */
.bean {
  position: absolute;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  filter: drop-shadow(0 16px 22px rgba(36, 25, 20, 0.35));
  pointer-events: none;
}

/* feature points around bag */
.feat {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 200px;
  z-index: 3;
}
.feat .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  box-shadow: var(--shadow-soft);
}
.feat-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.1;
}
.feat-desc {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}
.feat.left { text-align: left; }
.feat.right { text-align: left; align-items: flex-start; }

/* Section base */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }
.section-head {
  text-align: center;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  max-width: 880px;
  margin: 16px auto 0;
}
.section-head h2 em { font-style: italic; color: var(--forest); font-weight: 400; }
.section-head .lede {
  max-width: 580px;
  margin: 22px auto 0;
  font-size: 16px;
}

/* Featured blends */
.blend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blend-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.blend-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.blend-img-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  margin: -8px 0 8px;
  overflow: visible;
}
.blend-img {
  height: 100%;
  width: auto;
  max-width: 130%;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(36, 25, 20, 0.22));
  transition: transform .55s cubic-bezier(.2,.7,.3,1);
}
.blend-card:hover .blend-img {
  transform: translateY(-6px) scale(1.03);
}
.blend-name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--espresso);
  margin-top: 18px;
}
.blend-attrs {
  margin-top: 8px;
  font-size: 13px;
  color: var(--sage);
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.02em;
}
.blend-attrs .sep { opacity: 0.5; }
.blend-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 320px;
}
.blend-ideal {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--divider);
  width: 100%;
  max-width: 320px;
}
.blend-ideal-lbl {
  font-family: var(--serif);
  font-style: italic;
  color: var(--espresso);
  font-size: 15px;
  margin-bottom: 4px;
}
.blend-ideal-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.blend-cta {
  margin-top: 28px;
}

/* Perks strip */
.blend-perks {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 8px;
  border-top: 1px solid var(--divider);
}
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
}
.perk-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  flex: none;
  box-shadow: var(--shadow-soft);
}
.perk-t { font-size: 13.5px; color: var(--espresso); font-weight: 500; }
.perk-s { font-size: 13.5px; color: var(--ink-soft); }

/* Brand story split */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.story-text { padding-top: 24px; }
.story-text h2 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
}
.story-text h2 em { font-style: italic; color: var(--forest); font-weight: 400; }
.story-body { margin-top: 28px; }
.story-body p { font-size: 16px; color: var(--ink-soft); }
.story-body p + p { margin-top: 16px; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 40px;
  border-top: 1px solid var(--divider);
  padding-top: 28px;
}
.story-stat .num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--espresso);
  line-height: 1;
}
.story-stat .lab {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 8px;
}

.story-imgs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 56px);
  gap: 16px;
}
.story-imgs .ph {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
}
.story-imgs .a { grid-column: 1 / 5; grid-row: 1 / 5; }
.story-imgs .b { grid-column: 5 / 7; grid-row: 2 / 4; }
.story-imgs .c { grid-column: 5 / 7; grid-row: 4 / 7; }

/* Photo placeholder treatment */
.ph-fallback {
  background: repeating-linear-gradient(135deg, #e9ded0 0 12px, #ddd0bc 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  text-align: center;
  padding: 12px;
}

/* Mosaic */
.mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 72px;
  gap: 16px;
}
.mosaic .ph { border-radius: var(--radius-md); overflow: hidden; background-size: cover; background-position: center; box-shadow: var(--shadow-card); }
.mosaic .m1 { grid-column: 1/5; grid-row: 1/5; }
.mosaic .m2 { grid-column: 5/8; grid-row: 1/4; }
.mosaic .m3 { grid-column: 8/13; grid-row: 1/4; }
.mosaic .m4 { grid-column: 5/9; grid-row: 4/7; }
.mosaic .m5 { grid-column: 9/13; grid-row: 4/7; }
.mosaic .m6 { grid-column: 1/5; grid-row: 5/7; }

/* Quiz CTA */
.quiz {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #2a1a13;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
}
.quiz-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(1.1);
}
.quiz-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(20,12,8,0.85) 0%, rgba(20,12,8,0.6) 35%, rgba(20,12,8,0.05) 70%);
}
.quiz-body {
  position: relative;
  z-index: 2;
  padding: 88px 64px;
  color: var(--cream);
  max-width: 580px;
}
.quiz-body h2 {
  font-size: clamp(40px, 5vw, 64px);
  color: var(--cream);
  line-height: 1.02;
}
.quiz-body h2 em { font-style: italic; color: var(--gold); font-weight: 400; }
.quiz-body p { color: rgba(246, 240, 231, 0.78); font-size: 16px; margin-top: 18px; max-width: 460px; }
.quiz-body .btn-primary {
  margin-top: 28px;
  background: var(--cream);
  color: var(--espresso);
}
.quiz-body .btn-primary:hover { background: #fff; }
.quiz-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 64px;
  gap: 16px;
}
.quiz-pill {
  background: rgba(246, 240, 231, 0.92);
  backdrop-filter: blur(8px);
  color: var(--espresso);
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-soft);
}
.quiz-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--forest);
}
.quiz-pill.gold .dot { background: var(--gold); }
.quiz-pill.esp .dot { background: var(--espresso); }

/* Press / Testimonials */
.press-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 32px;
  padding: 36px 0 56px;
  border-bottom: 1px solid var(--divider);
}
.press-logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--sage);
  text-align: center;
  opacity: 0.85;
}
.press-logo.kf { letter-spacing: 0.34em; font-size: 18px; }
.press-logo.cr { font-style: italic; letter-spacing: 0.04em; font-size: 26px; }
.press-logo.ap { letter-spacing: 0.32em; font-size: 18px; }
.press-logo.dr { letter-spacing: 0.42em; font-size: 18px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.testi {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.stars { color: var(--gold); letter-spacing: 4px; font-size: 13px; }
.testi-quote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
  color: var(--espresso);
  font-weight: 400;
}
.testi-by {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex: none;
}
.testi-name { font-size: 13.5px; color: var(--espresso); font-weight: 500; }
.testi-loc { font-size: 12px; color: var(--ink-mute); }

/* Journal */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.j-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.j-img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .4s ease;
}
.j-card:hover .j-img { transform: scale(1.02); }
.j-cat {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.j-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--espresso);
  margin-top: 8px;
  line-height: 1.2;
}
.j-meta {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 10px;
}

/* Final CTA */
.final {
  position: relative;
  padding: 140px 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--beige) 60%, #ddccb4 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: 64px;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.16 0 0 0 0 0.14 0 0 0 0.28 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
}
.final-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.final h2 {
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.98;
}
.final h2 em { font-style: italic; color: var(--forest); font-weight: 400; }
.final p { margin: 24px auto 0; max-width: 540px; font-size: 17px; color: var(--ink-soft); }
.final-cta { margin-top: 36px; display: flex; gap: 12px; justify-content: center; }

/* Footer */
.footer {
  background: var(--espresso);
  color: rgba(246, 240, 231, 0.8);
  padding: 80px 0 36px;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 56px;
}
.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer .brand { color: var(--cream); font-size: 32px; }
.footer .brand .amp { color: var(--gold); }
.foot-tag { font-size: 14px; color: rgba(246, 240, 231, 0.6); margin-top: 14px; max-width: 280px; line-height: 1.5; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer ul a { color: rgba(246, 240, 231, 0.7); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--cream); }
.newsletter {
  display: flex;
  background: rgba(246, 240, 231, 0.08);
  border: 1px solid rgba(246, 240, 231, 0.18);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  align-items: center;
  margin-top: 4px;
  max-width: 380px;
}
.newsletter input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--cream);
  outline: none;
  font-family: var(--sans);
  font-size: 13.5px;
  padding: 10px 0;
}
.newsletter input::placeholder { color: rgba(246, 240, 231, 0.5); }
.newsletter button {
  background: var(--cream);
  color: var(--espresso);
  border: 0;
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.newsletter button:hover { background: var(--gold); color: var(--espresso); }
.foot-social { display: flex; gap: 10px; margin-top: 20px; }
.foot-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(246, 240, 231, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  text-decoration: none;
  transition: background .2s;
}
.foot-social a:hover { background: rgba(246, 240, 231, 0.2); }
.foot-bottom {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 240, 231, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(246, 240, 231, 0.5);
  letter-spacing: 0.04em;
}
.foot-bottom ul { display: flex; gap: 24px; }

/* Quiz modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.55);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeIn .3s ease;
  padding: 24px;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--cream);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 640px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  overflow: hidden;
  animation: pop .4s cubic-bezier(.2,.8,.3,1.2);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
@keyframes pop { from { transform: scale(.95) translateY(12px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--divider);
}
.modal-head .step {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--beige);
  border: 0;
  cursor: pointer;
  font-size: 16px;
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal-body {
  padding: 40px 48px 48px;
  overflow-y: auto;
}
.modal-body h3 {
  font-family: var(--serif);
  font-size: 38px;
  margin-bottom: 10px;
  line-height: 1.05;
}
.modal-body h3 em { font-style: italic; color: var(--forest); font-weight: 400; }
.modal-body .lede { color: var(--ink-soft); font-size: 15px; margin-bottom: 28px; }
.opt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.opt {
  border: 1px solid var(--divider);
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all .2s;
}
.opt:hover { border-color: var(--sage); background: #fffdf9; }
.opt.on {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(49, 77, 67, 0.2);
}
.opt-label { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--espresso); }
.opt.on .opt-label { color: var(--cream); }
.opt-desc { font-size: 13px; color: var(--ink-mute); }
.opt.on .opt-desc { color: rgba(246, 240, 231, 0.7); }
.modal-foot {
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--divider);
  background: #fdfaf3;
}
.progress {
  display: flex;
  gap: 6px;
}
.progress .dot {
  width: 22px; height: 4px;
  background: var(--taupe);
  border-radius: 999px;
  opacity: 0.4;
  transition: all .3s;
}
.progress .dot.on { background: var(--forest); opacity: 1; width: 32px; }

/* Quiz result */
.result {
  text-align: center;
  padding: 8px 0;
}
.result .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--beige);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.result h3 { font-size: 48px; margin-bottom: 8px; }
.result .by { font-size: 13px; color: var(--ink-mute); margin-bottom: 24px; }
.result .row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
}
.result .chip {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--divider);
  border-radius: 999px;
  font-size: 12.5px;
  color: var(--espresso);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  background: var(--espresso);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 200;
  box-shadow: var(--shadow-lift);
  animation: toastIn .35s cubic-bezier(.2,.8,.3,1.2);
  display: flex;
  align-items: center;
  gap: 12px;
}
@keyframes toastIn { from { transform: translateX(-50%) translateY(20px); opacity: 0; } to { transform: translateX(-50%) translateY(0); opacity: 1; } }

/* ============================================================
   ANIMATIONS — premium scroll-reveal + entrance + ambient motion
   ============================================================ */
@keyframes mo-fade-up {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes mo-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes mo-bag-drop {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-32px) scale(0.96); }
  60%  { opacity: 1; transform: translateX(-50%) translateY(6px)  scale(1.005); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0)    scale(1); }
}
@keyframes mo-bean-l {
  from { opacity: 0; transform: translateX(-48px) rotate(-8deg); }
  to   { opacity: 1; transform: translateX(0)     rotate(0); }
}
@keyframes mo-bean-r {
  from { opacity: 0; transform: translateX(48px) rotate(8deg); }
  to   { opacity: 1; transform: translateX(0)    rotate(0); }
}
@keyframes mo-bag-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-8px); }
}
@keyframes mo-bag-float-center {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes mo-bean-drift-l {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-10px) rotate(-1.5deg); }
}
@keyframes mo-bean-drift-r {
  0%, 100% { transform: translateY(0) rotate(0); }
  50%      { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes mo-shine {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  60%  { transform: translateX(220%)  skewX(-12deg); }
  100% { transform: translateX(220%)  skewX(-12deg); }
}

/* Hero entrance — staggered using nth-child timing */
.hero h1,
.hero .hero-eyebrow,
.hero .hero-sub,
.hero .hero-cta { opacity: 0; animation: mo-fade-up 0.9s cubic-bezier(.2,.7,.3,1) forwards; }
.hero .hero-eyebrow { animation-delay: 0.05s; }
.hero h1            { animation-delay: 0.15s; animation-duration: 1.1s; }
.hero .hero-sub     { animation-delay: 0.35s; }
.hero .hero-cta     { animation-delay: 0.5s;  }

.hero-bag-img {
  opacity: 0;
  animation: mo-bag-drop 1.1s cubic-bezier(.2,.7,.3,1) 0.45s forwards;
}
.hero-beans-l {
  opacity: 0;
  animation: mo-bean-l 1.1s cubic-bezier(.2,.7,.3,1) 0.7s forwards;
}
.hero-beans-r {
  opacity: 0;
  animation: mo-bean-r 1.1s cubic-bezier(.2,.7,.3,1) 0.75s forwards;
}
.feat {
  opacity: 0;
  animation: mo-fade-up 0.8s cubic-bezier(.2,.7,.3,1) forwards;
}
.feat:nth-child(3) { animation-delay: 0.7s; }
.feat:nth-child(4) { animation-delay: 0.85s; }
.feat:nth-child(5) { animation-delay: 1.0s; }
.feat:nth-child(6) { animation-delay: 1.15s; }

/* Scroll-reveal — applied via JS observer adding .is-in */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.9s cubic-bezier(.2,.7,.3,1), transform 0.9s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translate3d(0,0,0); }
.reveal-delay-1.is-in { transition-delay: 0.08s; }
.reveal-delay-2.is-in { transition-delay: 0.16s; }
.reveal-delay-3.is-in { transition-delay: 0.24s; }
.reveal-delay-4.is-in { transition-delay: 0.32s; }
.reveal-delay-5.is-in { transition-delay: 0.40s; }

/* Image-zoom on reveal for editorial photos */
.zoom-in {
  overflow: hidden;
}
.zoom-in > .ph,
.zoom-in.ph {
  transform: scale(1.08);
  transition: transform 1.4s cubic-bezier(.2,.7,.3,1);
}
.is-in.zoom-in > .ph,
.is-in.zoom-in.ph {
  transform: scale(1);
}

/* Blend image — no float animation */
.blend-img { animation: none; }

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
  z-index: -1;
}
.btn-primary:hover::after {
  animation: mo-shine 1.1s cubic-bezier(.4,.1,.4,1) forwards;
}

/* Result bag in quiz modal */
.result-bag {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(36, 25, 20, 0.22));
  animation: mo-fade-up 0.6s cubic-bezier(.2,.7,.3,1) 0.1s both;
}

/* Reduce-motion: kill non-essential animation */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
@media (max-width: 1100px) {
  .container, .container-wide, .nav-inner { padding-left: 32px; padding-right: 32px; }
  .blend-grid { grid-template-columns: 1fr 1fr; }
  .blend-grid > :nth-child(3) { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }
  .blend-perks { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .quiz { grid-template-columns: 1fr; }
  .quiz-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .feat { display: none; }
  .hero-stage { height: 540px; }
}
@media (max-width: 1280px) {
  .feat { display: none; }
}
@media (max-width: 720px) {
  .nav-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; }
  .nav-left { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; z-index: 41; }
  .hero-eyebrow { gap: 10px; letter-spacing: 0.1em; flex-wrap: wrap; }
  .container-wide { padding: 0 20px; }
  .hero-beans { display: none; }
  .blend-grid { grid-template-columns: 1fr; }
  .blend-perks { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 80px 0; }
  .press-row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
  .quiz-body { padding: 56px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-cta { flex-direction: column; align-items: center; }
  .final-cta .btn { width: 100%; max-width: 320px; white-space: normal; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; white-space: normal; text-align: center; }
}
