/* ═══════════════════════════════════════════════════════════════
   Junior Pereira — Prótese Capilar Premium
   Aesthetic: Dark Luxury — Charcoal + Champagne
   ═══════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. DESIGN TOKENS
────────────────────────────────────────── */
:root {
  /* Palette */
  --color-bg:          #111111;
  --color-bg-alt:      #1c1c1c;
  --color-surface:     #242424;

  /* Champagne / gold family */
  --color-champagne:   #e8d0a9;
  --color-gold:        #c9a96e;
  --color-gold-dim:    rgba(201, 169, 110, 0.18);
  --color-blush:       #f5ebe0;

  /* Text */
  --color-text:        #e2e2e2;
  --color-text-muted:  #888888;

  /* WhatsApp */
  --color-wa:          #25D366;
  --color-wa-dark:     #1da851;

  /* Fonts */
  --font-display:      'Cormorant Garamond', Georgia, serif;
  --font-body:         'Jost', system-ui, sans-serif;

  /* Type scale */
  --fs-hero:           clamp(4.5rem, 13vw, 11.5rem);
  --fs-hero-sub:       clamp(1.6rem, 4.5vw, 3.8rem);
  --fs-section:        clamp(2.2rem, 5vw, 4.2rem);
  --fs-body:           clamp(0.95rem, 1.4vw, 1.1rem);

  /* Spacing */
  --space-section:     clamp(5rem, 10vw, 9rem);
  --container-max:     1200px;
  --container-pad:     clamp(1.25rem, 5vw, 3rem);

  /* Motion */
  --ease-luxury:       cubic-bezier(0.77, 0, 0.18, 1);
  --ease-reveal:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:       cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ──────────────────────────────────────────
   2. RESET & BASE
────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.75;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

a { color: inherit; }

/* No-JS fallback: all reveal elements are visible */
.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ──────────────────────────────────────────
   3. UTILITIES
────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Section labels */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-section);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-champagne);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--color-gold);
}

.section-body {
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 3.5rem;
}

/* ──────────────────────────────────────────
   4. BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  padding: 0.95rem 2rem;
  transition: transform 0.35s var(--ease-luxury), filter 0.35s, box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}

/* Shine sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease-luxury);
}

.btn:hover::after { transform: translateX(100%); }

/* Sizes */
.btn--sm  { padding: 0.6rem 1.25rem; font-size: 0.72rem; }
.btn--lg  { padding: 1.15rem 2.5rem; font-size: 0.9rem; }
.btn--xl  { padding: 1.35rem 3rem; font-size: 1rem; }

/* Champagne */
.btn--champagne {
  background: linear-gradient(135deg, var(--color-champagne) 0%, var(--color-gold) 100%);
  color: #0e0c08;
}
.btn--champagne:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--color-wa);
  color: #fff;
}
.btn--whatsapp:hover {
  background: var(--color-wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
}

.btn__icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   5. SCROLL REVEAL
────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.75s var(--ease-reveal),
    transform 0.75s var(--ease-reveal);
  transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ──────────────────────────────────────────
   6. NAVBAR
────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
  transition:
    background  0.5s ease,
    padding     0.5s ease,
    box-shadow  0.5s ease;
}

.navbar--solid {
  background: rgba(12, 12, 12, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--color-gold-dim);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
  gap: 0.1rem;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-champagne);
}

.navbar__logo-tag {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.navbar__links {
  display: flex;
  gap: 2.5rem;
}

.navbar__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.navbar__links a:hover {
  opacity: 1;
  color: var(--color-champagne);
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__cta   { display: none; }
}

/* ──────────────────────────────────────────
   7. HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background photo */
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('JP-photo.png');
  background-size: cover;
  background-position: center top;
  animation: heroBgScale 10s var(--ease-luxury) forwards;
}

@keyframes heroBgScale {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* Directional overlay — heavy on left (text side), light on right */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(11, 11, 11, 0.92) 0%,
    rgba(11, 11, 11, 0.72) 40%,
    rgba(11, 11, 11, 0.30) 70%,
    rgba(11, 11, 11, 0.10) 100%
  );
}

/* Animated film-grain texture */
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  animation: grainDrift 0.7s steps(1) infinite;
}

@keyframes grainDrift {
  0%   { background-position:  0px   0px; }
  20%  { background-position: -40px -20px; }
  40%  { background-position:  20px  45px; }
  60%  { background-position: -65px  15px; }
  80%  { background-position:  30px -40px; }
  100% { background-position:  0px   0px; }
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 5rem;
  max-width: 860px;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* Main headline */
.hero__headline {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.92;
  margin-bottom: 2rem;
}

.hero__headline-word {
  display: block;
  font-size: var(--fs-hero);
  /* Champagne gradient text */
  background: linear-gradient(
    135deg,
    var(--color-blush)      0%,
    var(--color-champagne)  35%,
    var(--color-gold)       70%,
    var(--color-champagne)  100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  letter-spacing: -0.02em;
}

/* Gold underline reveal */
.hero__headline-word::after {
  content: '';
  position: absolute;
  bottom: 0.02em;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-gold) 0%, transparent 75%);
  transform: scaleX(0);
  transform-origin: left;
  animation: underlineReveal 1.4s 0.6s var(--ease-reveal) forwards;
}

@keyframes underlineReveal {
  to { transform: scaleX(1); }
}

.hero__headline-sub {
  display: block;
  font-size: var(--fs-hero-sub);
  color: var(--color-champagne);
  font-style: italic;
  font-weight: 300;
  margin-top: 0.15em;
}

.hero__headline-accent {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 2.2vw, 1.6rem);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 0.6em;
}

.hero__body {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  color: rgba(226, 226, 226, 0.7);
  max-width: 460px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint: animated line */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: var(--container-pad);
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%   { transform: scaleY(0); opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* Mobile hero adjustments */
@media (max-width: 600px) {
  .hero__bg {
    background-position: 70% top;
  }
  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(11,11,11,0.5)  0%,
      rgba(11,11,11,0.88) 60%,
      rgba(11,11,11,0.97) 100%
    );
  }
  .hero__body br { display: none; }
  .hero__headline-word::after { display: none; }
}

/* ──────────────────────────────────────────
   8. TRUST BAR
────────────────────────────────────────── */
.trust-bar {
  background: var(--color-bg-alt);
  border-top:    1px solid var(--color-gold-dim);
  border-bottom: 1px solid var(--color-gold-dim);
  padding: 3rem 0;
}

.trust-bar__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1rem 3rem;
  text-align: center;
}

.trust-bar__stat {
  display: flex;
  align-items: baseline;
  gap: 0.05em;
  line-height: 1;
}

.trust-bar__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  color: var(--color-champagne);
  font-variant-numeric: tabular-nums;
}

.trust-bar__plus {
  font-family: var(--font-display);
  font-size: 0.45em;
  color: var(--color-gold);
  font-weight: 300;
  align-self: flex-start;
  margin-top: 0.3em;
}

.trust-bar__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.trust-bar__divider {
  width: 1px;
  height: 3.5rem;
  background: var(--color-gold-dim);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .trust-bar__divider { display: none; }
  .trust-bar__item    { width: 50%; padding: 1rem 1.5rem; }
  .trust-bar__list    { gap: 0; }
}

/* ──────────────────────────────────────────
   9. GALLERY
────────────────────────────────────────── */
.gallery {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (max-width: 800px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

/* Each card */
.gallery__card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  cursor: crosshair;
  border: 1px solid rgba(201, 169, 110, 0.1);
  transition: border-color 0.4s;
}

.gallery__card:hover {
  border-color: rgba(201, 169, 110, 0.35);
}

/* Before — dark, desaturated (sparse hair) */
.gallery__before {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    #2b2621 0%,
    #1d1814 45%,
    #111111 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

/* Different subtle shade per card */
.gallery__card:nth-child(2) .gallery__before {
  background: linear-gradient(155deg, #252420 0%, #191613 45%, #111 100%);
}
.gallery__card:nth-child(3) .gallery__before {
  background: linear-gradient(155deg, #252220 0%, #181514 45%, #0f0f0f 100%);
}

/* After — warm amber, full hair */
.gallery__after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    #3e2e18 0%,
    #281d0c 50%,
    #1a1208 100%
  );
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.78s var(--ease-luxury);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery__card:nth-child(2) .gallery__after {
  background: linear-gradient(155deg, #3a2b15 0%, #251a0a 50%, #171006 100%);
}
.gallery__card:nth-child(3) .gallery__after {
  background: linear-gradient(155deg, #3c2e19 0%, #271e0d 50%, #191208 100%);
}

.gallery__card:hover .gallery__after,
.gallery__card.is-revealed .gallery__after {
  clip-path: inset(0 0% 0 0);
}

/* Placeholder labels inside each state */
.gallery__placeholder-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200, 190, 175, 0.35);
  font-style: italic;
}

.gallery__placeholder-label--after {
  color: rgba(201, 169, 110, 0.55);
}

/* Hint row at bottom of card */
.gallery__hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.gallery__card:hover .gallery__hint,
.gallery__card.is-revealed .gallery__hint {
  opacity: 0;
}

.gallery__hint-before { color: rgba(226, 226, 226, 0.5); }
.gallery__hint-sep    { color: var(--color-gold); }
.gallery__hint-after  { color: var(--color-gold); }

/* Touch: partial reveal by default */
@media (hover: none) {
  .gallery__after {
    clip-path: inset(0 52% 0 0);
  }
  .gallery__hint { opacity: 0.7; }
}

.gallery__cta {
  text-align: center;
  margin-top: 0.5rem;
}

/* ──────────────────────────────────────────
   10. ABOUT
────────────────────────────────────────── */
.about {
  padding: var(--space-section) 0;
  background: var(--color-bg-alt);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .about__grid            { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual          { order: -1; }
  .about__visual          { max-width: 420px; margin-inline: auto; }
}

/* Visual / portrait side */
.about__visual {
  position: relative;
}

.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background-image: url('JP-photo.png');
  background-size: cover;
  background-position: center top;
}

/* Decorative offset border */
.about__portrait-frame {
  position: absolute;
  inset: -1.25rem 1.25rem 1.25rem -1.25rem;
  border: 1px solid rgba(201, 169, 110, 0.25);
  pointer-events: none;
  z-index: -1;
}

/* Floating badge */
.about__visual-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--color-gold);
  color: #0e0c08;
  padding: 1rem 1.25rem;
  text-align: center;
  line-height: 1.2;
  border-radius: 2px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.about__badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.about__badge-txt {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Copy side */
.about__text {
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.85;
}

.about__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.about__features li::before {
  content: '';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1px;
  background: var(--color-gold);
}

/* ──────────────────────────────────────────
   11. CTA BANNER
────────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: var(--space-section) 0;
  background: var(--color-bg);
  overflow: hidden;
  text-align: center;
}

/* Ambient gold glow */
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 55% at 50% 50%,
    rgba(201, 169, 110, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Decorative diagonal lines */
.cta-banner__line {
  position: absolute;
  pointer-events: none;
  background: linear-gradient(to right, transparent, var(--color-gold-dim), transparent);
  height: 1px;
  width: 100%;
}

.cta-banner__line--1 { top: 20%; transform: rotate(-2deg); }
.cta-banner__line--2 { bottom: 20%; transform: rotate(2deg); }

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--color-champagne);
  margin-bottom: 1.5rem;
}

.cta-banner__headline em {
  font-style: italic;
  color: var(--color-gold);
}

.cta-banner__sub {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

/* ──────────────────────────────────────────
   12. FLOATING WHATSAPP
────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  /* Hidden until hero exits viewport */
  opacity: 0;
  transform: scale(0.6) translateY(12px);
  pointer-events: none;
  transition:
    opacity  0.45s var(--ease-bounce),
    transform 0.45s var(--ease-bounce),
    box-shadow 0.3s;
}

.whatsapp-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__icon {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 1;
}

/* Pulse ring */
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--color-wa);
  opacity: 0;
  animation: waPulse 2.8s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ──────────────────────────────────────────
   13. FOOTER
────────────────────────────────────────── */
.footer {
  background: #090909;
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-champagne);
  letter-spacing: 0.03em;
}

.footer__tagline {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--color-champagne); }

.footer__legal {
  font-size: 0.68rem;
  color: rgba(136, 136, 136, 0.45);
  text-align: right;
}

@media (max-width: 700px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .footer__links    { justify-content: center; flex-wrap: wrap; }
  .footer__legal    { text-align: center; }
}

/* ──────────────────────────────────────────
   14. REDUCED MOTION
────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero__grain          { animation: none; }
  .hero__bg             { animation: none; }
  .hero__scroll-line    { animation: none; }
  .whatsapp-float__pulse { animation: none; }
  .underlineReveal      { animation: none; }

  .reveal {
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }
}
