/*
Theme Name: Midori Matcha
Theme URI: https://midorimatcha.com
Author: Midori Matcha
Description: Premium ceremonial matcha ecommerce theme with WooCommerce support
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: midori-matcha
Tags: woocommerce, ecommerce, custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --forest: #1A2E1C;
  --leaf: #3B6E2A;
  --dew: #C8E6A0;
  --washi: #F5F0E8;
  --gold: #C4A882;
  --dark-gold: #9E7E55;
  --ink: #0D1A0E;
  --mist: #EAF0E5;
  --soft: #F9F6F0;
  --mid: #5A7A52;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--soft);
  color: var(--forest);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   CUSTOM CURSOR
   ============================================= */
.cursor {
  width: 10px; height: 10px;
  background: var(--leaf);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--leaf);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), width 0.3s, height 0.3s;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(26,46,28,0.1);
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.site-logo span { color: var(--gold); font-style: italic; }

.main-nav { display: flex; align-items: center; gap: 2.5rem; }
.main-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.main-nav a:hover { opacity: 1; }

.nav-cart {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--forest);
  color: var(--dew) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2rem;
  opacity: 1 !important;
  font-size: 0.75rem !important;
  transition: background 0.2s !important;
}
.nav-cart:hover { background: var(--leaf) !important; }
.cart-count {
  background: var(--gold);
  color: var(--forest);
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center; justify-content: center;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 4rem 4rem 5rem;
  position: relative; z-index: 2;
}
.hero-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--washi);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--dew); }
.hero-sub {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  max-width: 380px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest);
  padding: 0.85rem 2.2rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--dark-gold); transform: translateY(-2px); }
.btn-ghost {
  color: rgba(245,240,232,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.2s;
  background: none; border: none; cursor: pointer;
}
.btn-ghost:hover { color: var(--dew); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual {
  width: 100%; height: 100%;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.circle-bg {
  position: absolute; border-radius: 50%; opacity: 0.12;
}
.c1 { width: 500px; height: 500px; background: var(--dew); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: pulse 6s ease-in-out infinite; }
.c2 { width: 350px; height: 350px; border: 1px solid var(--gold); top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: 0.25; animation: pulse 6s 1s ease-in-out infinite; }

.product-mockup {
  position: relative; z-index: 2;
  opacity: 0;
  animation: fadeScale 1.1s 0.6s forwards;
}
.can-wrap { width: 200px; display: flex; flex-direction: column; align-items: center; }
.can {
  width: 120px; height: 240px;
  background: linear-gradient(160deg, #2A5225 0%, #1A2E1C 40%, #0D1A0E 100%);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 2px 0 8px rgba(200,230,160,0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.can-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 500;
  color: var(--dew); letter-spacing: 0.05em;
  text-align: center; line-height: 1.1;
}
.can-logo span { color: var(--gold); font-style: italic; font-size: 0.8rem; display: block; letter-spacing: 0.15em; }
.can-stripe { width: 80%; height: 1px; background: var(--gold); opacity: 0.4; }
.can-sub { font-size: 0.45rem; letter-spacing: 0.2em; color: rgba(200,230,160,0.5); text-transform: uppercase; text-align: center; }
.can-shine { position: absolute; top: 10%; left: 12%; width: 18px; height: 70%; background: linear-gradient(to bottom, rgba(255,255,255,0.12), transparent); border-radius: 10px; }
.floating-badge {
  position: absolute;
  background: var(--gold); color: var(--forest);
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.7rem; border-radius: 2rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.fb1 { top: 20%; right: -20%; animation: floatBadge 3s ease-in-out infinite; }
.fb2 { bottom: 28%; left: -28%; animation: floatBadge 3s 1.5s ease-in-out infinite; }

.hero-stats {
  position: absolute; bottom: 3rem; left: 5rem;
  display: flex; gap: 3rem;
  opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
}
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: var(--dew); line-height: 1; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245,240,232,0.4); margin-top: 4px; }

.scroll-hint {
  position: absolute; bottom: 2rem; right: 50%;
  transform: translateX(50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeUp 0.9s 1.4s forwards;
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollLine 2s ease-in-out infinite; }
.scroll-text { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(200,230,160,0.4); }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip { background: var(--gold); padding: 0.8rem 0; overflow: hidden; white-space: nowrap; }
.marquee-inner { display: inline-flex; gap: 3rem; animation: marquee 20s linear infinite; }
.marquee-item { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--forest); display: flex; align-items: center; gap: 1rem; }
.marquee-item::after { content: '✦'; font-size: 0.5rem; }

/* =============================================
   SECTIONS - COMMON
   ============================================= */
.section-kicker { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; line-height: 1.15; color: var(--forest); margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--leaf); }
.section-body { font-size: 0.9rem; line-height: 1.9; color: var(--mid); margin-bottom: 2rem; }

/* =============================================
   WHAT SECTION
   ============================================= */
.what-section { padding: 8rem 5rem; background: var(--soft); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { background: var(--mist); border: 1px solid rgba(59,110,42,0.2); color: var(--leaf); font-size: 0.72rem; letter-spacing: 0.08em; padding: 0.4rem 1rem; border-radius: 2rem; }
.what-visual { position: relative; height: 480px; }
.what-img-box { position: absolute; border-radius: 20px; overflow: hidden; background: var(--forest); display: flex; align-items: center; justify-content: center; }
.img-main { width: 280px; height: 380px; top: 0; right: 0; }
.img-accent { width: 200px; height: 240px; bottom: 0; left: 0; background: var(--mist); border: 1px solid rgba(59,110,42,0.15); }
.img-inner-text { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--dew); text-align: center; padding: 1.5rem; line-height: 1.5; }
.img-accent-text { font-size: 0.75rem; color: var(--leaf); text-align: center; padding: 1.2rem; line-height: 1.7; }
.origin-badge { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--gold); color: var(--forest); width: 90px; height: 90px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; line-height: 1.5; box-shadow: 0 8px 32px rgba(196,168,130,0.4); z-index: 3; }
.origin-badge strong { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; display: block; font-weight: 600; letter-spacing: 0; }

/* =============================================
   WHY SECTION
   ============================================= */
.why-section { padding: 8rem 5rem; background: var(--forest); text-align: center; }
.why-section .section-title { color: var(--washi); }
.why-section .section-kicker { color: var(--gold); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(200,230,160,0.1); border-radius: 16px; padding: 2.2rem 1.5rem; text-align: left; transition: background 0.3s, transform 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.why-icon { width: 44px; height: 44px; background: rgba(200,230,160,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
.why-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--dew); margin-bottom: 0.6rem; }
.why-desc { font-size: 0.82rem; line-height: 1.8; color: rgba(245,240,232,0.45); }

/* =============================================
   WOOCOMMERCE PRODUCTS SECTION
   ============================================= */
.products-section { padding: 8rem 5rem; background: var(--soft); }
.products-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* WooCommerce product cards */
.woocommerce ul.products li.product,
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26,46,28,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
}
.woocommerce ul.products li.product:hover,
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(26,46,28,0.1); }

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 500; color: var(--forest); margin-bottom: 0.5rem; }

.woocommerce ul.products li.product .price,
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300; color: var(--forest); }

.product-img { height: 220px; display: flex; align-items: center; justify-content: center; position: relative; }
.product-can { width: 80px; height: 160px; border-radius: 14px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; position: relative; z-index: 1; }
.pc-logo { font-family: 'Cormorant Garamond', serif; font-size: 0.65rem; color: var(--dew); text-align: center; letter-spacing: 0.05em; line-height: 1.3; }
.pc-line { width: 60%; height: 1px; background: var(--gold); opacity: 0.5; }
.pc-sub { font-size: 0.3rem; letter-spacing: 0.2em; color: rgba(200,230,160,0.5); text-transform: uppercase; }

.product-info { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-tag { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.product-desc { font-size: 0.82rem; line-height: 1.7; color: var(--mid); margin-bottom: 1.2rem; flex: 1; }
.product-footer { display: flex; justify-content: space-between; align-items: center; }

/* WooCommerce Add to Cart button */
.woocommerce ul.products li.product .button,
.btn-add,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--forest) !important;
  color: var(--dew) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 2rem !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  border: none !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  font-family: 'DM Sans', sans-serif !important;
}
.woocommerce ul.products li.product .button:hover,
.btn-add:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { background: var(--leaf) !important; }

.product-card.featured { border: 1.5px solid var(--gold); }

/* =============================================
   WOOCOMMERCE SINGLE PRODUCT
   ============================================= */
.woocommerce div.product .product_title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--forest); }
.woocommerce div.product p.price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--leaf); }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 0.9rem; line-height: 1.8; color: var(--mid); }
.woocommerce div.product form.cart .button { background: var(--gold) !important; color: var(--forest) !important; font-size: 0.9rem !important; padding: 0.9rem 2.5rem !important; border-radius: 2rem !important; }
.woocommerce div.product form.cart .button:hover { background: var(--dark-gold) !important; }

/* =============================================
   WOOCOMMERCE CART & CHECKOUT
   ============================================= */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce { padding: 8rem 5rem 4rem; }
.woocommerce table.shop_table { border-radius: 12px; overflow: hidden; border: 1px solid rgba(26,46,28,0.08); }
.woocommerce table.shop_table th { background: var(--forest); color: var(--dew); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 1rem 1.5rem; font-weight: 400; }
.woocommerce table.shop_table td { padding: 1.2rem 1.5rem; border-bottom: 1px solid rgba(26,46,28,0.06); }
.woocommerce #payment { background: var(--soft); border-radius: 12px; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea { border: 1px solid rgba(26,46,28,0.15); border-radius: 8px; padding: 0.8rem 1rem; font-family: 'DM Sans', sans-serif; font-size: 0.85rem; width: 100%; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus { outline: none; border-color: var(--leaf); box-shadow: 0 0 0 3px rgba(59,110,42,0.1); }
.woocommerce form .form-row label { font-size: 0.78rem; letter-spacing: 0.05em; color: var(--forest); margin-bottom: 0.4rem; display: block; }
#place_order { background: var(--gold) !important; color: var(--forest) !important; font-size: 1rem !important; padding: 1rem 3rem !important; border-radius: 2rem !important; width: 100% !important; margin-top: 1rem !important; }
#place_order:hover { background: var(--dark-gold) !important; }

/* =============================================
   RITUAL SECTION
   ============================================= */
.ritual-section { padding: 8rem 5rem; background: var(--mist); }
.ritual-section .section-kicker { text-align: center; }
.ritual-section .section-title { text-align: center; margin-bottom: 4rem; }
.ritual-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.ritual-step { position: relative; padding-left: 1rem; }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(26,46,28,0.08); line-height: 1; margin-bottom: 1rem; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--forest); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.82rem; line-height: 1.8; color: var(--mid); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-section { padding: 8rem 5rem; background: var(--soft); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: #fff; border-radius: 20px; padding: 2rem; border: 1px solid rgba(26,46,28,0.06); }
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.87rem; line-height: 1.8; color: var(--mid); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-dot { width: 36px; height: 36px; border-radius: 50%; background: var(--forest); color: var(--dew); display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 500; flex-shrink: 0; }
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--forest); }
.author-loc { font-size: 0.72rem; color: var(--mid); margin-top: 2px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section { padding: 8rem 5rem; background: var(--forest); display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.cta-offer { background: rgba(255,255,255,0.05); border: 1px solid rgba(200,230,160,0.15); border-radius: 24px; padding: 3rem; }
.offer-tag { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.offer-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400; color: var(--washi); line-height: 1.2; margin-bottom: 0.8rem; }
.offer-price { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: var(--dew); line-height: 1; margin-bottom: 0.4rem; }
.offer-sub { font-size: 0.78rem; color: rgba(245,240,232,0.4); margin-bottom: 2rem; }
.offer-items { margin-bottom: 2rem; }
.offer-item { font-size: 0.82rem; color: rgba(245,240,232,0.65); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; gap: 0.6rem; }
.offer-item::before { content: '✓'; color: var(--dew); font-size: 0.7rem; }
.btn-offer { background: var(--gold); color: var(--forest); border: none; padding: 0.9rem 2rem; border-radius: 2rem; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: background 0.2s, transform 0.2s; width: 100%; }
.btn-offer:hover { background: var(--dark-gold); transform: translateY(-2px); }
.cta-text .section-title { color: var(--washi); }
.cta-text .section-kicker { color: var(--gold); }
.cta-text .section-body { color: rgba(245,240,232,0.55); }
.trust-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.trust-item { font-size: 0.78rem; color: rgba(245,240,232,0.5); display: flex; align-items: center; gap: 0.4rem; }

/* =============================================
   FOOTER
   ============================================= */
footer.site-footer { background: var(--ink); padding: 5rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; color: var(--washi); margin-bottom: 1rem; }
.footer-logo span { color: var(--gold); font-style: italic; }
.footer-tagline { font-size: 0.82rem; line-height: 1.8; color: rgba(245,240,232,0.35); margin-bottom: 1rem; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(245,240,232,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--dew); }
.footer-bottom { background: var(--ink); padding: 1.5rem 5rem; border-top: 1px solid rgba(245,240,232,0.06); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.72rem; color: rgba(245,240,232,0.25); }

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeScale { from { opacity: 0; transform: scale(0.92); } to { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { transform: translate(-50%,-50%) scale(1); } 50% { transform: translate(-50%,-50%) scale(1.06); } }
@keyframes floatBadge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollLine { 0% { opacity: 0; transform: scaleY(0); transform-origin: top; } 50% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; } }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 8rem 2rem 4rem; }
  .what-section { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .what-visual { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .ritual-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; padding: 4rem 2rem; }
  footer.site-footer { grid-template-columns: 1fr 1fr; padding: 3rem 2rem; }
  .site-header { padding: 1rem 1.5rem; }
  .main-nav { gap: 1rem; }
  .products-section, .ritual-section, .testimonial-section, .why-section { padding: 4rem 2rem; }
  .footer-bottom { padding: 1.5rem 2rem; flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 600px) {
  .why-grid, .product-grid, .ritual-grid { grid-template-columns: 1fr; }
  footer.site-footer { grid-template-columns: 1fr; }
  .hero-stats { left: 2rem; gap: 1.5rem; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
}
