﻿/* ═══════════════════════════════════════════════════
   נשמיא — דף הבית
   Premium design v2 — 16/05/2026
   ═══════════════════════════════════════════════════ */

:root {
  --purple-night: #1c0a2c;
  --purple-deep: #2e1148;
  --purple-rich: #3d1953;
  --purple-mid: #4a1f64;
  --purple-light: #6b2fa0;
  --purple-mist: #a484c4;
  --lavender-pale: #f5eff8;
  --lavender-soft: #ecdef0;
  --lavender-tint: #f9f4fb;
  --gold: #c9a961;
  --gold-light: #e0c878;
  --gold-dark: #a8893f;
  --gold-deep: #8b6f2e;
  --pure-white: #ffffff;
  --text-on-purple: #faf2ff;
  --text-on-light: #2a1048;
  --text-muted: #6b5080;
  --text-faint: #a999b8;
  --border-soft: rgba(61,25,83,0.08);
  --border-gold: rgba(201,169,97,0.25);

  --space-1: 4px; --space-2: 8px; --space-3: 12px;
  --space-4: 16px; --space-5: 20px; --space-6: 24px;
  --space-8: 32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px; --space-24: 96px;

  --radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-xl: 32px; --radius-2xl: 40px;

  --shadow-purple: 0 8px 32px rgba(61,25,83,0.12), 0 2px 8px rgba(61,25,83,0.06);
  --shadow-purple-lg: 0 20px 50px rgba(61,25,83,0.18), 0 6px 16px rgba(61,25,83,0.10);
  --shadow-purple-glow: 0 0 60px rgba(107,47,160,0.25);
  --shadow-gold-glow: 0 6px 24px rgba(201,169,97,0.35);
  --shadow-deep: 0 24px 60px rgba(0,0,0,0.4);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 200ms; --t-mid: 350ms; --t-slow: 600ms;

  --max-w: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', 'Assistant', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-on-light);
  background: var(--pure-white);
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast) var(--ease); }
button { cursor: pointer; font-family: inherit; border: 0; background: none; color: inherit; }
ul, li { list-style: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-6); }

h1, h2, h3, h4 {
  font-family: 'Frank Ruhl Libre', 'David Libre', Georgia, serif;
  line-height: 1.2;
  color: inherit;
}

/* ─── Eyebrow with gold flourish ─────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Heebo', sans-serif;
  margin-bottom: var(--space-4);
}
.eyebrow::before, .eyebrow::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--gold));
}
.eyebrow::after { background: linear-gradient(to right, transparent, var(--gold)); }
.eyebrow-center {
  display: flex;
  justify-content: center;
}

/* ─── Header ─────────────── */
.site-header {
  background: linear-gradient(180deg, var(--purple-night) 0%, var(--purple-rich) 100%);
  color: var(--text-on-purple);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(201,169,97,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  order: 3;
}
.icon-btn {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-on-purple);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  position: relative;
}
.icon-btn:hover {
  background: rgba(201,169,97,0.15);
  color: var(--gold);
  transform: translateY(-1px);
}
.icon-btn svg { width: 20px; height: 20px; }

.nav-main { order: 2; }
.nav-main > ul {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.nav-main a {
  color: var(--text-on-purple);
  font-size: 15px;
  font-weight: 500;
  padding: var(--space-3) 0;
  position: relative;
  transition: color var(--t-fast) var(--ease);
  display: inline-block;
}
.nav-main a::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 50%;
  transform: translateX(50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-mid) var(--ease);
  border-radius: 1px;
}
.nav-main a:hover { color: var(--gold); }
.nav-main a:hover::after { width: 100%; }
.nav-main .active { color: var(--gold); }
.nav-main .active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 3px;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--pure-white);
  color: var(--text-on-light);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: var(--space-3) 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-fast) var(--ease), transform var(--t-mid) var(--ease-out), visibility var(--t-fast);
  margin-top: var(--space-3);
  border: 1px solid var(--border-gold);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: var(--space-3) var(--space-5);
  color: var(--text-on-light);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), padding var(--t-fast) var(--ease);
}
.dropdown a::after { display: none; }
.dropdown a:hover {
  background: var(--lavender-pale);
  color: var(--purple-deep);
  padding-right: var(--space-6);
}

.nav-logo { order: 1; display: block; }
.nav-logo img {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-rich) 100%);
  padding: 8px;
  border: 2px solid rgba(201,169,97,0.4);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 0 12px rgba(201,169,97,0.1);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease);
}
.nav-logo:hover img {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 0 16px rgba(201,169,97,0.2), 0 0 24px rgba(201,169,97,0.3);
}

.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  color: var(--text-on-purple);
  font-size: 22px;
  border-radius: 50%;
  transition: background var(--t-fast) var(--ease);
}
.mobile-toggle:hover { background: rgba(255,255,255,0.1); }

/* ─── Hero ─────────────── */
.hero {
  background:
    radial-gradient(ellipse at 25% 40%, rgba(107,47,160,0.45) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(168,85,212,0.22) 0%, transparent 55%),
    linear-gradient(180deg, var(--purple-deep) 0%, var(--purple-night) 100%);
  color: var(--text-on-purple);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 25%, rgba(201,169,97,0.35), transparent),
    radial-gradient(1px 1px at 65% 75%, rgba(248,238,252,0.25), transparent),
    radial-gradient(1px 1px at 85% 30%, rgba(201,169,97,0.28), transparent),
    radial-gradient(1.5px 1.5px at 40% 80%, rgba(248,238,252,0.2), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(201,169,97,0.3), transparent);
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

/* Grid: image bleeds to LEFT viewport edge in RTL, text contained on right */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: var(--space-10);
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: calc(var(--max-w) + (100vw - var(--max-w)) / 2);
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding-inline-start: var(--space-6);
  padding-block: var(--space-12) var(--space-16);
}

/* Hero slider — wider, slightly portrait, bleeds left */
.hero-slider {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  width: 100%;
  box-shadow:
    var(--shadow-deep),
    0 0 80px rgba(201,169,97,0.18),
    inset 0 0 0 1px rgba(201,169,97,0.2);
}
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(28,10,44,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 800ms var(--ease-out);
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(28,10,44,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: all var(--t-fast) var(--ease);
  z-index: 2;
  border: 1px solid rgba(201,169,97,0.3);
}
.slider-nav:hover {
  background: rgba(201,169,97,0.85);
  color: var(--purple-deep);
  transform: translateY(-50%) scale(1.08);
}
.slider-nav svg { width: 18px; height: 18px; }
.slider-prev { right: var(--space-4); }
.slider-next { left: var(--space-4); }
.slider-dots {
  position: absolute;
  bottom: var(--space-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 2;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: all var(--t-fast) var(--ease);
  border: 1px solid rgba(201,169,97,0.4);
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(201,169,97,0.7);
}

/* Hero content */
.hero-content {
  padding-inline-end: var(--space-6);
  text-align: right;
  animation: fadeUp 1s var(--ease-out) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  color: var(--text-on-purple);
  margin-bottom: var(--space-5);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.hero h1 .title-line {
  display: block;
}
.hero h1 .title-gold {
  color: var(--gold-light);
  font-weight: 700;
  margin-top: 4px;
}
.hero-sub {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 1.02rem;
  color: rgba(248,238,252,0.82);
  margin-bottom: var(--space-10);
  font-weight: 400;
}
.hero-sub .leaf-icon {
  width: 18px; height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.hero-usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-10);
  max-width: 520px;
}
.usp {
  text-align: center;
  font-size: 11px;
  color: rgba(248,238,252,0.78);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.usp-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,0.65);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  background: transparent;
  transition: all var(--t-mid) var(--ease-out);
}
.usp:hover .usp-icon {
  border-color: var(--gold);
  background: rgba(201,169,97,0.08);
  transform: translateY(-2px);
}
.usp-icon svg { width: 22px; height: 22px; }

.hero-cta { margin-top: var(--space-2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--t-mid) var(--ease-out);
  font-family: inherit;
  text-align: center;
  letter-spacing: 0.02em;
  border: 0;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--purple-deep);
  box-shadow: var(--shadow-gold-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201,169,97,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-gold:active { transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover { background: var(--gold); color: var(--purple-deep); transform: translateY(-2px); }
.btn-outline-dark {
  border: 1.5px solid var(--purple-deep);
  color: var(--purple-deep);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--purple-deep);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple-lg);
}
.btn .arrow {
  display: inline-block;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .arrow { transform: translateX(-4px); }

/* ─── Section divider (ornament) ─────────────── */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-8) 0;
  color: var(--gold);
  opacity: 0.55;
}
.divider-ornament::before, .divider-ornament::after {
  content: '';
  flex: 0 0 80px;
  height: 1px;
  background: linear-gradient(to var(--dir, right), transparent, currentColor);
}
.divider-ornament::before { --dir: left; }
.divider-ornament svg { width: 22px; height: 22px; }

/* ─── Values ─────────────── */
.values {
  background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--lavender-tint) 100%);
  padding: var(--space-20) 0;
  position: relative;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.value-card {
  text-align: center;
  padding: var(--space-6) var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
}
.value-card:hover {
  background: var(--pure-white);
  box-shadow: var(--shadow-purple);
  transform: translateY(-4px);
}
.value-icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-5);
  color: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.value-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(107,47,160,0.08) 0%, transparent 70%);
  border-radius: 50%;
  transition: all var(--t-mid) var(--ease);
}
.value-card:hover .value-icon::before {
  inset: -8px;
  background: radial-gradient(circle, rgba(107,47,160,0.15) 0%, transparent 70%);
}
.value-icon svg { width: 100%; height: 100%; stroke-width: 1.5; position: relative; z-index: 1; }
.value-card h3 {
  font-size: 1.25rem;
  color: var(--purple-deep);
  margin-bottom: var(--space-2);
  font-weight: 500;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Products ─────────────── */
.products-section {
  background: var(--pure-white);
  padding: var(--space-20) 0 var(--space-16);
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--purple-deep);
  margin-bottom: var(--space-3);
  font-weight: 500;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.product-card {
  background: var(--pure-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-purple);
  transition: all var(--t-mid) var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 2px;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
  z-index: 2;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-purple-lg);
}
.product-card:hover::before { opacity: 1; }

.product-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--lavender-soft);
  position: relative;
}
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-info {
  padding: var(--space-5) var(--space-4) var(--space-5);
  text-align: center;
}
.product-info h3 {
  font-size: 1.1rem;
  color: var(--purple-deep);
  margin-bottom: var(--space-3);
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
}
.product-price {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: var(--space-4);
  font-family: 'Frank Ruhl Libre', serif;
  letter-spacing: 0.02em;
}
.product-price::before {
  content: '₪';
  margin-left: 3px;
  opacity: 0.7;
  font-weight: 400;
  font-size: 0.9em;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  border: 1.5px solid var(--purple-mist);
  color: var(--purple-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  background: transparent;
}
.product-link::after {
  content: '🍃';
  font-size: 11px;
  opacity: 0;
  width: 0;
  transition: all var(--t-fast) var(--ease);
}
.product-link:hover {
  background: var(--purple-light);
  color: var(--pure-white);
  border-color: var(--purple-light);
}
.products-cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ─── Story Section ─────────────── */
.story-section {
  background: linear-gradient(180deg, var(--lavender-tint) 0%, var(--lavender-pale) 100%);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.story-section::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(168,85,212,0.08) 0%, transparent 70%);
  top: -100px;
  right: -200px;
  pointer-events: none;
}
.story-section::after {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(201,169,97,0.06) 0%, transparent 70%);
  bottom: -80px;
  left: -100px;
  pointer-events: none;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}
.story-image-wrap {
  position: relative;
}
.story-image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-purple-lg);
  position: relative;
}
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(61,25,83,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.story-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.story-image-wrap:hover .story-image img { transform: scale(1.04); }

/* Decorative crystal accent */
.story-decor {
  position: absolute;
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: -40px;
  z-index: 0;
  opacity: 0.85;
}

.story-content { padding: var(--space-4) 0; }
.story-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--purple-deep);
  margin-bottom: var(--space-6);
  font-weight: 500;
  line-height: 1.25;
}
.story-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-4);
  font-size: 1.02rem;
  line-height: 1.85;
}
.story-content p strong {
  color: var(--purple-deep);
  font-weight: 600;
}
.story-signature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-6) 0 var(--space-8);
  color: var(--gold-dark);
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 1.1rem;
  font-style: italic;
}
.story-signature::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* ─── Trust Bar ─────────────── */
.trust-bar {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(107,47,160,0.3) 0%, transparent 60%),
    linear-gradient(180deg, var(--purple-rich) 0%, var(--purple-night) 100%);
  color: var(--text-on-purple);
  padding: var(--space-10) 0;
  position: relative;
  border-top: 1px solid rgba(201,169,97,0.15);
  border-bottom: 1px solid rgba(201,169,97,0.15);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 14px;
  position: relative;
}
.trust-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3));
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,97,0.4), transparent);
}
.trust-icon {
  color: var(--gold);
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 100%; height: 100%; stroke-width: 1.4; }
.trust-text strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--text-on-purple);
}
.trust-text span {
  font-size: 12.5px;
  color: rgba(248,238,252,0.7);
}

/* ─── Instagram ─────────────── */
.instagram-section {
  background: var(--pure-white);
  padding: var(--space-20) 0;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.insta-card {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--lavender-soft);
  box-shadow: 0 4px 12px rgba(61,25,83,0.06);
  transition: all var(--t-mid) var(--ease-out);
}
.insta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,25,83,0) 0%, rgba(61,25,83,0.4) 100%);
  opacity: 0;
  transition: opacity var(--t-mid) var(--ease);
}
.insta-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}
.insta-card:hover::after { opacity: 1; }
.insta-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-out);
}
.insta-card:hover img { transform: scale(1.08); }
.instagram-cta { text-align: center; }

/* ─── Footer ─────────────── */
.site-footer {
  background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--lavender-soft) 100%);
  padding: var(--space-20) 0 var(--space-6);
  color: var(--text-on-light);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--purple-deep);
  font-family: 'Heebo', sans-serif;
  letter-spacing: 0.04em;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.footer-brand .footer-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-rich));
  padding: 6px;
  border: 2px solid rgba(201,169,97,0.4);
  box-shadow: var(--shadow-purple);
  margin-bottom: var(--space-2);
}
.footer-brand h3 {
  font-size: 1.35rem;
  color: var(--purple-deep);
  margin-bottom: var(--space-2);
  font-family: 'Frank Ruhl Libre', serif;
  font-weight: 500;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: var(--space-2);
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-2);
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--pure-white);
  color: var(--purple-deep);
  transition: all var(--t-fast) var(--ease);
  border: 1px solid var(--border-soft);
}
.footer-socials a:hover {
  background: var(--purple-deep);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-purple);
  border-color: var(--purple-deep);
}
.footer-socials svg { width: 16px; height: 16px; }

.footer-col ul li { margin-bottom: var(--space-3); }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--t-fast) var(--ease), padding-right var(--t-fast) var(--ease);
}
.footer-col ul a:hover {
  color: var(--purple-deep);
  padding-right: 6px;
}

.newsletter-form {
  margin-top: var(--space-4);
}
.newsletter-form .field-row {
  position: relative;
  margin-bottom: var(--space-3);
}
.newsletter-form input {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  background: var(--pure-white);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  color: var(--text-on-light);
}
.newsletter-form input:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(107,47,160,0.12);
}
.newsletter-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  color: var(--purple-deep);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-gold-glow);
  cursor: pointer;
  font-family: inherit;
}
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201,169,97,0.5);
}
.newsletter-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-soft);
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom .gold-dot {
  color: var(--gold);
  margin: 0 var(--space-2);
}

/* ─── Scroll reveal ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ─────────────── */
@media (max-width: 980px) {
  .hero { padding: 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    max-width: 100%;
    margin: 0 auto;
    padding-inline: var(--space-6);
    padding-block: var(--space-10) var(--space-12);
  }
  .hero-content { order: 1; text-align: center; padding-inline-end: 0; }
  .hero-content .hero-sub { display: inline-flex; }
  .hero-content .hero-usps { margin-left: auto; margin-right: auto; }
  .hero-slider { order: 2; max-width: 520px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .eyebrow { justify-content: center; }
  .hero-usps { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .values-grid, .products-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .trust-item:not(:last-child)::before { display: none; }
  .story-grid { grid-template-columns: 1fr; gap: var(--space-10); }
  .story-decor { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-main { display: none; }
  .nav-main.open {
    display: block;
    position: absolute;
    top: 100%;
    right: 0; left: 0;
    background: var(--purple-rich);
    padding: var(--space-5);
    box-shadow: var(--shadow-deep);
    border-top: 1px solid rgba(201,169,97,0.18);
  }
  .nav-main.open > ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-main.open > ul > li { border-bottom: 1px solid rgba(201,169,97,0.1); }
  .nav-main.open .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    margin: var(--space-2) 0 0;
    color: var(--text-on-purple);
    border: 0;
  }
  .nav-main.open .dropdown a { color: var(--text-on-purple); }
  .mobile-toggle { display: inline-flex; }
}
@media (max-width: 560px) {
  .container { padding: 0 var(--space-4); }
  .values-grid, .products-grid, .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2rem; }
  .section-head h2 { font-size: 1.6rem; }
  .nav-logo img { width: 56px; height: 56px; }
}
