@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

:root {
  --cream: #FAF5EC;
  --cream-deep: #F5EEE0;
  --beige: #EFE4D2;
  --beige-light: #F7F1E5;
  --paper: #FFFDF8;
  --brown: #2E1F14;
  --brown-mid: #4A3324;
  --brown-soft: #6B4E3A;
  --gold: #C8935F;
  --gold-light: #E8CAA4;
  --gold-dark: #9E6B3E;
  --rust: #B5532A;
  --rust-deep: #8F3E1B;
  --sage: #8A9A5B;
  --sage-soft: #C8D4A6;
  --butter: #F4C76B;
  --plum: #5C2C3B;
  --text: #241810;
  --text-mid: #5E4E42;
  --text-light: #9A8B7E;
  --white: #FFFFFF;
  --glass: rgba(255, 253, 248, 0.78);
  --glass-border: rgba(46, 31, 20, 0.08);
  --shadow-xs: 0 1px 2px rgba(46, 31, 20, 0.04);
  --shadow: 0 2px 14px rgba(46, 31, 20, 0.06);
  --shadow-md: 0 10px 30px rgba(46, 31, 20, 0.10);
  --shadow-lg: 0 20px 50px rgba(46, 31, 20, 0.14);
  --shadow-gold: 0 10px 30px rgba(200, 147, 95, 0.28);
  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.25 0 0 0 0 0.18 0 0 0 0 0.1 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', 'DM Serif Display', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 40;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* === ANNOUNCE BAR === */
.announce-bar {
  background: linear-gradient(90deg, var(--brown) 0%, var(--plum) 50%, var(--brown) 100%);
  background-size: 200% 100%;
  animation: shimmerBar 18s linear infinite;
  color: var(--beige);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  text-align: center;
  position: relative;
  z-index: 101;
}
.announce-bar span { display: inline-flex; align-items: center; gap: 8px; }
.announce-bar .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-light); opacity: 0.6; margin: 0 14px; }
@keyframes shimmerBar { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* === HEADER === */
.header {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(46, 31, 20, 0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 12px;
  transition: transform var(--transition);
}
.logo:hover .logo-img { transform: scale(1.05) rotate(-3deg); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .wordmark {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--brown);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.logo-text .tagline {
  font-size: 0.64rem;
  color: var(--text-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.nav a:hover { color: var(--brown); background: var(--beige-light); }
.nav a.active { color: var(--brown); background: var(--beige); font-weight: 600; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--brown);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: background var(--transition);
}
.nav-toggle:hover { background: var(--beige); }

/* === HERO === */
.hero {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 15% 25%, rgba(200, 147, 95, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 85% 70%, rgba(181, 83, 42, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 60% 10%, rgba(244, 199, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: var(--paper);
  border: 1px solid var(--beige);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brown-mid);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px rgba(138, 154, 91, 0.15);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(138, 154, 91, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(138, 154, 91, 0.05); }
}
.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  line-height: 1.02;
  color: var(--brown);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--rust);
  font-variation-settings: "opsz" 144;
  position: relative;
}
.hero h1 em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.1em;
  height: 0.14em;
  background: linear-gradient(90deg, transparent, var(--gold-light) 10%, var(--butter) 50%, var(--gold-light) 90%, transparent);
  border-radius: 999px;
  opacity: 0.6;
  z-index: -1;
}
.hero-lede {
  font-size: 1.08rem;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px dashed rgba(46, 31, 20, 0.15);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item .trust-num {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--brown);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.trust-item .trust-label {
  font-size: 0.74rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Hero visual */
.hero-right { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
}
.hero-disc {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-light) 0%, var(--gold) 40%, var(--rust) 100%);
  box-shadow:
    inset -20px -30px 60px rgba(143, 62, 27, 0.4),
    inset 20px 20px 40px rgba(255, 240, 220, 0.3),
    0 30px 80px rgba(181, 83, 42, 0.25);
  animation: floatY 6s ease-in-out infinite;
}
.hero-disc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.6;
}
.hero-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(7rem, 20vw, 11rem);
  filter: drop-shadow(0 20px 30px rgba(46, 31, 20, 0.25));
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.hero-float {
  position: absolute;
  font-size: 2.4rem;
  background: var(--paper);
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--beige);
  z-index: 3;
}
.hero-float-1 { top: 4%; right: 6%; animation: floatY 5s ease-in-out infinite; transform: rotate(-8deg); }
.hero-float-2 { bottom: 20%; left: -4%; animation: floatY 7s ease-in-out infinite 0.5s; transform: rotate(6deg); }
.hero-float-3 { bottom: 2%; right: 14%; animation: floatY 6s ease-in-out infinite 1s; transform: rotate(-4deg); }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-float-1 { animation-name: floatYRot1; }
.hero-float-2 { animation-name: floatYRot2; }
.hero-float-3 { animation-name: floatYRot3; }
@keyframes floatYRot1 {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-14px) rotate(-10deg); }
}
@keyframes floatYRot2 {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-16px) rotate(9deg); }
}
@keyframes floatYRot3 {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

.hero-badge-card {
  position: absolute;
  bottom: -4%;
  left: -6%;
  background: var(--paper);
  border-radius: 18px;
  padding: 12px 16px 12px 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--beige);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
  animation: floatY 8s ease-in-out infinite 1.5s;
}
.hero-badge-card .pulse {
  position: relative;
  width: 10px;
  height: 10px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge-card .pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: 0.4;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.hero-badge-card strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  color: var(--brown);
  line-height: 1.1;
}
.hero-badge-card small {
  font-size: 0.7rem;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  color: var(--paper);
  box-shadow: 0 6px 20px rgba(46, 31, 20, 0.2);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--rust) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(181, 83, 42, 0.35);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--rust) 100%);
  color: var(--paper);
  box-shadow: 0 6px 20px rgba(200, 147, 95, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 147, 95, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--brown);
  border: 1.5px solid var(--brown);
}
.btn-outline:hover {
  background: var(--brown);
  color: var(--paper);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover {
  background: #1EB955;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}
.btn-ghost {
  background: none;
  color: var(--text-mid);
  border: 1.5px solid var(--beige);
}
.btn-ghost:hover { background: var(--paper); border-color: var(--brown); color: var(--brown); }
.btn-danger { background: #DC3545; color: white; }
.btn-danger:hover { background: #C82333; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

/* === SECTIONS === */
.section { padding: 88px 0; position: relative; }
.section-paper { background: var(--paper); }
.section-brown {
  background: linear-gradient(160deg, var(--brown) 0%, #1A0F08 100%);
  color: var(--paper);
}
.section-title { text-align: center; margin-bottom: 52px; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-title .eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 14px;
  line-height: 1.15;
}
.section-title h2 em { color: var(--rust); font-style: italic; }
.section-title p { color: var(--text-mid); font-size: 1.02rem; font-weight: 400; line-height: 1.7; }
.section-brown .section-title h2 { color: var(--paper); }
.section-brown .section-title .eyebrow { color: var(--gold-light); }
.section-brown .section-title p { color: rgba(255, 253, 248, 0.7); }

/* === BENTO CATEGORY GRID === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 16px;
}
.bento-card {
  border-radius: var(--radius-lg);
  padding: 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-xs);
  border: 1px solid transparent;
}
.bento-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-card:nth-child(5) { grid-column: span 2; }

.bento-card .bento-emoji {
  position: absolute;
  top: 20px;
  right: 18px;
  font-size: 2.8rem;
  filter: drop-shadow(0 8px 16px rgba(46, 31, 20, 0.2));
  transition: transform 0.5s var(--ease-out);
  z-index: 2;
}
.bento-card:hover .bento-emoji { transform: scale(1.15) rotate(-8deg); }
.bento-card:nth-child(1) .bento-emoji { font-size: 5.4rem; }
.bento-card:nth-child(5) .bento-emoji { font-size: 3.6rem; }

.bento-card h3 {
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 4px;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}
.bento-card:nth-child(1) h3 { font-size: 2rem; }
.bento-card:nth-child(5) h3 { font-size: 1.5rem; }
.bento-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.bento-card .bento-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  background: var(--brown);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 3;
}
.bento-card:hover .bento-arrow { opacity: 1; transform: translateY(0); }
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-card:hover::after { opacity: 1; }

.bento-card.bento-1 { background: linear-gradient(135deg, #F7DAB0 0%, #E8B980 100%); }
.bento-card.bento-2 { background: linear-gradient(135deg, #F1E4C8 0%, #DEC89E 100%); }
.bento-card.bento-3 { background: linear-gradient(135deg, #EBD4C0 0%, #D4B092 100%); }
.bento-card.bento-4 { background: linear-gradient(135deg, #E8C6A8 0%, #C89872 100%); }
.bento-card.bento-5 { background: linear-gradient(135deg, #F5D9C0 0%, #E2B390 100%); }
.bento-card.bento-6 { background: linear-gradient(135deg, #EED9B8 0%, #D6B684 100%); }
.bento-card.bento-7 { background: linear-gradient(135deg, #F3E1C2 0%, #D9BE8E 100%); }
.bento-card.bento-8 { background: linear-gradient(135deg, #E8D0B2 0%, #CAA77A 100%); }

/* === VALUE GRID === */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--paper);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.value-card:hover::before { transform: scaleX(1); }
.value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.value-card h3 { font-size: 1.1rem; color: var(--brown); margin-bottom: 8px; line-height: 1.2; }
.value-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.65; }

/* === STORY BAND === */
.story-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse at 30% 30%, var(--gold-light), var(--gold) 40%, var(--rust) 90%);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.story-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.15 0 0 0 0 0.08 0 0 0 0 0.04 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.story-visual .story-emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10rem;
  filter: drop-shadow(0 20px 40px rgba(46, 31, 20, 0.3));
}
.story-visual .story-stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--paper);
  padding: 12px 18px;
  border-radius: 100px;
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  color: var(--brown);
  box-shadow: var(--shadow);
  letter-spacing: -0.01em;
}
.story-content .eyebrow {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.story-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 22px;
}
.story-content h2 em { color: var(--rust); font-style: italic; }
.story-content p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.story-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px dashed rgba(46, 31, 20, 0.15);
}
.story-signature .sig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.story-signature .sig-name {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.1;
}
.story-signature .sig-role {
  font-size: 0.76rem;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* === TESTIMONIALS === */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--beige);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: -14px;
  left: 22px;
  font-family: 'Fraunces', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--butter); margin-bottom: 14px; font-size: 0.95rem; letter-spacing: 2px; }
.testi-text {
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  color: var(--brown);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 400;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--brown);
  font-size: 0.92rem;
}
.testi-author-info strong { display: block; font-size: 0.88rem; color: var(--brown); }
.testi-author-info small { font-size: 0.74rem; color: var(--text-light); }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--brown) 0%, #1A0F08 100%);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 300px at 20% 20%, rgba(200, 147, 95, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 500px 400px at 80% 80%, rgba(181, 83, 42, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .cta-eyebrow {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}
.cta-band h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-band h2 em { color: var(--gold-light); font-style: italic; }
.cta-band p {
  color: rgba(255, 253, 248, 0.75);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
  position: relative;
}
.cta-band .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* === INSTAGRAM BAND === */
.ig-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.ig-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
  background: linear-gradient(135deg, var(--beige), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 31, 20, 0);
  transition: background var(--transition);
}
.ig-tile:hover { transform: scale(1.03); z-index: 2; }
.ig-tile:hover::after { background: rgba(46, 31, 20, 0.2); }

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid rgba(46, 31, 20, 0.05);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.product-card .img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--beige-light), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.product-card:hover .img img { transform: scale(1.1); }
.product-card .img .no-img { font-size: 4rem; opacity: 0.3; }

.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-badge.badge-featured { background: rgba(46, 31, 20, 0.88); color: var(--butter); }
.product-badge.badge-fresh { background: rgba(138, 154, 91, 0.92); color: var(--paper); }
.product-badge.badge-new { background: rgba(181, 83, 42, 0.92); color: var(--paper); }

.product-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-mid);
  border: none;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transform: translateY(-4px);
  transition: all var(--transition);
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-fav:hover { color: var(--rust); background: var(--paper); }

.product-card .info { padding: 22px; }
.product-card .info .cat-tag {
  font-size: 0.7rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.product-card .info h3 {
  font-size: 1.18rem;
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.25;
}
.product-card .info p {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}
.product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed rgba(46, 31, 20, 0.1);
}
.product-card .info .price-stack { display: flex; flex-direction: column; }
.product-card .info .price {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-card .info .price-text { font-size: 0.76rem; color: var(--text-light); margin-top: 4px; }
.product-card .info .price-unit { font-size: 0.76rem; color: var(--text-light); margin-top: 4px; letter-spacing: 0.04em; }

.product-quick {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--paper);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.product-quick:hover { background: var(--rust); transform: scale(1.08) rotate(8deg); }

/* === PRODUCT DETAIL === */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 44px 0; }
.product-detail .gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-md);
}
.product-detail .gallery > img { width: 100%; height: 480px; object-fit: contain; display: block; background: var(--beige-light); }
.product-detail .gallery .no-img-big {
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--beige-light), var(--beige));
  font-size: 6rem;
  opacity: 0.3;
}
.gallery-main-wrap {
  position: relative;
  overflow: hidden;
  background: var(--beige-light);
  height: 480px;
}
.gallery-main-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  color: var(--brown);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(46, 31, 20, 0.12);
  z-index: 2;
}
.gallery-arrow:hover { background: var(--paper); transform: translateY(-50%) scale(1.08); }
.gallery-prev { left: 14px; }
.gallery-next { right: 14px; }
.gallery-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.gallery-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 253, 248, 0.5); cursor: pointer; transition: all var(--transition); }
.gallery-dot.active { background: var(--paper); transform: scale(1.4); }
.gallery-thumbs { display: flex; gap: 6px; padding: 10px; overflow-x: auto; }
.gallery-thumb {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: all var(--transition);
  flex-shrink: 0;
}
.gallery-thumb:hover { opacity: 0.85; }
.gallery-thumb.active { border-color: var(--gold); opacity: 1; }

.detail-info .breadcrumb { font-size: 0.82rem; color: var(--text-light); margin-bottom: 10px; }
.detail-info .breadcrumb a { color: var(--gold-dark); cursor: pointer; transition: color var(--transition); }
.detail-info .breadcrumb a:hover { color: var(--rust); }
.detail-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.detail-info .cat-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.detail-highlights {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}
.detail-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--paper);
  border: 1px solid var(--beige);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--brown-mid);
  font-weight: 500;
}
.detail-highlight .h-ico { font-size: 0.95rem; }

.detail-info .price-box {
  background: linear-gradient(135deg, var(--paper), var(--cream));
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 0 22px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.detail-info .price-box .price {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -0.02em;
}
.detail-info .price-box .price-sub { font-size: 0.86rem; color: var(--text-light); }
.detail-info .description {
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 26px;
  white-space: pre-line;
  font-size: 0.95rem;
  padding: 20px 22px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.detail-info .description-label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light);
  margin-bottom: 8px;
}
.add-to-cart-box {
  margin-bottom: 20px;
  padding: 20px 22px;
  background: var(--paper);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
}
.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--beige);
  border-radius: 100px;
  overflow: hidden;
  background: var(--cream);
}
.qty-control button {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--brown);
  transition: background var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.qty-control button:hover { background: var(--beige); }
.qty-control input {
  width: 54px;
  text-align: center;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  font-family: 'DM Sans', sans-serif;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-unit-label { font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.detail-info .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* === FILTER TABS === */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-tabs .tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--beige);
  background: var(--paper);
  color: var(--text-mid);
  transition: all var(--transition);
}
.filter-tabs .tab:hover { border-color: var(--gold-light); color: var(--brown); transform: translateY(-1px); }
.filter-tabs .tab.active {
  background: var(--brown);
  color: var(--paper);
  border-color: var(--brown);
  box-shadow: 0 6px 18px rgba(46, 31, 20, 0.18);
}

/* === PAGE HEADER === */
.page-header {
  background: var(--paper);
  padding: 28px 0;
  border-bottom: 1px solid var(--beige);
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 200px at 90% 50%, rgba(200, 147, 95, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-header h1 {
  font-size: 1.7rem;
  color: var(--brown);
  letter-spacing: -0.02em;
  position: relative;
}
.page-header .breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
  position: relative;
}
.page-header .breadcrumb a { color: var(--gold-dark); cursor: pointer; transition: color var(--transition); }
.page-header .breadcrumb a:hover { color: var(--rust); }

/* === ABOUT === */
.about-section { background: var(--paper); padding: 88px 0; }
.about-content { max-width: 680px; margin: 0 auto; text-align: center; }
.about-content p { color: var(--text-mid); line-height: 1.9; font-size: 1.05rem; white-space: pre-line; }
.contact-info { margin-top: 36px; }
.contact-info p { margin-bottom: 8px; }
.contact-info a { color: var(--gold-dark); transition: color var(--transition); }
.contact-info a:hover { color: var(--rust); }

/* === FOOTER === */
.footer {
  background: linear-gradient(160deg, var(--brown) 0%, #120A04 100%);
  color: rgba(255, 253, 248, 0.78);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 20% 20%, rgba(200, 147, 95, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 44px;
  position: relative;
}
.footer-brand .brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand .brand-row img { width: 56px; border-radius: 12px; }
.footer-brand .brand-row h3 { color: var(--paper); font-size: 1.3rem; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0; }
.footer-brand .brand-row small { font-size: 0.72rem; color: var(--gold-light); letter-spacing: 0.18em; text-transform: uppercase; }
.footer h3 { color: var(--paper); margin-bottom: 18px; font-size: 1.02rem; letter-spacing: -0.01em; }
.footer p, .footer a { font-size: 0.88rem; line-height: 2; color: rgba(255, 253, 248, 0.6); }
.footer a { transition: color var(--transition); }
.footer a:hover { color: var(--gold-light); }
.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  line-height: 1;
}
.footer-socials a:hover { background: var(--gold); color: var(--brown); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 253, 248, 0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.55;
  position: relative;
}

/* === CART ICON === */
.cart-icon {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0 !important;
  border-radius: 50% !important;
}
.cart-badge {
  position: absolute;
  top: 0;
  right: -2px;
  min-width: 18px;
  height: 18px;
  background: var(--rust);
  color: white;
  font-size: 0.66rem;
  font-weight: 700;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(181, 83, 42, 0.4);
}

/* === CART PAGE === */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(46, 31, 20, 0.04);
  transition: all var(--transition);
}
.cart-item:hover { box-shadow: var(--shadow); border-color: var(--gold-light); }
.cart-item-img { width: 76px; height: 76px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--beige-light); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; opacity: 0.3; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h3 { font-size: 1.02rem; color: var(--brown); margin-bottom: 2px; }
.cart-item-info h3:hover { color: var(--rust); }
.cart-item-price { font-size: 0.86rem; color: var(--text-light); }
.cart-item-qty { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--beige); border-radius: 100px; overflow: hidden; background: var(--cream); }
.cart-item-qty button { width: 32px; height: 32px; border: none; background: none; font-size: 1rem; cursor: pointer; color: var(--brown); transition: background var(--transition); }
.cart-item-qty button:hover { background: var(--beige); }
.cart-item-qty button:disabled { opacity: 0.3; cursor: default; }
.cart-item-qty button:disabled:hover { background: none; }
.cart-item-qty span { width: 32px; text-align: center; font-size: 0.9rem; font-weight: 600; }
.cart-item-unit-label { font-size: 0.75rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; min-width: 36px; }
.cart-item-total { font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--brown); min-width: 90px; text-align: right; letter-spacing: -0.02em; }
.cart-item-remove { background: none; border: none; color: var(--text-light); cursor: pointer; padding: 8px; border-radius: 10px; transition: all var(--transition); flex-shrink: 0; }
.cart-item-remove:hover { color: #DC3545; background: #FEE; }

.cart-summary {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(46, 31, 20, 0.04);
  position: sticky;
  top: 100px;
}
.cart-summary h3 { font-size: 1.15rem; color: var(--brown); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--beige); }
.cart-summary-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-mid); }
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  padding-top: 16px;
  border-top: 1.5px solid var(--beige);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
  font-size: 28px;
  color: white;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.5;
  animation: pulseRing 2.2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5); }

/* === EMPTY STATE === */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-light); }
.empty-state .icon { font-size: 4rem; margin-bottom: 18px; opacity: 0.45; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s var(--ease-out) forwards; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.fade-in { animation: fadeIn 0.6s ease-out forwards; }

.product-grid .product-card:nth-child(1) { animation-delay: 0s; }
.product-grid .product-card:nth-child(2) { animation-delay: 0.08s; }
.product-grid .product-card:nth-child(3) { animation-delay: 0.16s; }
.product-grid .product-card:nth-child(4) { animation-delay: 0.24s; }
.product-grid .product-card:nth-child(5) { animation-delay: 0.32s; }
.product-grid .product-card:nth-child(6) { animation-delay: 0.4s; }

.bento-grid .bento-card:nth-child(1) { animation-delay: 0s; }
.bento-grid .bento-card:nth-child(2) { animation-delay: 0.06s; }
.bento-grid .bento-card:nth-child(3) { animation-delay: 0.12s; }
.bento-grid .bento-card:nth-child(4) { animation-delay: 0.18s; }
.bento-grid .bento-card:nth-child(5) { animation-delay: 0.24s; }
.bento-grid .bento-card:nth-child(6) { animation-delay: 0.3s; }

.value-grid .value-card:nth-child(1) { animation-delay: 0s; }
.value-grid .value-card:nth-child(2) { animation-delay: 0.08s; }
.value-grid .value-card:nth-child(3) { animation-delay: 0.16s; }
.value-grid .value-card:nth-child(4) { animation-delay: 0.24s; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-container { grid-template-columns: 1fr; gap: 56px; }
  .hero-right { min-height: 360px; }
  .hero-visual { max-width: 340px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .bento-card:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .bento-card:nth-child(5) { grid-column: span 2; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .story-band { grid-template-columns: 1fr; gap: 36px; }
  .story-visual { aspect-ratio: 16/10; max-width: 560px; margin: 0 auto; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ig-band { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .logo-text { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 12px;
    right: 12px;
    background: var(--paper);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 101;
    border-radius: var(--radius);
    border: 1px solid var(--beige);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 18px; border-radius: var(--radius-sm); }
  .announce-bar { font-size: 0.72rem; padding: 8px 12px; }
  .announce-bar .dot { display: none; }
  .hero { padding: 32px 0 56px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }
  .hero-trust { gap: 20px; }
  .section { padding: 56px 0; }
  .section-title { margin-bottom: 36px; }
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-detail .gallery > img, .product-detail .gallery .no-img-big { height: 340px; }
  .gallery-main-wrap { height: 340px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; }
  .bento-card, .bento-card:nth-child(1), .bento-card:nth-child(5) { grid-column: span 1; grid-row: span 1; padding: 18px; }
  .bento-card:nth-child(1) .bento-emoji, .bento-card:nth-child(5) .bento-emoji { font-size: 3rem; }
  .bento-card:nth-child(1) h3, .bento-card:nth-child(5) h3 { font-size: 1.1rem; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
  .value-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 22px; border-radius: var(--radius-lg); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item-total { min-width: 60px; font-size: 0.92rem; }
  .cart-summary { position: static; }
  .ig-band { grid-template-columns: repeat(3, 1fr); }
  .wa-float { width: 56px; height: 56px; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-float { width: 56px; height: 56px; font-size: 1.8rem; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
