/* ============================================================
   STUDIO.109 LAGREE — site principal
   ------------------------------------------------------------
   Palette et typographie extraites de la charte graphique
   "Présentation identité visuelle logo studio 109" (25 pages).
   Moteur d'animation identique à celui validé sur la base
   d'analyse (header au scroll, menu circulaire, accordéon FAQ) —
   cubic-bezier(.19,1,.22,1) pour les mouvements amples,
   cubic-bezier(.4,0,.2,1) pour les micro-interactions rapides.

   Polices de la charte : Gloscine (display) + Termina Regular
   (texte courant) sont des polices commerciales — remplacées ici
   par Bodoni Moda + Jost (Google Fonts), visuellement proches,
   en attendant l'achat des licences officielles.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400..900&family=Jost:wght@300..600&display=swap');

:root {
  /* Couleurs — charte STUDIO.109 (valeurs relevées sur les nuanciers) */
  --creamy-white: #F6F8DA;
  --clear-orange: #D2C5A7;  /* beige clair */
  --fire-orange: #4B4132;   /* brun profond */
  --red: #796C4C;           /* brun taupe (nommé "Red" dans la charte) */
  --print-dark: #181D15;    /* quasi-noir, fond principal */
  --olive: #7D8A64;         /* vert olive, accent CTA */

  /* Typo */
  --font-display: 'Bodoni Moda', 'Times New Roman', serif; /* substitut de Gloscine */
  --font-sans: 'Jost', 'Helvetica Neue', sans-serif;        /* substitut de Termina */

  /* Échelle typographique */
  --fs-xs: clamp(0.75rem, 0.75rem + ((1vw - 0.2rem) * 0.14), 0.875rem);
  --fs-sm: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.14), 1rem);
  --fs-base: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.14), 1.125rem);
  --fs-base-plus: clamp(1.15rem, 1.15rem + ((1vw - 0.2rem) * 0.392), 1.5rem);
  --fs-md: clamp(1.5rem, 1.5rem + ((1vw - 0.2rem) * 0.559), 2.1rem);
  --fs-lg: clamp(2rem, 2rem + ((1vw - 0.2rem) * 1.119), 3.2rem);
  --fs-xl: clamp(3rem, 3rem + ((1vw - 0.2rem) * 1.4), 4.6rem);

  --sp-xs: 1rem;
  --sp-sm: 1.5rem;
  --sp-md: 2rem;
  --sp-lg: 3rem;
  --sp-xl: 4rem;
  --sp-2xl: 6rem;
  --sp-container: 8rem;

  --content-size: 1200px;
  --wide-size: 1750px;

  --ease-soft: cubic-bezier(.19, 1, .22, 1);
  --ease-fast: cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
/* Le scroll fluide est désormais géré par GSAP ScrollSmoother (main.js) ;
   scroll-behavior natif coupé pour ne pas cumuler deux moteurs de scroll. */
html { scroll-behavior: auto; }
section[id], footer[id] { scroll-margin-top: 6rem; }

/* Structure requise par ScrollSmoother : wrapper fixe qui masque le
   débord, contenu translaté à l'intérieur pour simuler le scroll. */
#smooth-wrapper { overflow: hidden; position: fixed; inset: 0; }
#smooth-content { overflow: visible; width: 100%; }

body {
  margin: 0;
  background-color: var(--print-dark);
  color: var(--creamy-white);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 300;
  line-height: 1.75rem;
}
img { max-width: 100%; display: block; }
a { color: var(--creamy-white); text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  text-wrap: balance;
  margin: 0;
  letter-spacing: .01em;
}
h1 { font-size: var(--fs-xl); line-height: 1.05; }
h2 { font-size: var(--fs-lg); line-height: 1.1; }
h3 { font-size: var(--fs-md); line-height: 1.15; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: var(--fs-xs);
  color: var(--olive);
}
.accent { color: var(--olive); font-style: italic; }

.wrap { max-width: var(--content-size); margin: 0 auto; padding: 0 1.5rem; }
.wrap-wide { max-width: var(--wide-size); margin: 0 auto; padding: 0 1.5rem; }
section { padding: var(--sp-2xl) 0; }

/* Placeholder photo — à remplacer par vos visuels réels.
   Déposez vos fichiers dans assets/img/ avec les noms indiqués
   en commentaire à côté de chaque <img> dans index.html. */
.img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: linear-gradient(160deg, #2b2f22 0%, #181D15 65%, #0e100c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  object-fit: cover; /* s'applique quand cette classe est posée sur une vraie <img> */
}
.img-placeholder::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 25% 20%, rgba(125,138,100,.22), transparent 55%),
              radial-gradient(circle at 80% 85%, rgba(210,197,167,.14), transparent 55%);
}
.img-placeholder span {
  position: relative;
  color: rgba(246,248,218,.4);
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 1rem;
}

/* Zoom-out au scroll (GSAP ScrollTrigger, scrub, dans main.js) :
   l'image démarre agrandie et revient à sa taille normale au fil du
   défilement. Le conteneur parent doit avoir overflow:hidden
   (.feature-card, .method) pour clipper le débord. */
.scroll-scale { will-change: transform; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border-radius: 9999px;
  padding: 1rem 2rem;
  background: var(--olive);
  color: var(--print-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .03em;
  border: 0;
  cursor: pointer;
  transition: all .2s var(--ease-fast);
}
.btn-cream { background: var(--creamy-white); color: var(--print-dark); }
.btn-outline { background: transparent; color: var(--creamy-white); border: 1px solid rgba(246,248,218,.4); }
.btn .icon { width: 1rem; height: 1rem; flex-shrink: 0; transition: all .2s var(--ease-fast); }

@media screen and (min-width: 1024px) {
  .btn:hover { opacity: .85; transform: scale(.98); }
  .btn.icon-arrow:hover { opacity: 1; }
  .btn.icon-arrow:hover .icon { transform: rotate(45deg); }
}

/* ============================================================
   LOGO — trois variantes de la charte
   ============================================================ */
.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: baseline;
  gap: .05em;
}
.logo-wordmark .dot { color: var(--olive); }
.logo-baseline {
  display: block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .6em;
  font-weight: 300;
  text-align: center;
  margin-top: .15em;
}
.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  width: 2.75em;
  height: 2.75em;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  transition: all .4s;
}
.site-header::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background-image: linear-gradient(0deg, rgba(24,29,21,0) 0%, rgba(24,29,21,.55) 100%);
  transition: all .4s;
}
.site-header.is-scrolled { background: var(--print-dark); box-shadow: 0 1px 0 rgba(246,248,218,.08); }
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-scrolled .site-header__container { padding-block: 1rem; }
.site-header.is-scrolled .site-header__logo { font-size: 1.15rem; }

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--wide-size);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  transition: all .8s var(--ease-soft);
}

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-header__nav a {
  color: var(--creamy-white);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-cta-mobile { display: none; }

.site-header__logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--creamy-white);
  transition: all .8s var(--ease-soft);
}

.site-header__burger {
  display: none;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid var(--olive);
  border-radius: 9999px;
  color: var(--olive);
  background: transparent;
  padding: .6rem 1.125rem;
  cursor: pointer;
  z-index: 999;
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.site-header__burger svg { width: 1.5rem; height: auto; }
.site-header__burger svg rect {
  fill: var(--olive);
  transform-origin: center;
  transition: all .6s var(--ease-soft);
}
.site-header__burger.is-active svg rect:nth-child(1) { transform: rotate(45deg) translate(3.5px, 3.5px); }
.site-header__burger.is-active svg rect:nth-child(2) { transform: rotate(-45deg) translate(3.5px, -4.5px); }

@media screen and (min-width: 1024px) {
  .site-header__nav ul li { position: relative; }
  .site-header__nav ul li::after {
    content: "";
    position: absolute;
    left: 0; bottom: -.5rem;
    width: 100%; height: 1.5px;
    background: var(--olive);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .8s var(--ease-soft);
  }
  .site-header__nav ul li:hover::after { transform: scaleX(1); transform-origin: left; }
  .site-header__logo:hover { transform: translate(-50%, -50%) scale(1.06); }
}

@media screen and (max-width: 768px) {
  .site-header__container { padding: 1.25rem 1.5rem; }
  .site-header__nav {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100dvh;
    background: var(--print-dark);
    visibility: hidden;
    clip-path: circle(0% at calc(100% - 50px) 50px);
    transition: clip-path 1.5s var(--ease-soft), visibility 1.5s var(--ease-soft);
    z-index: 998;
  }
  .site-header__nav.is-active { visibility: visible; clip-path: circle(150% at calc(100% - 50px) 50px); }
  .site-header__nav ul {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 1.75rem;
  }
  .site-header__nav ul li a { font-size: 1.9rem; font-family: var(--font-display); }
  .nav-cta-mobile { display: flex; }
  .site-header__burger { display: flex; }
  .site-header__logo { position: relative; inset: unset; transform: none; font-size: 1.15rem; z-index: 999; }
  .site-header__cta { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: var(--sp-container);
  overflow: hidden;
}
.hero .img-placeholder {
  /* Le parallax est géré par GSAP ScrollSmoother (data-speed="0.75"
     dans le HTML, effects:true dans main.js) : il enveloppe et
     déborde l'image automatiquement, pas besoin de le faire ici. */
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(24,29,21,.75) 0%, rgba(24,29,21,.15) 55%, rgba(24,29,21,.35) 100%);
}
.hero__content { width: 100%; text-align: center; padding-top: 8rem; }
.hero h1 { color: var(--creamy-white); margin-bottom: 1.5rem; }
.hero p { color: var(--clear-orange); font-size: var(--fs-base-plus); margin-bottom: 2rem; font-family: var(--font-sans); }

/* ============================================================
   INTRO
   ============================================================ */
.intro .wrap { display: grid; grid-template-columns: .8fr 1fr; gap: 3rem; align-items: start; }
.intro p { margin: 0 0 1.25rem; opacity: .85; font-weight: 300; }
@media screen and (max-width: 860px) {
  .intro .wrap { grid-template-columns: 1fr; }
}

/* ============================================================
   FEATURES — 3 cartes photo + légende
   ============================================================ */
.features { padding: 0; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-card { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.feature-card .img-placeholder { position: absolute; inset: 0; }
.feature-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(24,29,21,.85) 0%, transparent 55%);
}
.feature-card__body { position: relative; z-index: 1; padding: var(--sp-lg) var(--sp-sm); }
.feature-card__body .eyebrow { display: block; margin-bottom: .5rem; }
.feature-card__body h3 { font-size: var(--fs-base-plus); color: var(--creamy-white); }
.feature-card:nth-child(1) h3.title-reveal-tracking { transition-delay: 0s; }
.feature-card:nth-child(2) h3.title-reveal-tracking { transition-delay: .12s; }
.feature-card:nth-child(3) h3.title-reveal-tracking { transition-delay: .24s; }
@media screen and (max-width: 860px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   METHODE — présentation Lagree en pleine largeur
   ============================================================ */
.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
  overflow: hidden; /* nécessaire pour clipper le zoom-out .scroll-scale */
}
.method__media { height: 100%; min-height: 420px; }
.method__text { padding: var(--sp-lg) var(--sp-xl); }
.method__text ul { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.method__text li { display: flex; gap: 1rem; align-items: baseline; padding-top: 1rem; border-top: 1px solid rgba(246,248,218,.15); font-weight: 300; }
.method__text li strong { font-family: var(--font-display); font-weight: 600; color: var(--olive); min-width: 2ch; }
@media screen and (max-width: 860px) {
  .method { grid-template-columns: 1fr; }
  .method__text { padding: var(--sp-lg) 0; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner__box {
  background: var(--clear-orange);
  color: var(--print-dark);
  border-radius: 8px;
  padding: var(--sp-xl) var(--sp-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.cta-banner__box h2, .cta-banner__box p { color: var(--print-dark); }
.cta-banner__box .btn { background: var(--print-dark); color: var(--creamy-white); }

/* ============================================================
   PLANNING
   ============================================================ */
.planning__box {
  background: var(--fire-orange);
  border-radius: 8px;
  padding: var(--sp-xl) var(--sp-sm);
}
.planning-mock {
  background: rgba(246,248,218,.06);
  border: 1px solid rgba(246,248,218,.14);
  border-radius: 6px;
  padding: 1.5rem;
  overflow-x: auto;
}
.planning-mock table { width: 100%; border-collapse: collapse; min-width: 640px; }
.planning-mock th { text-align: left; font-weight: 500; padding: .75rem; font-size: var(--fs-sm); text-transform: uppercase; letter-spacing: .05em; color: var(--clear-orange); }
.planning-mock td { padding: .75rem; border-top: 1px solid rgba(246,248,218,.1); font-size: var(--fs-sm); }
.planning-mock .slot {
  display: inline-block;
  background: var(--olive);
  color: var(--print-dark);
  border-radius: 9999px;
  padding: .35rem .9rem;
  font-size: var(--fs-xs);
  transition: transform .2s var(--ease-fast);
}
.planning-mock .slot:hover { transform: scale(1.05); }

/* ============================================================
   GALERIE — bande de photos éditoriales
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery__item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-soft); }
.gallery__item:hover img { transform: scale(1.04); }
@media screen and (max-width: 860px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  background: var(--clear-orange);
  color: var(--print-dark);
  padding-bottom: var(--sp-container);
}
.faq-section .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.faq-section h2 { color: var(--print-dark); }
.faq-contact { margin-top: 2rem; }
.faq-contact a { color: var(--print-dark); text-decoration: underline; }

.faq-item {
  border-bottom: 1px solid rgba(24,29,21,.2);
  padding: 1.25rem 0;
  cursor: pointer;
}
.faq-item__question {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
}
.faq-item__question svg { width: 1rem; height: 1rem; min-width: 1rem; margin-top: .4rem; transition: transform .3s var(--ease-soft); }
.faq-item__question svg path { transition: opacity .3s var(--ease-soft); }
.faq-item:hover .faq-item__question svg { transform: rotate(25deg); }
.faq-item.is-active .faq-item__question svg { transform: rotate(180deg); }
.faq-item.is-active .faq-item__question svg path:first-child { opacity: 0; }

.faq-item__answer { height: 0; opacity: 0; overflow: hidden; color: rgba(24,29,21,.75); font-weight: 300; transition: all .6s var(--ease-soft); }
.faq-item.is-active .faq-item__answer { opacity: 1; }
.faq-item__answer-inner { padding-top: 1rem; }
.faq-item__answer a { color: var(--fire-orange); font-weight: 500; }

@media screen and (max-width: 860px) { .faq-section .wrap { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  background: var(--print-dark);
  padding: var(--sp-container) 2rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(246,248,218,.1);
}
.site-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 3rem; position: relative; z-index: 1; }
.site-footer__brand .logo-wordmark { font-size: 1.6rem; }
.site-footer__brand p { opacity: .7; margin-top: 1rem; max-width: 28ch; }
.site-footer__label { color: var(--olive); text-transform: uppercase; letter-spacing: .15em; font-size: var(--fs-xs); margin-bottom: 1.25rem; }
.site-footer__grid nav ul { display: flex; flex-direction: column; gap: 1rem; }
.site-footer__grid nav a { color: var(--creamy-white); opacity: .85; }
.site-footer__grid nav a:hover { opacity: 1; }
.site-footer__socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.site-footer__socials a {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(246,248,218,.3);
  color: var(--creamy-white);
  transition: all .2s var(--ease-fast);
}
.site-footer__socials a:hover { border-color: var(--olive); color: var(--olive); transform: scale(1.08); }

.site-footer__credits {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid rgba(246,248,218,.1);
  margin: 4rem 0 0;
  padding: 2rem 0;
  font-size: var(--fs-xs);
  opacity: .6;
}
.site-footer__watermark {
  position: absolute;
  right: -4%; bottom: -18%;
  width: 42%;
  color: var(--creamy-white);
  opacity: .04;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 860px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__credits { flex-direction: column; text-align: center; }
}
@media screen and (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   TITRES — 3 variantes d'animation pour casser la répétition,
   toutes déclenchées par le même IntersectionObserver (.in-view) :

   1. .title-reveal          masque plein bloc, glisse depuis le bas
                              → titres "phares" (hero, méthode, FAQ)
   2. .title-reveal-words    chaque mot glisse depuis son propre
                              masque, en cascade (délai posé en JS)
                              → titres-phrases (intro, CTA)
   3. .title-reveal-tracking l'espacement des lettres se resserre
                              + fondu → titres courts (cartes,
                              planning, galerie)
   ============================================================ */
.title-reveal { overflow: hidden; }
.title-reveal__inner {
  display: block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform 1s var(--ease-soft), opacity 1s var(--ease-soft);
}
.title-reveal.in-view .title-reveal__inner { transform: translateY(0); opacity: 1; }

.title-reveal-words { overflow: visible; }
.title-reveal-words .trw-word { display: inline-block; overflow: hidden; vertical-align: top; }
.title-reveal-words .trw-word__inner {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  transition: transform .8s var(--ease-soft), opacity .8s var(--ease-soft);
}
.title-reveal-words.in-view .trw-word__inner { transform: translateY(0); opacity: 1; }

.title-reveal-tracking {
  opacity: 0;
  letter-spacing: .3em;
  transform: translateY(10px);
  transition: opacity 1s var(--ease-soft), letter-spacing 1s var(--ease-soft), transform 1s var(--ease-soft);
}
.title-reveal-tracking.in-view { opacity: 1; letter-spacing: normal; transform: translateY(0); }

/* ============================================================
   REVEAL AU SCROLL (bonus, optionnel)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   CURSEUR PERSONNALISÉ
   Point qui suit la souris avec un léger retard (GSAP, main.js) et
   grossit au survol des liens/boutons. mix-blend-mode:difference
   garantit un bon contraste aussi bien sur fond sombre que beige
   (FAQ) sans avoir à décliner la couleur par section.
   Désactivé sur tactile (pas de souris) et si reduced-motion.
   ============================================================ */
#cursor-ball {
  position: fixed;
  top: 0; left: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s var(--ease-fast);
}
#cursor-ball.is-visible { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor,
  body.has-custom-cursor a,
  body.has-custom-cursor button,
  body.has-custom-cursor .btn,
  body.has-custom-cursor .faq-item { cursor: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .title-reveal__inner,
  .title-reveal-words .trw-word__inner,
  .title-reveal-tracking {
    opacity: 1; transform: none; letter-spacing: normal; transition: none;
  }
  .hero .img-placeholder { transform: none !important; }
  #cursor-ball { display: none; }
  html { scroll-behavior: auto; }
}
