/* ============================================================
   VELORIA COFFEE — premium dark-roast design system
   ============================================================ */

:root {
  /* surfaces */
  --bg-0: #160e09;
  --bg-1: #1e150e;
  --bg-2: #271a11;
  --bg-3: #33231730;

  /* warm tones */
  --cream: #f3e9d6;
  --cream-soft: #ddccae;
  --caramel: #c98a4b;
  --caramel-bright: #e3a86a;
  --gold: #d9b16b;

  /* accent — light turquoise */
  --teal: #6fc4ba;
  --teal-bright: #8ad8ce;
  --teal-deep: #4ba39a;

  /* text */
  --text: #f0e6d4;
  --text-dim: rgba(240, 230, 212, 0.60);
  --text-faint: rgba(240, 230, 212, 0.34);

  /* glass */
  --glass: rgba(54, 38, 26, 0.42);
  --glass-strong: rgba(42, 29, 20, 0.66);
  --glass-border: rgba(243, 233, 214, 0.12);
  --glass-hi: rgba(255, 248, 235, 0.06);

  /* type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --shadow-deep: 0 40px 80px -30px rgba(0, 0, 0, 0.85);
  --shadow-float: 0 60px 90px -40px rgba(0, 0, 0, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ---------- ambient background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(1200px 900px at 78% -5%, rgba(201, 138, 75, 0.22), transparent 60%),
    radial-gradient(900px 700px at 5% 30%, rgba(111, 196, 186, 0.07), transparent 55%),
    radial-gradient(1000px 1000px at 50% 110%, rgba(217, 177, 107, 0.10), transparent 60%),
    linear-gradient(175deg, #1e150e 0%, #160e09 40%, #120b07 100%);
}
.ambient .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.ambient .b1 { width: 540px; height: 540px; top: -120px; right: -80px; background: radial-gradient(circle, rgba(227,168,106,0.5), transparent 70%); }
.ambient .b2 { width: 460px; height: 460px; top: 38%; left: -180px; background: radial-gradient(circle, rgba(75,163,154,0.35), transparent 70%); }
.ambient .b3 { width: 620px; height: 620px; bottom: -200px; right: -120px; background: radial-gradient(circle, rgba(201,138,75,0.30), transparent 70%); }

/* faint smoke layer */
.ambient .smoke {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.05), transparent),
    radial-gradient(2px 2px at 70% 60%, rgba(255,255,255,0.04), transparent),
    radial-gradient(1px 1px at 45% 80%, rgba(255,255,255,0.04), transparent);
  background-size: 400px 400px;
  opacity: 0.6;
}

/* film grain */
.grain {
  position: fixed;
  inset: -50%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { width: min(1240px, 92vw); margin: 0 auto; position: relative; z-index: 2; }
main { position: relative; z-index: 2; }
section { position: relative; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--teal-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--teal);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; letter-spacing: -0.02em; }

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.7rem);
  text-align: center;
  margin: 0.7rem auto 0;
}
.section-head { text-align: center; margin-bottom: 3.5rem; display: grid; justify-items: center; gap: 0.3rem; }
.section-head p { color: var(--text-dim); max-width: 46ch; margin-top: 0.8rem; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  padding: 1.05rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: #07201d;
  box-shadow: 0 14px 34px -12px rgba(111,196,186,0.7), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 22px 44px -14px rgba(111,196,186,0.85), inset 0 1px 0 rgba(255,255,255,0.5); }
.btn-ghost {
  background: var(--glass);
  color: var(--cream);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-ghost:hover { transform: translateY(-3px); background: rgba(74, 52, 36, 0.6); border-color: rgba(243,233,214,0.25); }
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.3rem 0;
  transition: padding 0.4s var(--ease), background 0.4s;
}
.nav.scrolled { padding: 0.7rem 0; background: rgba(22,14,9,0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 10px 30px -20px rgba(0,0,0,0.8); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--cream); }
.logo .mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--caramel-bright), var(--caramel) 60%, #7a4d28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35), 0 8px 20px -8px rgba(0,0,0,0.6);
  font-family: var(--font-display); font-weight: 800; color: #2a1709; font-size: 1.2rem;
}
.logo .word { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: 0.14em; }

.nav-menu {
  display: flex; align-items: center; gap: 0.3rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  padding: 0.4rem;
}
.nav-menu a {
  color: var(--text-dim); text-decoration: none; font-weight: 600; font-size: 0.92rem;
  padding: 0.55rem 1.1rem; border-radius: 100px; transition: color 0.25s, background 0.25s;
}
.nav-menu a:hover { color: var(--cream); }
.nav-menu a.active { color: var(--cream); background: rgba(243,233,214,0.10); }

.nav-right { display: flex; align-items: center; gap: 0.9rem; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--cream); cursor: pointer; position: relative;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.3s, background 0.3s;
}
.icon-btn:hover { transform: translateY(-2px); background: rgba(74,52,36,0.6); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--teal-bright); color: #07201d;
  border-radius: 100px; font-size: 0.7rem; font-weight: 800;
  display: grid; place-items: center;
  transform: scale(0); transition: transform 0.4s var(--ease);
}
.cart-count.show { transform: scale(1); }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: 13rem 0 6rem; min-height: 100vh; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: center; }

.hero-bigword {
  position: absolute;
  top: 46%; left: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-weight: 800;
  font-size: 26vw; line-height: 0.8;
  color: rgba(243,233,214,0.025);
  letter-spacing: -0.04em;
  z-index: 0; pointer-events: none; user-select: none;
  white-space: nowrap;
}

.hero-copy { position: relative; z-index: 3; }
.hero h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.7rem);
  margin: 1.4rem 0 1.6rem;
}
.hero h1 .accent { color: var(--caramel-bright); }
.hero-copy p { color: var(--text-dim); font-size: 1.12rem; max-width: 44ch; margin-bottom: 2.4rem; }
.hero-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 3.2rem; }
.hero-stats .stat .num { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--cream); }
.hero-stats .stat .lbl { font-size: 0.82rem; color: var(--text-dim); }

/* hero visual stage */
.hero-stage { position: relative; height: 640px; z-index: 2; }
.hero-glow {
  position: absolute; top: 50%; left: 52%; transform: translate(-50%,-50%);
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,168,106,0.45), rgba(201,138,75,0.12) 45%, transparent 70%);
  filter: blur(10px);
}
.float-cup {
  position: absolute; filter: drop-shadow(0 50px 60px rgba(0,0,0,0.6));
  will-change: transform;
}
.float-cup.main { width: 340px; height: 480px; top: 90px; left: calc(46% - 170px); z-index: 3; }
.float-cup .inner { width: 100%; height: 100%; }
.float-cup.side { width: 200px; height: 300px; top: 210px; left: 6%; z-index: 2; }
.hero-splash { position: absolute; width: 360px; height: 300px; top: -10px; left: 38%; z-index: 4; pointer-events: none; }

.bean {
  position: absolute;
  background: radial-gradient(circle at 35% 30%, #6e4426, #3a2212 70%);
  border-radius: 50% 50% 48% 52% / 60% 60% 40% 40%;
  box-shadow: inset -2px -3px 6px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,0.4);
  will-change: transform;
}
.bean::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 60%; height: 2px; background: rgba(20,10,5,0.7);
  border-radius: 50%; transform: rotate(8deg);
  box-shadow: 0 0 1px rgba(0,0,0,0.6);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products { padding: 5rem 0 7rem; }
.products-bigword {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 800; font-size: 22vw;
  color: rgba(243,233,214,0.022); z-index: 0; pointer-events: none; user-select: none; letter-spacing: -0.03em;
}
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }

.card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  padding: 6.6rem 1.6rem 1.8rem;
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.4s;
  margin-top: 92px;
}
.card:hover { transform: translateY(-12px); border-color: rgba(243,233,214,0.22); box-shadow: var(--shadow-float), inset 0 1px 0 var(--glass-hi); }
.card .prod-img {
  position: absolute; top: -96px; left: 50%; transform: translateX(-50%);
  width: 168px; height: 224px; filter: drop-shadow(0 30px 30px rgba(0,0,0,0.55));
  transition: transform 0.5s var(--ease);
}
.card:hover .prod-img { transform: translateX(-50%) translateY(-10px) scale(1.04); }
.card .rating {
  position: absolute; top: -10px; right: 18px;
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: rgba(20,12,7,0.7); border: 1px solid var(--glass-border);
  padding: 0.35rem 0.7rem; border-radius: 100px; font-size: 0.82rem; font-weight: 700;
  backdrop-filter: blur(8px);
}
.card .rating .star { color: var(--gold); }
.card h3 { font-size: 1.42rem; margin-bottom: 0.45rem; text-align: center; }
.card .desc { color: var(--text-dim); font-size: 0.88rem; text-align: center; min-height: 3.4em; }
.card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1.4rem; }
.card .price { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.card .price small { font-size: 0.9rem; color: var(--text-dim); font-weight: 500; }
.add-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--teal-bright), var(--teal-deep));
  color: #07201d; display: grid; place-items: center;
  box-shadow: 0 12px 26px -10px rgba(111,196,186,0.7), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.3s var(--ease);
}
.add-btn:hover { transform: scale(1.12) rotate(90deg); }
.add-btn svg { width: 22px; height: 22px; }
.add-btn.added { background: linear-gradient(135deg, #b6e3a0, #6aa14f); }

.products-foot { text-align: center; margin-top: 3.4rem; }
.link-more { color: var(--teal-bright); font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(138,216,206,0.4); padding-bottom: 2px; transition: color 0.3s; }
.link-more:hover { color: var(--cream); }

/* ============================================================
   UNIVERS — values around central cup
   ============================================================ */
.univers { padding: 6rem 0 7rem; }
.univers-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem 3.5rem;
  align-items: center;
  margin-top: 1rem;
}
.univers-center { grid-row: span 2; position: relative; display: grid; place-items: center; }
.univers-center .center-glow {
  position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,168,106,0.4), transparent 68%); filter: blur(8px);
}
.univers-cup { position: relative; width: 290px; height: 420px; filter: drop-shadow(0 40px 50px rgba(0,0,0,0.6)); z-index: 2; }
.univers-center .btn { margin-top: 2rem; position: relative; z-index: 3; }

.value {
  position: relative; padding: 0.5rem 0.5rem 0.5rem 0;
}
.value.right { padding-left: 0.5rem; }
.value .num {
  position: absolute; top: -2.2rem; z-index: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 6.5rem;
  color: rgba(227,168,106,0.10); line-height: 1; letter-spacing: -0.04em;
}
.value.left .num { right: 0.2rem; }
.value.right .num { left: -0.4rem; }
.value h3 { font-size: 1.45rem; margin-bottom: 0.7rem; position: relative; z-index: 1; }
.value p { color: var(--text-dim); font-size: 0.94rem; position: relative; z-index: 1; }
.value.left { text-align: right; }

/* ============================================================
   EXPERIENCE
   ============================================================ */
.experience { padding: 4rem 0 6rem; }
.exp-card {
  position: relative;
  border-radius: 36px; overflow: hidden;
  background: var(--glass-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: center;
  min-height: 380px;
}
.exp-copy { padding: 3.5rem clamp(2rem,4vw,4rem); position: relative; z-index: 2; }
.exp-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); margin: 1rem 0 1.2rem; }
.exp-copy p { color: var(--text-dim); max-width: 42ch; margin-bottom: 2rem; }
.exp-visual { position: relative; height: 100%; min-height: 380px; }
.exp-visual .exp-glow { position: absolute; right: -10%; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle, rgba(201,138,75,0.4), transparent 65%); filter: blur(10px); }
.exp-img { position: absolute; inset: 8% 6% 8% 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 5rem 0 7rem; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.t-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 26px; padding: 2.2rem 2rem;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.t-card:hover { transform: translateY(-8px); border-color: rgba(243,233,214,0.2); }
.t-stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 1rem; font-size: 1.05rem; }
.t-quote { color: var(--cream); font-size: 1.02rem; line-height: 1.65; margin-bottom: 1.6rem; }
.t-author { display: flex; align-items: center; gap: 0.9rem; }
.t-author .avatar { width: 52px; height: 52px; flex: 0 0 auto; }
.t-author .name { font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.t-author .role { color: var(--text-dim); font-size: 0.82rem; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { padding: 3rem 0 6rem; }
.nl-card {
  position: relative; overflow: hidden;
  border-radius: 40px; padding: clamp(3rem,6vw,5.5rem) clamp(2rem,5vw,4rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(54,38,26,0.7), rgba(30,20,13,0.7));
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-deep), inset 0 1px 0 var(--glass-hi);
}
.nl-card .nl-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 600px; height: 500px; background: radial-gradient(circle, rgba(111,196,186,0.18), transparent 60%); pointer-events: none; }
.nl-card h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); margin: 1rem auto 1rem; max-width: 18ch; position: relative; }
.nl-card p { color: var(--text-dim); max-width: 46ch; margin: 0 auto 2.4rem; position: relative; }
.nl-form { display: flex; gap: 0.8rem; max-width: 520px; margin: 0 auto; position: relative; flex-wrap: wrap; justify-content: center; }
.nl-form input {
  flex: 1 1 260px; min-width: 0;
  background: rgba(20,12,7,0.6); border: 1px solid var(--glass-border);
  border-radius: 100px; padding: 1.05rem 1.6rem; color: var(--cream); font-family: var(--font-body); font-size: 1rem;
  transition: border-color 0.3s;
}
.nl-form input::placeholder { color: var(--text-faint); }
.nl-form input:focus { outline: none; border-color: var(--teal); }
.nl-msg { margin-top: 1.1rem; font-size: 0.92rem; color: var(--teal-bright); height: 1.2em; position: relative; opacity: 0; transition: opacity 0.4s; }
.nl-msg.show { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 5rem 0 2.5rem; border-top: 1px solid rgba(243,233,214,0.08); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer .logo { margin-bottom: 1.2rem; }
.footer .about { color: var(--text-dim); font-size: 0.92rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-display); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream-soft); margin-bottom: 1.2rem; }
.footer ul { list-style: none; display: grid; gap: 0.7rem; }
.footer ul a { color: var(--text-dim); text-decoration: none; font-size: 0.92rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--teal-bright); }
.footer .info-line { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 0.6rem; display: flex; gap: 0.6rem; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--glass); border: 1px solid var(--glass-border); color: var(--cream); transition: transform 0.3s, background 0.3s; }
.socials a:hover { transform: translateY(-3px); background: var(--teal-deep); color: #07201d; }
.socials svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 2rem; border-top: 1px solid rgba(243,233,214,0.08); color: var(--text-faint); font-size: 0.84rem; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: var(--text-faint); text-decoration: none; }
.footer-bottom a:hover { color: var(--text-dim); }

/* ============================================================
   IMAGE SLOTS — premium placeholder styling
   ============================================================ */
image-slot {
  --slot-bg: rgba(40,27,18,0.5);
  --slot-border: rgba(243,233,214,0.16);
  --slot-fg: var(--text-faint);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .float-cup, .bean { animation: none !important; }
}

/* frozen-timeline fallback (offscreen capture / preview) — show everything */
.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.no-anim .anim-a, .no-anim .anim-b { animation: none !important; }

/* ============================================================
   FLOAT ANIMATIONS
   ============================================================ */
@keyframes floatA { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-22px) rotate(-1.5deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(2deg); } }
@keyframes floatBean { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-30px) rotate(calc(var(--r,0deg) + 25deg)); } }

.anim-a { animation: floatA 7s ease-in-out infinite; }
.anim-b { animation: floatB 6s ease-in-out infinite; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stage { height: 520px; order: -1; }
  .hero-bigword { font-size: 38vw; top: 30%; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1.2rem; }
  .univers-stage { grid-template-columns: 1fr; }
  .univers-center { grid-row: auto; order: -1; margin-bottom: 2rem; }
  .value, .value.left { text-align: left; }
  .value.left .num { right: auto; left: -0.4rem; }
  .exp-card { grid-template-columns: 1fr; }
  .exp-visual { min-height: 280px; order: -1; }
  .t-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  .nav-menu { display: none; position: fixed; top: 80px; left: 4vw; right: 4vw; flex-direction: column; padding: 1rem; border-radius: 24px; background: rgba(22,14,9,0.95); backdrop-filter: blur(20px); }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; }
  .nav-toggle { display: grid; }
  .nav .btn-primary { display: none; }
  .hero { padding: 9rem 0 4rem; }
  .product-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .nl-form { flex-direction: column; }
  .nl-form .btn { width: 100%; justify-content: center; }
}
