/* ================================================================
   WORLD ONE COLLECTION — Complete Design System
   Fonts: Playfair Display (headings) + Poppins (body)
   Theme: Mixed Light & Dark — Warm Cream + Deep Plum + Gold
   ================================================================ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* ── DARK palette ── */
  --dark-900:  #120D10;
  --dark-800:  #1E1520;
  --dark-700:  #2A1C28;
  --dark-600:  #3A2638;

  /* ── LIGHT palette ── */
  --light-50:  #FFFDF9;
  --light-100: #FDF8F0;
  --light-200: #F8EFE0;
  --light-300: #F0E3CB;

  /* ── GOLD ── */
  --gold-600:  #A0722A;
  --gold-500:  #C49A3C;
  --gold-400:  #D4AF52;
  --gold-300:  #E8CC7A;
  --gold-100:  rgba(196,154,60,0.12);
  --gold-glow: rgba(196,154,60,0.25);

  /* ── TEXT (light bg) ── */
  --text-900: #160F14;
  --text-700: #3D2F3A;
  --text-500: #6B5767;
  --text-300: #9D8999;

  /* ── TEXT (dark bg) ── */
  --cream:       #FAF4EC;
  --cream-dim:   #D9CECC;
  --cream-muted: #A09299;

  /* ── ACCENT ── */
  --rose:       #C2456A;
  --teal:       #3A8F80;
  --whatsapp:   #25D366;
  --wa-dark:    #1DA851;

  /* ── TYPOGRAPHY ── */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Poppins', system-ui, -apple-system, sans-serif;

  /* ── SPACING ── */
  --max-w:    1200px;
  --sec-py:   clamp(4.5rem, 9vw, 7.5rem);

  /* ── SHADOWS ── */
  --sh-sm:    0 1px 4px rgba(22,15,20,0.08), 0 2px 12px rgba(22,15,20,0.06);
  --sh-md:    0 4px 16px rgba(22,15,20,0.10), 0 8px 32px rgba(22,15,20,0.08);
  --sh-lg:    0 12px 40px rgba(22,15,20,0.14), 0 24px 64px rgba(22,15,20,0.10);
  --sh-dark:  0 8px 32px rgba(10,6,10,0.5);
  --sh-gold:  0 6px 24px rgba(196,154,60,0.30);

  /* ── RADIUS ── */
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;

  /* ── TRANSITIONS ── */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 74px; }
body {
  font-family: var(--font-body);
  background: var(--light-100);
  color: var(--text-700);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-100); }
::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 3px; }

/* ================================================================
   SHARED COMPONENTS
   ================================================================ */

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  z-index: 9999; pointer-events: none;
  transition: width 0.08s linear;
}

/* ── OVERLINES ── */
.overline {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: block;
}
.overline-light { color: var(--gold-300); }

/* ── SECTION WRAPPERS ── */
.sec-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sec-py) 1.5rem;
}

/* ── SECTION HEADERS ── */
.sec-head { text-align: center; margin-bottom: 3.5rem; }

/* ── TITLES ── */
.h-display {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
}
.italic { font-style: italic; }

/* Title on light bg */
.title-dark { color: var(--text-900); }
/* Title on dark bg */
.title-light { color: var(--cream); }
/* Gold gradient title */
.title-gold {
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-300) 60%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.subtitle-dark  { color: var(--text-500); font-size: 0.95rem; margin-top: 0.85rem; line-height: 1.75; }
.subtitle-light { color: var(--cream-muted); font-size: 0.95rem; margin-top: 0.85rem; line-height: 1.75; }

/* ── DIVIDER ── */
.divider {
  width: 3rem; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  margin: 1.25rem 0;
}
.divider-center { margin: 1.25rem auto; }
.divider-light {
  background: linear-gradient(90deg, var(--gold-300), transparent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.75rem;
  border-radius: 100px;
  border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: var(--sh-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(196,154,60,0.45); }

.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold-500);
  color: var(--gold-500);
}
.btn-outline-gold:hover {
  background: var(--gold-100);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-dark {
  background: var(--dark-800);
  color: var(--cream);
  box-shadow: var(--sh-dark);
}
.btn-dark:hover { transform: translateY(-2px); background: var(--dark-700); }

.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(250,244,236,0.4);
  color: var(--cream);
}
.btn-outline-light:hover {
  background: rgba(250,244,236,0.1);
  border-color: var(--gold-300);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

.btn svg { flex-shrink: 0; }

/* ── TAGS / BADGES ── */
.tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.tag-gold  { background: var(--gold-100); color: var(--gold-600); border: 1px solid rgba(196,154,60,0.3); }
.tag-dark  { background: rgba(18,13,16,0.75); backdrop-filter: blur(8px); color: var(--cream-dim); border: 1px solid rgba(250,244,236,0.15); }
.tag-light { background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); color: var(--text-700); border: 1px solid rgba(22,15,20,0.1); }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
#ann-bar {
  background: linear-gradient(90deg, var(--gold-600), var(--gold-500), var(--gold-600));
  background-size: 200% 100%;
  animation: bar-shimmer 8s linear infinite;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.55rem 3rem;
  position: relative;
  z-index: 200;
}
@keyframes bar-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
#ann-close {
  position: absolute; right: 0.85rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.8); font-size: 0.8rem; line-height: 1;
  padding: 0.2rem; transition: color 0.2s;
}
#ann-close:hover { color: #fff; }

/* ================================================================
   NAVIGATION — LIGHT
   ================================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,249,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(22,15,20,0.08);
  transition: box-shadow 0.3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(22,15,20,0.10); }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s;
}
.brand-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex; align-items: center; gap: 2.25rem;
}
.nav-link {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-500);
  position: relative; transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px; background: var(--gold-500);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--text-900); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.nav-wa {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--whatsapp); color: #fff;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.5rem 1.1rem; border-radius: 100px;
  box-shadow: 0 2px 10px rgba(37,211,102,0.3);
  transition: all 0.25s var(--ease);
}
.nav-wa:hover { background: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(37,211,102,0.45); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid rgba(22,15,20,0.12);
  border-radius: var(--r-sm); padding: 0.45rem 0.55rem; cursor: pointer;
}
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-900);
  transition: all 0.3s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--light-50);
  border-top: 1px solid rgba(22,15,20,0.06);
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu.open { max-height: 400px; }
.mob-link {
  display: block; padding: 0.9rem 1.5rem;
  font-size: 0.85rem; font-weight: 500; color: var(--text-700);
  border-bottom: 1px solid rgba(22,15,20,0.05);
  transition: all 0.2s;
}
.mob-link:hover { color: var(--gold-500); background: var(--light-200); }
.mob-link.active { color: var(--gold-600); font-weight: 600; }
.mob-wa {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin: 1rem 1.5rem;
  padding: 0.75rem; background: var(--whatsapp); color: #fff;
  font-size: 0.85rem; font-weight: 600; border-radius: 100px;
  transition: background 0.2s;
}
.mob-wa:hover { background: var(--wa-dark); }

/* ================================================================
   FOOTER — DARK
   ================================================================ */
.footer { background: var(--dark-900); border-top: 1px solid rgba(250,244,236,0.06); }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  padding: 2.75rem 1.5rem 1.75rem;
  display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 2.25rem;
}
.footer-logo {
  height: 60px; width: auto; display: block;
  object-fit: contain; margin-bottom: 0.85rem;
  opacity: 0.9;
}
.footer-brand-desc { color: var(--cream-muted); font-size: 0.82rem; line-height: 1.7; max-width: 270px; }
.footer-col-title { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-link { font-size: 0.82rem; color: var(--cream-muted); transition: color 0.2s; }
.footer-link:hover { color: var(--gold-300); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.65rem; }
.footer-contact-row svg { color: var(--gold-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row span, .footer-contact-row a { font-size: 0.82rem; color: var(--cream-muted); }
.footer-contact-row a:hover { color: var(--gold-300); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(250,244,236,0.06);
  text-align: center;
  font-size: 0.72rem; color: var(--cream-muted);
}

/* WhatsApp Float */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500;
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--whatsapp); color: #fff;
  font-size: 0.78rem; font-weight: 700;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.35s var(--ease);
}
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,211,102,0.5); }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 100px;
  background: var(--whatsapp);
  animation: wa-pulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.visible { transition-delay: var(--d, 0s); }

/* ================================================================
   PAGE HERO — DARK
   ================================================================ */
.page-hero {
  background: var(--dark-800);
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(196,154,60,0.12), transparent),
    radial-gradient(ellipse 50% 80% at 80% 100%, rgba(194,69,106,0.07), transparent);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.page-hero .h1 { color: var(--cream); margin-top: 0.6rem; }
.page-hero p { color: var(--cream-muted); margin-top: 0.85rem; font-size: 0.95rem; }

/* Breadcrumb */
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.75rem; color: var(--cream-muted); margin-top: 1.25rem; }
.breadcrumb a { color: var(--gold-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb-sep { color: rgba(250,244,236,0.3); }

/* ================================================================
   HOME PAGE — HERO (DARK)
   ================================================================ */
.hero {
  background: var(--dark-800);
  min-height: 92vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42,28,40,0.9), var(--dark-800)),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(194,69,106,0.07), transparent),
    radial-gradient(ellipse 50% 40% at 90% 10%, rgba(196,154,60,0.08), transparent);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C49A3C' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: clamp(5rem, 10vw, 7rem) 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
}

/* Hero Content */
.hero-content { max-width: 560px; }

.hero-super {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-100);
  border: 1px solid rgba(196,154,60,0.25);
  border-radius: 100px; padding: 0.3rem 0.9rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-300); margin-bottom: 1.25rem;
}
.hero-super::before { content: '✦'; font-size: 0.7rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; color: var(--cream);
}
.hero-title .italic { color: var(--gold-300); }
.hero-title .italic-block { display: block; }

.hero-body {
  color: var(--cream-muted); font-size: 0.95rem;
  line-height: 1.8; margin-top: 1.25rem; max-width: 440px;
}

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.chip {
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(196,154,60,0.3); color: var(--gold-300);
  padding: 0.3rem 0.85rem; border-radius: 100px;
  background: rgba(196,154,60,0.08);
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

/* Hero Image */
.hero-img-wrap { position: relative; display: flex; justify-content: center; }

.hero-img-frame {
  width: min(420px, 100%); aspect-ratio: 4/5;
  border-radius: 2rem 2rem 5rem 2rem;
  overflow: hidden; position: relative;
  border: 1px solid rgba(196,154,60,0.2);
  box-shadow: var(--sh-dark), 0 0 60px rgba(196,154,60,0.15);
}
.hero-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-frame:hover img { transform: scale(1.04); }
.hero-img-frame::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to top, rgba(18,13,16,0.5), transparent);
  pointer-events: none;
}

.hero-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: rgba(18,13,16,0.8); backdrop-filter: blur(12px);
  border: 1px solid rgba(196,154,60,0.25);
  border-radius: var(--r-md); padding: 0.6rem 1rem;
  font-size: 0.7rem; color: var(--cream-dim); line-height: 1.4;
  display: flex; align-items: center; gap: 0.5rem; z-index: 2;
}
.hero-badge-icon { color: var(--gold-400); font-size: 1.1rem; }

.hero-stat {
  position: absolute;
  background: rgba(255,253,249,0.95); backdrop-filter: blur(16px);
  border: 1px solid rgba(22,15,20,0.08);
  border-radius: var(--r-md); padding: 0.75rem 1.1rem;
  box-shadow: var(--sh-md); text-align: center;
  animation: float 3.5s ease-in-out infinite alternate;
}
.hero-stat:nth-child(2) { top: 12%; left: -1rem; animation-delay: 0s; }
.hero-stat:nth-child(3) { bottom: 22%; left: -1.5rem; animation-delay: 1.8s; }

@keyframes float {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  color: var(--gold-500); line-height: 1;
}
.hero-stat span { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-500); }

/* Hero Scroll */
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--cream-muted); font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line { width: 1.5px; height: 2rem; background: linear-gradient(to bottom, var(--gold-400), transparent); animation: scroll-pulse 2s ease-in-out infinite; }
@keyframes scroll-pulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.6); }
}

/* ================================================================
   STATS STRIP — LIGHT (Gold bg)
   ================================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 50%, var(--gold-600) 100%);
  padding: 1.5rem;
}
.stats-row {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3rem; flex-wrap: wrap;
}
.stat-box { text-align: center; }
.stat-val  { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-lbl  { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-top: 0.2rem; }
.stat-sep  { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

/* ================================================================
   CATEGORIES — LIGHT BACKGROUND
   ================================================================ */
.categories-sec { background: var(--light-100); }

.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}

.cat-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(22,15,20,0.07);
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: var(--gold-500); }

.cat-img { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.cat-card:hover .cat-img img { transform: scale(1.07); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,13,16,0.75) 0%, rgba(18,13,16,0.15) 55%, transparent 100%);
}
.cat-reveal {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold-500);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s;
}
.cat-card:hover .cat-reveal { transform: translate(-50%, -50%) scale(1); opacity: 1; }

.cat-info { padding: 1.1rem 1.2rem 1.3rem; }
.cat-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-900); }
.cat-sub  { font-size: 0.72rem; color: var(--text-300); margin-top: 0.25rem; letter-spacing: 0.03em; }
.cat-cta  { display: inline-block; margin-top: 0.7rem; font-size: 0.75rem; font-weight: 600; color: var(--gold-500); letter-spacing: 0.04em; transition: letter-spacing 0.3s; }
.cat-card:hover .cat-cta { letter-spacing: 0.09em; }

/* ================================================================
   FEATURED PRODUCTS — LIGHT
   ================================================================ */
.featured-sec { background: var(--light-200); }

.featured-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; margin-bottom: 2.5rem;
}
.view-all {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--gold-500);
  letter-spacing: 0.04em; transition: gap 0.3s;
}
.view-all:hover { gap: 0.7rem; }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* ── Product Card ── */
.product-card {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid rgba(22,15,20,0.07);
  box-shadow: var(--sh-sm); overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: rgba(196,154,60,0.4); }

.pc-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--light-200); }
.pc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.product-card:hover .pc-img-wrap img { transform: scale(1.07); }

.pc-actions {
  position: absolute; bottom: 0.75rem; right: 0.75rem;
  opacity: 0; transform: translateY(8px);
  transition: all 0.3s var(--ease);
}
.product-card:hover .pc-actions { opacity: 1; transform: translateY(0); }

.pc-wa-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 2px 12px rgba(37,211,102,0.4);
  transition: all 0.2s;
}
.pc-wa-btn:hover { background: var(--wa-dark); transform: scale(1.1); }

.pc-body { padding: 1rem 1.1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.pc-name { font-family: var(--font-display); font-size: 0.98rem; font-weight: 700; color: var(--text-900); line-height: 1.3; }
.pc-sub  { font-size: 0.72rem; color: var(--text-300); margin-top: 0.2rem; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.85rem; }

/* Colour dots */
.dots { display: flex; align-items: center; gap: 0.3rem; }
.dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--c, #ccc);
  border: 1.5px solid rgba(22,15,20,0.1);
  cursor: pointer; transition: transform 0.2s var(--ease-spring);
}
.dot:hover { transform: scale(1.45); }
.dot-more {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--light-200); border: 1.5px solid rgba(22,15,20,0.15);
  color: var(--text-500); font-size: 0.55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; cursor: default;
}

.pc-cta { font-size: 0.72rem; font-weight: 600; color: var(--gold-500); letter-spacing: 0.03em; transition: letter-spacing 0.3s; }
.product-card:hover .pc-cta { letter-spacing: 0.07em; }

/* ================================================================
   ABOUT TEASER — LIGHT
   ================================================================ */
.about-teaser { background: var(--light-100); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }

.about-img-wrap { position: relative; }
.about-img-frame {
  border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3;
  border: 1px solid rgba(22,15,20,0.08); box-shadow: var(--sh-lg);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-year-box {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff; border-radius: var(--r-lg); padding: 1.25rem 1.5rem;
  text-align: center; box-shadow: var(--sh-gold);
}
.ayb-label { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.85; }
.ayb-num   { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.ayb-sub   { font-size: 0.62rem; font-weight: 500; opacity: 0.75; }

.about-body { color: var(--text-500); font-size: 0.93rem; line-height: 1.8; margin-top: 0.85rem; }
.about-feats { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.about-feat { display: flex; align-items: flex-start; gap: 0.85rem; }
.af-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--gold-100); border: 1px solid rgba(196,154,60,0.25); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--gold-500); }
.af-title { font-size: 0.88rem; font-weight: 600; color: var(--text-900); }
.af-body  { font-size: 0.78rem; color: var(--text-300); margin-top: 0.1rem; }

/* ================================================================
   WHY US — DARK
   ================================================================ */
.why-sec {
  background: var(--dark-900);
  position: relative; overflow: hidden;
}
.why-sec::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(196,154,60,0.06), transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(194,69,106,0.05), transparent 50%);
  pointer-events: none;
}

.features-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.feat-card {
  background: rgba(42,28,40,0.5);
  border: 1px solid rgba(250,244,236,0.07);
  border-radius: var(--r-lg); padding: 2rem 1.5rem;
  text-align: center; backdrop-filter: blur(10px);
  transition: transform 0.35s var(--ease), border-color 0.3s, box-shadow 0.35s;
}
.feat-card:hover { transform: translateY(-6px); border-color: rgba(196,154,60,0.3); box-shadow: 0 12px 40px rgba(196,154,60,0.12); }

.feat-icon {
  width: 62px; height: 62px; border-radius: 50%;
  background: rgba(196,154,60,0.1); border: 1px solid rgba(196,154,60,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-300); margin: 0 auto 1.25rem;
  transition: background 0.3s, box-shadow 0.3s;
}
.feat-card:hover .feat-icon { background: rgba(196,154,60,0.18); box-shadow: 0 0 20px rgba(196,154,60,0.2); }

.feat-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.feat-body  { font-size: 0.82rem; color: var(--cream-muted); line-height: 1.65; }

/* ================================================================
   CTA SECTION — MIXED (Light bg with dark card)
   ================================================================ */
.cta-sec { background: var(--light-200); }
.cta-card {
  background: var(--dark-800); border-radius: var(--r-xl);
  padding: clamp(3rem, 6vw, 5rem) clamp(2rem, 6vw, 5rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(196,154,60,0.1), transparent);
  pointer-events: none;
}
.cta-ornament { font-size: 0.7rem; letter-spacing: 0.5em; color: rgba(196,154,60,0.5); margin: 1rem 0; }
.cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: var(--cream); line-height: 1.15; }
.cta-title em { font-style: italic; color: var(--gold-300); }
.cta-body { color: var(--cream-muted); font-size: 0.93rem; line-height: 1.75; max-width: 560px; margin: 0.85rem auto 0; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ================================================================
   SHOP PAGE
   ================================================================ */
.shop-sec { background: var(--light-100); }

/* Filter bar */
.filter-bar {
  background: #fff; border-radius: var(--r-lg);
  border: 1px solid rgba(22,15,20,0.07); box-shadow: var(--sh-sm);
  padding: 1.25rem 1.5rem; margin-bottom: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.filter-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-500); flex-shrink: 0; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip {
  font-size: 0.75rem; font-weight: 500; color: var(--text-500);
  border: 1px solid rgba(22,15,20,0.12); padding: 0.35rem 1rem;
  border-radius: 100px; cursor: pointer; transition: all 0.2s;
  background: transparent;
  font-family: var(--font-body);
}
.filter-chip:hover { border-color: var(--gold-500); color: var(--gold-600); }
.filter-chip.active { background: var(--gold-500); border-color: var(--gold-500); color: #fff; font-weight: 600; }

.sort-select {
  font-family: var(--font-body); font-size: 0.78rem; color: var(--text-700);
  border: 1px solid rgba(22,15,20,0.12); border-radius: 100px;
  padding: 0.4rem 1rem; background: transparent; cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--gold-500); }

.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.product-card[data-hidden="true"] { display: none; }

/* No results */
.no-results { grid-column: 1/-1; text-align: center; padding: 4rem 1rem; color: var(--text-300); }
.no-results svg { margin: 0 auto 1rem; }
.no-results h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--text-500); }

/* ================================================================
   GALLERY PAGE
   ================================================================ */
.gallery-sec { background: var(--light-100); }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  justify-content: center; margin-bottom: 2.5rem;
}
.g-chip {
  font-size: 0.75rem; font-weight: 500; color: var(--text-500);
  border: 1px solid rgba(22,15,20,0.12); padding: 0.4rem 1.1rem;
  border-radius: 100px; cursor: pointer; transition: all 0.2s;
  background: transparent; font-family: var(--font-body);
}
.g-chip:hover   { border-color: var(--gold-500); color: var(--gold-600); }
.g-chip.active  { background: var(--gold-500); border-color: var(--gold-500); color: #fff; font-weight: 600; }

.gallery-masonry {
  columns: 4; column-gap: 1.25rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1.25rem;
  border-radius: var(--r-md); overflow: hidden;
  position: relative;
  border: 1px solid rgba(22,15,20,0.06);
  box-shadow: var(--sh-sm);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.gallery-item:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--sh-md); }
.gallery-item img { width: 100%; display: block; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,13,16,0.7) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.g-info-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--cream); }
.g-info-sub  { font-size: 0.7rem; color: var(--cream-muted); margin-top: 0.1rem; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
/* Story section LIGHT */
.story-sec { background: var(--light-100); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-img { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 1; box-shadow: var(--sh-lg); border: 1px solid rgba(22,15,20,0.08); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }

/* Mission DARK */
.mission-sec { background: var(--dark-800); position: relative; overflow: hidden; }
.mission-sec::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 70% at 50% 100%, rgba(196,154,60,0.08), transparent);
  pointer-events: none;
}
.mission-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mission-col { text-align: center; padding: 0 1rem; }
.mission-col-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-100); border: 1px solid rgba(196,154,60,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold-300); margin: 0 auto 1.25rem; }
.mission-col-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.mission-col-body  { font-size: 0.83rem; color: var(--cream-muted); line-height: 1.7; }

/* Values LIGHT */
.values-sec { background: var(--light-200); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.value-card {
  background: #fff; border-radius: var(--r-lg); padding: 2rem;
  border: 1px solid rgba(22,15,20,0.07); box-shadow: var(--sh-sm);
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.value-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800;
  color: var(--gold-100); line-height: 1; flex-shrink: 0;
  border: 2px solid var(--gold-100); border-radius: var(--r-md);
  width: 60px; height: 60px; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold-500);
}
.value-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--text-900); margin-bottom: 0.4rem; }
.value-body  { font-size: 0.82rem; color: var(--text-500); line-height: 1.7; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
/* Contact info DARK */
.contact-info-sec { background: var(--dark-800); }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ci-card {
  background: rgba(42,28,40,0.6); border: 1px solid rgba(250,244,236,0.07);
  border-radius: var(--r-lg); padding: 2rem 1.5rem; text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.ci-card:hover { border-color: rgba(196,154,60,0.3); transform: translateY(-4px); }
.ci-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--gold-100); border: 1px solid rgba(196,154,60,0.25); display: flex; align-items: center; justify-content: center; color: var(--gold-300); margin: 0 auto 1rem; }
.ci-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.ci-val   { font-size: 0.85rem; color: var(--cream-muted); line-height: 1.6; }
.ci-val a { color: var(--gold-400); transition: color 0.2s; }
.ci-val a:hover { color: var(--gold-300); }

/* Contact form LIGHT */
.contact-form-sec { background: var(--light-100); }
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: start; }

.form-card {
  background: #fff; border-radius: var(--r-xl); padding: 2.5rem;
  border: 1px solid rgba(22,15,20,0.07); box-shadow: var(--sh-md);
}
.form-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--text-900); margin-bottom: 0.4rem; }
.form-sub   { font-size: 0.85rem; color: var(--text-300); margin-bottom: 1.75rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.1rem; }
.form-group.full { grid-column: 1/-1; }

label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-500); }

input, select, textarea {
  font-family: var(--font-body); font-size: 0.88rem; color: var(--text-900);
  background: var(--light-100); border: 1.5px solid rgba(22,15,20,0.1);
  border-radius: var(--r-sm); padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.12);
}
textarea { min-height: 120px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-note { font-size: 0.73rem; color: var(--text-300); text-align: center; margin-top: 0.75rem; }

/* Aside info */
.contact-aside { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.5rem; }
.aside-card {
  background: var(--light-200); border-radius: var(--r-lg); padding: 1.5rem;
  border: 1px solid rgba(22,15,20,0.06);
}
.aside-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--text-900); margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.6rem; }
.aside-title svg { color: var(--gold-500); }
.aside-body { font-size: 0.83rem; color: var(--text-500); line-height: 1.7; }
.aside-cta  { margin-top: 1rem; }

/* Map embed */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid rgba(22,15,20,0.07); height: 200px; background: var(--light-300); display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; color: var(--text-300); }
.map-placeholder svg { color: var(--gold-500); margin: 0 auto 0.5rem; }
.map-placeholder p { font-size: 0.78rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .cat-grid, .products-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 3; }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .mission-cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .hero-stat:nth-child(2), .hero-stat:nth-child(3) { display: none; }
  .about-grid, .about-teaser .about-grid, .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-year-box { right: 1rem; bottom: -1rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .mission-cols { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-wa span { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .cat-grid, .products-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .featured-top { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-row { gap: 1.5rem; }
  .stat-sep { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-ctas { flex-direction: column; }
  .btn { justify-content: center; }
  .cat-grid, .products-grid, .shop-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .gallery-masonry { columns: 1; }
  .features-row { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 0.85rem; border-radius: 50%; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; justify-content: center; }
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-content > * {
  animation: fade-up 0.75s var(--ease) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.28s; }
.hero-content > *:nth-child(4) { animation-delay: 0.38s; }
.hero-content > *:nth-child(5) { animation-delay: 0.48s; }
.hero-img-wrap { animation: fade-up 0.85s var(--ease) 0.25s both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
