/* ═══════════════════════════════════════════════════════════════
   MASTER SYNTHESIS — synthesis.css
   Apple grid + Stripe trust + Nike boldness + Sagmeister art
   ═══════════════════════════════════════════════════════════════ */

/* ─── ELEMENT #11: Apple's CSS variable naming (espresso/caramel/latte/cream) ─── */
/* ─── ELEMENT #9: Stripe's responsive token system ─── */
:root {
  /* Coffee palette */
  --espresso: #0E0B08;
  --espresso-90: rgba(14, 11, 8, 0.90);
  --espresso-80: #2a2520;
  --espresso-70: #3d3630;
  --caramel: #E8B84B;
  --caramel-soft: #D4A43E;
  --caramel-glow: #f0c965;
  --latte: #F5F0E8;
  --cream: #FFFFFF;

  /* Semantic */
  --success: #34D399;
  --success-bg: rgba(52, 211, 153, 0.1);
  --danger: #EF4444;
  --danger-bg: rgba(239, 68, 68, 0.08);
  --danger-border: rgba(239, 68, 68, 0.2);
  --danger-text: #f87171;

  /* Text hierarchy */
  --text-primary: #1A1208;
  --text-secondary: #6B6155;
  --text-tertiary: #9A9080;

  /* Typography */
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Lora', Georgia, serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing tokens (Stripe system) */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-card: 0 2px 8px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.16);
  --shadow-glow: 0 0 40px rgba(232, 184, 75, 0.2);

  /* Layout */
  --max-width: 1400px;
  --sidebar-width: 340px;
  --header-height: 60px;

  /* Easing */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-ui);
  background: var(--cream);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — Apple's glass-blur header
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(14, 11, 8, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(232, 184, 75, 0.15);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.logo-cup {
  width: 20px;
  height: 20px;
  border: 2px solid var(--caramel);
  border-radius: 3px;
  position: relative;
}
.logo-cup::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: 2px solid var(--caramel);
  border-left: none;
  border-radius: 0 4px 4px 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.header-est {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
}
.header-phone {
  color: var(--caramel);
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.header-phone:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   HERO — Full-width above the grid (Sagmeister drama + Nike scale)
   ═══════════════════════════════════════════════════════════════ */
.hero {
  margin-top: var(--header-height);
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(232, 184, 75, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-bg);
  color: var(--success);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  width: fit-content;
  margin-bottom: var(--space-2xl);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-number {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.hero-number .area-code { color: var(--caramel); }
.hero-number .dash { color: rgba(255,255,255,0.25); }

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: var(--space-3xl);
}
.hero-tagline strong {
  color: var(--caramel);
  font-style: normal;
}

.hero-price-strip {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: var(--space-3xl);
}
.hero-price {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
}
.hero-price-unit {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ELEMENT #3: Nike's hero CTA button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--caramel);
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 20px 48px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.hero-cta:hover {
  background: var(--caramel-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(232, 184, 75, 0.3);
}
.hero-cta-arrow {
  font-size: 22px;
  transition: transform 0.3s;
  position: relative;
  z-index: 1;
}
.hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}
.hero-cta span:first-child {
  position: relative;
  z-index: 1;
}

/* Hero right — cup area */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, rgba(232,184,75,0.08), rgba(232,184,75,0.02));
}

/* Hero cup image (replaces CSS cup) */
.hero-cup-img {
  max-width: 320px;
  width: 80%;
  height: auto;
  filter: drop-shadow(30px 30px 60px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
  transition: transform 0.6s var(--ease-spring);
  z-index: 2;
  position: relative;
}
.hero-cup-img:hover {
  transform: scale(1.03);
}

/* Background watermark */
.hero-bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22rem;
  color: rgba(232,184,75,0.04);
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

/* ═══════════════════════════════════════════════════════════════
   PAGE LAYOUT — Apple's grid: main + sidebar
   ═══════════════════════════════════════════════════════════════ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 0;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 100vh;
}
.main-content {
  min-width: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR — Stripe
   ═══════════════════════════════════════════════════════════════ */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) var(--space-2xl);
  background: var(--latte);
  border-bottom: 1px solid rgba(14,11,8,0.06);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.trust-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 12px;
  height: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   OFFER SECTION
   ═══════════════════════════════════════════════════════════════ */
.offer-section {
  background: var(--latte);
  padding: var(--space-4xl) 80px;
}
.offer-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  max-width: 760px;
}
.offer-header {
  background: var(--espresso);
  padding: var(--space-md) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offer-exclusive {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--caramel);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.offer-regular {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}
.offer-body {
  padding: var(--space-2xl) var(--space-xl);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3xl);
  align-items: center;
}
.offer-price-section {
  margin-bottom: var(--space-md);
}
.offer-price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-xs);
}
.offer-dollar {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  align-self: flex-start;
  margin-top: 8px;
}
.offer-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}
.offer-period {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 400;
  align-self: flex-end;
  margin-bottom: 8px;
}
.offer-daily {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}
.offer-daily strong {
  color: var(--caramel-soft);
  font-weight: 600;
}
.offer-coupon {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(232, 184, 75, 0.1);
  border: 1px dashed var(--caramel);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}
.coupon-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
}
.offer-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
}
.offer-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.12);
}
.offer-features li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 9px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

/* Offer cup area */
.offer-cup-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.offer-cup-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
  filter: drop-shadow(16px 16px 40px rgba(14,11,8,0.12));
}
.offer-cup-img:hover {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(20px 24px 50px rgba(14,11,8,0.18));
}
.offer-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--caramel);
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 44px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.offer-order-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.offer-order-btn:hover {
  background: var(--caramel-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 184, 75, 0.3);
}
.offer-order-btn span {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   BUYOUT SECTION — Sagmeister's math-grid
   ═══════════════════════════════════════════════════════════════ */
.buyout-section {
  background: var(--cream);
  padding: var(--space-4xl) 80px;
  border-bottom: 1px solid rgba(14,11,8,0.06);
}
.buyout-inner {
  max-width: 700px;
}
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel-soft);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}
.buyout-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.buyout-text-side { flex: 1; }
.buyout-machine-icon { flex-shrink: 0; }
.machine-img {
  width: 140px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(14,11,8,0.15));
}

.buyout-body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: var(--space-xl) 0 var(--space-2xl);
}
.buyout-body strong {
  color: var(--text-primary);
}
.buyout-math-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: var(--space-2xl);
}
.math-card {
  background: var(--latte);
  border: 1px solid rgba(14,11,8,0.06);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.math-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}
.math-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--caramel-soft);
  line-height: 1;
}
.math-note {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 6px;
  font-style: italic;
}
.buyout-footnote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 15px;
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 520px;
}

/* ═══════════════════════════════════════════════════════════════
   URGENCY — Sagmeister's full-caramel urgency band
   ═══════════════════════════════════════════════════════════════ */
.urgency-section {
  background: var(--caramel);
  color: var(--espresso);
  padding: 32px 80px;
  position: relative;
  overflow: hidden;
}
.urgency-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.urgency-icon-block {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.3;
}
.urgency-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
}
.urgency-text strong {
  font-weight: 700;
}
.urgency-bg {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 8rem;
  color: rgba(14,11,8,0.05);
  pointer-events: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CARDS — Sagmeister 4-col + Stripe hover animation
   ═══════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--latte);
  padding: var(--space-4xl) 80px;
}
.why-header {
  margin-bottom: var(--space-3xl);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.why-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(14,11,8,0.1);
  position: relative;
  transition: background 0.3s;
}
.why-card:last-child { border-right: none; }
.why-card:hover {
  background: rgba(255,255,255,0.5);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.why-card:hover::before {
  transform: scaleX(1);
}
.why-card-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.why-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.why-card-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.why-card-body strong {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════
   BOTTOM CTA — Nike headline scale + red warning
   ═══════════════════════════════════════════════════════════════ */
.bottom-cta {
  background: var(--espresso);
  color: var(--cream);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--caramel), transparent);
}
.bottom-cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(232, 184, 75, 0.06), transparent 70%);
  pointer-events: none;
}
.bottom-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.bottom-cta-headline span {
  color: var(--caramel);
}
.bottom-question {
  font-family: var(--font-body);
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto var(--space-3xl);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.bottom-question strong {
  color: var(--cream);
  font-style: normal;
}
.bottom-warning {
  max-width: 540px;
  margin: 0 auto var(--space-3xl);
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  padding: 24px 32px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  text-align: left;
  position: relative;
  z-index: 1;
}
.bottom-warning strong {
  color: var(--cream);
}
.gone-warning {
  color: var(--danger-text);
  font-weight: 600;
  margin-top: 12px;
  font-size: 16px;
}
.bottom-order-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* Bottom cup image */
.bottom-cup-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring);
  filter: drop-shadow(16px 16px 40px rgba(0,0,0,0.4));
}
.bottom-cup-img:hover { transform: scale(1.05); }

.bottom-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--caramel);
  color: var(--espresso);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 22px 64px;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.bottom-order-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}
.bottom-order-btn:hover {
  background: var(--caramel-glow);
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(232, 184, 75, 0.35);
}
.bottom-order-btn span {
  position: relative;
  z-index: 1;
}

.bottom-call {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
}
.bottom-call a {
  color: var(--caramel);
  text-decoration: none;
  font-weight: 600;
}
.bottom-call a:hover { text-decoration: underline; }

.bottom-established {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: var(--space-xl);
}

.cta-bg-text {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14rem;
  color: rgba(232,184,75,0.03);
  pointer-events: none;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR — Apple's full-height espresso sidebar
   ═══════════════════════════════════════════════════════════════ */
.sidebar {
  background: var(--espresso);
  color: var(--cream);
  position: relative;
  min-height: 100vh;
}
.sidebar-sticky {
  position: sticky;
  top: var(--header-height);
  padding: 40px 28px;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.sidebar-sticky::-webkit-scrollbar { width: 4px; }
.sidebar-sticky::-webkit-scrollbar-track { background: transparent; }
.sidebar-sticky::-webkit-scrollbar-thumb { background: rgba(232, 184, 75, 0.2); border-radius: 2px; }

.sidebar-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 4px;
}
.sidebar-subtitle {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.sidebar-filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-select {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-ui);
  font-size: 13px;
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23E8B84B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s;
}
.filter-select option {
  background: var(--espresso);
  color: var(--cream);
}
.filter-select:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 3px rgba(232, 184, 75, 0.15);
}
.number-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.number-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.2s;
}
.number-item:hover {
  background: rgba(232, 184, 75, 0.08);
  transform: translateX(4px);
}
.number-item-active {
  background: rgba(232, 184, 75, 0.1);
  color: var(--caramel);
}
.number-item-badge {
  margin-left: auto;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel);
  opacity: 0.6;
}
.sidebar-call-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: rgba(232, 184, 75, 0.1);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: var(--radius-sm);
  color: var(--caramel);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.sidebar-call-btn:hover {
  background: rgba(232, 184, 75, 0.18);
}
.sidebar-sister {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.sidebar-sister a {
  color: rgba(232, 184, 75, 0.5);
  text-decoration: none;
}
.sidebar-sister a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  text-align: center;
  padding: 20px;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(232,184,75,0.08);
}
.site-footer a {
  color: rgba(232, 184, 75, 0.5);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE HERO (index page)
   ═══════════════════════════════════════════════════════════════ */
.hero--index .hero-left { padding: 100px 60px 100px 80px; }
.hero--index .hero-number { font-size: clamp(44px, 5.5vw, 72px); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    min-height: auto;
  }
  .sidebar-sticky {
    position: static;
    max-height: none;
  }
  .hero { min-height: 70vh; }
  .offer-section { padding: var(--space-3xl) 40px; }
  .buyout-section { padding: var(--space-3xl) 40px; }
  .machine-img { width: 120px; }
  .urgency-section { padding: 28px 40px; }
  .why-section { padding: var(--space-3xl) 40px; }
  .bottom-cta { padding: 80px 40px; }
}

@media (max-width: 900px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 100px 40px 60px;
  }
  .hero-right {
    padding: 40px;
  }
  .hero-cup-img {
    max-width: 240px;
  }
  .hero-bg-text { font-size: 14rem; }

  .offer-body {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  .offer-cup-area {
    order: -1;
  }

  .buyout-math-grid {
    grid-template-columns: 1fr;
  }

  .urgency-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-card {
    border-bottom: 1px solid rgba(14,11,8,0.1);
  }
  .why-card:nth-child(even) { border-right: none; }
}

@media (max-width: 600px) {
  :root {
    --space-xl: 1.25rem;
    --space-2xl: 1.5rem;
    --space-3xl: 2rem;
    --space-4xl: 3rem;
  }

  .header-inner { padding: 0 20px; }
  .header-est { display: none; }
  .logo { font-size: 12px; }

  .hero-left { padding: 90px 24px 48px; }
  .hero-right { padding: 24px; }
  .hero-number { font-size: 44px; }
  .hero-price { font-size: 48px; }
  .hero-cta {
    font-size: 16px;
    padding: 18px 36px;
    letter-spacing: 2px;
  }
  .hero-cup-img {
    max-width: 200px;
  }
  .hero-bg-text { font-size: 10rem; }

  .trust-bar {
    flex-wrap: wrap;
    gap: var(--space-md);
    padding: var(--space-lg) var(--space-md);
  }

  .offer-section { padding: var(--space-2xl) 24px; }
  .offer-amount { font-size: 3rem; }
  .offer-cup-img {
    max-width: 160px;
  }

  .buyout-section { padding: var(--space-2xl) 24px; }
  .buyout-header-row { flex-direction: column; text-align: center; gap: 16px; }
  .machine-img { width: 100px; }
  .urgency-section { padding: 20px 24px; }
  .urgency-bg { font-size: 5rem; right: 24px; }

  .why-section { padding: var(--space-2xl) 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card {
    border-right: none;
    padding: 28px 0;
  }

  .bottom-cta { padding: 60px 24px; }
  .bottom-order-btn {
    font-size: 18px;
    padding: 20px 48px;
    letter-spacing: 3px;
  }
  .cta-bg-text { font-size: 8rem; }

  .sidebar-sticky { padding: 32px 20px; }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Page-load animation ─── */
@media (prefers-reduced-motion: no-preference) {
  .hero-left {
    animation: fadeUp 0.8s var(--ease-out) both;
  }
  .hero-right {
    animation: fadeUp 0.8s var(--ease-out) 0.2s both;
  }
}
