/* ============================================================
   Luné Hijab · Landing Page
   Palette: warm nude / cream / soft gold / brown (simple elegant)
   ============================================================ */

:root {
  --cream:        #f6efe4;
  --cream-soft:   #efe6d7;
  --beige:        #e6d8c3;
  --sand:         #d9c6a9;
  --gold:         #c3a06a;
  --gold-deep:    #b18d55;
  --taupe:        #8a755a;
  --brown:        #6b5842;
  --brown-deep:   #4a3b2a;
  --ink:          #3a2f22;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:  "Jost", "Segoe UI", sans-serif;

  --maxw: 1120px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.55, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 110px 0; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 18px;
  font-weight: 400;
}

.section__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.12;
  color: var(--brown-deep);
  letter-spacing: 0.01em;
}

.section__head { text-align: center; max-width: 620px; margin: 0 auto 60px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--gold-deep);
  padding: 15px 34px;
  border-radius: 100px;
  transition: transform .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 8px 24px -10px rgba(139, 117, 90, 0.6);
}
.btn:hover { background: var(--brown); transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(74, 59, 42, 0.6); }
.btn--sm { padding: 11px 24px; font-size: 0.72rem; }
.btn--lg { padding: 18px 46px; font-size: 0.86rem; }
.btn--ghost {
  background: transparent;
  color: var(--brown);
  border: 1px solid var(--sand);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--cream-soft); color: var(--brown-deep); border-color: var(--gold); }

/* ---------- Navbar ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding: 8px 0;
}
.nav.scrolled {
  background: rgba(246, 239, 228, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(138, 117, 90, 0.12);
}
.nav__inner { display: flex; align-items: center; gap: 24px; }
.nav__brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.nav__brand-logo { width: 100px; height: 100px; object-fit: contain; }
.nav__brand-text { display: flex; align-items: baseline; gap: 8px; }
.nav__brand-name { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--brown-deep); line-height: 1; }
.nav__brand-sub { font-size: 0.6rem; letter-spacing: 0.34em; color: var(--taupe); text-transform: uppercase; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  position: relative;
  text-decoration: none;
  color: var(--brown);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  transition: color .3s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1px; background: var(--gold-deep); transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--brown-deep); }
.nav__links a:hover::after { width: 100%; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--brown); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--cream) 0%, var(--cream-soft) 55%, var(--beige) 100%);
}
.hero__glow {
  position: absolute;
  width: 620px; height: 620px;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(195, 160, 106, 0.22) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero__inner { position: relative; max-width: 720px; padding-top: 60px; }
.hero__star { display: block; color: var(--gold); font-size: 1.4rem; margin-bottom: 24px; opacity: .85; }
.hero__logo {
  width: min(560px, 92vw);
  aspect-ratio: 1.82 / 1;
  margin: -5rem auto 0;
  overflow: hidden;
  display: grid;
  place-items: start center;
}
.hero__logo img {
  width: 165%;
  height: auto;
  display: block;
  margin-top: -22%;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold-deep);
  margin: 4px 0 20px;
}
.hero__desc { max-width: 500px; margin: 0 auto 38px; color: var(--brown); font-size: 1.02rem; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--sand); border-radius: 20px;
  display: flex; justify-content: center;
}
.hero__scroll span {
  width: 4px; height: 8px; background: var(--gold-deep); border-radius: 4px; margin-top: 7px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-3px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- About ---------- */
.about { background: var(--cream); }
.about__inner { display: grid; grid-template-columns: 0.85fr 1fr; gap: 70px; align-items: center; }
.about__media {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--cream-soft), var(--beige));
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(195, 160, 106, 0.3), 0 30px 60px -30px rgba(107, 88, 66, 0.4);
}
.about__media img { width: 78%; border-radius: 50%; }
.about__text p { margin-bottom: 18px; max-width: 46ch; }
.about__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brown-deep);
  border-left: 2px solid var(--gold);
  padding-left: 22px;
  margin-top: 32px;
}

/* ---------- Collection ---------- */
.collection { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card {
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(217, 198, 169, 0.5);
  border-radius: var(--radius);
  padding: 46px 34px;
  text-align: center;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft),
              background .5s var(--ease-soft), border-color .5s var(--ease-soft);
  will-change: transform;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 60% at 50% 0%, rgba(195, 160, 106, 0.14), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease-soft);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px -32px rgba(107, 88, 66, 0.38);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(195, 160, 106, 0.5);
}
.card:hover::before { opacity: 1; }
/* .reveal (same specificity, declared later) would override .card's transition,
   leaving box-shadow/background with NO transition -> instant "kaget" pop.
   Raise specificity so the smooth hover transition actually applies. */
.card.reveal {
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft),
              background .5s var(--ease-soft), border-color .5s var(--ease-soft),
              opacity .6s var(--ease-soft);
}
.card__star { color: var(--gold); font-size: 1.1rem; display: block; margin-bottom: 20px; }
.card__title { font-family: var(--font-serif); font-weight: 500; font-size: 2rem; color: var(--brown-deep); line-height: 1.1; }
.card__sub { font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin: 8px 0 18px; }
.card__desc { font-size: 0.96rem; color: var(--brown); position: relative; }

/* Product photo bleeds to the top edge, cancelling the card's 46px/34px padding */
.card__media {
  margin: -46px -34px 26px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-soft);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s var(--ease-soft);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__order {
  display: inline-block;
  margin-top: 22px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  position: relative;
  transition: color .4s var(--ease-soft), letter-spacing .4s var(--ease-soft);
}
.card:hover .card__order { color: var(--brown-deep); letter-spacing: 0.18em; }

/* ---------- Material ---------- */
.material { background: var(--cream-soft); }
.material__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 70px; align-items: center; }
.material__text p { max-width: 40ch; }
.features { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 40px 34px; }
.feature { display: flex; gap: 20px; align-items: flex-start; }
.feature__icon {
  flex-shrink: 0;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid rgba(195, 160, 106, 0.45);
  color: var(--gold-deep);
  font-size: 1.35rem;
}
.feature h4 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--brown-deep); line-height: 1.2; margin-bottom: 6px; }
.feature p { font-size: 1rem; color: var(--taupe); line-height: 1.55; }

/* ---------- Testimoni (poster gallery) ---------- */
.testi__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.testi__poster {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(217, 198, 169, 0.5);
  background: var(--cream-soft);
  aspect-ratio: 3 / 4;
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft),
              background .5s var(--ease-soft), border-color .5s var(--ease-soft),
              opacity .6s var(--ease-soft);
}
.testi__poster::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(90% 60% at 50% 0%, rgba(195, 160, 106, 0.14), transparent 70%);
  opacity: 0; transition: opacity .5s var(--ease-soft);
  pointer-events: none;
}
.testi__poster img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform .7s var(--ease-soft);
}
.testi__poster:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px -32px rgba(107, 88, 66, 0.38);
  border-color: rgba(195, 160, 106, 0.5);
}
.testi__poster:hover::before { opacity: 1; }
.testi__poster:hover img { transform: scale(1.06); }
/* Same fix as .card.reveal: raise specificity above .reveal so the smooth
   hover transition (box-shadow/border) actually applies instead of popping. */
.testi__poster.reveal {
  transition: transform .5s var(--ease-soft), box-shadow .5s var(--ease-soft),
              background .5s var(--ease-soft), border-color .5s var(--ease-soft),
              opacity .6s var(--ease-soft);
}

/* ---------- Galeri Warna (color charts) ---------- */
.gallery { background: radial-gradient(120% 80% at 50% 0%, var(--cream) 0%, var(--cream-soft) 68%, var(--beige) 128%); }
.gallery__hint { margin-top: 16px; color: var(--taupe); font-size: 0.96rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  margin: 0;
  min-width: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-soft);
  cursor: zoom-in;
  box-shadow: 0 2px 6px -2px rgba(107, 88, 66, 0.18), 0 18px 40px -26px rgba(107, 88, 66, 0.5);
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), opacity .6s var(--ease-soft);
}
/* soft light-then-gold inner frame */
.gallery__item::after {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
  transition: box-shadow .55s var(--ease-soft);
}
.gallery__media { position: relative; overflow: hidden; }
/* scrim so the overlay name stays legible over any color */
.gallery__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(58, 47, 34, 0.74) 0%, rgba(58, 47, 34, 0.26) 24%, rgba(58, 47, 34, 0) 46%);
}
.gallery__media img { width: 100%; height: auto; display: block; transition: transform .9s var(--ease-soft); }
.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px -4px rgba(107, 88, 66, 0.25), 0 34px 60px -30px rgba(74, 59, 42, 0.55);
}
.gallery__item:hover .gallery__media img { transform: scale(1.06); }
.gallery__item:hover::after { box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), inset 0 0 0 6px rgba(195, 160, 106, 0.32); }
.gallery__item:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; }
/* raise specificity above .reveal so the smooth hover transition applies (see .card.reveal) */
.gallery__item.reveal {
  transition: transform .55s var(--ease-soft), box-shadow .55s var(--ease-soft), opacity .6s var(--ease-soft);
}
/* zoom badge (affordance) */
.gallery__badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; display: grid; place-items: center;
  color: #fff; border-radius: 50%;
  background: rgba(58, 47, 34, 0.34); border: 1px solid rgba(255, 255, 255, 0.42);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  transition: background .4s var(--ease), transform .4s var(--ease), border-color .4s var(--ease);
}
.gallery__item:hover .gallery__badge { background: var(--gold-deep); border-color: transparent; transform: scale(1.08); }
/* overlay caption */
.gallery__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 34px 14px 20px; text-align: center;
}
.gallery__star { color: var(--gold); font-size: 0.92rem; line-height: 1; opacity: 0.95; }
.gallery__name { font-family: var(--font-serif); font-weight: 500; font-size: 1.55rem; color: #fff; line-height: 1.05; }
.gallery__label { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--sand); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 5vh 4vw;
  background: rgba(43, 34, 23, 0.88);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 100%; max-height: 86vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  transform: scale(.96); transition: transform .4s var(--ease);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__cap {
  position: absolute; left: 0; right: 0; bottom: 20px;
  text-align: center; color: var(--cream-soft);
  font-family: var(--font-serif); font-size: 1.2rem; letter-spacing: .02em;
}
.lightbox__btn {
  position: absolute;
  display: grid; place-items: center;
  background: rgba(246, 239, 228, 0.14);
  color: var(--cream);
  border: 1px solid rgba(246, 239, 228, 0.28);
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.lightbox__btn:hover { background: rgba(246, 239, 228, 0.3); }
.lightbox__close { top: 20px; right: 20px; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; padding-bottom: 4px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__prev { left: 18px; }
.lightbox__next { right: 18px; }

/* ---------- Contact ---------- */
.contact {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, var(--beige) 0%, var(--sand) 100%);
  overflow: hidden;
}
.contact__glow {
  position: absolute; width: 700px; height: 700px; bottom: -50%; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
  pointer-events: none;
}
.contact__inner { position: relative; max-width: 800px; }
.contact__title { font-family: var(--font-serif); font-weight: 500; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.1; color: var(--brown-deep); margin-bottom: 20px; }
.contact__desc { max-width: 480px; margin: 0 auto 40px; color: var(--brown-deep); }
.contact__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.contact__loc { grid-column: 2; }
.contact__links a, .contact__loc {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 16px 14px;
  text-decoration: none;
  color: var(--brown-deep);
  font-size: 0.92rem;
  white-space: nowrap;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.contact__links a:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.75); }
.contact__links span { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--brown-deep); color: var(--cream-soft); padding: 46px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: baseline; gap: 12px; }
.footer__name { font-family: var(--font-serif); font-size: 1.7rem; color: var(--cream); }
.footer__sub { font-size: 0.62rem; letter-spacing: 0.3em; color: var(--sand); }
.footer__copy { font-size: 0.82rem; color: var(--sand); letter-spacing: 0.05em; }
.footer__powered {
  text-align: center;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(217, 198, 169, 0.18);
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: var(--sand);
}
.footer__powered a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 400;
  transition: color .3s var(--ease);
}
.footer__powered a:hover { color: var(--cream); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold-deep); color: #fff;
  box-shadow: 0 12px 26px -8px rgba(74, 59, 42, 0.6);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); background: var(--brown); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .section { padding: 84px 0; }
  .about__inner, .material__inner { grid-template-columns: 1fr; gap: 44px; }
  .about__media { max-width: 320px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testi__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .gallery__grid { gap: 14px; max-width: none; }
  .gallery__name { font-size: 1.18rem; }
  .gallery__cap { padding: 26px 8px 14px; gap: 2px; }
  .gallery__star { font-size: 0.78rem; }
  .gallery__badge { width: 30px; height: 30px; top: 9px; right: 9px; }

  .nav__links {
    position: fixed; inset: 0 0 auto auto; top: 0; right: 0;
    height: 100vh; width: min(74vw, 300px);
    flex-direction: column; justify-content: center; gap: 30px;
    background: var(--cream);
    box-shadow: -20px 0 50px -20px rgba(74, 59, 42, 0.35);
    transform: translateX(100%); transition: transform .45s var(--ease);
    padding: 40px;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; z-index: 101; }
  .nav .btn--sm { display: none; }
  .nav__brand-logo { width: 56px; height: 56px; }
  .nav__brand-name { font-size: 1.4rem; }
}

@media (max-width: 620px) {
  .contact__links { grid-template-columns: repeat(2, 1fr); max-width: 380px; margin-left: auto; margin-right: auto; }
  .lightbox__nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .footer__inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .card.reveal, .testi__poster.reveal, .gallery__item.reveal { opacity: 1; transform: none; transition: none; }
  .lightbox__img { transition: none; }
  .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}
