/* ===================================================
   XV AÑOS ARIANA — STYLES
   Disco Glam Luxury Night
   =================================================== */

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; }

/* ---- TOKENS ---- */
:root {
  --bg:         #080808;
  --cherry:     #3A0E1E;
  --cranberry:  #8E2D3B;
  --mauve:      #A07A80;
  --porcelain:  #E7C7CF;
  --white:      #F7F7F7;

  --ff-title:   'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Montserrat', system-ui, sans-serif;

  --ease:       cubic-bezier(.4,0,.2,1);
  --dur:        .45s;

  --glow-red:   0 0 40px rgba(142,45,59,.45);
  --glow-pink:  0 0 32px rgba(231,199,207,.25);
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---- UTILS ---- */
.hidden { display: none !important; }
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ===================================================
   ACCESS SCREEN
   =================================================== */
#access-screen {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

#canvas-access {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.access-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, transparent 5%, rgba(8,8,8,.75) 70%);
  pointer-events: none;
}

/* ---- Access content ---- */
.access-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Sparkle decorations */
.access-sparkles { position: absolute; inset: 0; pointer-events: none; }
.sp {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--porcelain);
  animation: sparkle 3s ease-in-out infinite;
}
.sp-1 { top: 15%; left: 20%; animation-delay: 0s; }
.sp-2 { top: 10%; right: 18%; animation-delay: .8s; }
.sp-3 { bottom: 20%; left: 15%; animation-delay: 1.6s; }
.sp-4 { bottom: 15%; right: 20%; animation-delay: 2.2s; }

.access-eyebrow {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .55em;
  color: var(--mauve);
  text-transform: uppercase;
  animation: fadeDown .9s var(--ease) both;
}

.access-name {
  font-family: var(--ff-title);
  font-size: clamp(58px, 13vw, 120px);
  font-weight: 300;
  letter-spacing: .15em;
  line-height: 1;
  background: linear-gradient(140deg, var(--porcelain) 0%, var(--mauve) 50%, var(--cranberry) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(231,199,207,.35));
  animation: fadeDown .9s var(--ease) .15s both, shimmerLoop 4s ease-in-out infinite alternate .9s;
}

.access-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(11px, 2.5vw, 14px);
  font-weight: 400;
  letter-spacing: .55em;
  color: var(--mauve);
  animation: fadeDown .9s var(--ease) .28s both;
}

.access-date {
  font-family: var(--ff-title);
  font-size: clamp(18px, 4.5vw, 32px);
  font-weight: 300;
  letter-spacing: .2em;
  color: var(--porcelain);
  animation: fadeDown .9s var(--ease) .4s both;
}

.access-phrase {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: clamp(17px, 4.5vw, 23px);
  color: rgba(231,199,207,.85);
  line-height: 1.85;
  max-width: 380px;
  margin: 8px 0 20px;
  animation: fadeDown .9s var(--ease) .52s both;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px 44px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--porcelain);
  background: linear-gradient(135deg, var(--cranberry), var(--cherry));
  border: 1px solid rgba(231,199,207,.25);
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  animation: fadeDown .9s var(--ease) .66s both;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary .btn-inner { position: relative; z-index: 1; }
.btn-primary .btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231,199,207,.12), transparent);
  opacity: 0;
  transition: opacity var(--dur);
}
.btn-primary:hover .btn-glow { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-red), 0 10px 40px rgba(142,45,59,.35);
  border-color: rgba(231,199,207,.5);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-full { width: 100%; margin-top: 8px; animation: none; }

.btn-secondary {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--porcelain);
  border: 1px solid rgba(231,199,207,.35);
  transition: all var(--dur) var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover {
  border-color: var(--porcelain);
  background: rgba(231,199,207,.06);
  box-shadow: var(--glow-pink);
}

/* ===================================================
   SECTIONS — SHARED
   =================================================== */
.section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
  position: relative;
}

.s-title {
  font-family: var(--ff-title);
  font-size: clamp(34px, 9vw, 82px);
  font-weight: 300;
  letter-spacing: .3em;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--white), var(--porcelain));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.s-eyebrow {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: .35em;
  color: rgba(231,199,207,.8);
  margin-bottom: 52px;
  text-transform: uppercase;
}

/* ===================================================
   HERO
   =================================================== */
.s-hero {
  height: 100vh;
  min-height: 600px;
  background: var(--bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .65;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  user-select: none;
}

.hero-name {
  font-family: var(--ff-title);
  font-size: clamp(62px, 16vw, 200px);
  font-weight: 300;
  letter-spacing: .22em;
  line-height: 1;
  background: linear-gradient(140deg, var(--porcelain) 0%, var(--mauve) 45%, var(--cranberry) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px rgba(231,199,207,.25));
  opacity: 0;
  animation: heroName 1.6s var(--ease) .2s forwards;
}

.hero-sub {
  font-family: var(--ff-body);
  font-size: clamp(12px, 3.5vw, 20px);
  font-weight: 300;
  letter-spacing: .75em;
  color: var(--mauve);
  margin-top: 6px;
  opacity: 0;
  animation: heroSub 1.4s var(--ease) .8s forwards;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--mauve));
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ===================================================
   COUNTDOWN
   =================================================== */
.s-countdown {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(58,14,30,.45) 50%,
    var(--bg) 100%
  );
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 56px;
}

.cd-card {
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(231,199,207,.12);
  padding: 36px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.cd-card:hover {
  border-color: rgba(231,199,207,.35);
  box-shadow: var(--glow-pink);
}

.cd-num {
  font-family: var(--ff-title);
  font-size: clamp(36px, 8vw, 88px);
  font-weight: 300;
  line-height: 1;
  background: linear-gradient(135deg, var(--white), var(--porcelain));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform .15s;
}
.cd-card.tick .cd-num { transform: scale(.93); }

.cd-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  color: rgba(231,199,207,.8);
}

/* ===================================================
   EVENT INFO
   =================================================== */
.s-event { background: var(--bg); }

.event-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 40px;
}

.event-card {
  position: relative;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(231,199,207,.1);
  padding: 40px 20px;
  overflow: hidden;
  transition: transform var(--dur) var(--ease),
              border-color var(--dur),
              box-shadow var(--dur);
}
.event-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,122,128,.6), transparent);
}
.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231,199,207,.28);
  box-shadow: var(--glow-red);
}

.ec-icon {
  font-size: 18px;
  color: var(--cranberry);
  margin-bottom: 18px;
  opacity: .7;
}
.ec-label {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(231,199,207,.75);
  margin-bottom: 10px;
  font-weight: 500;
}
.ec-val {
  font-family: var(--ff-title);
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

/* ===================================================
   DRESS CODE
   =================================================== */
.s-dresscode {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(58,14,30,.3) 50%,
    var(--bg) 100%
  );
}

.dc-badge {
  display: inline-block;
  border: 1px solid rgba(231,199,207,.38);
  padding: 10px 36px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .45em;
  color: var(--porcelain);
  margin-bottom: 36px;
}

.dc-text {
  font-family: var(--ff-body);
  font-size: clamp(13px, 3.5vw, 16px);
  color: rgba(231,199,207,.8);
  line-height: 1.9;
  margin-bottom: 44px;
}

.forbidden-list {
  display: flex;
  justify-content: center;
  gap: 44px;
  flex-wrap: wrap;
}

.fc-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-body);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--mauve);
}

.fc-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.fc-ban {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2.5px solid rgba(247,247,247,.85);
}
.fc-ban::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 2.5px;
  background: rgba(247,247,247,.85);
  transform: rotate(-45deg);
  transform-origin: center;
}

/* ===================================================
   RSVP
   =================================================== */
.s-rsvp { background: var(--bg); }

.rsvp-form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field { margin-bottom: 22px; }

.form-field input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(231,199,207,.18);
  color: var(--white);
  padding: 16px 18px;
  font-family: var(--ff-body);
  font-size: 13px;
  outline: none;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
  border-radius: 0;
  -webkit-appearance: none;
}
.form-field input::placeholder { color: rgba(160,122,128,.55); }
.form-field input:focus {
  border-color: rgba(231,199,207,.55);
  background: rgba(255,255,255,.065);
  box-shadow: 0 0 24px rgba(231,199,207,.08);
}
.form-field input.invalid { border-color: rgba(220,70,80,.6); }

.f-label {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--mauve);
  margin-bottom: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.radio-group { display: flex; gap: 28px; }

.radio-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--porcelain);
  user-select: none;
}
.radio-opt input[type="radio"] { display: none; }

.radio-custom {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(231,199,207,.38);
  flex-shrink: 0;
  transition: border-color var(--dur), background var(--dur), box-shadow var(--dur);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-opt input:checked + .radio-custom {
  border-color: var(--cranberry);
  background: var(--cranberry);
  box-shadow: 0 0 14px rgba(142,45,59,.55);
}
.radio-opt input:checked + .radio-custom::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--white);
}

.f-err {
  display: block;
  min-height: 18px;
  font-size: 10px;
  color: #e0606d;
  font-family: var(--ff-body);
  margin-top: 5px;
  letter-spacing: .05em;
}

.form-ok {
  margin-top: 20px;
  padding: 18px 24px;
  border: 1px solid rgba(231,199,207,.28);
  background: rgba(231,199,207,.06);
  font-family: var(--ff-body);
  font-size: 13px;
  color: var(--porcelain);
  text-align: center;
  letter-spacing: .08em;
  animation: fadeDown .5s var(--ease);
}

.form-fail {
  margin-top: 20px;
  padding: 16px 24px;
  border: 1px solid rgba(220,70,80,.3);
  background: rgba(220,70,80,.07);
  font-family: var(--ff-body);
  font-size: 13px;
  color: #e0606d;
  text-align: center;
}

/* ===================================================
   GIFTS
   =================================================== */
.s-gifts {
  background: linear-gradient(
    180deg,
    var(--bg) 0%,
    rgba(58,14,30,.22) 50%,
    var(--bg) 100%
  );
}

.gifts-text {
  font-family: var(--ff-body);
  font-size: clamp(14px, 3.8vw, 17px);
  color: rgba(231,199,207,.85);
  line-height: 1.95;
  max-width: 460px;
  margin: 0 auto 44px;
}

.mp-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(231,199,207,.13);
  padding: 28px 32px;
  max-width: 380px;
  margin: 0 auto 36px;
  text-align: left;
}

.mp-label-sm {
  font-family: var(--ff-body);
  font-size: 9px;
  letter-spacing: .35em;
  color: var(--mauve);
  margin-bottom: 5px;
  font-weight: 500;
}
.mp-alias {
  font-family: var(--ff-title);
  font-size: 26px;
  font-weight: 400;
  color: var(--porcelain);
  letter-spacing: .05em;
}
.mp-titular {
  font-family: var(--ff-body);
  font-size: 12px;
  color: rgba(231,199,207,.75);
  margin-top: 5px;
}

.gifts-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.gifts-btns .btn-primary { animation: none; }

.copied-msg {
  margin-top: 18px;
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--porcelain);
  animation: fadeDown .3s var(--ease);
}

/* ===================================================
   FINAL
   =================================================== */
.s-final {
  background: var(--bg);
  overflow: hidden;
}
.s-final .container {
  position: relative;
  z-index: 1;
}

.final-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(58,14,30,.25) 0%, var(--bg) 70%);
  pointer-events: none;
}

.final-name {
  font-family: var(--ff-title);
  font-size: clamp(50px, 12vw, 120px);
  font-weight: 300;
  letter-spacing: .25em;
  background: linear-gradient(140deg, var(--white) 0%, var(--porcelain) 50%, var(--cranberry) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 36px rgba(231,199,207,.25));
  margin-bottom: 28px;
}

.final-text {
  font-family: var(--ff-title);
  font-style: italic;
  font-size: clamp(20px, 5vw, 32px);
  color: var(--white);
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 52px;
  padding: 0 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.8);
  position: relative;
  z-index: 1;
}
.final-text br { display: none; }
@media (min-width: 500px) { .final-text br { display: inline; } }

/* ===================================================
   MUSIC PLAYER
   =================================================== */
.music-player {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(231,199,207,.18);
  padding: 12px 16px;
  min-width: 200px;
  box-shadow: var(--glow-red);
  animation: slideUp .6s var(--ease) .3s both;
}

.mp-track {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.mp-note {
  font-size: 15px;
  color: var(--cranberry);
  flex-shrink: 0;
  animation: notePulse 2s ease-in-out infinite;
}

.mp-title {
  font-family: var(--ff-body);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--mauve);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mp-btn {
  font-size: 18px;
  color: var(--porcelain);
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--dur), transform var(--dur);
  padding: 2px;
}
.mp-btn:hover { color: var(--cranberry); transform: scale(1.15); }

/* ===================================================
   SCROLL REVEAL
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger siblings */
.cd-grid.visible .cd-card:nth-child(1) { transition-delay: 0s; }
.cd-grid.visible .cd-card:nth-child(2) { transition-delay: .08s; }
.cd-grid.visible .cd-card:nth-child(3) { transition-delay: .16s; }
.cd-grid.visible .cd-card:nth-child(4) { transition-delay: .24s; }

.event-cards.visible .event-card:nth-child(1) { transition-delay: 0s; }
.event-cards.visible .event-card:nth-child(2) { transition-delay: .1s; }
.event-cards.visible .event-card:nth-child(3) { transition-delay: .2s; }

/* ===================================================
   ANIMATIONS
   =================================================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroName {
  from { opacity: 0; transform: scale(.92) translateY(20px); filter: blur(8px) drop-shadow(0 0 0 transparent); }
  to   { opacity: 1; transform: none; filter: drop-shadow(0 0 50px rgba(231,199,207,.25)); }
}
@keyframes heroSub {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes shimmerLoop {
  from { filter: drop-shadow(0 0 18px rgba(231,199,207,.25)); }
  to   { filter: drop-shadow(0 0 44px rgba(231,199,207,.55)); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%     { opacity: 1; transform: scaleY(1); transform-origin: top; }
}
@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(0); }
  50%     { opacity: 1; transform: scale(1); }
}
@keyframes notePulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .35; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 700px) {
  /* countdown: 2 columns, ajustar card */
  .cd-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 36px;
  }
  .cd-card { padding: 24px 10px; gap: 8px; }
  .cd-num  { font-size: clamp(34px, 9vw, 52px); }

  /* event */
  .event-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 36px 0 28px;
  }

  /* forms */
  .form-row { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; gap: 14px; }

  /* gifts */
  .gifts-btns { flex-direction: column; align-items: center; }
  .mp-card { padding: 20px; gap: 16px; }
  .mp-alias { font-size: 22px; }

  /* misc */
  .music-player { right: 12px; bottom: 12px; min-width: 160px; padding: 10px 14px; }
  .forbidden-list { gap: 24px; }
  .section { padding: 64px 0; }
  .s-eyebrow { margin-bottom: 32px; }

  /* access screen */
  .access-content { padding: 32px 20px; gap: 10px; }
  .access-phrase { font-size: clamp(19px, 5.2vw, 22px); margin: 6px 0 16px; }
}

@media (max-width: 480px) {
  /* hero */
  .hero-name { font-size: clamp(56px, 14vw, 90px); letter-spacing: .18em; }
  .hero-sub  { letter-spacing: .5em; }

  /* final */
  .final-name { font-size: clamp(46px, 11vw, 72px); letter-spacing: .2em; }

  /* access */
  .access-name { font-size: clamp(52px, 12.5vw, 80px); }
}

@media (max-width: 380px) {
  .cd-num { font-size: 32px; }
  .access-content { gap: 8px; }
  .btn-primary { padding: 14px 28px; font-size: 10px; }
  .access-name { font-size: 48px; }
}

/* ===================================================
   SCROLLBAR
   =================================================== */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--cherry); border-radius: 2px; }
