/* ══════════════════════════════════════════════
   Cris Guarin Studio · Lash & Brow
   ══════════════════════════════════════════════ */

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

:root {
  --ink:     #171112;
  --white:   #FFFFFF;
  --blush:   #F9EEF1;
  --blush-d: #F2DFE5;
  --rose:    #C2566E;
  --rose-l:  #E8A0B0;
  --gold:    #B9925B;
  --gold-l:  #D9BC8E;
  --mist:    #F7F2F3;
  --border:  rgba(23, 17, 18, 0.12);
  --serif:   'Cormorant Garamond', Georgia, serif;
  --script:  'Great Vibes', cursive;
  --sans:    'Montserrat', sans-serif;
  --wa:      #25D366;
  --wa-d:    #1DA851;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Language switching ──
   .en / .es blocks toggle with body.lang-es */
.es { display: none; }
body.lang-es .en { display: none; }
body.lang-es .es { display: block; }
body.lang-es span.es { display: inline; }
body.lang-es span.en { display: none; }
span.es { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 36px;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; border: none;
  font-family: var(--sans);
  transition: all 0.3s;
}
.btn--dark    { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: #3a2e30; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--rose    { background: var(--rose); color: var(--white); }
.btn--rose:hover { background: #a84460; }
.btn--wa      { background: var(--wa); color: var(--white); }
.btn--wa:hover { background: var(--wa-d); }
.btn--ghost   { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); }

.icon { width: 14px; height: 14px; fill: currentColor; flex: none; }

/* ── Announcement bar ── */
.announce {
  background: var(--ink); color: var(--white);
  text-align: center; padding: 10px 24px;
  font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase;
}
.announce a {
  color: var(--gold-l);
  border-bottom: 1px solid var(--gold-l);
  padding-bottom: 1px; margin-left: 16px;
}

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 40px;
  height: 72px;
}
.nav__left, .nav__right {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav__right { justify-content: flex-end; }
.nav__left a, .nav__right > li > a:not(.btn):not(.nav__wa-pill) {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--ink);
  transition: color 0.2s; white-space: nowrap;
}
.nav__left a:hover { color: var(--rose); }

.nav__logo { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1; }
.nav__logo-script { font-family: var(--script); font-size: 2rem; color: var(--ink); line-height: 1; }
.nav__logo-sub {
  font-size: 0.45rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px; font-weight: 500;
}

.lang-btn { display: flex; border: 1px solid var(--border); }
.lang-btn button {
  background: none; border: none; padding: 6px 11px;
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.12em;
  cursor: pointer; color: rgba(23,17,18,0.4);
  font-family: var(--sans); transition: all 0.2s;
}
.lang-btn button.active { background: var(--ink); color: var(--white); }

.nav__wa-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--wa); color: var(--white);
  padding: 8px 14px; font-size: 0.58rem;
  font-weight: 600; letter-spacing: 0.1em;
  transition: background 0.2s;
}
.nav__wa-pill:hover { background: var(--wa-d); }
.nav__wa-pill .icon { width: 12px; height: 12px; }

.nav__cta { padding: 11px 22px; font-size: 0.58rem; }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 20px; height: 1px; background: var(--ink); margin: 5px 0; transition: transform 0.2s; }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; padding: 0 20px; }
  .nav__left { display: none; }
  .nav__right {
    display: none;
  }
  .nav__right.show {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 24px 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav__toggle { display: block; }
}

/* ── Hero ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
}
.hero__media {
  position: relative; overflow: hidden;
  background: var(--blush-d);
  min-height: 500px;
}
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  filter: grayscale(1) contrast(1.08);
}
.hero__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,17,18,0.35) 0%, transparent 40%);
}
.hero__media-caption { position: absolute; bottom: 40px; left: 40px; z-index: 2; }
.hero__media-caption p {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.hero__media-caption h2 {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic; color: var(--white); line-height: 1.2;
}

.hero__content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
}
.hero__label {
  font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px; font-weight: 500;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 300; line-height: 0.98;
  margin-bottom: 8px;
}
.hero__title em { font-style: italic; color: var(--rose); display: block; }
.hero__script {
  font-family: var(--script);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--gold); margin: 18px 0 30px; line-height: 1;
}
.hero__desc {
  font-size: 0.75rem; line-height: 2;
  color: rgba(23,17,18,0.55);
  max-width: 380px; margin-bottom: 40px; letter-spacing: 0.04em;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; }
  .hero__media { min-height: 62vw; }
  .hero__content { padding: 48px 24px; }
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase;
  padding: 0 40px; color: rgba(23,17,18,0.4);
}
.marquee-track strong { color: var(--rose); font-weight: 500; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Section shells ── */
.section-label {
  display: block;
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

/* ── Services ── */
.services__inner { max-width: 1200px; margin: 0 auto; padding: 120px 40px; }
.services__header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end;
  margin-bottom: 72px;
}
.services__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300; line-height: 1;
}
.services__title em { font-style: italic; color: var(--rose); }
.services__intro {
  font-size: 0.72rem; color: rgba(23,17,18,0.5);
  line-height: 2; letter-spacing: 0.04em;
}

.services__list { border-top: 1px solid var(--border); list-style: none; }
.service-row {
  display: grid; grid-template-columns: 48px 1fr auto;
  align-items: center; gap: 32px;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, padding 0.2s, margin 0.2s;
}
.service-row:hover { background: var(--blush); margin: 0 -20px; padding: 26px 20px; }
.service-row__num { font-family: var(--serif); font-size: 0.9rem; color: var(--gold); }
.service-row__name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400; font-style: italic;
}
.service-row__sub {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(23,17,18,0.35); margin-top: 3px;
}
.service-row__book {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose); border-bottom: 1px solid var(--rose);
  padding-bottom: 2px; white-space: nowrap;
  opacity: 0; transition: opacity 0.2s;
}
.service-row:hover .service-row__book { opacity: 1; }

@media (max-width: 768px) {
  .services__inner { padding: 80px 24px; }
  .services__header { grid-template-columns: 1fr; gap: 24px; }
  .service-row { grid-template-columns: 36px 1fr; gap: 16px; }
  .service-row__book { display: none; }
}

/* ── Gallery ── */
.gallery { padding: 0 40px 120px; }
.gallery__header {
  max-width: 1200px; margin: 0 auto 40px;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 16px;
}
.gallery__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300; font-style: italic;
}
.gallery__link {
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; white-space: nowrap;
}
.gallery__link:hover { color: var(--rose); border-color: var(--rose); }

.gallery__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 8px;
}
.gallery__item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--blush-d);
}
.gallery__item--feature { grid-row: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 0.6s ease;
}
.gallery__item:not(.gallery__item--feature) { aspect-ratio: 4 / 3; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,17,18,0.55) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item-overlay span {
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white);
}
.gallery__grid--row2 {
  max-width: 1200px; margin: 8px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.gallery__grid--row2 .gallery__item { aspect-ratio: 1; }

@media (max-width: 768px) {
  .gallery { padding: 0 16px 80px; }
  .gallery__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery__item--feature { grid-row: auto; grid-column: span 2; aspect-ratio: 4 / 3; }
  .gallery__grid--row2 { grid-template-columns: 1fr 1fr; }
  .gallery__grid--row2 .gallery__item:last-child { grid-column: span 2; aspect-ratio: 2 / 1; }
}

/* ── Bundle ── */
.bundle {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.bundle__text {
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.bundle__label {
  font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-l); margin-bottom: 32px;
}
.bundle__price-line { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
.bundle__currency {
  font-family: var(--serif); font-size: 2rem; font-weight: 300;
  color: var(--white); margin-top: 16px;
}
.bundle__price {
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 8.5rem);
  font-weight: 300; line-height: 0.9; color: var(--white);
}
.bundle__subtitle {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.6); margin-bottom: 36px;
}
.bundle__items { list-style: none; margin-bottom: 48px; }
.bundle__items li {
  font-size: 0.68rem; letter-spacing: 0.1em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 12px;
}
.bundle__items li::before { content: '—'; color: var(--gold-l); }
.bundle__text .btn { align-self: flex-start; }

.bundle__visual {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #2E1219 0%, #1C0C11 60%, #241016 100%);
  display: flex; align-items: center; justify-content: center;
}
.bundle__visual-script {
  font-family: var(--script);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: rgba(217,188,142,0.4);
  text-align: center; line-height: 1.25;
  padding: 40px;
  user-select: none;
}

@media (max-width: 768px) {
  .bundle { grid-template-columns: 1fr; }
  .bundle__text { padding: 64px 24px; }
  .bundle__visual { min-height: 260px; }
}

/* ── Booking ── */
.booking { background: var(--mist); }
.booking__inner { max-width: 900px; margin: 0 auto; padding: 120px 40px; }
.booking__header { text-align: center; margin-bottom: 64px; }
.booking__header .section-label { margin-bottom: 20px; }
.booking__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300; line-height: 1; margin-bottom: 16px;
}
.booking__title em { font-style: italic; color: var(--rose); }
.booking__sub {
  font-size: 0.7rem; color: rgba(23,17,18,0.45);
  letter-spacing: 0.06em; line-height: 1.9;
}

.booking-form { background: var(--white); padding: 56px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 10px; }
.form-group label {
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(23,17,18,0.4); font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 0;
  font-size: 0.82rem; font-family: var(--sans); color: var(--ink);
  outline: none; width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--rose); }
.form-group textarea { resize: none; min-height: 72px; }

.time-slots { margin-bottom: 24px; }
.time-slots__label {
  display: block; margin-bottom: 16px;
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(23,17,18,0.4); font-weight: 500;
}
.time-slots__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
}
.time-slot {
  border: 1px solid var(--border);
  padding: 10px 4px; text-align: center;
  font-size: 0.62rem; letter-spacing: 0.06em;
  color: rgba(23,17,18,0.5);
  cursor: pointer; user-select: none;
  background: none; font-family: var(--sans);
  transition: all 0.2s;
}
.time-slot:hover:not(.booked) { border-color: var(--rose); color: var(--rose); }
.time-slot.selected { background: var(--ink); color: var(--white); border-color: var(--ink); }
.time-slot.booked {
  background: var(--mist); color: rgba(23,17,18,0.2);
  cursor: not-allowed; text-decoration: line-through;
}

.booking-notice {
  font-size: 0.65rem; color: rgba(23,17,18,0.4);
  margin-bottom: 32px; line-height: 1.8; letter-spacing: 0.03em;
}
.booking-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.booking-result {
  display: none;
  background: var(--blush); padding: 32px;
  margin-top: 24px; text-align: center;
}
.booking-result.show { display: block; }
.booking-result__title { font-family: var(--script); font-size: 2rem; color: var(--rose); margin-bottom: 8px; }
.booking-result__sub { font-size: 0.7rem; color: rgba(23,17,18,0.5); margin-bottom: 20px; }

@media (max-width: 640px) {
  .booking__inner { padding: 80px 24px; }
  .booking-form { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots__grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Testimonials ── */
.testimonials { padding: 120px 40px; text-align: center; }
.testimonials .section-label { margin-bottom: 48px; }
.testimonials__carousel { max-width: 720px; margin: 0 auto; }
.testimonials__stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 24px; font-size: 0.8rem; }
.testimonials__text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 300; font-style: italic;
  line-height: 1.55; margin-bottom: 32px;
  min-height: 4.5em;
}
.testimonials__author {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(23,17,18,0.35);
}
.testimonials__dots { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.testimonials__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer; padding: 0;
  transition: background 0.2s;
}
.testimonials__dot.active { background: var(--rose); }

/* ── Contact ── */
.contact { background: var(--ink); }
.contact__inner {
  max-width: 1200px; margin: 0 auto; padding: 120px 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.contact .section-label { color: var(--gold-l); margin-bottom: 24px; }
.contact__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; margin-bottom: 40px;
}
.contact__title em { font-style: italic; color: var(--rose-l); }
.contact__list { list-style: none; }
.contact__item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact__item-icon { font-size: 1rem; opacity: 0.6; width: 22px; text-align: center; }
.contact__item-label {
  display: block; margin-bottom: 3px;
  font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.contact__item-value { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.contact__item-value a:hover { color: var(--rose-l); }

.contact__cards { display: flex; flex-direction: column; gap: 16px; }
.contact__card {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.contact__card h3 {
  font-family: var(--serif); font-size: 1.4rem;
  font-weight: 300; font-style: italic; color: var(--white);
}
.contact__card p { font-size: 0.68rem; color: rgba(255,255,255,0.35); line-height: 1.8; }

@media (max-width: 768px) {
  .contact__inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 24px; }
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 40px;
}
.footer__inner {
  max-width: 1200px; margin: 0 auto 48px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__logo { font-family: var(--script); font-size: 2rem; color: var(--white); margin-bottom: 10px; }
.footer__tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 0.9rem; color: var(--gold-l); opacity: 0.7; margin-bottom: 20px;
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  font-size: 0.6rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 1px; transition: color 0.2s, border-color 0.2s;
}
.footer__social a:hover { color: var(--rose-l); border-color: var(--rose-l); }
.footer__col-title {
  font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__links li { font-size: 0.72rem; color: rgba(255,255,255,0.4); }
.footer__links a { transition: color 0.2s; }
.footer__links a:hover { color: rgba(255,255,255,0.8); }
.footer__bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer__copy { font-size: 0.58rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  .footer { padding: 48px 24px 32px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 300;
  display: flex; align-items: center; gap: 8px;
  background: var(--wa); color: var(--white);
  padding: 13px 18px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: all 0.3s;
}
.wa-float:hover { background: var(--wa-d); transform: translateY(-2px); }
.wa-float .icon { width: 17px; height: 17px; }
@media (max-width: 480px) {
  .wa-float { bottom: 16px; right: 16px; padding: 11px 14px; }
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
