*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Quicksand', sans-serif; color: #1a1a1a; overflow-x: hidden; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

:root {
  --rz-orange: #FF6B35;
  --rz-dark: #1a1a1a;
  --rz-cream: #FFF8F0;
  --rz-gold: #FFD700;
  --rz-brown: #2A1A0A;
  --rz-amber: #D4A574;
}

/* ── NAV ── */
.rz-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--rz-orange);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 40px;
}
.rz-nav-center {
  display: flex; align-items: center; gap: 36px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.rz-nav a {
  color: #fff; font-family: 'Quicksand', sans-serif;
  font-weight: 700; font-size: 15px; text-transform: lowercase;
  letter-spacing: 0.5px; position: relative;
}
.rz-nav a:not(.rz-nav-cart)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rz-gold); transition: width 0.3s;
}
.rz-nav a:not(.rz-nav-cart):hover::after { width: 100%; }
.rz-nav .rz-logo-nav img { height: 44px; filter: brightness(0) invert(1); }
.rz-nav-right .rz-nav-cart {
  background: #FFD700; color: #1a1a1a;
  padding: 8px 22px; border-radius: 30px;
  font-weight: 800; font-size: 13px; text-transform: lowercase; cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none;
}
.rz-nav-right .rz-nav-cart:hover {
  background: #2A1A0A; color: #fff;
  border: 2px solid #2A1A0A;
}

/* ── MARQUEE ── */
.rz-marquee {
  background: var(--rz-brown); padding: 10px 0; overflow: hidden; white-space: nowrap;
}
.rz-marquee-inner {
  display: inline-flex; gap: 40px; animation: marquee 30s linear infinite;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--rz-amber); text-transform: uppercase; letter-spacing: 1px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── WAVE ── */
.rz-wave { width: 100%; line-height: 0; margin-top: -2px; }
.rz-wave svg { display: block; width: 100%; }

/* ── IMAGE PLACEHOLDER (for images not yet shot) ── */
.img-placeholder {
  background: var(--rz-cream); border: 2px dashed var(--rz-amber);
  border-radius: 12px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  padding: 40px 20px; text-align: center;
}
.img-placeholder .ph-icon { font-size: 40px; }
.img-placeholder .ph-label {
  font-family: 'Quicksand', sans-serif; font-weight: 800; font-size: 13px;
  color: var(--rz-amber); text-transform: uppercase; letter-spacing: 1px;
}
.img-placeholder .ph-desc {
  font-family: 'Nunito', sans-serif; font-size: 13px; color: #aaa; font-weight: 600;
  max-width: 240px; line-height: 1.5;
}

/* ── HERO ── */
.rz-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh;
  background: var(--rz-brown);
}
.rz-hero-img {
  position: relative; overflow: hidden;
}
.rz-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.rz-hero-img .img-placeholder { height: 100%; min-height: 500px; border-radius: 0; border: none; background: #1a0a00; }
.rz-hero-img .img-placeholder .ph-label { color: var(--rz-amber); }
.rz-hero-img .img-placeholder .ph-desc { color: rgba(212,165,116,0.6); }
.rz-hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px 80px 64px;
}
.rz-hero-copy .rz-eyebrow {
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px;
  color: var(--rz-amber); margin-bottom: 20px;
}
.rz-hero-copy h1 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 400; color: var(--rz-gold); text-transform: lowercase;
  line-height: 0.95; margin-bottom: 28px;
}
.rz-hero-copy p {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2vw, 24px); font-weight: 700;
  color: rgba(255,255,255,0.85); line-height: 1.6; margin-bottom: 40px;
  max-width: 460px;
}
.rz-hero-copy .rz-scroll-hint {
  display: flex; align-items: center; gap: 10px;
  color: var(--rz-amber); font-weight: 700; font-size: 13px;
}
.rz-hero-copy .rz-scroll-hint span { font-size: 20px; animation: bounce 1.5s ease-in-out infinite; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── ORIGIN SECTION ── */
.rz-origin {
  background: var(--rz-cream); padding: 100px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.rz-origin-copy .rz-section-tag {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 20px;
}
.rz-origin-copy h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; color: var(--rz-brown); text-transform: lowercase;
  line-height: 1.1; margin-bottom: 24px;
}
.rz-origin-copy p {
  font-family: 'Nunito', sans-serif; font-size: 17px; color: #555;
  line-height: 1.8; font-weight: 600; margin-bottom: 16px;
}
.rz-origin-copy p strong { color: var(--rz-brown); font-weight: 800; }
.rz-origin-img { position: relative; }
.rz-origin-img .rz-origin-pic { border-radius: 20px; overflow: hidden; }
.rz-origin-img .rz-origin-pic img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.rz-origin-img .rz-origin-pic .img-placeholder { aspect-ratio: 4/5; border-radius: 20px; }
.rz-origin-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--rz-orange); color: white;
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 16px;
  font-family: 'Lilita One', cursive; font-size: 14px; font-weight: 400;
  text-transform: lowercase; line-height: 1.2;
  border: 4px solid #fff; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* ── FOUNDER MOMENT ── */
.rz-founder { background: var(--rz-dark); padding: 0; overflow: hidden; }
.rz-founder-inner {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 600px;
}
.rz-founder-img { position: relative; }
.rz-founder-img img { width: 100%; height: 100%; object-fit: cover; }
.rz-founder-img .img-placeholder {
  height: 100%; min-height: 600px; border-radius: 0; border: none;
  background: #0a0a0a;
}
.rz-founder-img .img-placeholder .ph-label { color: var(--rz-amber); }
.rz-founder-copy {
  padding: 80px 64px; display: flex; flex-direction: column; justify-content: center;
}
.rz-founder-copy .rz-section-tag {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 24px; align-self: flex-start;
}
.rz-founder-copy blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 700;
  color: var(--rz-gold); line-height: 1.4;
  margin-bottom: 28px; position: relative;
  padding-left: 24px;
  border-left: 4px solid var(--rz-orange);
}
.rz-founder-copy p {
  font-family: 'Nunito', sans-serif; font-size: 16px; color: rgba(255,255,255,0.75);
  line-height: 1.8; font-weight: 600; margin-bottom: 16px;
}
.rz-founder-copy p strong { color: var(--rz-amber); }
.rz-founder-sig {
  margin-top: 24px; display: flex; align-items: center; gap: 16px;
}
.rz-founder-sig-img {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--rz-amber); flex-shrink: 0;
  background: var(--rz-brown); display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.rz-founder-sig-img img { width: 100%; height: 100%; object-fit: cover; }
.rz-founder-sig-name { font-family: 'Caveat', cursive; font-size: 22px; font-weight: 700; color: var(--rz-gold); }
.rz-founder-sig-title { font-size: 13px; color: var(--rz-amber); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* ── PROCESS SECTION ── */
.rz-process { background: var(--rz-cream); padding: 100px 40px; }
.rz-process-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.rz-process-header .rz-section-tag {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.rz-process-header h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400; color: var(--rz-brown); text-transform: lowercase; line-height: 1.1; margin-bottom: 16px;
}
.rz-process-header p {
  font-family: 'Nunito', sans-serif; font-size: 17px; color: #666; font-weight: 700; line-height: 1.7;
}
.rz-process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; max-width: 1100px; margin: 0 auto 80px;
}
.rz-step {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07); transition: transform 0.3s;
}
.rz-step:hover { transform: translateY(-6px); }
.rz-step-img { height: 240px; overflow: hidden; }
.rz-step-img img { width: 100%; height: 100%; object-fit: cover; }
.rz-step-img .img-placeholder { height: 240px; border-radius: 0; }
.rz-step-body { padding: 28px; }
.rz-step-num {
  font-family: 'Lilita One', cursive; font-size: 48px; font-weight: 400;
  color: var(--rz-orange); line-height: 1; margin-bottom: 8px; display: block;
}
.rz-step-body h3 {
  font-family: 'Lilita One', cursive; font-size: 24px; font-weight: 400;
  text-transform: lowercase; color: var(--rz-brown); margin-bottom: 10px;
}
.rz-step-body p {
  font-family: 'Nunito', sans-serif; font-size: 15px; color: #666; line-height: 1.7; font-weight: 600;
}
/* Full-width process shot */
.rz-process-fullshot {
  max-width: 1100px; margin: 0 auto; border-radius: 20px; overflow: hidden;
  position: relative; height: 400px;
}
.rz-process-fullshot img { width: 100%; height: 100%; object-fit: cover; }
.rz-process-fullshot .img-placeholder { height: 400px; border-radius: 20px; }
.rz-process-fullshot-overlay {
  position: absolute; inset: 0; background: linear-gradient(90deg, rgba(42,26,10,0.75) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: center; padding: 60px;
}
.rz-process-fullshot-overlay h3 {
  font-family: 'Lilita One', cursive; font-size: clamp(32px, 4vw, 52px);
  color: var(--rz-gold); text-transform: lowercase; line-height: 1.1; margin-bottom: 12px;
}
.rz-process-fullshot-overlay p {
  font-family: 'Nunito', sans-serif; font-size: 17px; color: rgba(255,255,255,0.85);
  font-weight: 700; max-width: 420px; line-height: 1.6;
}

/* ── NUMBERS ── */
.rz-numbers { background: var(--rz-brown); padding: 80px 40px; }
.rz-numbers-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px;
}
.rz-num-tile {
  background: rgba(255,255,255,0.05); padding: 48px 32px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08); transition: background 0.2s;
}
.rz-num-tile:last-child { border-right: none; }
.rz-num-tile:hover { background: rgba(255,255,255,0.09); }
.rz-num-tile .rz-big-num {
  font-family: 'Lilita One', cursive; font-size: clamp(48px, 5vw, 72px);
  color: var(--rz-gold); line-height: 1; display: block; margin-bottom: 8px;
}
.rz-num-tile .rz-num-label {
  font-family: 'Nunito', sans-serif; font-size: 14px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px; color: var(--rz-amber);
  display: block; margin-bottom: 8px;
}
.rz-num-tile .rz-num-note {
  font-family: 'Nunito', sans-serif; font-size: 13px; color: rgba(212,165,116,0.65); font-weight: 600;
}

/* ── MISSION ── */
.rz-mission {
  background: var(--rz-orange); padding: 100px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.rz-mission::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.rz-mission-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.rz-mission .rz-section-tag {
  display: inline-block; background: var(--rz-gold); color: var(--rz-brown);
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px; margin-bottom: 24px;
}
.rz-mission h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 900;
  color: #fff; line-height: 1.3; margin-bottom: 28px;
}
.rz-mission h2 em { font-style: normal; color: var(--rz-gold); }
.rz-mission p {
  font-family: 'Nunito', sans-serif; font-size: 18px; color: rgba(255,255,255,0.9);
  font-weight: 700; line-height: 1.75; margin-bottom: 16px;
}
.rz-mission-values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px;
}
.rz-value-card {
  background: rgba(255,255,255,0.15); border-radius: 16px; padding: 28px 24px;
  text-align: center; backdrop-filter: blur(4px);
}
.rz-value-icon { margin-bottom: 16px; display: flex; align-items: center; justify-content: center; color: var(--rz-gold); }
.rz-value-icon i { display: flex; }
.rz-value-icon i svg { width: 36px !important; height: 36px !important; stroke-width: 1.6; }
.rz-value-card h3 {
  font-family: 'Lilita One', cursive; font-size: 22px; font-weight: 400;
  color: var(--rz-gold); text-transform: lowercase; margin-bottom: 8px;
}
.rz-value-card p {
  font-family: 'Nunito', sans-serif; font-size: 14px; color: rgba(255,255,255,0.85);
  font-weight: 700; line-height: 1.5; margin: 0;
}

/* ── MARKETS ── */
.rz-markets { background: var(--rz-cream); padding: 100px 40px; }
.rz-markets-header { text-align: center; margin-bottom: 64px; }
.rz-markets-header h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 400; color: var(--rz-brown); text-transform: lowercase; margin-bottom: 12px;
}
.rz-markets-header p {
  font-family: 'Nunito', sans-serif; font-size: 17px; color: #777; font-weight: 700;
}
.rz-markets-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 1000px; margin: 0 auto;
}
.rz-market-card {
  border-radius: 20px; overflow: hidden; position: relative; min-height: 380px;
}
.rz-market-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.rz-market-card .img-placeholder { height: 380px; border-radius: 20px; border: none; position: relative; }
.rz-market-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(42,26,10,0.85) 0%, transparent 55%);
}
.rz-market-copy {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
  z-index: 2;
}
.rz-market-tag {
  display: inline-block; background: var(--rz-orange); color: white;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 10px;
}
.rz-market-copy h3 {
  font-family: 'Lilita One', cursive; font-size: 32px; font-weight: 400;
  color: var(--rz-gold); text-transform: lowercase; margin-bottom: 8px;
}
.rz-market-copy p { font-family: 'Nunito', sans-serif; font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 700; }
.rz-market-link {
  display: inline-block; margin-top: 14px;
  background: var(--rz-gold); color: var(--rz-brown);
  padding: 10px 24px; border-radius: 30px;
  font-weight: 800; font-size: 13px; text-transform: lowercase;
  transition: all 0.2s;
}
.rz-market-link:hover { background: #ffe44d; }

/* ── FLAVORS CTA ── */
.rz-flavors-cta { background: var(--rz-dark); padding: 100px 40px; text-align: center; }
.rz-flavors-cta h2 {
  font-family: 'Lilita One', cursive;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400; color: var(--rz-gold); text-transform: lowercase; margin-bottom: 16px;
}
.rz-flavors-cta p {
  font-family: 'Nunito', sans-serif; font-size: 18px; color: rgba(255,255,255,0.75);
  font-weight: 700; max-width: 480px; margin: 0 auto 48px; line-height: 1.6;
}
.rz-flavor-strip {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px;
}
.rz-flavor-dot {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 30px; padding: 10px 20px;
  font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 14px; color: rgba(255,255,255,0.8);
}
.rz-flavor-dot span { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rz-cta-btn {
  display: inline-block; background: var(--rz-gold); color: var(--rz-brown);
  padding: 18px 60px; border-radius: 40px;
  font-weight: 800; font-size: 17px; text-transform: lowercase;
  border: 3px solid #b34a00; box-shadow: 4px 4px 0 #b34a00; transition: all 0.2s;
}
.rz-cta-btn:hover { background: #b34a00; color: #fff; box-shadow: 1px 1px 0 #b34a00; transform: translate(3px,3px); }


/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .rz-hero { grid-template-columns: 1fr; }
  .rz-hero-img { min-height: 400px; }
  .rz-hero-copy { padding: 48px 32px; }
  .rz-origin { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .rz-founder-inner { grid-template-columns: 1fr; }
  .rz-founder-img { min-height: 360px; }
  .rz-founder-copy { padding: 48px 32px; }
  .rz-process-steps { grid-template-columns: 1fr; }
  .rz-numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .rz-num-tile { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .rz-mission-values { grid-template-columns: 1fr; }
  .rz-markets-grid { grid-template-columns: 1fr; }
  .rz-nav-center { position: static; transform: none; }
}
@media (max-width: 600px) {
  .rz-nav { padding: 12px 20px; }
  .rz-nav-center { display: none; }
  .rz-numbers-inner { grid-template-columns: 1fr 1fr; }
  .rz-hero-copy h1 { font-size: 48px; }
  .rz-process-fullshot-overlay { padding: 32px; }
  .rz-markets .rz-market-card { min-height: 320px; }
}
