/* ============================================================
   ZYRA EXPERIENCE — GLOBAL STYLES
   Slick & Click Premium Brand Universe
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ── LIGHT THEME ── */
  --bg:          #ffffff;        /* page background */
  --fg:          #0f0f0f;        /* primary text */
  --surface:     #f4f4f4;        /* subtle section tint */
  --red:         #BF1E2E;        /* accent */
  --red-glow:    rgba(201,37,92,0.18);
  --blue-glow:   rgba(80,160,255,0.12);
  --glass:       rgba(0,0,0,0.04);
  --glass-border:rgba(0,0,0,0.09);
  --text-muted:  rgba(0,0,0,0.5);
  --text-dim:    rgba(0,0,0,0.3);

  /* Legacy aliases — hero/dark sections override locally */
  --white:       #ffffff;        /* "primary" = dark text */
  --black:       #0f0f0f;        /* "background" = white */

  --font-display:'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --header-h: 72px;
  --radius:   16px;
  --radius-sm:8px;
}

html { scroll-behavior: auto; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- CUSTOM CURSOR ---------- */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--white);
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease-smooth), height .2s var(--ease-smooth),
              background .2s, opacity .2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.4);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: transform .08s linear, width .3s var(--ease-smooth),
              height .3s var(--ease-smooth), opacity .3s, border-color .3s;
}
body.cursor-hover #cursor { width: 24px; height: 24px; background: var(--red); }
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: var(--red); opacity: .6; }

/* ---------- LOADER ---------- */
#loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 24px;
}
#loader .loader-logo { width: 120px; opacity: 0; }
#loader .loader-bar {
  width: 200px; height: 2px;
  background: rgba(0,0,0,0.1);
  border-radius: 2px;
  overflow: hidden;
}
#loader .loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #ff6b9d);
  width: 0%;
  transition: width .4s var(--ease-smooth);
}
#loader .loader-text {
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ---------- HEADER / NAV ---------- */
#header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex; align-items: center;
  gap: 16px;
  padding: 0 48px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  transition: background .4s, backdrop-filter .4s, box-shadow .4s, border-color .4s;
  /* Default — solid light header (all pages) */
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}

#header nav a,
.nav-cart { color: rgba(0,0,0,0.5); }
#header nav a:hover, .nav-cart:hover { color: var(--fg); }
.nav-hamburger span { background: var(--fg); }

/* Homepage hero only — transparent over video until scrolled past pin zone */
body:has(#hero) #header:not(.scrolled) {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
  box-shadow: none;
}
body:has(#hero) #header:not(.scrolled) nav a,
body:has(#hero) #header:not(.scrolled) .nav-cart { color: rgba(255,255,255,0.8); }
body:has(#hero) #header:not(.scrolled) nav a:hover,
body:has(#hero) #header:not(.scrolled) .nav-cart:hover { color: #fff; }
body:has(#hero) #header:not(.scrolled) .nav-hamburger span { background: #fff; }

/* Past hero / scrolled — keep solid light header */
#header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 1px 24px rgba(0,0,0,0.06);
}
#header.scrolled nav a,
#header.scrolled .nav-cart { color: rgba(0,0,0,0.5); }
#header.scrolled nav a:hover,
#header.scrolled .nav-cart:hover { color: var(--fg); }
#header.scrolled .nav-hamburger span { background: var(--fg); }

.nav-logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}
#header .nav-logo {
  height: 40px;
  width: auto;
  max-width: min(140px, 42vw);
  object-fit: contain;
}
#header nav {
  display: flex; gap: 36px;
  margin-left: auto;
  align-items: center;
}
#header nav a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s;
  position: relative;
  white-space: nowrap;
}
#header nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0);
  transition: transform .3s var(--ease-smooth);
}
#header nav a:hover::after { transform: scaleX(1); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 28px;
  flex-shrink: 0;
}

.nav-cart {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  transition: color .25s;
  position: relative;
}
.cart-count {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  background: var(--red);
  border-radius: 50%;
  font-size: .65rem; font-weight: 700;
  color: #fff;
}

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin: -8px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  transition: transform .3s, opacity .3s;
}

/* Mobile Nav */
.mobile-nav {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 1002;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity .35s ease;
  padding: 80px 32px 48px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.25rem);
  color: rgba(255,255,255,0.65);
  transition: color .25s;
  padding: 12px 16px;
  text-align: center;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:active { color: #fff; }
body.nav-open { overflow: hidden; }

@media (max-width: 900px) {
  #header { padding: 0 20px; }
  #header nav { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-hamburger { display: flex; }
  .nav-cart { margin-left: 0; }
}

/* ---------- TYPOGRAPHY ---------- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.015em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
.overline {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
}
.body-lg { font-size: 1.125rem; line-height: 1.75; }
.body-md { font-size: 1rem; line-height: 1.7; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 40px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 60px;
  transition: all .35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  cursor: none;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  transform: translateX(-100%);
  transition: transform .4s var(--ease-smooth);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 30px var(--red-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--red-glow);
}
.btn-outline {
  border: 1px solid var(--glass-border);
  color: var(--fg);
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.btn-outline::before {
  background: rgba(0,0,0,0.06);
}
.btn-outline:hover {
  border-color: var(--fg);
  background: var(--fg);
  color: #ffffff;
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--fg);
  padding: 12px 0;
  gap: 12px;
  /* overflow: hidden inherited from .btn — ripple blocked in JS so no issue */
  background: transparent;
}
/* Ghost: hide the sliding shimmer pseudo-element — it bleeds without h-padding */
.btn-ghost::before { display: none; }

.btn-ghost .arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .35s var(--ease-spring), background .3s, border-color .3s, color .3s;
}
.btn-ghost:hover .arrow {
  transform: translateX(5px);
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

/* ---------- SECTION LAYOUT ---------- */
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .btn { padding: 14px 28px; font-size: .72rem; }
  .product-card .card-name { font-size: .95rem; }
  .product-card .price { font-size: 1rem; }
}

/* ---------- CTA BANNER (home + about) ---------- */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: url('../assets/images/landing.webp') center / cover no-repeat;
  color: #ffffff;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,15,0.28);
  pointer-events: none;
}
.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner .overline {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 60px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.95);
  color: var(--red);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.cta-banner h2 { color: #ffffff; }
.cta-banner .text-muted { color: rgba(255,255,255,0.78); }
.cta-banner .btn-outline {
  color: #ffffff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.08);
}
.cta-banner .btn-outline::before { background: rgba(255,255,255,0.12); }
.cta-banner .btn-outline:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--fg);
}

/* ---------- GLASS CARD ---------- */
.glass-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: border-color .3s, transform .4s var(--ease-smooth), box-shadow .4s;
}
.glass-card:hover {
  border-color: rgba(201,37,92,0.25);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

/* ---------- PRODUCT CARD ---------- */
.product-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform .4s var(--ease-smooth), box-shadow .4s, border-color .3s;
  cursor: none;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  border-color: rgba(201,37,92,0.3);
}
.product-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-card .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-smooth);
}
.product-card:hover .img-wrap img { transform: scale(1.08); }
.product-card .card-body { padding: 24px; }
.product-card .card-cat {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.product-card .card-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card .card-desc {
  font-size: .875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-card .card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--fg);
}
.product-card .price span { font-size: .7rem; color: var(--text-muted); margin-left: 4px; }

/* ---------- TILT WRAPPER ---------- */
.tilt-wrap {
  transform-style: preserve-3d;
  transition: transform .1s linear;
}

/* ---------- REVEAL ANIMATIONS (GSAP targets) ---------- */
/* Elements are visible by default. JS adds .js-ready to <html>
   which activates the hidden state BEFORE GSAP animates them in.
   This prevents content being invisible if JS/CDN fails. */
html.js-ready .reveal       { opacity: 0; transform: translateY(40px); }
html.js-ready .reveal-left  { opacity: 0; transform: translateX(-40px); }
html.js-ready .reveal-right { opacity: 0; transform: translateX(40px); }
html.js-ready .reveal-scale { opacity: 0; transform: scale(.9); }
/* Stagger groups also hidden until JS runs */
html.js-ready .stagger-group > * { opacity: 0; transform: translateY(40px); }

/* ---------- DIVIDER ---------- */
.divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 24px 0;
}
.divider-center { margin: 24px auto; }

/* ---------- GRID ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- FOOTER ---------- */
#footer {
  padding: 72px 0 36px;
  background: #0f0f0f;
  color: #ffffff;
}

/* Desktop — single row: Brand | Navigate | Collections | Contact */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 28px;
}

.footer-brand .logo { height: 32px; margin-bottom: 16px; }
.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: .875rem;
  max-width: 300px;
  line-height: 1.7;
}
.footer-brand .social-icons { margin-top: 20px; }

.footer-col h4 {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 11px;
  transition: color .25s;
  word-break: break-word;
}
.footer-col a:hover { color: #ffffff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .75rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
}

.social-icons { display: flex; gap: 12px; flex-wrap: wrap; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: background .3s, color .3s, border-color .3s;
  font-size: .875rem;
}
.social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
}

/* Mobile only — Brand+Contact on top, Navigate+Collections below */
@media (max-width: 768px) {
  #footer { padding: 36px 0 20px; }
  .footer-inner {
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas:
      "brand contact"
      "nav collections";
    gap: 22px 14px;
    padding-bottom: 24px;
    margin-bottom: 16px;
  }
  .footer-brand       { grid-area: brand; }
  .footer-contact     { grid-area: contact; }
  .footer-nav         { grid-area: nav; }
  .footer-collections { grid-area: collections; }

  .footer-brand .logo { height: 26px; margin-bottom: 10px; }
  .footer-brand p {
    font-size: .72rem;
    line-height: 1.5;
    max-width: none;
  }
  .footer-brand .social-icons { margin-top: 12px; gap: 8px; }
  .footer-brand .social-icons a { width: 32px; height: 32px; }
  .footer-col h4 { margin-bottom: 10px; font-size: .62rem; }
  .footer-col a { margin-bottom: 6px; font-size: .72rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: .68rem;
  }
}

/* ---------- BADGE ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 60px;
  border: 1px solid var(--glass-border);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  backdrop-filter: blur(10px);
  background: var(--glass);
}
.badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

/* ---------- GLOW ELEMENTS ---------- */
.glow-red {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,37,92,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.glow-blue {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80,160,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Noise texture removed for light theme — looks grainy on white */

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

/* ---------- SELECTION ---------- */
::selection { background: var(--red); color: #fff; }

/* ---------- FORM ELEMENTS ---------- */
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-size: .9375rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(201,37,92,0.12);
}
.form-control::placeholder { color: rgba(0,0,0,0.3); }
textarea.form-control { resize: vertical; min-height: 140px; }
select.form-control option { background: #ffffff; color: #0f0f0f; }

/* ---------- MISC ---------- */
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* ---------- PAGE TRANSITION ---------- */
.page-transition {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9998;
  transform: translateY(100%);
  pointer-events: none;
  will-change: transform;
}

/* ---------- PAGE HERO (all pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-hero { padding: calc(var(--header-h) + 48px) 0 48px; }
  .page-hero .display-xl { font-size: clamp(2.1rem, 10vw, 3.5rem); }
  .page-hero .body-lg { font-size: 1rem; }
}
/* Hero content always visible — CSS animation, no GSAP dependency */
.page-hero .overline { animation: heroFadeUp .7s var(--ease-smooth) both; }
.page-hero h1        { animation: heroFadeUp .8s var(--ease-smooth) .1s both; }
.page-hero > .container > p,
.page-hero .body-lg  { animation: heroFadeUp .8s var(--ease-smooth) .2s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

/* Force page-hero reveals to be visible (CSS animation overrides GSAP opacity:0) */
.page-hero .reveal,
.page-hero .reveal-left,
.page-hero .reveal-right {
  opacity: 1 !important;
  transform: none !important;
  animation: heroFadeUp .8s var(--ease-smooth) both;
}

/* ---------- ABOUT / BRAND HERO sections ---------- */
#about-hero .reveal,
#about-hero .reveal-left,
#about-hero .reveal-right,
#success-section .reveal {
  opacity: 1 !important;
  transform: none !important;
  animation: heroFadeUp .9s var(--ease-smooth) both;
}
