/* ============================
   PODBOX — COFFEE POD SUPERSTORE
   Typography: Fraunces (display) + DM Sans (body)
   Palette: espresso browns, warm cream, copper accent
   ============================ */

:root {
  --bg: #f5e6d3;
  --bg-alt: #ede0ce;
  --bg-dark: #1a0f05;
  --fg: #1a0f05;
  --fg-light: #6b4c35;
  --fg-muted: #9a7a5e;
  --accent: #c87941;
  --accent-dark: #a85e2e;
  --cream: #f5e6d3;
  --white: #fff9f3;
  --shadow: rgba(26,15,5,0.12);
}

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

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

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,230,211,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,121,65,0.15);
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2.5rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(200,121,65,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 1.75rem;
  letter-spacing: -0.03em;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-light);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero visual — coffee machine illustration */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.machine-stand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.machine-body {
  width: 130px;
  height: 200px;
  background: linear-gradient(135deg, #2a1a0a 0%, #4a2e18 50%, #2a1a0a 100%);
  border-radius: 16px 16px 8px 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0.75rem;
  box-shadow: 0 20px 60px rgba(26,15,5,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
}
.machine-screen {
  width: 80px;
  height: 28px;
  background: #0a1a0a;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screen-text {
  color: #4ade80;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-family: 'DM Sans', monospace;
}
.machine-buttons {
  display: flex;
  gap: 0.5rem;
}
.btn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(200,121,65,0.5);
}
.machine-spout {
  width: 28px;
  height: 22px;
  background: linear-gradient(to bottom, #3a2410, #2a1a0a);
  border-radius: 4px 4px 8px 8px;
}
.machine-drip {
  width: 36px;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.6;
  margin-top: 2px;
}
.machine-base {
  width: 160px;
  height: 16px;
  background: linear-gradient(to bottom, #3a2410, #2a1a0a);
  border-radius: 4px 4px 8px 8px;
  box-shadow: 0 4px 16px rgba(26,15,5,0.25);
}

/* Pod arrows */
.pod-arrows {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.75rem;
}
.arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.up-left { justify-content: flex-start; }
.up-right { justify-content: flex-end; }
.mid-left { justify-content: flex-start; }
.mid-right { justify-content: flex-end; }
.down-center { grid-column: 1 / -1; justify-content: center; }
.pod-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fg-light);
  letter-spacing: 0.04em;
}
.pod-icon {
  width: 20px;
  height: 14px;
  border-radius: 4px;
}
.pod-icon.nespresso { background: #8B4513; }
.pod-icon.dolce { background: #2d5a1e; }
.pod-icon.lavazza { background: #c41e3a; }
.pod-icon.ese { background: #d4a76a; }
.pod-icon.ground {
  background: repeating-linear-gradient(45deg, #4a2e18, #4a2e18 2px, #3a2410 2px, #3a2410 4px);
}

/* ---- COMPATIBILITY ---- */
.compatibility {
  background: var(--white);
  padding: 6rem 2.5rem;
}
.compat-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.compat-heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--fg);
  text-align: center;
  margin-bottom: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.compat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.compat-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  border: 1px solid rgba(200,121,65,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.compat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26,15,5,0.1);
}
.compat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 1rem;
}
.ic-nespresso { background: linear-gradient(135deg, #c87941, #a85e2e); }
.ic-dolce { background: linear-gradient(135deg, #2d5a1e, #3d7a2e); }
.ic-lavazza { background: linear-gradient(135deg, #c41e3a, #a01830); }
.ic-ese { background: linear-gradient(135deg, #d4a76a, #b8894e); }
.ic-ground { background: linear-gradient(135deg, #4a2e18, #3a2410); }
.compat-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.compat-card p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}
.compat-tagline {
  text-align: center;
  font-size: 1rem;
  color: var(--fg-light);
}
.compat-tagline strong { color: var(--accent); }

/* ---- MACHINE SECTION ---- */
.machine-section {
  background: var(--bg-dark);
  padding: 6rem 2.5rem;
  color: var(--cream);
}
.machine-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.machine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,121,65,0.15);
  border: 1px solid rgba(200,121,65,0.3);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 2rem;
}
.badge-star { color: var(--accent); font-size: 0.85rem; }
.badge-text { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.machine-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.machine-sub {
  font-size: 1.05rem;
  color: rgba(245,230,211,0.7);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.machine-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(245,230,211,0.6); margin-top: 0.25rem; font-weight: 500; }
.machine-visual-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.format-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,230,211,0.08);
  border: 1px solid rgba(245,230,211,0.12);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(245,230,211,0.85);
  font-weight: 500;
}
.fp-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.fp-dot.np { background: #c87941; }
.fp-dot.dg { background: #4a8c3a; }
.fp-dot.lm { background: #c41e3a; }
.fp-dot.es { background: #d4a76a; }
.fp-dot.gc { background: #8a6a4a; }

/* ---- WHY SECTION ---- */
.why-section {
  background: var(--cream);
  padding: 6rem 2.5rem;
}
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  color: var(--fg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.why-item {
  padding-top: 1.5rem;
  border-top: 2px solid var(--accent);
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200,121,65,0.25);
  margin-bottom: 0.75rem;
}
.why-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.why-item p { font-size: 0.9rem; color: var(--fg-light); line-height: 1.65; }

/* ---- CLOSING ---- */
.closing {
  background: var(--white);
  padding: 8rem 2.5rem;
  overflow: hidden;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.closing-vessel {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vessel-top {
  width: 80px;
  height: 30px;
  background: linear-gradient(to bottom, #c87941 0%, #a85e2e 100%);
  border-radius: 6px 6px 0 0;
}
.vessel-crema {
  height: 12px;
  background: #e8c89a;
  border-radius: 0 0 4px 4px;
}
.vessel-liquid {
  flex: 1;
  width: 60px;
  background: linear-gradient(to bottom, #4a2e18, #2a1a0a);
  border-radius: 0 0 40px 40px;
}
.vessel-body {
  background: linear-gradient(to bottom, #2a1a0a, #3a2410);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.closing-text { flex: 1; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-light);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.closing-values {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.val-chip {
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-dark);
  padding: 3rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
}
.footer-desc { font-size: 0.85rem; color: rgba(245,230,211,0.5); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links span {
  font-size: 0.8rem;
  color: rgba(245,230,211,0.6);
  font-weight: 500;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,230,211,0.1);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,230,211,0.35);
}

/* ---- HERO (full redesign with approved image) ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}
.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 5rem;
  background: var(--cream);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-lede {
  font-size: 1rem;
  color: var(--fg-light);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero-anchor-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(200,121,65,0.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-primary--lg {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}
.btn-outline-sm {
  display: inline-block;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-sm:hover {
  background: var(--accent);
  color: white;
}

/* ---- BRANDS GRID ---- */
.brands-section {
  background: var(--white);
  padding: 6rem 2.5rem;
}
.brands-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.brands-heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fg);
  text-align: center;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.brands-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}
.brand-category {
  margin-bottom: 2rem;
}
.cat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.85rem;
}
.brand-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.brand-chip {
  background: var(--cream);
  border: 1px solid rgba(200,121,65,0.2);
  border-radius: 8px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-light);
}
.brand-chip--lg {
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  color: var(--fg);
}
.brands-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ---- MACHINE SECTION (existing, keep) ---- */
.machine-section {
  background: var(--bg-dark);
  padding: 6rem 2.5rem;
  color: var(--cream);
}
.machine-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.machine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,121,65,0.15);
  border: 1px solid rgba(200,121,65,0.3);
  border-radius: 100px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 2rem;
}
.badge-star { color: var(--accent); font-size: 0.85rem; }
.badge-text { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); }
.machine-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.machine-sub {
  font-size: 1.05rem;
  color: rgba(245,230,211,0.7);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.machine-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(245,230,211,0.6); margin-top: 0.25rem; font-weight: 500; }
.machine-visual-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.format-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(245,230,211,0.08);
  border: 1px solid rgba(245,230,211,0.12);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: rgba(245,230,211,0.85);
  font-weight: 500;
}
.fp-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.fp-dot.np { background: #c87941; }
.fp-dot.dg { background: #4a8c3a; }
.fp-dot.lm { background: #c41e3a; }
.fp-dot.es { background: #d4a76a; }
.fp-dot.gc { background: #8a6a4a; }

/* ---- STARTER BUNDLE ---- */
.starter-bundle {
  background: var(--cream);
  padding: 7rem 2.5rem;
}
.sb-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.sb-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.sb-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  color: var(--fg);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.sb-tagline {
  font-size: 1.05rem;
  color: var(--fg-light);
  margin-bottom: 3rem;
}
.sb-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.sb-retail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sb-retail-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}
.sb-retail-value {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  font-weight: 600;
}
.sb-price {
  display: flex;
  align-items: flex-start;
  gap: 0.1rem;
}
.sb-currency {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--fg);
  margin-top: 0.5rem;
}
.sb-amount {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.sb-saving {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.sb-contents {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(200,121,65,0.15);
}
.sb-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(200,121,65,0.08);
}
.sb-item:last-child { border-bottom: none; }
.sb-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.sb-item-text {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.5;
}
.sb-disclaimer {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ---- ONE PER ROOM UPSELL ---- */
.upsell-rooms {
  background: var(--white);
  padding: 6rem 2.5rem;
}
.upr-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.upr-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.upr-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.upr-lede {
  font-size: 1rem;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.upr-deals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.upr-deal-card {
  background: var(--cream);
  border: 1.5px solid rgba(200,121,65,0.2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.upr-deal-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.upr-deal-price {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fg);
}
.upr-deal-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.upr-rooms-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.room-scene {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.room-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--cream);
  border: 1.5px solid rgba(200,121,65,0.15);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  min-width: 100px;
}
.room-emoji {
  font-size: 2rem;
}
.room-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-light);
  letter-spacing: 0.04em;
}
.upr-scene-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-align: center;
}

/* ---- REFILL PACKS ---- */
.refill-section {
  background: var(--cream);
  padding: 6rem 2.5rem;
}
.refill-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.refill-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1rem;
}
.refill-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--fg);
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.refill-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--fg-light);
  margin-bottom: 3rem;
}
.refill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.refill-card {
  background: var(--white);
  border: 1.5px solid rgba(200,121,65,0.15);
  border-radius: 20px;
  padding: 2rem;
}
.refill-cat {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 0.85rem;
}
.refill-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.refill-brands span {
  background: var(--cream);
  border-radius: 6px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-light);
}
.refill-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.refill-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  border: 1.5px solid rgba(200,121,65,0.15);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
}
.refill-cta-text {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.5;
}

/* ---- WHY SECTION (keep) ---- */
.why-section {
  background: var(--white);
  padding: 6rem 2.5rem;
}
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-heading {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 3.5rem;
  color: var(--fg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.why-item {
  padding-top: 1.5rem;
  border-top: 2px solid var(--accent);
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(200,121,65,0.25);
  margin-bottom: 0.75rem;
}
.why-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.why-item p { font-size: 0.9rem; color: var(--fg-light); line-height: 1.65; }

/* ---- CLOSING (keep) ---- */
.closing {
  background: var(--cream);
  padding: 8rem 2.5rem;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.closing-vessel {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vessel-top {
  width: 80px;
  height: 30px;
  background: linear-gradient(to bottom, #c87941 0%, #a85e2e 100%);
  border-radius: 6px 6px 0 0;
}
.vessel-crema {
  height: 12px;
  background: #e8c89a;
  border-radius: 0 0 4px 4px;
}
.vessel-liquid {
  flex: 1;
  width: 60px;
  background: linear-gradient(to bottom, #4a2e18, #2a1a0a);
  border-radius: 0 0 40px 40px;
}
.vessel-body {
  background: linear-gradient(to bottom, #2a1a0a, #3a2410);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 6px 6px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.closing-text { flex: 1; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-light);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}
.closing-values {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.val-chip {
  background: var(--accent);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ---- FOOTER (keep) ---- */
.footer {
  background: var(--bg-dark);
  padding: 3rem 2.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cream);
}
.footer-desc { font-size: 0.85rem; color: rgba(245,230,211,0.5); }
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-links span {
  font-size: 0.8rem;
  color: rgba(245,230,211,0.6);
  font-weight: 500;
}
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,230,211,0.1);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245,230,211,0.35);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 280px; }
  .hero-content { padding: 7rem 2rem 4rem; }
  .compat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .closing-inner { flex-direction: column; align-items: flex-start; }
  .closing-vessel { display: none; }
  .machine-stats { gap: 1.5rem; }
  .upr-inner { grid-template-columns: 1fr; gap: 3rem; }
  .refill-grid { grid-template-columns: 1fr; }
  .refill-cta { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .compat-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 6rem 1.5rem 3.5rem; }
  .footer-links { gap: 0.75rem; }
  .footer-links span { font-size: 0.72rem; }
  .sb-price { flex-direction: row; align-items: center; gap: 0.5rem; }
  .sb-currency { margin-top: 0; }
}