/* ============================================================
   MÁRCIO LEMES — CAMPANHA 30 ANOS
   style.css | Tomorrowland/Summerfest Level Design
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:        #050505;
  --bg2:       #090909;
  --surface:   #0e0e0e;
  --surface2:  #141414;
  --border:    #1a1a1a;
  --border2:   #252525;

  --text:      #ede8e0;
  --text2:     #b8b0a6;
  --muted:     #6e6762;
  --dim:       #3a3632;

  --gold:      #c8a870;
  --gold-l:    #e0c48a;
  --gold-d:    #9a7c50;
  --gold-xl:   #f0d8a0;
  --gold-glow: rgba(200,168,112,.12);
  --gold-glow2:rgba(200,168,112,.25);

  --font-d: 'Cormorant Garamond', Georgia, serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --ease:     cubic-bezier(.25,.46,.45,.94);
  --ease-out: cubic-bezier(0,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --dur: .35s;

  --r:  10px;
  --r2: 20px;
  --max: 1100px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--gold-d); color: var(--bg); }
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 2px; }

/* ── UTILIDADES ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); }
.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 400; line-height: 1.1;
  color: var(--text);
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  color: var(--muted); font-size: .9rem;
  line-height: 1.8; margin-top: 12px;
  max-width: 44ch;
}

/* ── CURSOR ── */
#cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  top: 0; left: 0;
  will-change: transform;
}
#cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid rgba(200,168,112,.5);
  top: 0; left: 0;
  will-change: transform;
  transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
body.cursor-hover #cursor-ring {
  width: 48px; height: 48px;
  border-color: var(--gold);
}
@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s, padding .4s;
}
#navbar.scrolled {
  background: rgba(5,5,5,.96);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-d);
  font-size: 1.3rem; font-weight: 600;
  letter-spacing: .02em; color: var(--text);
}
.nav-logo em { color: var(--gold); font-style: italic; margin-left: 4px; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,112,.1);
  border: 1px solid rgba(200,168,112,.3);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  transition: background .25s, border-color .25s, transform .2s;
}
.nav-cta:hover {
  background: rgba(200,168,112,.18);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── HERO dots decorativos (estáticos) ── */
#hero::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    radial-gradient(circle, rgba(200,168,112,.12) 1px, transparent 1px);
  background-size: 70px 70px;
  pointer-events: none;
  opacity: .4;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  padding-bottom: clamp(60px, 8vw, 100px);
}

#particles-canvas {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  filter: brightness(.3) contrast(1.15) saturate(.8);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5,5,5,.5) 0%,
      rgba(5,5,5,.1) 30%,
      rgba(5,5,5,.5) 60%,
      rgba(5,5,5,1) 100%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200,168,112,.06), transparent);
}

.hero-ghost-num {
  position: absolute;
  font-family: var(--font-d);
  font-size: clamp(22rem, 60vw, 52rem);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,168,112,.08);
  user-select: none; pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; letter-spacing: -.06em;
  animation: ghostPulse 7s ease-in-out infinite;
}
@keyframes ghostPulse {
  0%,100% { opacity: .8; }
  50%      { opacity: 1.0; }
}

.hero-line-top {
  position: absolute; top: 0; left: 0; right: 0; z-index: 3;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,168,112,.2), transparent);
}

.hero-content {
  position: relative; z-index: 4;
  width: 100%; max-width: 640px;
  padding: 0 24px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0;
}

/* Badge */
.badge-wrap {
  position: relative; margin-bottom: 24px;
}
.badge-pulse {
  position: absolute; inset: -6px; border-radius: 100px;
  border: 1px solid rgba(200,168,112,.2);
  animation: pulseBadge 2.5s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,100% { transform: scale(1); opacity: .5; }
  50%      { transform: scale(1.05); opacity: 0; }
}
.badge-text {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,112,.08);
  border: 1px solid rgba(200,168,112,.25);
  border-radius: 100px; padding: 7px 18px;
  font-size: .63rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
.badge-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* H1 */
.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(3.2rem, 12vw, 7rem);
  font-weight: 300; line-height: .95;
  letter-spacing: -.01em;
  color: var(--text); margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.h1-italic {
  font-style: italic; color: var(--gold-l);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(.85rem, 2.5vw, 1rem);
  color: var(--text2); line-height: 1.8;
  max-width: 36ch; margin: 0 auto 32px;
}
.hero-sub strong { color: var(--text); }

/* Cupom */
.coupon {
  width: 100%; max-width: 380px;
  display: flex; align-items: stretch;
  background: var(--surface);
  border: 1px solid rgba(200,168,112,.3);
  border-radius: var(--r2);
  margin: 0 auto 28px;
  position: relative; overflow: hidden;
}
.coupon-shine {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none;
}
.coupon-shine::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 60%; left: -60%;
  background: linear-gradient(105deg,
    transparent 20%,
    rgba(200,168,112,.08) 50%,
    transparent 80%);
  animation: shine 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes shine {
  0%   { transform: translateX(0); }
  60%  { transform: translateX(420%); }
  100% { transform: translateX(420%); }
}
.coupon-left {
  flex: 0 0 auto; padding: 22px 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(200,168,112,.05);
  border-right: 1px dashed rgba(200,168,112,.25);
  min-width: 110px;
}
.coupon-pct {
  font-family: var(--font-d);
  font-size: 3.2rem; font-weight: 700; line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 40px rgba(200,168,112,.3);
}
.coupon-pct span { font-size: 1.4rem; font-weight: 400; }
.coupon-off {
  font-size: .6rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
/* Notch decorativos */
.coupon-divider {
  flex: 0 0 auto;
  width: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-around;
  padding: 12px 0;
  opacity: .3;
}
.coupon-divider span {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold);
  display: block;
}
.coupon-right {
  flex: 1; padding: 20px 18px;
  display: flex; flex-direction: column;
  justify-content: center; gap: 4px;
}
.coupon-label {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.coupon-code {
  font-family: 'Courier New', monospace;
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: .2em; color: var(--gold-l);
  cursor: pointer;
  transition: color .2s;
}
.coupon-code:hover { color: var(--gold-xl); }
.coupon-validity {
  font-size: .62rem; color: var(--dim);
  letter-spacing: .06em;
}
.coupon-validity span { color: var(--gold-d); }

/* CTAs hero */
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; width: 100%; max-width: 420px;
}

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600;
  font-size: .82rem; letter-spacing: .06em;
  padding: 14px 26px; border-radius: var(--r);
  border: 1.5px solid transparent;
  transition: all .25s var(--ease);
  position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.btn::before {
  content:''; position:absolute; inset:0;
  background: rgba(255,255,255,.06);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.btn:hover::before { transform: scaleX(1); }
.btn:active { transform: scale(.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  color: var(--bg); border-color: transparent;
  box-shadow: 0 4px 24px rgba(200,168,112,.2);
}
.btn-gold:hover {
  box-shadow: 0 6px 36px rgba(200,168,112,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text2); border-color: var(--border2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 16px 32px; font-size: .88rem; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; z-index: 4;
  opacity: .5;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.scroll-hint span {
  font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── HERO ANIMATIONS ── */
.a1 { animation: fadeUp .8s var(--ease-out) .1s both; }
.a2 { animation: fadeUp .9s var(--ease-out) .25s both; }
.a3 { animation: fadeUp .8s var(--ease-out) .4s both; }
.a4 { animation: fadeUp .8s var(--ease-out) .55s both; }
.a5 { animation: fadeUp .8s var(--ease-out) .7s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── STATS ── */
#stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px;
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.stat {
  flex: 1; min-width: 120px;
  text-align: center; padding: 16px 24px;
}
.stat-num {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700; color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(200,168,112,.2);
}
.stat-label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.stat-sep {
  width: 1px; height: 48px;
  background: var(--border2);
  flex-shrink: 0;
}
@media (max-width: 480px) { .stat-sep { display: none; } }

/* ── QUOTE ── */
#quote-section {
  padding: clamp(64px, 10vw, 120px) 24px;
  background: var(--bg2);
  position: relative; overflow: hidden;
}
#quote-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%,
    rgba(200,168,112,.04), transparent);
  pointer-events: none;
}
.qs-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.qs-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-d));
  margin: 0 auto 36px;
}
.qs-quote {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 4.5vw, 2.4rem);
  font-weight: 400; font-style: italic;
  color: var(--text); line-height: 1.5;
  margin-bottom: 28px;
}
.qs-quote em { color: var(--gold-l); font-style: normal; font-weight: 600; }
.qs-body {
  font-size: .9rem; color: var(--muted);
  line-height: 1.9; max-width: 48ch; margin: 0 auto 32px;
}
.qs-seal {
  width: 80px; height: 80px; margin: 0 auto;
}
.qs-seal svg { width: 100%; height: 100%; }

/* ── GALERIA / PORTFÓLIO ── */
#fotos {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg); overflow: hidden;
}
.fotos-header {
  padding: 0 24px; margin-bottom: 40px;
  text-align: center;
}
.gallery-scroll {
  position: relative; overflow: hidden;
  touch-action: pan-y;
}
.gallery-track {
  display: flex; gap: 16px;
  padding: 0 24px;
  transition: transform .55s var(--ease);
  will-change: transform;
}
.gallery-slide {
  flex-shrink: 0;
  width: clamp(240px, 72vw, 320px);
  border-radius: var(--r2); overflow: hidden;
  position: relative; background: var(--surface);
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.gallery-slide img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.85) saturate(.9);
  transition: filter .5s, transform .5s var(--ease);
  display: block;
}
.gallery-slide:hover img {
  filter: brightness(1) saturate(1.05);
  transform: scale(1.03);
}
.gallery-slide.active {
  box-shadow: 0 20px 60px rgba(0,0,0,.5),
              0 0 0 1px rgba(200,168,112,.2);
}
.gallery-slide:not(.active) {
  transform: scale(.95);
  opacity: .5;
}
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 16px 16px;
  background: linear-gradient(to top, rgba(5,5,5,.8), transparent);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text2);
  transform: translateY(100%);
  transition: transform .3s var(--ease);
}
.gallery-slide:hover .gallery-caption { transform: translateY(0); }

.gallery-dots {
  display: flex; justify-content: center;
  gap: 6px; margin-top: 24px; padding: 0 24px;
}
.gdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border2); cursor: pointer;
  transition: background .3s, width .3s;
  border: none;
}
.gdot.active { background: var(--gold); width: 20px; border-radius: 3px; }

.gallery-nav {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 20px; padding: 0 24px;
}
.gnav-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .25s, color .25s, transform .2s;
  -webkit-tap-highlight-color: transparent;
}
.gnav-btn:hover {
  border-color: var(--gold); color: var(--gold);
  transform: scale(1.08);
}

/* ── COMO USAR ── */
#como-usar {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg2);
}
.cu-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
.section-header { text-align: center; margin-bottom: 48px; }
.cu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 40px;
}
.cu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease),
              box-shadow .3s;
}
.cu-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-d), transparent);
  opacity: 0; transition: opacity .3s;
}
.cu-card:hover {
  border-color: rgba(200,168,112,.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.cu-card:hover::before { opacity: 1; }
.cu-card-num {
  position: absolute; top: 20px; right: 22px;
  font-family: var(--font-d);
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  color: rgba(200,168,112,.06);
  user-select: none;
}
.cu-card-icon {
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 16px;
}
.cu-card-title {
  font-family: var(--font-d);
  font-size: 1.5rem; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
}
.cu-card-desc {
  font-size: .84rem; color: var(--muted); line-height: 1.75;
}

/* ── COUNTDOWN ── */
#countdown-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: var(--bg);
  position: relative; overflow: hidden;
  text-align: center;
}
.cd-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%,
    rgba(200,168,112,.04), transparent);
  pointer-events: none;
}
.cd-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto; padding: 0 24px;
}
.cd-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 400; color: var(--text);
  margin: 10px 0 8px;
}
.cd-sub { font-size: .85rem; color: var(--muted); margin-bottom: 40px; }

.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.cd-unit { text-align: center; }
.cd-num-wrap {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r); padding: 16px 8px;
  min-width: 76px; position: relative; overflow: hidden;
}
.cd-num-wrap::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: rgba(0,0,0,.4);
}
.cd-num {
  font-family: var(--font-d);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700; color: var(--gold); line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(200,168,112,.2);
}
.cd-label {
  font-size: .58rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); margin-top: 8px;
}
.cd-sep {
  font-family: var(--font-d);
  font-size: 2.5rem; color: var(--border2);
  margin-bottom: 24px; user-select: none;
  line-height: 1;
}

/* ── CTA FINAL ── */
#cta-final {
  position: relative; overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
}
.ctaf-bg {
  position: absolute; inset: 0;
}
.ctaf-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
  filter: brightness(.18) saturate(.6);
}
.ctaf-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,5,5,.6), rgba(5,5,5,.4), rgba(5,5,5,.8)),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,168,112,.05), transparent);
}
.ctaf-inner {
  position: relative; z-index: 2;
  max-width: 600px; margin: 0 auto; padding: 0 24px;
}
.ctaf-title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 9vw, 5rem);
  font-weight: 300; line-height: 1;
  color: var(--text); margin: 12px 0 16px;
}
.ctaf-title em { color: var(--gold-l); font-style: italic; display: block; }
.ctaf-sub {
  font-size: .92rem; color: var(--text2);
  line-height: 1.8; max-width: 36ch;
  margin: 0 auto 28px;
}
.ctaf-sub strong { color: var(--gold-l); font-weight: 700;
  letter-spacing: .06em; }

.ctaf-code {
  display: inline-flex; flex-direction: column;
  align-items: center; gap: 6px;
  background: rgba(200,168,112,.08);
  border: 1px dashed rgba(200,168,112,.35);
  border-radius: var(--r2); padding: 16px 32px;
  margin-bottom: 28px; cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s;
}
.ctaf-code:hover {
  background: rgba(200,168,112,.14);
  border-color: var(--gold);
  transform: scale(1.02);
}
.ctaf-code-value {
  font-family: 'Courier New', monospace;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: .22em; color: var(--gold-l);
}
.ctaf-copy-hint {
  font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.ctaf-btns {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 360px; margin: 0 auto 20px;
}
.ctaf-note {
  font-size: .68rem; color: var(--dim); letter-spacing: .06em;
}
.ctaf-form-link {
  display: block; margin-top: 24px;
  font-size: .78rem; color: var(--gold-d);
  letter-spacing: .06em;
  transition: color .2s;
}
.ctaf-form-link:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 36px 24px;
}
.foot-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.foot-name {
  font-family: var(--font-d);
  font-size: 1.4rem; font-weight: 600; color: var(--text);
}
.foot-name em { color: var(--gold); font-style: italic; }
.foot-studio {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--dim); margin-top: 2px;
}
.foot-links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 20px;
}
.foot-links a {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); transition: color .25s;
}
.foot-links a:hover { color: var(--gold); }
.foot-copy { font-size: .62rem; color: var(--dim); }

/* ── SCROLL REVEAL ── */
.rv {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }
.rv.vis { opacity: 1; transform: none; }

/* ── TOAST ── */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--surface2);
  border: 1px solid rgba(200,168,112,.3);
  border-radius: 100px;
  padding: 10px 24px;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gold);
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s, transform .3s;
  z-index: 200;
}
#toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ── DESKTOP ── */
@media (min-width: 768px) {
  .hero-ctas { flex-wrap: nowrap; }
  .ctaf-btns { flex-direction: row; max-width: 500px; }
  .foot-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .gallery-slide { width: 300px; }
}
@media (min-width: 1024px) {
  .cu-cards { grid-template-columns: repeat(3, 1fr); }
  .gallery-slide { width: 340px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .scroll-hint { display: none; }
}
