/* --- 12-10: High-Energy / Street Commerce — Fumot 12K --- */
:root {
  --bg: #1c1c1e;
  --bg-card: #252527;
  --text: #f0efe9;
  --text-muted: #9d9d9f;
  --accent: #ff6b2c;
  --accent-glow: rgba(255, 107, 44, 0.35);
  --font-display: "Archivo Black", sans-serif;
  --font-body: "Manrope", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.55; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1.25rem 5vw;
  background: rgba(28, 28, 30, 0.95);
  border-bottom: 1px solid rgba(255, 107, 44, 0.2);
  display: flex; align-items: center;
}
.site-header nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.logo { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.06em; color: var(--text); text-decoration: none; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.cta-nav { color: var(--accent) !important; }

/* ── Burger button ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 100%; height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero — diagonal background cut ── */
.hero {
  min-height: 100vh;
  padding: calc(4rem + 6vh) 5vw 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 44, 0.12) 0%, transparent 55%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background: rgba(255, 107, 44, 0.04);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }

.hero-badge {
  display: inline-block; margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.15em;
  color: var(--bg); background: var(--accent);
  animation: fadeUp 0.5s ease both;
}
.hero-kicker {
  font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.5s ease 0.05s both;
}
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.0; letter-spacing: -0.01em; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease 0.1s both;
}

.benefits {
  list-style: none; margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  animation: fadeUp 0.6s ease 0.15s both;
}
.benefits li { font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); }
.check { color: var(--accent); font-style: normal; margin-right: 0.4rem; }

.hero-actions {
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-product {
  width: 100%; max-width: 380px; height: auto;
  filter: drop-shadow(0 20px 50px rgba(255, 107, 44, 0.35));
  animation: fadeUp 0.8s ease 0.1s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ── */
.cta-button {
  display: inline-block; padding: 1rem 1.75rem;
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.06em;
  color: #fff; background: var(--accent);
  text-decoration: none; border: none; cursor: pointer;
  transition: box-shadow 0.25s, transform 0.2s;
}
.cta-button:hover { box-shadow: 0 0 24px var(--accent-glow); transform: translateY(-2px); }
.cta-secondary { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.cta-secondary:hover { color: var(--text); }

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 44, 0); }
  50%       { box-shadow: 0 0 18px 4px rgba(255, 107, 44, 0.4); }
}
.pulse { animation: pulseGlow 2.5s ease-in-out infinite; }
.pulse:hover { animation: none; }

/* ── Specs pills ── */
.specs {
  padding: 2.5rem 5vw;
  border-top: 1px solid rgba(255, 107, 44, 0.15);
  border-bottom: 1px solid rgba(255, 107, 44, 0.15);
}
.specs-inner { max-width: 960px; margin: 0 auto; }
.specs-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.pill {
  padding: 0.5rem 1rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text); background: var(--bg-card);
  border: 1px solid rgba(255, 107, 44, 0.25);
  transition: border-color 0.2s, background 0.2s;
}
.pill:hover { border-color: var(--accent); background: rgba(255, 107, 44, 0.06); }

/* ── Section label ── */
.section-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.75rem; display: block; }

/* ── Lifestyle Banner ── */
.lifestyle-banner {
  position: relative;
  height: 70vh;
  min-height: 400px;
  overflow: hidden;
  background: url('../10/hf_20260304_204610_656ae49e-14c7-4757-b61f-f9b5913a72ac.png') center / cover no-repeat;
}
.lifestyle-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 28, 30, 0.82) 0%, rgba(28, 28, 30, 0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
}
.lifestyle-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  color: var(--text);
}
.lifestyle-overlay .cta-button { align-self: flex-start; }

/* ── Deals ── */
.deals { padding: 4rem 5vw; }
.deals-inner { max-width: 1000px; margin: 0 auto; }
.deals-heading { font-family: var(--font-display); font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin-bottom: 2rem; }
.deals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.deal-card {
  background: var(--bg-card); padding: 1.75rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.35rem; text-align: center;
  position: relative; overflow: hidden;
  transition: transform 0.25s;
}
.deal-card:hover { transform: translateY(-3px); }

.deal-ribbon {
  position: absolute; top: 14px; right: -24px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.1em;
  padding: 0.3rem 1.75rem;
  transform: rotate(35deg);
}
.deal-hero-card {
  background: rgba(255, 107, 44, 0.1);
  border: 1px solid rgba(255, 107, 44, 0.4);
  box-shadow: 0 0 30px rgba(255, 107, 44, 0.12);
}
.deal-card-custom {
  background: var(--bg-card);
  border: 1px dashed rgba(255,255,255,0.15);
  justify-content: center;
}
.deal-qty { font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.1em; color: var(--text-muted); }
.deal-price { font-family: var(--font-display); font-size: 1.75rem; color: var(--accent); }
.deal-price-big { font-size: 2.25rem; }
.deal-unit { font-size: 0.75rem; color: var(--text-muted); }
.deal-total { font-size: 0.8rem; color: var(--text); font-weight: 600; margin-top: 0.25rem; }
.deal-save { font-size: 0.8rem; color: var(--accent); font-weight: 700; }
.deal-whatsapp {
  margin-top: 0.75rem;
  display: inline-block; padding: 0.75rem 1rem;
  background: #25d366; color: #fff;
  font-weight: 700; font-size: 0.85rem; text-decoration: none;
  transition: background 0.2s;
}
.deal-whatsapp:hover { background: #1da851; }

/* ── Aromen Section ── */
.aromen { padding: 5rem 5vw; }
.aromen-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.aromen-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.aromen-body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 420px;
}
.aromen-visual img {
  width: 100%;
  display: block;
  border-radius: 2px;
  transition: transform 0.5s ease;
}
.aromen-visual img:hover { transform: scale(1.02); }

/* ── Gallery ── */
.gallery { padding: 0; }
.gallery-row { display: grid; grid-template-columns: repeat(3, 1fr); }
.gallery-row img {
  width: 100%; height: 340px; object-fit: cover; display: block;
  transition: transform 0.4s, filter 0.3s;
  filter: brightness(0.88);
}
.gallery-row img:hover { transform: scale(1.03); filter: brightness(1); }

/* ── Collection Banner ── */
.collection-banner {
  position: relative;
  overflow: hidden;
}
.collection-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.75);
  transition: transform 0.6s ease;
}
.collection-banner:hover .collection-img { transform: scale(1.02); }
.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 5vw;
  background: linear-gradient(to top, rgba(28, 28, 30, 0.9) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.collection-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.06em;
  color: var(--text);
}
.collection-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ── CTA section ── */
.cta-section {
  padding: 5rem 5vw 6rem;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 44, 0.08));
  clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
  margin-top: -3rem;
  padding-top: 7rem;
}
.cta-urgency { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.cta-heading { font-family: var(--font-display); font-size: clamp(2.5rem, 7vw, 4rem); margin-bottom: 2rem; }
.cta-button-large { padding: 1.25rem 3rem; font-size: 1rem; }
.cta-note { margin-top: 1.25rem; font-size: 0.875rem; color: var(--text-muted); }

/* ── Reveal ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Footer ── */
.site-footer { padding: 1.5rem 5vw; text-align: center; font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid rgba(255,255,255,0.07); }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .aromen-inner { gap: 2.5rem; }
}
@media (max-width: 900px) {
  .deals-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  /* Nav */
  .nav-burger { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(280px, 80vw);
    background: rgba(28, 28, 30, 0.98);
    border-left: 1px solid rgba(255, 107, 44, 0.2);
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 300;
  }
  .nav-links.nav-open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--text);
  }
  .nav-links a:last-child { border-bottom: none; }

  /* Hero */
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero::after { display: none; }
  .hero-visual { order: -1; }
  .hero-product { max-width: 260px; }
  .benefits { align-items: center; }
  .hero-actions { justify-content: center; }

  /* Sections */
  .lifestyle-banner { height: 55vh; }
  .lifestyle-overlay { padding: 0 6vw; }
  .aromen-inner { grid-template-columns: 1fr; gap: 2rem; }
  .aromen-visual { order: -1; }
  .gallery-row { grid-template-columns: 1fr; }
  .gallery-row img { height: 260px; }
  .collection-img { height: 360px; }
  .cta-section { clip-path: none; margin-top: 0; padding-top: 4rem; }
}
