/* ============ Zola — landing page ============
   Black + gold heritage sections, light high-contrast
   product/order sections. Mobile-first, RTL/LTR aware. */

:root {
  --black: #0d0b08;
  --black-2: #171310;
  --gold: #c9a24b;
  --gold-light: #e6c87d;
  --gold-dim: #8a6d2f;
  --gold-strong: var(--gold-dim); /* readable gold accent on the current surface */
  --text-inverse: #faf6ee; /* fixed light text for the always-black/gold sections */
  --cream: #faf6ee;
  --white: #ffffff;
  --ink: #221c14;
  --ink-soft: #5a5346;
  --line: #e5dcc8;
  --err: #c0392b;
  --ok: #1e8a4c;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(13, 11, 8, .12);
  --header-h: 84px;
}

/* ---------- dark mode ----------
   The hero/story sections are always black+gold by brand; dark mode
   makes the "light" cream/white surfaces (product, order, cards) dark
   too, swapping text/border tokens so contrast stays high either way. */
html[data-theme="dark"] {
  --cream: #14110d;
  --white: #1c1712;
  --ink: #f3ead9;
  --ink-soft: #c9bfa9;
  --line: rgba(201, 162, 75, .22);
  --err: #ff7a68;
  --ok: #3ddc84;
  --gold-strong: var(--gold-light);
  --shadow: 0 8px 30px rgba(0, 0, 0, .45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; scroll-padding-top: var(--header-h); }
body { overflow-x: hidden; max-width: 100%; }

/* ---------- welcome splash: cinematic curtain reveal ---------- */
body.splash-lock { overflow: hidden; height: 100vh; }

#splash {
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; /* never blocks input; panels/content re-enable visually only */
}
#splash.splash-hidden { display: none; }

/* two-panel curtain, black with a faint gold vignette seam at center */
.splash-panel {
  position: fixed; top: 0; bottom: 0; width: 50.4%;
  background:
    radial-gradient(circle at 50% 42%, rgba(201,162,75,.10), transparent 60%),
    var(--black);
  background-blend-mode: normal;
  transition: transform 1.05s cubic-bezier(.76,0,.24,1);
  will-change: transform;
}
.splash-panel-l { left: 0; border-inline-end: 1px solid rgba(201,162,75,.18); }
.splash-panel-r { right: 0; border-inline-start: 1px solid rgba(201,162,75,.18); }
#splash.splash-out .splash-panel-l { transform: translateX(-101%); }
#splash.splash-out .splash-panel-r { transform: translateX(101%); }

/* rising ember particles, drifting up through the curtain like incense smoke */
.splash-particles { position: fixed; inset: 0; overflow: hidden; }
.splash-particles span {
  position: absolute; bottom: -4vh; left: var(--x, 50%);
  width: var(--s, 3px); height: var(--s, 3px); border-radius: 50%;
  background: radial-gradient(circle, #fff6df, var(--gold-light) 55%, transparent 78%);
  opacity: 0; filter: blur(.2px);
  animation: splashEmber var(--d, 6s) ease-in var(--delay, 0s) infinite;
}
@keyframes splashEmber {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  12%  { opacity: .85; }
  75%  { opacity: .4; }
  100% { transform: translate(var(--drift, 12px), -92vh) scale(.4); opacity: 0; }
}

/* centered emblem group — fades/scales independently of the curtain panels */
.splash-content {
  position: fixed; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .85rem;
  transition: opacity .8s ease, filter .8s ease, transform .8s ease;
}
#splash.splash-out .splash-content {
  opacity: 0; filter: blur(10px); transform: scale(1.08);
  transition: opacity .7s ease, filter .7s ease, transform .8s ease;
}

.splash-glow {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230,200,125,.28), transparent 70%);
  filter: blur(6px); animation: splashGlowPulse 3.2s ease-in-out infinite;
}
@keyframes splashGlowPulse {
  0%, 100% { opacity: .55; transform: scale(.92); }
  50%      { opacity: .95; transform: scale(1.06); }
}

.splash-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(201,162,75,.5);
}
.splash-ring-1 { width: 118px; height: 118px; animation: splashRingPulse 2.6s ease-out infinite; }
.splash-ring-2 {
  width: 168px; height: 168px; border-style: dashed; border-color: rgba(201,162,75,.28);
  animation: splashRingSpin 22s linear infinite;
}
@keyframes splashRingPulse {
  0%   { transform: scale(.75); opacity: 0; }
  35%  { opacity: .65; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes splashRingSpin { to { transform: rotate(360deg); } }

#splashLogo {
  position: relative; width: 74px; height: 74px; object-fit: contain;
  opacity: 0; transform: scale(.55) rotate(-4deg);
  filter: drop-shadow(0 0 22px rgba(230,200,125,.5)) blur(6px);
  animation: splashLogoIn 1.15s cubic-bezier(.16,.85,.24,1) forwards .2s;
}
@keyframes splashLogoIn {
  0%   { opacity: 0; transform: scale(.55) rotate(-4deg); filter: drop-shadow(0 0 22px rgba(230,200,125,.5)) blur(6px); }
  55%  { opacity: 1; filter: drop-shadow(0 0 22px rgba(230,200,125,.5)) blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); filter: drop-shadow(0 0 14px rgba(230,200,125,.4)) blur(0); }
}

.splash-line {
  position: relative; display: block; width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0); animation: splashLineIn .7s ease forwards .95s;
}
@keyframes splashLineIn { to { transform: scaleX(1); } }

.splash-word {
  position: relative; display: inline-flex; font-family: "Cormorant Garamond", serif;
  font-weight: 700; font-size: 1.3rem; color: var(--gold-light);
}
.splash-word span {
  display: inline-block; opacity: 0; letter-spacing: .1em;
  transform: translateY(10px);
  animation: splashLetterIn .6s cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: calc(1.05s + var(--i) * .09s);
}
@keyframes splashLetterIn { to { opacity: 1; transform: translateY(0); } }

.splash-sub {
  font-family: "Amiri", "Cormorant Garamond", serif; font-size: .8rem; letter-spacing: .04em;
  color: var(--gold-dim); opacity: 0;
  animation: splashWordIn .7s ease forwards 1.4s;
}
html[lang="fr"] .splash-sub, html[lang="en"] .splash-sub { font-family: "Jost", sans-serif; letter-spacing: .18em; text-transform: uppercase; font-size: .7rem; }
@keyframes splashWordIn { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  #splash, .splash-panel, .splash-content, #splashLogo, .splash-word span, .splash-line, .splash-sub,
  .splash-ring, .splash-glow, .splash-particles span {
    animation: none !important; transition: opacity .25s ease !important;
  }
  #splashLogo, .splash-word span, .splash-line, .splash-sub { opacity: 1 !important; transform: none !important; filter: none !important; }
  #splash.splash-out .splash-panel-l, #splash.splash-out .splash-panel-r { transform: none; }
  #splash.splash-out { opacity: 0; }
}
body, .light, .darksec, #orderForm, #contactForm, .use-card, .box-block,
.totals, .ty-card, .price-tag, .field input, .field select, .field textarea {
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

body {
  font-family: "Tajawal", sans-serif;
  background: var(--black);
  color: var(--text-inverse);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
[dir="ltr"] body, body[dir="ltr"] { font-family: "Jost", sans-serif; }
html[lang="fr"] body, html[lang="en"] body { font-family: "Jost", sans-serif; }

h1, h2, h3, h4 { font-family: "Amiri", serif; font-weight: 700; line-height: 1.35; }
html[lang="fr"] h1, html[lang="fr"] h2, html[lang="fr"] h3, html[lang="fr"] h4,
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4 {
  font-family: "Cormorant Garamond", serif;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, select, textarea { font: inherit; }

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

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; inset-inline: 0; height: 3px; z-index: 70;
  background: rgba(201, 162, 75, .12);
}
.scroll-progress span {
  display: block; height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  transition: width .1s linear;
}

/* ---------- marquee ticker ---------- */
.marquee {
  background: var(--black-2); border-block: 1px solid rgba(201, 162, 75, .2);
  overflow: hidden; padding: .7rem 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marqueeScroll 26s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 0 1.6rem; font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--gold-light);
  white-space: nowrap;
}
.marquee-item svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
[dir="rtl"] .marquee-track { animation-name: marqueeScrollRtl; }
@keyframes marqueeScrollRtl { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* ---------- cursor spotlight (desktop only, dark sections) ---------- */
@media (hover: hover) and (pointer: fine) {
  .glow-follow { position: relative; }
  .glow-follow::before {
    content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 162, 75, .1), transparent 70%);
    opacity: 0; transition: opacity .3s ease;
  }
  .glow-follow.glow-active::before { opacity: 1; }
  .glow-follow > * { position: relative; z-index: 1; }
}

/* ---------- magnetic tilt (desktop only) ---------- */
@media (hover: hover) and (pointer: fine) {
  .tilt { transition: transform .15s ease-out; transform-style: preserve-3d; will-change: transform; }
}

/* ---------- magic golden cursor (desktop only, JS-gated) ---------- */
body.magic-cursor, body.magic-cursor a, body.magic-cursor button { cursor: none; }
.custom-cursor {
  position: fixed; top: 0; left: 0; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle, #fff6df, var(--gold-light) 55%, var(--gold) 85%);
  box-shadow: 0 0 10px 2px rgba(230, 200, 125, .65), 0 0 22px 6px rgba(201, 162, 75, .25);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .18s ease, height .18s ease, opacity .2s ease;
  opacity: 0;
}
.custom-cursor.show { opacity: 1; }
.custom-cursor.hover { width: 26px; height: 26px; }

.cursor-spark {
  position: fixed; top: 0; left: 0; border-radius: 50%;
  background: radial-gradient(circle, #fff6df, var(--gold-light) 60%, transparent 75%);
  pointer-events: none; z-index: 9998; will-change: transform, opacity;
  animation: sparkFade .75s ease-out forwards;
}
@keyframes sparkFade {
  0%   { opacity: .85; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(.15) translateY(-16px); }
}

/* ---------- header (fixed on every breakpoint) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(13, 11, 8, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, .25);
}
.header-inner {
  width: min(1080px, 94%); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 0; gap: .6rem; flex-wrap: wrap; row-gap: .4rem;
}
/* header is fixed/out-of-flow: push the page down by its height so nothing
   starts hidden underneath it, and offset in-page anchor scrolling too */
.hero { margin-top: var(--header-h, 84px); }

/* ---------- desktop nav links ---------- */
.nav-links { display: none; align-items: center; gap: 1.9rem; }
.nav-links a {
  position: relative; color: var(--gold-light); font-family: "Cormorant Garamond", serif;
  font-size: 1rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  padding: .3rem 0; transition: color .25s ease, text-shadow .25s ease;
}
html[lang="ar"] .nav-links a { font-family: "Amiri", serif; letter-spacing: .02em; }
.nav-links a:not(:last-child)::before {
  content: ""; position: absolute; top: 50%; inset-inline-end: -1rem;
  width: 3px; height: 3px; border-radius: 50%; background: rgba(201, 162, 75, .5);
  transform: translateY(-50%);
}
.nav-links a::after {
  content: ""; position: absolute; left: 50%; right: 50%; bottom: -2px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: left .3s ease, right .3s ease;
}
.nav-links a:hover {
  color: #fff6df;
  text-shadow: 0 0 12px rgba(230, 200, 125, .6);
}
.nav-links a:hover::after { left: 0; right: 0; }
@media (min-width: 900px) { .nav-links { display: flex; } }

/* ---------- hamburger (mobile only) ---------- */
.menu-toggle {
  background: transparent; border: 1px solid rgba(201, 162, 75, .4); border-radius: 8px;
  width: 32px; height: 32px; display: grid; place-items: center; gap: 4px; flex-shrink: 0;
}
.menu-toggle span { display: block; width: 16px; height: 2px; background: var(--gold-light); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 900px) { .menu-toggle { display: none; } }

/* ---------- mobile slide-down menu ---------- */
.mobile-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(13, 11, 8, .98); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 162, 75, .25);
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  color: var(--text-inverse); font-weight: 600; padding: .9rem 1.2rem;
  border-top: 1px solid rgba(201, 162, 75, .12);
}
.mobile-menu a:active { background: rgba(201, 162, 75, .1); }
.mobile-menu-backdrop {
  position: fixed; inset: 0; z-index: 40; background: rgba(0, 0, 0, .5);
}
.mobile-menu-backdrop[hidden] { display: none; }
@media (min-width: 900px) { .mobile-menu, .mobile-menu-backdrop { display: none; } }
.brand { display: flex; align-items: center; }
.brand img {
  /* crop out the small tagline at the bottom (unreadable at header size),
     keep the emblem + "Zola" script so the mark still reads on its own */
  width: 68px; height: 64px;
  object-fit: cover; object-position: top center;
  flex-shrink: 0;
}
.brand-word {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700; font-size: 1.5rem; letter-spacing: .35em;
  color: var(--gold); padding-inline-start: .35em;
}
.brand-word.small { font-size: 1.1rem; }
.lang-switch { display: flex; gap: .3rem; }
.header-controls { display: flex; align-items: center; gap: .6rem; }

/* generic inline-SVG icon sizing: each icon inherits color via currentColor */
.icon { display: inline-flex; }
.icon svg { width: 1em; height: 1em; display: block; }

.theme-toggle {
  background: transparent; color: var(--text-inverse);
  border: 1px solid rgba(201, 162, 75, .4); border-radius: 50%;
  width: 32px; height: 32px; display: grid; place-items: center;
  font-size: 1rem; line-height: 1; flex-shrink: 0;
  transition: transform .2s ease, border-color .2s ease;
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--gold); }
.theme-toggle .icon svg { width: 16px; height: 16px; transition: transform .4s cubic-bezier(.2,.8,.2,1.4); }
.theme-toggle:active .icon svg { transform: rotate(180deg); }
.lang-btn {
  background: transparent; color: var(--text-inverse);
  border: 1px solid rgba(201, 162, 75, .4); border-radius: 20px;
  padding: .25rem .7rem; font-size: .82rem;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
}
.lang-btn:hover { transform: translateY(-1px); }
.lang-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); font-weight: 700; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 62svh; display: grid; place-items: center; overflow: hidden; }
.hero-video {
  position: absolute; inset: 0; z-index: -1;
  width: 100%; height: 100%; object-fit: cover; background: var(--black);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(201, 162, 75, .28), transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% -10%, rgba(201, 162, 75, .12), transparent 60%),
    var(--black);
  background-size: cover; background-position: center;
}
.hero-bg::before {
  /* slow ambient glow drift, GPU-only (opacity + transform) */
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(ellipse 40% 30% at 30% 40%, rgba(201, 162, 75, .16), transparent 70%);
  animation: auroraDrift 14s ease-in-out infinite alternate;
}
.hero-bg.has-img::after, .hero-bg.has-video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,11,8,.55), rgba(13,11,8,.82));
}
.hero-bg.has-video {
  /* drop the opaque black base so the video underneath shows through;
     keep the two gold radial gradients as a brand tint on top of it */
  background:
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(201, 162, 75, .28), transparent 60%),
    radial-gradient(ellipse 60% 45% at 50% -10%, rgba(201, 162, 75, .12), transparent 60%);
}
.particle {
  position: absolute; bottom: -10%; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  opacity: 0; animation: particleRise linear infinite;
  will-change: transform, opacity;
}
.p1 { left: 10%; width: 6px; height: 6px; animation-duration: 11s; animation-delay: 0s; }
.p2 { left: 22%; width: 4px; height: 4px; animation-duration: 9s; animation-delay: 1.5s; }
.p3 { left: 45%; width: 5px; height: 5px; animation-duration: 13s; animation-delay: 3s; }
.p4 { left: 63%; width: 3px; height: 3px; animation-duration: 8s; animation-delay: .8s; }
.p5 { left: 80%; width: 6px; height: 6px; animation-duration: 12s; animation-delay: 4s; }
.p6 { left: 92%; width: 4px; height: 4px; animation-duration: 10s; animation-delay: 2.2s; }
.hero-content {
  position: relative; z-index: 1; text-align: center;
  width: min(760px, 92%); padding: .75rem 0 3rem;
}
.hero-ornament { color: var(--gold); margin: 0 auto 1rem; justify-content: center; }
.hero-ornament svg { width: 22px; height: 22px; }
.hero h1 {
  font-size: clamp(1.9rem, 6vw, 3.3rem);
  margin-bottom: 1rem;
}
@keyframes shimmerText { to { background-position: -250% center; } }
.hero h1 .word {
  display: inline-block; opacity: 0; transform: translateY(.5em);
  /* gradient shimmer has to live on the word itself — background-clip:text
     needs the actual text node it's clipping to, and each word is its own
     inline-block box once split for the entrance stagger */
  background: linear-gradient(100deg, var(--gold-dim) 0%, var(--gold-light) 25%, #fff6df 50%, var(--gold-light) 75%, var(--gold-dim) 100%);
  background-size: 250% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: wordRise .6s cubic-bezier(.2,.8,.2,1) forwards, shimmerText 6s linear infinite;
  animation-delay: calc(var(--i, 0) * .09s + .1s), 0s;
}
.hero-sub {
  color: #e8e2d4; font-size: clamp(1rem, 3.6vw, 1.2rem);
  max-width: 560px; margin: 0 auto .9rem;
}

/* ---------- hero stats (admin-controlled) ---------- */
.hero-stats {
  display: flex; justify-content: center; gap: clamp(1.2rem, 5vw, 3rem);
  margin-top: .8rem; flex-wrap: wrap;
}
.stat-item { position: relative; padding: 0 clamp(.6rem, 2vw, 1.2rem); }
.stat-item:not(:first-child)::before {
  content: ""; position: absolute; top: 6px; bottom: 6px; inset-inline-start: calc(-1 * clamp(.6rem, 2.5vw, 1.5rem));
  width: 1px; background: linear-gradient(180deg, transparent, rgba(201,162,75,.35), transparent);
}
.stat-num {
  font-family: "Cormorant Garamond", serif; font-weight: 700;
  font-size: clamp(1.7rem, 5.5vw, 2.6rem); color: var(--gold-light);
  line-height: 1.1;
}
.stat-label {
  font-size: .78rem; letter-spacing: .04em; text-transform: uppercase;
  color: #cfc7b4; margin-top: .25rem; max-width: 13ch;
}

/* ---------- entrance / ambient keyframes ---------- */
@keyframes wordRise { to { opacity: 1; transform: none; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fade-in-up { opacity: 0; animation: fadeInUp .7s cubic-bezier(.2,.8,.2,1) forwards; animation-delay: .55s; }
#heroCta.fade-in-up { animation-delay: .72s; }

@keyframes auroraDrift {
  0%   { transform: translate(-4%, -2%) scale(1); opacity: .8; }
  100% { transform: translate(4%, 3%) scale(1.15); opacity: 1; }
}
@keyframes particleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: .7; }
  90%  { opacity: .5; }
  100% { transform: translateY(-115vh) translateX(12px); opacity: 0; }
}
.spin-slow { animation: spinSlow 16s linear infinite; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

.float-bob { animation: floatBob 3.4s ease-in-out infinite; }
@keyframes floatBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

.pulse-glow { animation: pulseGlow 2.6s ease-in-out infinite; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 22px rgba(201, 162, 75, .35); }
  50%      { box-shadow: 0 6px 32px rgba(201, 162, 75, .7); }
}

.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: ""; position: absolute; inset: 0; width: 40%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-160%) skewX(-20deg);
  animation: shineSweep 3.2s ease-in-out infinite;
}
@keyframes shineSweep { 0%, 40% { transform: translateX(-160%) skewX(-20deg); } 70%, 100% { transform: translateX(220%) skewX(-20deg); } }

.scroll-cue {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  z-index: 1; width: 22px; height: 34px; border: 2px solid rgba(230, 200, 125, .6);
  border-radius: 12px;
}
.scroll-cue span {
  display: block; width: 4px; height: 8px; margin: 6px auto 0;
  background: var(--gold-light); border-radius: 2px;
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { transform: translateY(0); opacity: 1; } 70% { opacity: 0; } 100% { transform: translateY(12px); opacity: 0; } }
@media (max-width: 480px) { .scroll-cue { display: none; } }

/* ---------- buttons ---------- */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-weight: 800;
  padding: .8rem 2.2rem; border: none; border-radius: 40px;
  box-shadow: 0 6px 22px rgba(201, 162, 75, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201, 162, 75, .5); }
.btn-gold:active { transform: scale(.97); }
.btn-lg { font-size: 1.1rem; padding: 1rem 2.8rem; }
.btn-block { width: 100%; }
.btn-gold[disabled] { opacity: .6; cursor: not-allowed; }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold); border-radius: 40px;
  padding: .7rem 2rem; font-weight: 700;
}

/* ---------- badges ---------- */
.badges {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 100% at 50% 0%, rgba(201, 162, 75, .09), transparent 65%),
    var(--black-2);
  border-block: 1px solid rgba(201, 162, 75, .2);
}
.badges-shimmer {
  position: absolute; top: 0; left: -40%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 200, 125, .07), transparent);
  animation: shimmerSweep 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmerSweep { 0%, 15% { left: -40%; } 85%, 100% { left: 100%; } }

.badges-inner {
  position: relative;
  width: min(1080px, 94%); margin-inline: auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1rem; padding: 2.2rem 0;
}
@media (min-width: 720px) { .badges-inner { grid-template-columns: repeat(4, 1fr); gap: .5rem; } }

.badge {
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  font-weight: 600; color: var(--gold-light);
  text-align: center; position: relative;
  padding: .4rem .6rem; transition: transform .3s ease;
}
.badge:hover { transform: translateY(-4px); }
/* thin vertical dividers between badges on wide screens */
@media (min-width: 720px) {
  .badge:not(:first-child)::before {
    content: ""; position: absolute; top: 8px; bottom: 8px; inset-inline-start: -.5px;
    width: 1px; background: linear-gradient(180deg, transparent, rgba(201,162,75,.35), transparent);
  }
}

.badge-medallion {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(201,162,75,.18), rgba(23,19,16,.4));
  border: 1.5px solid rgba(201, 162, 75, .55);
  box-shadow: 0 0 0 0 rgba(201, 162, 75, .25);
  animation: medallionPulse 3.2s ease-in-out infinite;
}
.badge-medallion::before {
  /* slow-rotating dashed seal ring */
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 1px dashed rgba(230, 200, 125, .45);
  animation: spinSlow 20s linear infinite;
}
.badge:hover .badge-medallion {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 8px rgba(201, 162, 75, .14);
}
@keyframes medallionPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, .18); }
  50%      { box-shadow: 0 0 0 7px rgba(201, 162, 75, 0); }
}
.badge-ic { color: var(--gold); }
.badge-ic svg { width: 24px; height: 24px; }
.badge-label {
  font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
  max-width: 11ch; line-height: 1.3;
}

/* ---------- sections ---------- */
section { padding: 3.5rem 0; }
.light { background: var(--cream); color: var(--ink); }
.darksec {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201, 162, 75, .1), transparent 55%),
    var(--black);
  color: var(--text-inverse);
}
.sec-title { text-align: center; font-size: clamp(1.6rem, 5vw, 2.3rem); margin-bottom: 2rem; position: relative; }
.sec-title::after {
  content: ""; display: block; width: 14px; height: 14px; margin: .5rem auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a24b'%3E%3Cpath d='M12 1c0 6 2.2 9.8 7 11-4.8 1.2-7 5-7 11 0-6-2.2-9.8-7-11 4.8-1.2 7-5 7-11Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.gold-title { color: var(--gold-light); }
.dark-title { color: var(--ink); }

/* ---------- promo video ---------- */
.promo-video-frame {
  border-radius: 16px; overflow: hidden; position: relative;
  border: 1.5px solid rgba(201, 162, 75, .4);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .5), 0 0 0 6px rgba(201, 162, 75, .08);
}
.promo-video-el { width: 100%; height: auto; max-height: 82vh; display: block; background: #000; }

/* ---------- product ---------- */
.product-grid { display: grid; gap: 2rem; }
@media (min-width: 820px) { .product-grid { grid-template-columns: 1fr 1fr; align-items: start; } }
.product-main-img {
  aspect-ratio: 1; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(150deg, #1c1712, #3a2f1d 60%, #1c1712);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-main-img:hover img { transform: scale(1.08); }
.img-placeholder {
  font-family: "Cormorant Garamond", serif; letter-spacing: .4em;
  color: var(--gold); font-size: 1.6rem; opacity: .8;
}
.product-thumbs { display: flex; gap: .6rem; margin-top: .6rem; flex-wrap: wrap; }
.product-thumbs img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 8px; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s ease, border-color .2s ease;
}
.product-thumbs img:hover { transform: translateY(-3px); }
.product-thumbs img.active { border-color: var(--gold); }
.product-info h3 { font-size: 1.55rem; margin-bottom: .6rem; }
.product-desc { color: var(--ink-soft); margin-bottom: 1.2rem; }
.price-row { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.price-tag {
  display: inline-block; font-size: 1.7rem; font-weight: 800; color: var(--gold-strong);
  border: 2px solid var(--gold); border-radius: 10px;
  padding: .3rem 1.2rem; background: var(--white); margin-bottom: 0;
  animation: pricePulse 2.8s ease-in-out infinite;
}
@keyframes pricePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
  50%      { box-shadow: 0 0 0 6px rgba(201, 162, 75, .12); }
}
.price-original { font-size: 1.15rem; color: var(--ink-soft); text-decoration: line-through; opacity: .75; }
.discount-badge {
  background: var(--err); color: #fff; font-weight: 800; font-size: .8rem;
  padding: .3rem .65rem; border-radius: 20px; letter-spacing: .02em;
  animation: floatBob 3.4s ease-in-out infinite;
}
.tier-hints { display: flex; flex-direction: column; gap: .35rem; margin: -.5rem 0 1.2rem; }
.tier-hint {
  font-size: .85rem; color: var(--gold-dim); font-weight: 600;
  display: flex; align-items: center; gap: .4rem;
}
.tier-hint svg { width: 14px; height: 14px; flex-shrink: 0; }
.tier-hint-form {
  margin-top: .45rem; font-size: .8rem; color: var(--ok); font-weight: 700;
}
.bogo-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); font-weight: 800; font-size: .85rem;
  padding: .4rem .8rem; border-radius: 20px; margin-bottom: .8rem;
  animation: pulseGlow 2.6s ease-in-out infinite;
}
.bogo-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.bogo-hint-form {
  margin-top: .35rem; font-size: .8rem; color: var(--gold-dim); font-weight: 700;
}
.free-delivery-hint {
  margin-bottom: .8rem; padding: .55rem .9rem; border-radius: 10px;
  font-size: .85rem; font-weight: 700; text-align: center;
  background: rgba(201,162,75,.1); border: 1px dashed var(--gold-dim); color: var(--gold-strong);
}
.free-delivery-hint.active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); border-style: solid; border-color: transparent;
  animation: pulseGlow 2.6s ease-in-out infinite;
}
.stock-note { color: var(--err); font-weight: 700; margin-bottom: 1rem; }
.box-block { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin-bottom: 1.4rem; }
.box-block h4 { margin-bottom: .5rem; font-size: 1.05rem; }
.box-block ul { list-style: none; }
.box-block li { padding: .25rem 0; padding-inline-start: 1.4em; position: relative; color: var(--ink-soft); }
.box-block li::before {
  content: ""; position: absolute; inset-inline-start: 0; top: .5em;
  width: 9px; height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a24b'%3E%3Cpath d='M12 1c0 6 2.2 9.8 7 11-4.8 1.2-7 5-7 11 0-6-2.2-9.8-7-11 4.8-1.2 7-5 7-11Z'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* ---------- story ---------- */
.story-intro { text-align: center; max-width: 640px; margin: 0 auto 2.5rem; color: #d9d2c0; }
.story-grid { display: grid; gap: 1.2rem; position: relative; }
@media (min-width: 720px) { .story-grid { grid-template-columns: repeat(3, 1fr); } }
.story-line {
  position: absolute; top: 34px; left: 16.6%; right: 16.6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: center; transition: transform 1s ease .2s;
  display: none;
}
@media (min-width: 720px) { .story-line { display: block; } }
#storyGrid.in .story-line { transform: scaleX(1); }
.story-card {
  border: 1px solid rgba(201, 162, 75, .3); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; text-align: center;
  background: rgba(23, 19, 16, .6);
  transition: transform .3s ease, border-color .3s ease;
}
.story-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.story-num {
  width: 44px; height: 44px; margin: 0 auto .8rem; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-size: 1.2rem; font-family: "Amiri", serif;
  position: relative; z-index: 1; background: var(--black-2);
  transition: box-shadow .3s ease;
}
.story-card:hover .story-num { box-shadow: 0 0 0 6px rgba(201, 162, 75, .18); }
.story-card h4 { color: var(--gold-light); margin-bottom: .4rem; font-size: 1.15rem; }
.story-card p { color: #cfc7b4; font-size: .95rem; }

/* ---------- uses ---------- */
.uses-grid { display: grid; gap: 1.2rem; }
@media (min-width: 720px) { .uses-grid { grid-template-columns: repeat(3, 1fr); } }
.use-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.3rem; text-align: center; box-shadow: 0 3px 14px rgba(13,11,8,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.use-card:hover { transform: translateY(-6px); box-shadow: 0 12px 26px rgba(13,11,8,.14); }
.use-ic { color: var(--gold-strong); margin-bottom: .6rem; justify-content: center; }
.use-ic svg { width: 34px; height: 34px; }
.use-card h4 { margin-bottom: .4rem; font-size: 1.1rem; }
.use-card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- delivery ---------- */
.delivery .container { text-align: center; max-width: 640px; }
.delivery p { color: #d9d2c0; }
.guarantee { margin-top: .8rem; color: var(--gold-light) !important; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line); border-radius: 12px;
  margin-bottom: .7rem; overflow: hidden; background: var(--white);
  transition: border-color .2s ease;
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 1.2rem; background: transparent; border: none;
  text-align: start; font-weight: 700; color: var(--ink); font-size: 1rem;
}
.faq-chevron { color: var(--gold); flex-shrink: 0; transition: transform .3s ease; }
.faq-chevron svg { width: 18px; height: 18px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 1.2rem 1.1rem; color: var(--ink-soft); }

/* ---------- order form ---------- */
.order { padding-bottom: 4.5rem; }
.form-sub { text-align: center; color: var(--ink-soft); margin: -1.2rem 0 1.8rem; }
#orderForm, #contactForm {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.5rem 1.25rem; box-shadow: var(--shadow);
}
.contact #contactForm { background: rgba(23,19,16,.65); border-color: rgba(201,162,75,.3); }
#hpField, #hpField2 { position: absolute; opacity: 0; height: 0; width: 0; pointer-events: none; }

.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 700; margin-bottom: .35rem; font-size: .95rem; }
.contact .field label { color: var(--gold-light); }
.contact .ferr { color: #ff8a75; }
.field input, .field select, .field textarea {
  width: 100%; padding: .75rem .9rem;
  border: 1.5px solid var(--line); border-radius: 10px;
  background: var(--cream); color: var(--ink); font-size: 1rem;
}
.contact .field input, .contact .field textarea {
  background: rgba(13,11,8,.5); border-color: rgba(201,162,75,.35); color: var(--text-inverse);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, .18);
}
.field input.bad, .field select.bad { border-color: var(--err); }
.ferr { color: var(--err); font-size: .82rem; margin-top: .3rem; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

.qty-box { display: flex; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; background: var(--cream); }
.qty-btn { width: 46px; background: var(--white); border: none; font-size: 1.3rem; color: var(--gold-strong); font-weight: 800; }
.qty-box input { flex: 1; text-align: center; border: none; background: transparent; min-width: 0; appearance: textfield; -moz-appearance: textfield; }
.qty-box input::-webkit-outer-spin-button, .qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; }

.seg { display: flex; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; }
.seg-opt { flex: 1; position: relative; }
.seg-opt input { position: absolute; inset: 0; width: auto; opacity: 0; margin: 0; cursor: pointer; }
.seg-opt span {
  display: block; text-align: center; padding: .72rem .3rem;
  background: var(--cream); font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  transition: background .15s;
}
.seg-opt input:checked + span { background: var(--gold); color: var(--black); font-weight: 800; }

.totals {
  background: var(--cream); border: 1.5px dashed var(--gold);
  border-radius: 12px; padding: .9rem 1.1rem; margin: 1.2rem 0;
}
.t-row { display: flex; justify-content: space-between; padding: .22rem 0; font-size: .97rem; }
.t-grand { border-top: 1px solid var(--line); margin-top: .4rem; padding-top: .55rem; font-size: 1.15rem; font-weight: 800; color: var(--gold-strong); }

.form-error { background: #fdecea; color: var(--err); border-radius: 10px; padding: .7rem 1rem; margin-bottom: 1rem; font-weight: 500; }
.form-ok { background: rgba(30,138,76,.12); color: var(--ok); border-radius: 10px; padding: .7rem 1rem; margin-bottom: 1rem; font-weight: 700; }

/* ---------- footer ---------- */
.site-footer {
  position: relative; overflow: hidden; text-align: center;
  padding: 3.5rem 1rem 7rem;
  background:
    radial-gradient(ellipse 70% 90% at 50% 0%, rgba(201, 162, 75, .1), transparent 60%),
    var(--black-2);
  border-top: 1px solid rgba(201, 162, 75, .2);
}
.footer-ornament { color: var(--gold); margin: 0 auto 1rem; justify-content: center; }
.footer-ornament svg { width: 20px; height: 20px; }
.footer-logo {
  width: 76px; height: 71px; margin: 0 auto .8rem;
  object-fit: cover; object-position: top center;
}
.footer-tagline {
  color: #cfc7b4; font-size: .95rem; max-width: 380px;
  margin: 0 auto 1.6rem;
}
.footer-socials { display: flex; justify-content: center; gap: .9rem; margin-bottom: 2rem; }
.social-btn {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(201, 162, 75, .45); color: var(--gold-light);
  background: rgba(201, 162, 75, .06);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.social-btn svg { width: 19px; height: 19px; }
.social-btn:hover {
  transform: translateY(-4px) scale(1.06);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 8px 20px rgba(201, 162, 75, .4);
}
.footer-rule {
  width: min(240px, 60%); height: 1px; margin: 0 auto 1.2rem;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, .4), transparent);
}
.footer-copy { color: #8f887a; font-size: .82rem; }
.footer-credit { color: #6e6858; font-size: .76rem; margin-top: .4rem; }
.footer-credit a { color: var(--gold-dim); font-weight: 600; transition: color .2s ease; }
.footer-credit a:hover { color: var(--gold-light); }

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed; bottom: .9rem; inset-inline: 1rem; z-index: 60;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); text-align: center; font-weight: 800; font-size: 1.05rem;
  padding: .9rem; border-radius: 40px;
  box-shadow: 0 8px 26px rgba(13, 11, 8, .45);
  transform: translateY(140%); transition: transform .25s ease;
}
.sticky-cta.show { transform: translateY(0); }
@media (min-width: 820px) { .sticky-cta { display: none; } }

/* ---------- WhatsApp floating button (brand gold, not WhatsApp green) ---------- */
.whatsapp-fab {
  position: fixed; z-index: 61; inset-inline-end: 1rem;
  bottom: 4.7rem; /* clears the full-width sticky order bar on mobile */
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  box-shadow: 0 8px 22px rgba(13, 11, 8, .5);
  transition: transform .2s ease;
}
.whatsapp-fab svg { width: 26px; height: 26px; }
.whatsapp-fab:hover { transform: scale(1.08); }
@media (min-width: 820px) { .whatsapp-fab { bottom: 1.5rem; } }

/* ---------- thank you ---------- */
.thankyou {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(13, 11, 8, .92); backdrop-filter: blur(6px);
  display: grid; place-items: center; padding: 1rem;
}
.thankyou[hidden] { display: none; }
.ty-card {
  background: var(--cream); color: var(--ink); text-align: center;
  border-radius: 18px; padding: 2.5rem 1.6rem; width: min(430px, 100%);
  border-top: 5px solid var(--gold);
}
.ty-card.pop-in { animation: popIn .5s cubic-bezier(.2,.8,.2,1.3) both; }
@keyframes popIn { from { opacity: 0; transform: scale(.85) translateY(10px); } to { opacity: 1; transform: none; } }
.ty-ic { color: var(--gold-strong); margin-bottom: .8rem; justify-content: center; }
.ty-ic svg { width: 40px; height: 40px; }
.ty-ic .draw-ring, .ty-ic .draw-check {
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: drawIcon .5s ease forwards;
}
.ty-ic .draw-ring { stroke-dasharray: 60; stroke-dashoffset: 60; animation-delay: 0s; }
.ty-ic .draw-check { animation-delay: .45s; }
@keyframes drawIcon { to { stroke-dashoffset: 0; } }
.ty-card h2 { margin-bottom: .7rem; font-size: 1.5rem; }
.ty-card p { color: var(--ink-soft); margin-bottom: .6rem; }
.ty-order { font-weight: 800; color: var(--gold-strong); margin-bottom: 1.2rem; }

/* ---------- scroll reveal ---------- */
.rev, .rev-left, .rev-right, .rev-scale {
  opacity: 0; transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
  transition-delay: calc(var(--i, 0) * .1s);
}
.rev { transform: translateY(20px); }
.rev-left { transform: translateX(-32px); }
.rev-right { transform: translateX(32px); }
.rev-scale { transform: translateY(16px) scale(.92); }
.rev.in, .rev-left.in, .rev-right.in, .rev-scale.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .rev, .rev-left, .rev-right, .rev-scale { opacity: 1; transform: none; transition: none; }
  .hero h1 .word, .fade-in-up { opacity: 1; animation: none; }
  .spin-slow, .float-bob, .pulse-glow, .btn-shine::after, .particle,
  .hero-bg::before, .scroll-cue span, .price-tag,
  .badges-shimmer, .badge-medallion, .badge-medallion::before,
  .marquee-track { animation: none !important; }
  .hero h1 .word { background: none; -webkit-text-fill-color: initial; color: var(--gold-light); }
  .ty-card.pop-in { animation: none; }
  .ty-ic .draw-ring, .ty-ic .draw-check { stroke-dashoffset: 0; animation: none; }
  .tilt { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- small screens ---------- */
@media (max-width: 380px) {
  .brand-word { font-size: 1.2rem; letter-spacing: .22em; }
  section { padding: 2.6rem 0; }
}
