/* ============================================
   קוביית הזהב — Golden Cube
   ============================================ */

:root {
  --ink: #170812;
  --ink-2: #24101c;
  --cream: #fff7ee;
  --cream-2: #fdeede;
  --gold: #e0a52c;
  --gold-light: #f6c453;
  --gold-deep: #b07c14;
  --pink: #e82d8b;
  --pink-hot: #ff3d9a;
  --pink-soft: #ffd6e9;
  --grad-gold: linear-gradient(115deg, #f9d976 0%, #e0a52c 45%, #f6c453 100%);
  --grad-pink: linear-gradient(115deg, #ff5eae 0%, #e82d8b 100%);
  --radius: 26px;
  --shadow: 0 18px 50px -18px rgba(23, 8, 18, 0.45);
  --font-display: 'Karantina', cursive;
  --font-body: 'Assistant', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }

::selection { background: var(--pink); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(3.4rem, 9vw, 7rem); }
h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h3 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kicker::before { content: '✦'; color: var(--gold); }

.text-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-pink { color: var(--pink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 34px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s;
  position: relative;
}
.btn:hover { transform: translateY(-3px) rotate(-0.5deg); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--grad-gold);
  color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(224, 165, 44, 0.7);
}
.btn-gold:hover { box-shadow: 0 18px 38px -10px rgba(224, 165, 44, 0.85); }

.btn-pink {
  background: var(--grad-pink);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(232, 45, 139, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255, 247, 238, 0.4);
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-lg { padding: 20px 46px; font-size: 1.2rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(23, 8, 18, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
}
.brand img { width: 52px; filter: drop-shadow(0 4px 10px rgba(246, 196, 83, 0.45)); transition: transform 0.4s; }
.brand:hover img { transform: rotate(-18deg) scale(1.08); }
.brand span em { font-style: normal; color: var(--gold-light); }

.main-nav ul { display: flex; gap: 34px; align-items: center; }
.main-nav a {
  color: var(--cream);
  font-weight: 700;
  font-size: 1.02rem;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 50%;
  height: 3px;
  border-radius: 3px;
  background: var(--grad-pink);
  transition: inset-inline 0.3s;
}
.main-nav a:hover::after, .main-nav a.active::after { inset-inline: 0; }

.nav-cta { margin-inline-start: 10px; }
.nav-cta .btn { padding: 11px 26px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--cream);
  border-radius: 3px;
  margin: 5px auto;
  transition: 0.3s;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1200px 700px at 80% -10%, #3d1230 0%, var(--ink) 55%);
  color: var(--cream);
  padding: 170px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(246, 196, 83, 0.14) 1.5px, transparent 1.5px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, transparent 90%);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, transparent 90%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 90px;
}
.hero-copy .lead {
  font-size: 1.25rem;
  color: rgba(255, 247, 238, 0.82);
  max-width: 46ch;
  margin: 22px 0 30px;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.chip {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  background: rgba(255, 247, 238, 0.08);
  border: 1px solid rgba(246, 196, 83, 0.35);
  color: var(--gold-light);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.price-tag {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--grad-pink);
  color: #fff;
  padding: 14px 26px;
  border-radius: 20px;
  transform: rotate(3deg);
  box-shadow: var(--shadow);
  animation: wiggle 5s ease-in-out infinite;
}
.price-tag .old { font-size: 0.95rem; text-decoration: line-through; opacity: 0.75; }
.price-tag .now { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.price-tag .label { font-size: 0.8rem; font-weight: 800; letter-spacing: 1px; }

@keyframes wiggle {
  0%, 100% { transform: rotate(3deg); }
  50% { transform: rotate(-2deg) translateY(-4px); }
}

.hero-visual { position: relative; }
.hero-visual .main-img {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.65);
  transform: rotate(-2deg);
  border: 4px solid rgba(246, 196, 83, 0.35);
}
.floating-dice {
  position: absolute;
  width: 110px;
  top: -46px;
  inset-inline-start: -30px;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.5));
  animation: float 4.5s ease-in-out infinite;
  z-index: 2;
}
.sticker {
  position: absolute;
  bottom: -24px;
  inset-inline-end: -14px;
  background: var(--grad-gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  padding: 14px 22px;
  border-radius: 18px;
  transform: rotate(-6deg);
  box-shadow: var(--shadow);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--grad-pink);
  color: #fff;
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1deg) scale(1.02);
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: scroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.6rem;
  white-space: nowrap;
}
.marquee-track span::after { content: '✦'; margin-inline-start: 42px; color: var(--gold-light); }

@keyframes scroll {
  to { transform: translateX(50%); }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head p { font-size: 1.15rem; color: rgba(23, 8, 18, 0.7); margin-top: 16px; }

.section-dark {
  background: radial-gradient(900px 500px at 15% 0%, #3d1230 0%, var(--ink) 60%);
  color: var(--cream);
}
.section-dark .section-head p { color: rgba(255, 247, 238, 0.75); }

/* ---------- Feature cards ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 14px 40px -18px rgba(23, 8, 18, 0.18);
  border: 2px solid transparent;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-8px) rotate(-0.6deg);
  border-color: var(--gold-light);
  box-shadow: 0 24px 55px -18px rgba(224, 165, 44, 0.4);
}
.feature-card .num {
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 1;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.feature-card img.icon { width: 92px; margin: 0 auto 18px; border-radius: 50%; }
.feature-card h3 { margin: 10px 0 8px; }
.feature-card p { color: rgba(23, 8, 18, 0.65); font-size: 1rem; }

/* ---------- Occasions ---------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.occasion {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow);
}
.occasion img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.occasion:hover img { transform: scale(1.07); }
.occasion::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23, 8, 18, 0.85));
}
.occasion figcaption {
  position: absolute;
  bottom: 18px;
  inset-inline: 18px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.occasion figcaption::before { content: '✦'; color: var(--gold-light); font-size: 1.2rem; }

/* ---------- Steps (how to play) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: rgba(255, 247, 238, 0.06);
  border: 1px solid rgba(246, 196, 83, 0.25);
  border-radius: var(--radius);
  padding: 36px 26px;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}
.step:hover { transform: translateY(-6px); background: rgba(255, 247, 238, 0.1); }
.step::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  background: var(--grad-pink);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 1.7rem; margin-bottom: 10px; color: var(--gold-light); }
.step p { font-size: 1rem; color: rgba(255, 247, 238, 0.78); }

/* ---------- Story teaser ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.story-grid .img-stack { position: relative; }
.story-grid .img-stack img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-grid .img-stack img.back { transform: rotate(-3deg); }
.story-grid .img-stack img.front {
  position: absolute;
  width: 55%;
  bottom: -40px;
  inset-inline-end: -20px;
  transform: rotate(5deg);
  border: 5px solid #fff;
}
.story-copy p { margin: 18px 0; color: rgba(23, 8, 18, 0.75); font-size: 1.1rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.bubble {
  background: #fff;
  border-radius: 28px;
  border-end-start-radius: 4px;
  padding: 34px;
  box-shadow: 0 14px 40px -18px rgba(23, 8, 18, 0.16);
  position: relative;
  transition: transform 0.3s;
}
.bubble:hover { transform: translateY(-6px) rotate(0.5deg); }
.bubble .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.1rem; margin-bottom: 12px; }
.bubble blockquote { font-size: 1.18rem; font-weight: 600; line-height: 1.55; }
.bubble .who {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--pink);
}
.bubble .who .tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--pink-soft);
  padding: 4px 14px;
  border-radius: 999px;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: radial-gradient(800px 400px at 50% 120%, #4a163a 0%, var(--ink) 70%);
  color: var(--cream);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}
.cta-band .floating-dice { inset-inline-start: 8%; top: 40px; width: 90px; opacity: 0.9; }
.cta-band .floating-dice.d2 { inset-inline-start: auto; inset-inline-end: 8%; top: auto; bottom: 50px; animation-delay: -2s; }
.cta-band p { font-size: 1.2rem; color: rgba(255, 247, 238, 0.8); margin: 18px auto 36px; max-width: 55ch; }

/* ---------- Product page ---------- */
.product-hero {
  padding: 160px 0 90px;
  background: linear-gradient(180deg, var(--cream-2), var(--cream));
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
  position: relative;
}
.gallery-main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery-main .sale-badge {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: var(--grad-pink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  padding: 8px 20px;
  border-radius: 14px;
  transform: rotate(-4deg);
  z-index: 2;
}
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumbs img {
  border-radius: 14px;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}
.gallery-thumbs img:hover { transform: translateY(-3px); }
.gallery-thumbs img.active { border-color: var(--pink); }

.product-info .price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 22px 0;
}
.product-info .price-now { font-family: var(--font-display); font-size: 3.6rem; color: var(--pink); line-height: 1; }
.product-info .price-old { font-size: 1.5rem; text-decoration: line-through; opacity: 0.45; }
.product-info .desc p { margin-bottom: 16px; color: rgba(23, 8, 18, 0.78); }
.stock-note {
  display: flex;
  gap: 10px;
  align-items: center;
  background: #fff;
  border: 2px dashed var(--gold);
  border-radius: 16px;
  padding: 14px 20px;
  font-weight: 700;
  margin: 26px 0;
}
.product-info .includes { margin: 26px 0; }
.product-info .includes li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  font-weight: 600;
}
.product-info .includes li::before { content: '✦'; color: var(--pink); }

/* ---------- Products list ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 40px -18px rgba(23, 8, 18, 0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 26px 60px -18px rgba(23, 8, 18, 0.3); }
.product-card .img-wrap { position: relative; overflow: hidden; }
.product-card .img-wrap img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 0.5s; }
.product-card:hover .img-wrap img { transform: scale(1.05); }
.product-card .badge {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  padding: 6px 18px;
  border-radius: 12px;
  transform: rotate(-3deg);
  z-index: 2;
}
.badge-sale { background: var(--grad-pink); color: #fff; }
.badge-soon { background: var(--grad-gold); color: var(--ink); }
.product-card .card-body { padding: 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-card .card-body .prices { display: flex; align-items: baseline; gap: 12px; margin-top: auto; }
.product-card .price-now { font-family: var(--font-display); font-size: 2.4rem; color: var(--pink); }
.product-card .price-old { text-decoration: line-through; opacity: 0.45; }

/* ---------- Story page ---------- */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.founder-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  box-shadow: 0 14px 40px -18px rgba(23, 8, 18, 0.16);
  border-top: 6px solid var(--pink);
}
.founder-card:nth-child(2) { border-top-color: var(--gold); }
.founder-card .avatar {
  width: 90px; height: 90px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
}
.founder-card:nth-child(2) .avatar { background: var(--grad-pink); color: #fff; }
.founder-card h3 { margin-bottom: 6px; }
.founder-card .role { color: var(--pink); font-weight: 800; margin-bottom: 12px; }
.founder-card p { color: rgba(23, 8, 18, 0.7); font-size: 1.02rem; }

.secret-note {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 44px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.secret-note::before {
  content: '🤫';
  position: absolute;
  font-size: 7rem;
  opacity: 0.12;
  top: -10px;
  inset-inline-start: 20px;
  transform: rotate(-12deg);
}
.secret-note h3 { color: var(--gold-light); margin-bottom: 12px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 800; margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid var(--cream-2);
  border-radius: 14px;
  background: var(--cream);
  transition: border-color 0.25s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  margin-bottom: 24px;
}
.form-consent input { margin-top: 5px; accent-color: var(--pink); }
.form-success {
  display: none;
  background: #eafbea;
  border: 2px solid #30b640;
  border-radius: 14px;
  padding: 16px 20px;
  font-weight: 700;
  margin-top: 18px;
}
.contact-cards { display: grid; gap: 18px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px -14px rgba(23, 8, 18, 0.15);
  font-weight: 700;
  transition: transform 0.25s;
}
.contact-card:hover { transform: translateX(-6px); }
.contact-card .ico {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  background: var(--pink-soft);
}

/* ---------- Legal pages ---------- */
.legal-hero {
  background: radial-gradient(900px 500px at 50% -20%, #3d1230 0%, var(--ink) 65%);
  color: var(--cream);
  text-align: center;
  padding: 170px 0 80px;
}
.legal-body { max-width: 820px; margin-inline: auto; padding: 70px 0 100px; }
.legal-body h2 {
  font-size: 2.1rem;
  margin: 44px 0 14px;
  color: var(--pink);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: rgba(23, 8, 18, 0.8); margin-bottom: 12px; }
.legal-body ul { padding-inline-start: 22px; list-style: disc; }
.legal-body ol { padding-inline-start: 22px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 0;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-grid h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-about p { color: rgba(255, 247, 238, 0.7); font-size: 0.98rem; margin-top: 14px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255, 247, 238, 0.8); transition: color 0.2s; }
.footer-links a:hover { color: var(--pink-hot); }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; color: rgba(255, 247, 238, 0.8); }
.social-row { display: flex; gap: 14px; margin-top: 20px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 247, 238, 0.08);
  border: 1px solid rgba(246, 196, 83, 0.3);
  transition: background 0.25s, transform 0.25s;
}
.social-row a:hover { background: var(--pink); transform: translateY(-4px); }
.social-row svg { width: 20px; height: 20px; fill: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(255, 247, 238, 0.12);
  padding: 22px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 247, 238, 0.55);
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 90;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1) rotate(8deg); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .product-grid, .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .occasions-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { max-width: 520px; margin-inline: auto; }
  .story-grid .img-stack { margin-bottom: 50px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .section { padding: 70px 0; }
  .features-grid, .testimonials-grid, .products-grid, .founders-grid { grid-template-columns: 1fr; }
  .occasions-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero { padding-top: 130px; }
  .floating-dice { width: 70px; top: -28px; }
  .contact-form { padding: 30px 22px; }

  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(23, 8, 18, 0.97);
    backdrop-filter: blur(10px);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 105;
  }
  .nav-open .main-nav { opacity: 1; pointer-events: auto; }
  .main-nav ul { flex-direction: column; gap: 28px; text-align: center; }
  .main-nav a { font-size: 1.5rem; }
  .nav-toggle { display: block; }
}
