/* ============================================================
   TWO LEAVES AND A BUD — REPLICA STYLESHEET
   Design tokens extracted from live site DOM recorder
   ============================================================ */

/* ── DESIGN TOKENS ── */
:root {
  /* Colors */
  --color-dark:        #201C1A;
  --color-dark-rgb:    32, 28, 26;
  --color-cream:       #FFFBFB;
  --color-cream-2:     #FEFCF8;
  --color-announcement-bg: #2A2857;
  --color-footer-bg:   #C0DBFF;
  --color-footer-socket-bg: #E8F4FF;
  --color-white:       #FFFFFF;
  --color-border:      rgba(32,28,26,0.12);
  --color-border-dark: rgba(32,28,26,0.25);
  --color-tag-bg:      rgba(32,28,26,0.08);
  --color-overlay:     rgba(32,28,26,0.35);
  --color-btn-primary-bg:   #201C1A;
  --color-btn-primary-text: #FFFBFB;
  --color-btn-secondary-bg: transparent;
  --color-btn-secondary-border: #201C1A;
  --color-btn-secondary-text: #201C1A;
  --color-star:        #C8A96E;
  --color-vibe-bg:     #F2EDE8;
  --color-vibe-hover:  #201C1A;
  --color-search-bg:   #F5F0EB;
  --color-discover-bg: #F9F5F0;
  --color-origins-bg:  #1A2E1A;
  --color-reviews-bg:  #FFFBFB;
  --color-lattes-bg:   #F5EFE8;
  --color-blog-bg:     #FFFBFB;
  --color-banner-overlay: rgba(20,16,14,0.45);

  /* Typography */
  --font-body:    'Figtree', sans-serif;
  --font-mono:    'Roboto Mono', monospace;

  /* Spacing */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Layout */
  --max-width: 1280px;
  --header-height: 72px;
  --announcement-height: 36px;
  --total-header: calc(var(--header-height) + var(--announcement-height));

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;
  --transition-drawer: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Radius */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.14);
  --shadow-drawer: -4px 0 24px rgba(0,0,0,0.12);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea { font-family: inherit; }

/* ── UTILITY ── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-dark);
  opacity: 0.6;
  margin-bottom: var(--space-md);
}
.section-eyebrow--light { color: var(--color-white); opacity: 0.75; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: background var(--transition-base), color var(--transition-base),
              border-color var(--transition-base), transform var(--transition-fast),
              box-shadow var(--transition-base);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--color-btn-primary-bg);
  color: var(--color-btn-primary-text);
  border-color: var(--color-btn-primary-bg);
}
.btn--primary:hover {
  background: #3a3330;
  border-color: #3a3330;
  box-shadow: var(--shadow-sm);
}

.btn--secondary {
  background: var(--color-btn-secondary-bg);
  color: var(--color-btn-secondary-text);
  border-color: var(--color-btn-secondary-border);
}
.btn--secondary:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn--full { width: 100%; }

/* ── BACKDROP ── */
.backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-drawer);
}
.backdrop.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ── DRAWERS ── */
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--color-cream);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-drawer);
  box-shadow: var(--shadow-drawer);
  overflow: hidden;
}
.drawer.is-open { transform: translateX(0); }

.mobile-menu-drawer {
  right: auto; left: 0;
  transform: translateX(-100%);
  width: min(360px, 100vw);
}
.mobile-menu-drawer.is-open { transform: translateX(0); }

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.drawer__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.drawer__close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-dark);
  transition: background var(--transition-fast);
}
.drawer__close:hover { background: var(--color-tag-bg); }

/* Cart Drawer */
.cart-drawer__shipping-bar {
  padding: 14px 24px;
  background: #F0F7FF;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__shipping-msg {
  font-size: 13px;
  margin-bottom: 8px;
  text-align: center;
}
.cart-drawer__shipping-track {
  height: 4px;
  background: rgba(32,28,26,0.12);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.cart-drawer__shipping-fill {
  height: 100%;
  background: var(--color-dark);
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}
.cart-drawer__empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(32,28,26,0.4);
  padding: 40px;
}
.cart-drawer__empty p { font-size: 15px; }
.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}
.cart-drawer__checkout {
  font-size: 13px;
  padding: 14px 24px;
}
.cart-drawer__tax-note {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  opacity: 0.55;
}

/* Search Drawer */
.search-drawer__body { padding: 24px; flex: 1; overflow-y: auto; }
.search-drawer__input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--color-search-bg);
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  transition: border-color var(--transition-fast);
}
.search-drawer__input-wrap:focus-within { border-color: var(--color-dark); }
.search-drawer__input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  color: var(--color-dark);
  outline: none;
}
.search-drawer__hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  margin: 20px 0 12px;
}
.search-drawer__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.search-tag {
  padding: 7px 14px;
  border: 1.5px solid var(--color-border-dark);
  border-radius: var(--radius-full);
  font-size: 13px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.search-tag:hover { background: var(--color-dark); color: var(--color-white); border-color: var(--color-dark); }

/* Mobile Menu Drawer */
.mobile-menu-drawer__logo { width: 120px; height: auto; }
.mobile-menu-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
.mobile-menu-drawer__item { border-bottom: 1px solid var(--color-border); }
.mobile-menu-drawer__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  transition: background var(--transition-fast);
}
.mobile-menu-drawer__trigger:hover { background: var(--color-tag-bg); }
.mobile-menu-drawer__trigger svg {
  transition: transform var(--transition-base);
  flex-shrink: 0;
}
.mobile-menu-drawer__trigger.is-open svg { transform: rotate(180deg); }
.mobile-menu-drawer__sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 12px 24px;
  background: rgba(32,28,26,0.03);
}
.mobile-menu-drawer__sub.is-open { display: flex; }
.mobile-menu-drawer__sub a {
  padding: 10px 16px;
  font-size: 14px;
  color: rgba(32,28,26,0.75);
  transition: color var(--transition-fast);
}
.mobile-menu-drawer__sub a:hover { color: var(--color-dark); }
.mobile-menu-drawer__link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition-fast);
}
.mobile-menu-drawer__link:hover { background: var(--color-tag-bg); }
.mobile-menu-drawer__social {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-top: 1px solid var(--color-border);
  flex-shrink: 0;
}
.mobile-menu-drawer__social a {
  color: var(--color-dark);
  opacity: 0.6;
  transition: opacity var(--transition-fast);
}
.mobile-menu-drawer__social a:hover { opacity: 1; }

/* ── MEGA MENU ── */
.mega-menu {
  position: fixed;
  top: var(--total-header);
  left: 0; right: 0;
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  box-shadow: var(--shadow-md);
}
.mega-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mega-menu__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 2fr;
  gap: 48px;
}
.mega-menu__inner--learn {
  grid-template-columns: 1fr 2fr;
}
.mega-menu__heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}
.mega-menu__list { display: flex; flex-direction: column; gap: 10px; }
.mega-menu__list a {
  font-size: 15px;
  font-weight: 500;
  transition: opacity var(--transition-fast);
}
.mega-menu__list a:hover { opacity: 0.6; }
.mega-menu__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.mega-menu__product {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity var(--transition-fast);
}
.mega-menu__product:hover { opacity: 0.75; }
.mega-menu__product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--color-tag-bg);
}
.mega-menu__product span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
}
.mega-menu__cta { font-size: 11px; padding: 10px 20px; }
.mega-menu__col--image-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mega-menu__image-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity var(--transition-fast);
}
.mega-menu__image-link:hover { opacity: 0.75; }
.mega-menu__image-link img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.mega-menu__image-link span { font-size: 13px; font-weight: 500; }

/* ── SITE HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
}

/* Announcement Bar */
.announcement-bar {
  background: var(--color-announcement-bg);
  color: var(--color-white);
  height: var(--announcement-height);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.announcement-bar__track {
  display: flex;
  gap: 80px;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
  padding: 0 40px;
}
.announcement-bar__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* Header Wrapper */
.header__wrapper {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-cream);
}
.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__logo {
  display: flex;
  justify-content: center;
}
.header__logo img {
  width: 103px;
  height: 43px;
  object-fit: contain;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

/* Nav */
.header__nav { display: flex; }
.header__nav-list { display: flex; align-items: center; gap: 4px; }
.header__nav-item { position: relative; }
.header__nav-link {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}
.header__nav-link:hover { background: var(--color-tag-bg); }
.header__nav-link--small {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 10px;
  opacity: 0.65;
}
.header__nav-link--small:hover { opacity: 1; background: var(--color-tag-bg); }

/* Header Icons */
.header__icons { display: flex; align-items: center; gap: 4px; }
.header__icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-dark);
  transition: background var(--transition-fast);
  position: relative;
}
.header__icon-btn:hover { background: var(--color-tag-bg); }
.header__cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: 9px;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.header__cart-count.has-items { opacity: 1; }

/* Mobile Menu Trigger */
.mobile-menu-trigger {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: var(--color-dark);
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.mobile-menu-trigger:hover { background: var(--color-tag-bg); }
.mobile-menu-trigger__text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  height: calc(100vh - var(--total-header));
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  background: #1a1a1a;
}
.hero-section__slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide--active { opacity: 1; z-index: 1; }

.hero-slide__media {
  position: absolute;
  inset: 0;
}
.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  padding: 48px 64px;
  color: var(--color-white);
}
.hero-slide__content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,16,14,0.65) 0%, rgba(20,16,14,0.2) 60%, transparent 100%);
  z-index: -1;
  border-radius: 0;
  margin: -48px -64px;
}
.hero-slide__content--light { color: var(--color-dark); }
.hero-slide__content--light::before {
  background: linear-gradient(135deg, rgba(255,251,251,0.7) 0%, rgba(255,251,251,0.3) 60%, transparent 100%);
}
.hero-slide__content--light .hero-slide__title,
.hero-slide__content--light .hero-slide__body,
.hero-slide__content--light .hero-slide__code,
.hero-slide__content--light .hero-slide__dates,
.hero-slide__content--light .hero-slide__eyebrow { color: var(--color-dark); }

.hero-slide__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 12px;
  display: block;
}
.hero-slide__title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.hero-slide__title span { display: block; }
.hero-slide__body {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 420px;
  opacity: 0.9;
}
.hero-slide__code {
  font-family: var(--font-mono);
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.85;
}
.hero-slide__dates {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 28px;
}
.hero-slide__cta { margin-top: 28px; }

/* Hero Dots */
.hero-section__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
}
.hero-dot--active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* Scroll Indicator */
.hero-section__scroll-indicator {
  position: absolute;
  bottom: 24px;
  right: 32px;
  z-index: 5;
  animation: bounce 2s ease-in-out infinite;
}
.hero-section__scroll-indicator img { width: 50px; height: 50px; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── TEXT SECTION ── */
.text-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--color-cream);
  text-align: center;
}
.text-section__inner {
  max-width: 900px;
  margin: 0 auto;
}
.text-section__title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── PRODUCTS SECTION ── */
.products-section {
  padding: var(--space-2xl) 0 var(--space-2xl);
  background: var(--color-cream-2);
  overflow: hidden;
}
.products-section__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-section__header .section-eyebrow { margin-bottom: 0; font-size: 13px; opacity: 1; font-weight: 600; }
.products-section__footer {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

/* Products Carousel */
.products-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.products-carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card__media {
  position: relative;
  aspect-ratio: 7/8;
  overflow: hidden;
  background: #F5F0EB;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--color-white);
  color: var(--color-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}
.product-card__add-btn {
  position: absolute;
  bottom: 12px; right: 12px;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
}
.product-card:hover .product-card__add-btn {
  opacity: 1;
  transform: translateY(0);
}
.product-card__add-btn:hover { background: #3a3330; }
.product-card__info {
  padding: 16px;
}
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}
.product-card__price {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.6;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--color-dark);
  z-index: 10;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.carousel-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}
.carousel-btn--prev { left: 8px; }
.carousel-btn--next { right: 8px; }
.carousel-btn:disabled { opacity: 0.3; pointer-events: none; }

/* ── DISCOVER SECTION ── */
.discover-section {
  padding: var(--space-3xl) var(--space-xl);
  background: var(--color-discover-bg);
  text-align: center;
}
.discover-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.discover-section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.discover-section__subtitle {
  font-size: 18px;
  opacity: 0.6;
  margin-bottom: 28px;
}
.discover-section__search {
  max-width: 480px;
  margin: 0 auto 32px;
}
.discover-section__input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border-dark);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.discover-section__input-wrap:focus-within {
  border-color: var(--color-dark);
  box-shadow: 0 0 0 3px rgba(32,28,26,0.08);
}
.discover-section__input {
  flex: 1;
  border: none;
  background: none;
  font-size: 16px;
  color: var(--color-dark);
  outline: none;
}
.discover-section__vibe-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 16px;
}
.discover-section__vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.vibe-btn {
  padding: 9px 18px;
  background: var(--color-vibe-bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.vibe-btn:hover {
  background: var(--color-dark);
  color: var(--color-white);
}
.vibe-btn.is-active {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ── ORIGINS SECTION ── */
.origins-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.origins-section__media {
  position: absolute;
  inset: 0;
}
.origins-section__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.origins-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,10,0.82) 0%, rgba(10,30,10,0.55) 50%, rgba(10,30,10,0.3) 100%);
}
.origins-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) 64px;
  color: var(--color-white);
  width: 100%;
}
.origins-section__title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}
.origins-section__body {
  font-size: 18px;
  line-height: 1.65;
  max-width: 520px;
  opacity: 0.88;
  margin-bottom: 36px;
}
.origins-section__icons {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.origins-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 120px;
}
.origins-icon img { width: 60px; height: 60px; object-fit: contain; filter: brightness(0) invert(1); }
.origins-icon p {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 1.4;
}
.origins-section__farm-badge {
  position: absolute;
  bottom: 32px;
  right: 64px;
  z-index: 3;
  opacity: 0.9;
}
.origins-section__farm-badge img { width: 140px; height: 140px; }

/* ── REVIEWS SECTION ── */
.reviews-section {
  padding: var(--space-3xl) 0;
  background: var(--color-reviews-bg);
  overflow: hidden;
}
.reviews-section__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px var(--space-xl);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 16px 32px;
}
.reviews-section__header .section-eyebrow { grid-column: 1; }
.reviews-section__title {
  grid-column: 1 / -1;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.reviews-section__all-link {
  grid-column: 3;
  grid-row: 1;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  white-space: nowrap;
}
.reviews-section__all-link:hover { opacity: 1; }

/* Reviews Carousel */
.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.reviews-carousel__track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Review Card */
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition-base);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-card__stars {
  color: var(--color-star);
  font-size: 16px;
  letter-spacing: 2px;
}
.review-card__quote {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  flex: 1;
}
.review-card__author {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.55;
}
.review-card__product {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}
.review-card__product img {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-tag-bg);
}
.review-card__product-name {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.7;
}
.review-card__shop-btn {
  font-size: 10px;
  padding: 6px 14px;
}

/* ── CAFE SECTION ── */
.cafe-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
}
.cafe-section__media {
  overflow: hidden;
}
.cafe-section__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cafe-section:hover .cafe-section__media img { transform: scale(1.03); }
.cafe-section__content {
  background: var(--color-cream-2);
  padding: var(--space-3xl) 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.cafe-section__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.cafe-section__body {
  font-size: 17px;
  line-height: 1.65;
  opacity: 0.75;
  max-width: 400px;
}

/* ── LATTES SECTION ── */
.lattes-section {
  padding: var(--space-3xl) 0;
  background: var(--color-lattes-bg);
  overflow: hidden;
}
.lattes-section__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px var(--space-xl);
  text-align: center;
}
.lattes-section__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.lattes-section__subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

/* Lattes Carousel */
.lattes-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}
.lattes-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.latte-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0.5;
  transform: scale(0.97);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.latte-card--active {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-lg);
}
.latte-card__media { overflow: hidden; }
.latte-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.latte-card--active:hover .latte-card__media img { transform: scale(1.04); }
.latte-card__content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.latte-card__accent {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
}
.latte-card__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.latte-card__desc {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.65;
}
.lattes-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.latte-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: rgba(32,28,26,0.2);
  transition: background var(--transition-base), transform var(--transition-base);
}
.latte-dot--active {
  background: var(--color-dark);
  transform: scale(1.3);
}

/* ── BLOG SECTION ── */
.blog-section {
  padding: var(--space-3xl) 0;
  background: var(--color-blog-bg);
}
.blog-section__header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px var(--space-xl);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
}
.blog-section__header .section-eyebrow { grid-column: 1 / -1; }
.blog-section__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 560px;
}
.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-tag-bg);
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.blog-card__category {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}
.blog-card__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.blog-section__footer {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  padding: 0 40px;
  display: flex;
  justify-content: center;
}

/* ── BANNER SECTION ── */
.banner-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.banner-section__media {
  position: absolute;
  inset: 0;
}
.banner-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-section__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-banner-overlay);
}
.banner-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-3xl) 64px;
  color: var(--color-white);
  width: 100%;
  text-align: center;
}
.banner-section__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.banner-section__body {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
.site-footer { background: var(--color-footer-bg); }

.footer__newsletter {
  padding: var(--space-2xl) 40px;
  border-bottom: 1px solid rgba(32,28,26,0.12);
}
.footer__newsletter-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer__newsletter-heading {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer__newsletter-caption {
  font-size: 15px;
  opacity: 0.7;
  max-width: 400px;
}
.footer__newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  width: 100%;
  max-width: 400px;
}
.footer__newsletter-input {
  flex: 1;
  padding: 12px 18px;
  border: 1.5px solid rgba(32,28,26,0.25);
  border-radius: var(--radius-full);
  font-size: 14px;
  background: rgba(255,255,255,0.6);
  color: var(--color-dark);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.footer__newsletter-input:focus {
  border-color: var(--color-dark);
  background: var(--color-white);
}
.footer__newsletter-btn { font-size: 11px; padding: 12px 20px; }
.footer__social {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.footer__social a {
  color: var(--color-dark);
  opacity: 0.55;
  transition: opacity var(--transition-fast);
}
.footer__social a:hover { opacity: 1; }

.footer__links {
  padding: var(--space-2xl) 40px;
  border-bottom: 1px solid rgba(32,28,26,0.12);
}
.footer__links-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 32px;
}
.footer__col-heading {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.55;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
  line-height: 1.3;
}
.footer__col a:hover { opacity: 1; }

.footer__socket {
  padding: 20px 40px;
  background: rgba(32,28,26,0.06);
}
.footer__socket-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__socket-logo img { width: 90px; height: auto; opacity: 0.7; }
.footer__socket-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
}
.footer__socket-copy a { text-decoration: underline; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --header-height: 64px;
  }

  .header__nav--right { display: none; }

  .mega-menu__inner {
    grid-template-columns: 1fr 1.5fr;
    padding: 28px 24px;
    gap: 32px;
  }
  .mega-menu__col--featured { display: none; }
  .mega-menu__inner--learn { grid-template-columns: 1fr; }
  .mega-menu__col--image-links { grid-template-columns: repeat(3, 1fr); }

  .product-card { flex: 0 0 calc(33.333% - 14px); }
  .review-card  { flex: 0 0 calc(50% - 10px); }
  .latte-card   { flex: 0 0 calc(70% - 12px); }

  .footer__links-inner { grid-template-columns: repeat(4, 1fr); }

  .cafe-section__content { padding: var(--space-2xl) 40px; }
  .origins-section__content { padding: var(--space-2xl) 40px; }
  .origins-section__farm-badge { right: 32px; bottom: 24px; }
  .origins-section__farm-badge img { width: 100px; height: 100px; }

  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
    --announcement-height: 32px;
    --space-3xl: 64px;
    --space-2xl: 48px;
  }

  /* Header */
  .mobile-menu-trigger { display: flex; }
  .header__nav--left { display: none; }
  .header__inner { grid-template-columns: auto 1fr auto; padding: 0 16px; }
  .header__logo img { width: 90px; height: 38px; }
  .header__right { gap: 4px; }
  .header__nav--right { display: none; }

  /* Mega menu hidden on mobile */
  .mega-menu { display: none; }

  /* Hero */
  .hero-section { height: 85vh; min-height: 480px; max-height: 700px; }
  .hero-slide__content { padding: 32px 24px; }
  .hero-slide__content::before { margin: -32px -24px; }
  .hero-section__scroll-indicator { display: none; }

  /* Text section */
  .text-section { padding: var(--space-2xl) var(--space-md); }

  /* Products */
  .products-section__header { padding: 0 16px var(--space-lg); flex-direction: column; align-items: flex-start; gap: 12px; }
  .products-carousel { padding: 0 16px; }
  .product-card { flex: 0 0 calc(80vw - 32px); }
  .products-section__footer { padding: 0 16px; }

  /* Discover */
  .discover-section { padding: var(--space-2xl) var(--space-md); }

  /* Origins */
  .origins-section { min-height: 500px; }
  .origins-section__content { padding: var(--space-2xl) 24px; }
  .origins-section__title { font-size: clamp(36px, 10vw, 64px); }
  .origins-section__icons { gap: 24px; }
  .origins-section__farm-badge { display: none; }

  /* Reviews */
  .reviews-section__header { padding: 0 16px var(--space-lg); grid-template-columns: 1fr; }
  .reviews-section__all-link { grid-column: 1; grid-row: auto; }
  .reviews-carousel { padding: 0 16px; }
  .review-card { flex: 0 0 calc(90vw - 32px); }

  /* Cafe */
  .cafe-section { grid-template-columns: 1fr; }
  .cafe-section__media { height: 300px; }
  .cafe-section__content { padding: var(--space-xl) 24px; }

  /* Lattes */
  .lattes-section__header { padding: 0 16px var(--space-lg); }
  .lattes-carousel { padding: 0 16px; }
  .latte-card { flex: 0 0 calc(90vw - 32px); grid-template-columns: 1fr; }
  .latte-card__media { height: 240px; }
  .latte-card__content { padding: 24px 20px; }

  /* Blog */
  .blog-section__header { padding: 0 16px var(--space-lg); grid-template-columns: 1fr; }
  .blog-section__header .btn { justify-self: start; }
  .blog-grid { padding: 0 16px; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .blog-section__footer { padding: 0 16px; }

  /* Banner */
  .banner-section__content { padding: var(--space-2xl) 24px; }

  /* Footer */
  .footer__newsletter { padding: var(--space-xl) 16px; }
  .footer__newsletter-form { flex-direction: column; }
  .footer__newsletter-btn { width: 100%; }
  .footer__links { padding: var(--space-xl) 16px; }
  .footer__links-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer__socket { padding: 16px; }
  .footer__socket-inner { flex-direction: column; text-align: center; gap: 12px; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
  .footer__links-inner { grid-template-columns: 1fr 1fr; }
  .hero-slide__title { font-size: clamp(32px, 9vw, 52px); }
  .origins-section__title { font-size: clamp(32px, 10vw, 52px); }
  .lattes-section__title { font-size: clamp(28px, 8vw, 52px); }
  .banner-section__title { font-size: clamp(28px, 8vw, 52px); }
}

/* ── SCROLL ANIMATIONS ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.fade-in-up:nth-child(5) { transition-delay: 0.4s; }
.fade-in-up:nth-child(6) { transition-delay: 0.5s; }

/* ── FOCUS STYLES ── */
:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── PRINT ── */
@media print {
  .site-header, .site-footer, .drawer, .backdrop, .toast { display: none; }
}