:root {
  --c-purple: #6306B5;
  --c-teal: #00C4B4;
  --c-indigo: #1E1B4B;
  --c-ink: #0A0A1A;
  --c-mid: #4B5563;
  --c-border: #E5E7EB;
  --c-off: #F9FAFB;
  --c-white: #FFFFFF;
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Manrope", -apple-system, sans-serif;
  --f-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
ul, ol { list-style: none; padding: 0; margin: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin: 0 0 1.75rem;
}
.eyebrow--dark { color: var(--c-purple); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-purple);
  color: var(--c-white);
  box-shadow: 0 6px 24px -8px rgba(99, 6, 181, 0.5);
}
.btn--primary:hover {
  background: #520594;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(99, 6, 181, 0.65);
}
.btn--full { width: 100%; }

/* ============ HERO + FORM ============ */
.hero {
  position: relative;
  background: var(--c-indigo);
  color: var(--c-white);
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3rem, 6vw, 5rem);
}
@media (min-width: 980px) {
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__glow {
  position: absolute;
  width: 65vw; height: 65vw;
  max-width: 800px; max-height: 800px;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .55;
}
.hero__glow--teal {
  top: -10%; right: -10%;
  background: radial-gradient(circle, var(--c-teal) 0%, transparent 65%);
}
.hero__glow--purple {
  bottom: -20%; left: -15%;
  background: radial-gradient(circle, var(--c-purple) 0%, transparent 65%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero__brand {
  font-family: "Quicksand", var(--f-body);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-white);
  margin: 0 0 1.5rem;
  display: inline-flex; align-items: baseline;
}
.hero__brand span { color: var(--c-teal); }

.hero__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 980px) {
  .hero__layout {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas:
      "text  video"
      "text  card";
    gap: 1.75rem 3.5rem;
    align-items: start;
  }
  .hero__text { grid-area: text; align-self: center; }
  .hero__video { grid-area: video; margin-top: 0; }
  .form-card { grid-area: card; }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 5.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.hero__title em { font-style: italic; color: var(--c-teal); font-weight: 400; }
.hero__title .accent {
  display: block;
  color: var(--c-teal);
  font-style: italic;
  margin-top: 0.25rem;
}

.hero__sub {
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem);
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  max-width: 40ch;
  margin: 0 0 2rem;
  font-weight: 300;
}

.hero__points {
  display: flex; flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}
.hero__points li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.hero__points li::before {
  content: "→";
  color: var(--c-teal);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ============ HERO VIDEO ============ */
.hero__video {
  margin-top: 2rem;
  margin-bottom: 0;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: var(--c-ink);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.4);
  cursor: pointer;
  isolation: isolate;
}
.video-frame__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.video-frame:hover .video-frame__thumb {
  transform: scale(1.03);
}
.video-frame__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.1) 0%,
    rgba(10, 10, 26, 0.45) 100%
  );
  pointer-events: none;
  transition: background .3s var(--ease);
}
.video-frame:hover .video-frame__overlay {
  background: linear-gradient(
    180deg,
    rgba(30, 27, 75, 0.05) 0%,
    rgba(10, 10, 26, 0.35) 100%
  );
}
.video-frame__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 12vw, 88px);
  height: clamp(64px, 12vw, 88px);
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.4);
  transition: transform .25s var(--ease), background .25s var(--ease);
  z-index: 2;
}
.video-frame:hover .video-frame__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--c-white);
}
.video-frame__play svg {
  width: 32%;
  height: 32%;
  margin-left: 6%;
  color: var(--c-purple);
}
.video-frame__label {
  position: absolute;
  bottom: 0.875rem;
  left: 1rem;
  right: 1rem;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-frame__label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  display: inline-block;
  flex-shrink: 0;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Cuando ya cargó el iframe real, oculta facade */
.video-frame.is-playing .video-frame__thumb,
.video-frame.is-playing .video-frame__overlay,
.video-frame.is-playing .video-frame__play,
.video-frame.is-playing .video-frame__label {
  opacity: 0;
  pointer-events: none;
}

/* ============ FORM (en hero) ============ */
.form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.35);
}
.form-card__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--c-white);
  margin: 0 0 0.5rem;
}
.form-card__title em { font-style: italic; color: var(--c-teal); font-weight: 400; }
.form-card__sub {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin: 0 0 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 600px) and (max-width: 979px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}
.form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.form__field > span {
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.form__field input,
.form__field select {
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: var(--c-white);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 0.75rem 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.form__field input::placeholder { color: rgba(255,255,255,.35); }
.form__field input:focus,
.form__field select:focus {
  border-color: var(--c-teal);
  background: rgba(255,255,255,.1);
}
.form__field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.6) 50%),
    linear-gradient(135deg, rgba(255,255,255,.6) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
}
.form__field select option { background: var(--c-indigo); color: var(--c-white); }
.form__submit {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
}
.form__fineprint {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,.5);
  margin: 1rem 0 0;
  text-align: center;
}

.form__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0 0;
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: rgba(255,255,255,.85);
  text-align: center;
}
.form__urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-teal);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(0, 196, 180, 0.6);
}
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 196, 180, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 196, 180, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .form__urgency-dot { animation: none; }
}
.form__success {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 196, 180, 0.1);
  border: 1px solid rgba(0, 196, 180, 0.3);
  color: var(--c-white);
  font-size: 0.9375rem;
}
.form__success strong { color: var(--c-teal); }

/* ============ BOOKING POINTS (en hero card) ============ */
.booking__points {
  display: flex; flex-direction: column;
  gap: 0.65rem;
  margin: 0 0 1.75rem;
}
.booking__points li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,.85);
  line-height: 1.4;
}
.booking__points li::before {
  content: "✓";
  color: var(--c-teal);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.875rem;
}

/* ============ MODAL CALENDARIO ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.5rem);
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal.is-open {
  display: flex;
  opacity: 1;
}
.modal__dialog {
  background: var(--c-white);
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 25px 80px -20px rgba(0,0,0,0.5);
  transform: translateY(20px);
  transition: transform .35s var(--ease);
}
.modal.is-open .modal__dialog {
  transform: translateY(0);
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}
.modal__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--c-ink);
}
.modal__title em { font-style: italic; color: var(--c-purple); }
.modal__close {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--c-mid);
  transition: background .2s var(--ease), color .2s var(--ease);
  flex-shrink: 0;
}
.modal__close:hover { background: var(--c-off); color: var(--c-ink); }
.modal__close svg { width: 18px; height: 18px; }
.modal__body {
  flex: 1;
  overflow: hidden;
  background: var(--c-white);
  min-height: 620px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.modal__body iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  flex: 1;
}
.modal__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-white);
  color: var(--c-mid);
  font-family: var(--f-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
  padding: 1rem;
}
.modal__loading.is-hidden {
  display: none;
}

@media (max-width: 600px) {
  .modal {
    padding: 0;
  }
  .modal__dialog {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
  }
}

body.modal-open {
  overflow: hidden;
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--c-white);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--c-border);
}
.trust__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
  text-align: center;
}
@media (min-width: 600px) {
  .trust__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
.trust__stat-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-purple);
  margin: 0 0 0.5rem;
}
.trust__stat-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mid);
  margin: 0;
}
.trust__partners-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-mid);
  text-align: center;
  margin: 0 0 1.25rem;
}
.trust__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2rem;
}
.trust__partners li {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--c-ink);
  opacity: 0.55;
  transition: opacity .2s var(--ease);
}
.trust__partners li:hover { opacity: 1; }

/* ============ PROOF (compacto) ============ */
.proof {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--c-off);
}
.proof__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.proof__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 22ch;
}
.proof__title em { font-style: italic; color: var(--c-purple); }
.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
}
.proof__card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.25rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.proof__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -15px rgba(30, 27, 75, 0.2);
}
.proof__metric {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--c-purple);
  margin: 0 0 0.25rem;
}
.proof__label {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--c-teal);
  margin: 0 0 0.75rem;
}
.proof__text {
  color: var(--c-mid);
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
}

/* ============ FAQ MINI ============ */
.faq {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}
.faq__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 0 0 2rem;
  max-width: 18ch;
}
.faq__title em { font-style: italic; color: var(--c-purple); }
.faq__list {
  border-top: 1px solid var(--c-border);
  max-width: 820px;
}
.faq__item { border-bottom: 1px solid var(--c-border); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  text-align: left;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  transition: color .2s var(--ease);
}
.faq__q:hover { color: var(--c-purple); }
.faq__icon {
  width: 14px; height: 14px;
  position: relative;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.faq__icon::before {
  top: 50%; left: 0; right: 0; height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after {
  left: 50%; top: 0; bottom: 0; width: 1.5px;
  transform: translateX(-50%);
}
.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq__a > p {
  overflow: hidden;
  margin: 0;
  color: var(--c-mid);
  font-size: 0.9375rem;
  line-height: 1.55;
}
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__q[aria-expanded="true"] + .faq__a > p { padding-bottom: 1.25rem; }

/* ============ CTA BANNER (segundo punto de conversión) ============ */
.cta-banner {
  position: relative;
  background: var(--c-indigo);
  color: var(--c-white);
  padding: clamp(4rem, 9vw, 7rem) 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--c-white);
  margin: 0 auto 1.25rem;
  max-width: 20ch;
}
.cta-banner__title em {
  font-style: italic;
  color: var(--c-teal);
  font-weight: 400;
}
.cta-banner__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  line-height: 1.4;
  color: rgba(255,255,255,.75);
  max-width: 52ch;
  margin: 0 auto 2.25rem;
}
.cta-banner__note {
  margin: 1.5rem 0 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.cta-banner__note .form__urgency-dot {
  display: inline-block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.7);
  padding: 2.5rem 0 1.5rem;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  gap: 1.5rem;
  text-align: center;
}
.footer__logo {
  font-family: "Quicksand", var(--f-body);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--c-white);
  margin: 0;
}
.footer__logo span { color: var(--c-teal); }
.footer__tagline {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9375rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.footer__contact {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem 2rem;
}
.footer__contact a:hover { color: var(--c-teal); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.4);
}

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
