/* ─── FONTS ──────────────────────────────────────────────── */
@font-face {
  font-family: 'Montvolca';
  src: url('assets/fonts/Montvolca.otf') format('opentype'),
       url('assets/fonts/Montvolca.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ─── ACCESIBILIDAD: reducir movimiento ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-right { opacity: 1 !important; transform: none !important; }
}

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --cloud:         #F6F0E6;
  --cloud-80:      rgba(246,240,230,.8);
  --cloud-60:      rgba(246,240,230,.6);
  --cloud-40:      rgba(246,240,230,.4);
  --cloud-20:      rgba(246,240,230,.2);
  --cloud-10:      rgba(246,240,230,.1);
  --cloud-06:      rgba(246,240,230,.06);
  --amber:         #9F6B23;
  --amber-light:   #c8942e;
  --amber-glow:    rgba(159,107,35,.35);
  --amber-glow-sm: rgba(159,107,35,.15);
  --chocolate:     #453115;
  --forest:        #0F2D1F;
  --forest-mid:    #163d2a;
  --forest-light:  #1a4a30;
  --forest-bright: #1E5A3E;
  --forest-glow:   rgba(15,45,31,.5);
  --midnight:      #0B0E28;
  --midnight-deep: #050714;
  --bg:            #060818;

  --font-display: 'Montvolca', 'Georgia', serif;
  --font-body:    'Raleway', system-ui, sans-serif;
  --ease-out:     cubic-bezier(.22,1,.36,1);
  --ease-cinema:  cubic-bezier(.16,1,.3,1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cloud);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  /* Montvolca only ships weight 400 — block faux-bold (the "O" ring artifact),
     keep faux-italic for emphasis words. Raleway has real bolds, unaffected. */
  font-synthesis: style;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }
input, select, textarea { font-family: inherit; }

/* ─── CURSOR ─────────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* hidden until first mouse move */
  transition: opacity .4s;
}
.cursor-dot {
  width: 5px; height: 5px;
  background: var(--amber);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(159,107,35,.5);
  transition: width .35s var(--ease-out), height .35s var(--ease-out),
              border-color .35s, opacity .4s;
}
.cursor-dot.visible, .cursor-ring.visible { opacity: 1; }
.cursor-ring.is-hover {
  width: 56px; height: 56px;
  border-color: var(--amber);
}
.cursor-ring.is-click {
  width: 20px; height: 20px;
  border-color: var(--amber-light);
}
@media (hover: none) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ─── CANVAS ─────────────────────────────────────────────── */
#routeCanvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: 0; pointer-events: none;
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--forest-bright), var(--amber), var(--cloud));
  z-index: 1000; transition: width .06s linear;
}

/* ─── REVEAL ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease-cinema), transform .8s var(--ease-cinema);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── HOVER UTILITIES ────────────────────────────────────── */
.hover-lift {
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out) !important;
}
.hover-lift:hover {
  transform: translateY(-3px) !important;
}
.hover-glow {
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.hover-glow:hover {
  border-color: rgba(26,74,48,.6) !important;
  box-shadow: 0 0 20px rgba(15,45,31,.2), inset 0 0 12px rgba(15,45,31,.06);
  background: linear-gradient(135deg, rgba(15,45,31,.4), rgba(15,45,31,.2)) !important;
}

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 4px;
  background: rgba(6,8,24,.45);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid var(--cloud-06);
  border-radius: 999px; padding: 5px 8px;
  transition: all .4s var(--ease-out);
}
/* Clearance so the rounded CONTACTO button never pokes past the pill's curve */
.nav-cta { margin-right: 14px; }
.nav:hover { background: rgba(6,8,24,.72); border-color: var(--cloud-10); }
.nav.scrolled {
  background: rgba(6,8,24,.85);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 0 0 1px var(--cloud-06);
}
.nav-logo { height: 30px; margin: 0 4px 0 8px; filter: drop-shadow(0 0 8px var(--amber-glow)); flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: var(--cloud-40); transition: all .25s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--cloud); background: var(--cloud-06); }
.nav-cta {
  padding: 8px 18px; border-radius: 999px; flex-shrink: 0;
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  background: var(--amber); color: var(--midnight); font-weight: 700;
  transition: filter .25s, box-shadow .25s;
}
.nav-cta:hover { filter: brightness(1.15); box-shadow: 0 4px 20px var(--amber-glow); }

/* Burger (mobile only) */
.nav-burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent; flex-shrink: 0;
  padding: 0 9px;
}
.nav-burger span {
  display: block; height: 1.5px; width: 100%;
  background: var(--cloud); border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(6,8,24,.97);
  backdrop-filter: blur(20px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1.75rem;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem; color: var(--cloud-60);
  letter-spacing: .04em; transition: color .25s;
}
.mobile-menu a:active { color: var(--amber); }
.mobile-menu-cta {
  margin-top: 1rem;
  padding: .8rem 2.2rem !important;
  background: var(--amber); color: var(--midnight) !important;
  font-family: var(--font-body) !important;
  font-size: .8rem !important; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero { position: relative; z-index: 2; height: 200vh; background: var(--bg); }
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; background: var(--bg); }

.hero-bg {
  position: absolute; inset: 0;
  background: url('assets/images/citation-cj4-2.jpg') center 40% / cover no-repeat;
  transform: scale(1.05);
  will-change: transform, mask-image, -webkit-mask-image;
  -webkit-mask-image: radial-gradient(ellipse 95% 95% at center, #000 35%, transparent 100%);
  mask-image:         radial-gradient(ellipse 95% 95% at center, #000 35%, transparent 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,24,.55) 0%, rgba(6,8,24,.35) 30%, rgba(6,8,24,.38) 55%, rgba(6,8,24,.72) 80%, rgba(6,8,24,.92) 100%),
    linear-gradient(90deg, rgba(6,8,24,.35) 0%, transparent 40%);
}

/* ─── CLOUD DISSOLVE ─────────────────────────────────────── */
.hero-clouds {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none; overflow: hidden;
}
.c-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.3);
  will-change: transform, opacity;
  /* Dark — matches page bg, creates seamless dissolve into content */
  background: radial-gradient(ellipse at center,
    rgba(6,8,24,1)   0%,
    rgba(6,8,24,.92) 35%,
    rgba(6,8,24,.6)  60%,
    transparent 80%);
  filter: blur(55px);
}
/* Position each cloud blob */
.c-blob--tl { width: 58%; height: 52%; top: -18%; left: -14%; }
.c-blob--tr { width: 55%; height: 48%; top: -20%; right: -12%; }
.c-blob--bl { width: 60%; height: 54%; bottom: -20%; left: -10%; }
.c-blob--br { width: 58%; height: 50%; bottom: -18%; right: -8%; }
.c-blob--tc { width: 50%; height: 44%; top: -16%; left: 25%; }
.c-blob--bc { width: 52%; height: 46%; bottom: -16%; left: 22%; }
.c-blob--lm { width: 44%; height: 60%; top: 15%; left: -18%; }
.c-blob--rm { width: 44%; height: 60%; top: 15%; right: -18%; }

.hero-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 0 24px 90px;
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(10px,1.1vw,13px);
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--cloud-80); margin-bottom: 20px;
  opacity: 0; animation: fadeUp .7s .2s var(--ease-out) forwards;
}
.hero-title {
  text-align: center;
  opacity: 0; animation: fadeUp .8s .35s var(--ease-out) forwards;
  overflow: hidden;
}
.hero-title h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 112px);
  font-weight: 400; line-height: .93; letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cloud);
  text-shadow: 0 2px 20px rgba(0,0,0,.6), 0 8px 60px rgba(0,0,0,.4);
}
/* Each line animates independently */
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(70px) skewY(4deg);
  animation: lineReveal .9s var(--ease-cinema) forwards;
}
.hero-line:nth-child(1) { animation-delay: .3s; }
.hero-line:nth-child(2) { animation-delay: .48s; }
@keyframes lineReveal {
  to { opacity: 1; transform: none; }
}
.word-plain  { color: var(--cloud); font-weight: 400; }
.word-accent { font-style: normal; color: var(--amber); font-weight: 600; }

.hero-buttons {
  display: flex; gap: 14px; margin-top: 36px;
  opacity: 0; animation: fadeUp .7s .75s var(--ease-out) forwards;
}
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(24px,5vw,80px);
  opacity: 0; animation: fadeUp .7s .95s var(--ease-out) forwards;
}
.hero-scroll-wrap {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cloud-40);
}
.hero-scroll-line {
  width: 1px; height: 28px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(.6); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}
.hero-metrics { display: flex; align-items: center; }
.hero-metric {
  padding: 0 22px; border-right: 1px solid var(--cloud-20);
  font-size: 13px; color: var(--cloud-60); white-space: nowrap;
}
.hero-metric:last-child { border-right: none; }
.hero-metric strong { color: var(--cloud); font-weight: 700; margin-right: 5px; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--midnight); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; border: none;
  box-shadow: 0 4px 20px var(--amber-glow);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), filter .25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px var(--amber-glow), 0 0 0 1px rgba(200,148,46,.3);
  filter: brightness(1.08);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px;
  background: rgba(246,240,230,.07);
  backdrop-filter: blur(8px);
  color: var(--cloud); font-weight: 500; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid var(--cloud-20);
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
}
.btn-secondary:hover {
  border-color: var(--cloud-60);
  background: rgba(246,240,230,.12);
  transform: translateY(-3px);
}
.btn-green {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  color: var(--cloud); font-weight: 600; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  border-radius: 999px; border: 1px solid rgba(26,74,48,.45);
  box-shadow: 0 4px 16px var(--forest-glow);
  transition: transform .3s var(--ease-out), box-shadow .3s, filter .25s;
}
.btn-green:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px var(--forest-glow);
  filter: brightness(1.1);
}

/* ─── REQUEST FORM ───────────────────────────────────────── */
.request { position: relative; z-index: 2; padding: 72px 24px; }
.request-inner {
  max-width: 1000px; margin: 0 auto;
  background: linear-gradient(145deg, rgba(15,45,31,.18), rgba(11,14,40,.4));
  border: 1px solid rgba(246,240,230,.14);
  border-top: 1px solid rgba(246,240,230,.22);
  border-radius: 28px; padding: 52px;
  backdrop-filter: blur(36px) saturate(1.4);
  -webkit-backdrop-filter: blur(36px) saturate(1.4);
  box-shadow:
    0 8px 32px rgba(0,0,0,.45),
    0 0 80px rgba(15,45,31,.08),
    inset 0 1px 0 rgba(246,240,230,.1);
  position: relative; overflow: hidden;
}
.request-inner::before {
  content: ''; position: absolute; top: -40%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(159,107,35,.07), transparent 70%);
  pointer-events: none;
}
.request-inner::after {
  content: ''; position: absolute; bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,45,31,.14), transparent 70%);
  pointer-events: none;
}
.request-label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--forest-bright); margin-bottom: 12px; position: relative; }
.request h2 { font-family: var(--font-display); font-size: clamp(28px,3.5vw,42px); font-weight: 400; margin-bottom: 8px; position: relative; }
.request h2 strong { font-weight: 700; color: var(--amber); }
.request-note { font-size: 14px; color: var(--cloud-60); margin-bottom: 36px; line-height: 1.65; position: relative; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; position: relative; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--cloud-80); font-weight: 600; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(11,14,40,.65);
  border: 1px solid rgba(26,74,48,.45);
  border-radius: 12px; padding: 15px 16px;
  color: var(--cloud); font-size: 14px; font-weight: 400;
  outline: none; transition: all .3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cloud-40); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: rgba(11,14,40,.85);
  box-shadow: 0 0 0 3px rgba(159,107,35,.14), 0 4px 16px rgba(0,0,0,.2);
}
.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
  border-color: rgba(26,74,48,.7);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239F6B23' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; cursor: pointer;
}
.form-group select option { background: var(--midnight); color: var(--cloud); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-actions {
  grid-column: 1/-1; display: flex; align-items: center; gap: 16px;
  margin-top: 8px; flex-wrap: wrap;
}
.form-disclaimer { font-size: 12px; color: var(--cloud-40); line-height: 1.55; flex: 1; min-width: 200px; }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about { position: relative; z-index: 2; padding: 80px 24px; }
.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-label-mobile { display: none; }   /* shown only when stacked (mobile/tablet) */
.about-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(26,74,48,.3);
  box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(26,74,48,.15);
  transition: box-shadow .4s var(--ease-out), transform .4s var(--ease-out);
}
.about-img-wrap:hover {
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 40px rgba(15,45,31,.12), 0 0 0 1px rgba(26,74,48,.4);
  transform: translateY(-4px);
}
.about-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 50%;          /* show man + plane */
  transform: scale(1.05);
  transform-origin: center center;
  display: block;
  filter: brightness(.88) contrast(1.06);
  transition: filter .4s, transform .5s var(--ease-out);
}
.about-img-wrap:hover img { filter: brightness(.96) contrast(1.06); transform: scale(1.08); }
.about-img-overlay {
  position: absolute; inset: 0; border-radius: 24px;
  background: linear-gradient(to top, rgba(6,8,24,.55), transparent 55%);
  pointer-events: none;
}
.about-img-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  border: 1px solid rgba(30,90,62,.5);
  border-radius: 0 0 24px 0;
  padding: 14px 20px;
  display: flex; flex-direction: column; align-items: flex-end;
  gap: 2px;
}
.about-img-badge span { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(246,240,230,.5); }
.about-img-badge strong { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--cloud); }
.section-label { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--forest-bright); margin-bottom: 14px; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(30px,4vw,48px); font-weight: 400; line-height: 1.15; margin-bottom: 24px; }
.about-content h2 strong { font-weight: 700; color: var(--amber); }
.about-content p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--cloud-60); margin-bottom: 16px; }
.about-features { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.about-feat {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(15,45,31,.32), rgba(15,45,31,.18));
  border: 1px solid rgba(26,74,48,.38);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(246,240,230,.04);
}
.about-feat-dot { width: 8px; height: 8px; min-width: 8px; background: var(--forest-bright); border-radius: 50%; box-shadow: 0 0 8px rgba(30,90,62,.5); }
.about-feat span { font-size: 13px; font-weight: 600; letter-spacing: .03em; }

/* ─── TYPEWRITER ─────────────────────────────────────────── */
.typewriter-section {
  position: relative; z-index: 2;
  padding: 3rem 2rem;
  border-top: 1px solid var(--cloud-08);
  border-bottom: 1px solid var(--cloud-08);
  background: rgba(6,8,24,.7);
  display: flex;
  justify-content: center;
}
.typewriter-line {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--cloud);
  white-space: nowrap;
  text-align: left;
  /* Block auto-centered; constant width (static + reserved dynamic) keeps
     "Nacimos para" anchored and phrases never overflow / get cut. */
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.tw-static { color: var(--cloud-60); }
.tw-dynamic {
  display: inline-block;
  min-width: 17em;          /* ≥ longest phrase → line width never changes */
  color: var(--amber);
  font-style: italic;
}
.tw-cursor {
  color: var(--amber);
  font-style: normal;
  animation: cursorBlink .85s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ─── ROUTES / GLOBE ─────────────────────────────────────── */
.routes { position: relative; z-index: 2; padding: 80px 24px; }
.routes-layout {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.routes-text .section-label { display: block; }
.routes-text h2 { font-family: var(--font-display); font-size: clamp(28px,4vw,48px); font-weight: 400; line-height: 1.2; margin-bottom: 20px; }
.routes-text h2 strong { font-weight: 700; color: var(--forest-bright); }
.routes-text p { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--cloud-60); margin-bottom: 40px; max-width: 46ch; }
.routes-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.routes-globe-wrap {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
#globeCanvas {
  width: 100%; max-width: 520px; aspect-ratio: 1;
  cursor: grab; display: block;
  touch-action: none; /* let touch drag rotate the globe, not scroll the page */
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 35%,
    rgba(15,45,31,.18) 0%,
    rgba(11,14,40,.5) 45%,
    rgba(6,8,24,.85) 100%);
  box-shadow:
    0 0 80px rgba(15,45,31,.15),
    0 0 200px rgba(11,14,40,.6),
    inset 0 0 60px rgba(159,107,35,.04);
}
#globeCanvas:active { cursor: grabbing; }
.globe-hint {
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--cloud-40); margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .routes-layout { grid-template-columns: 1fr; }
  #globeCanvas { max-width: 380px; }
}

/* ─── FLEET ──────────────────────────────────────────────── */
.fleet { position: relative; z-index: 2; padding: 80px 24px; }
.fleet-header { text-align: center; margin-bottom: 44px; }
.section-title { font-family: var(--font-display); font-size: clamp(30px,4.5vw,52px); font-weight: 400; line-height: 1.15; }
.section-title strong { font-weight: 700; color: var(--amber); }
.fleet-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.fleet-card {
  background: rgba(246,240,230,.025);
  border: 1px solid rgba(246,240,230,.06);
  border-radius: 20px; overflow: hidden;
  transition: all .5s var(--ease-out);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.fleet-card:hover {
  border-color: rgba(26,74,48,.45);
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(0,0,0,.45), 0 0 40px rgba(15,45,31,.1), 0 0 0 1px rgba(26,74,48,.25);
}
.fleet-card-img { position: relative; height: 220px; overflow: hidden; }
.fleet-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.78) contrast(1.1);
  transition: all .6s var(--ease-out);
}
.fleet-card:hover .fleet-card-img img { filter: brightness(.95) contrast(1.1); transform: scale(1.06); }
.fleet-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,8,24,.72) 0%, rgba(6,8,24,.1) 55%, transparent 100%);
}
.fleet-card-body { padding: 28px; }
.fleet-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.fleet-type { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--forest-bright); margin-bottom: 18px; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fleet-spec { font-size: 12px; color: var(--cloud-40); }
.fleet-spec strong { display: block; color: var(--cloud); font-weight: 700; font-size: 15px; }

/* ─── TEAM SCROLL EXPANSION ──────────────────────────────── */
.team-expand {
  position: relative; z-index: 2;
  height: 230vh;
  background: var(--bg);
}
.team-expand-sticky {
  position: sticky; top: 0;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--bg);
}

/* Media box — JS controls width/height/border-radius */
/* Clouds video background */
.te-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.7) contrast(1.05);
  z-index: 0;
}
.te-bg-veil {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(6,8,24,.35) 0%, rgba(6,8,24,.2) 50%, rgba(6,8,24,.5) 100%);
}

.te-media {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,.7);
  will-change: width, height, border-radius, opacity;
  transition: box-shadow .3s ease;
  z-index: 1;
}
.te-media-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;   /* keep both heads visible at every size */
  /* JS drives grayscale→color + brightness as it expands */
  filter: grayscale(1) brightness(.78) contrast(1.05);
  display: block;
}
.te-media-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,8,24,.8) 0%, rgba(6,8,24,.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .1s linear;
}

/* Content over the video, centered (fades in when expanded) */
.te-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) translateY(16px);
  width: min(720px, 88vw);
  text-align: center;
  padding: 0 1rem;
  opacity: 0;
  will-change: opacity, transform;
  z-index: 3;
}
.te-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.te-body {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--cloud-80);
  max-width: 56ch;
  margin: 0 auto 2.25rem;
}
.te-founders {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.te-founder {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.te-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(159,107,35,.5);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  flex-shrink: 0;
}
.te-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.25);
}
/* Center each founder's head in the circle */
.te-founder:nth-child(1) .te-avatar img { object-position: center 56%; transform: scale(1.42); transform-origin: center 56%; }  /* Fran — más cuerpo, menos aire arriba */
.te-founder:nth-child(2) .te-avatar img { object-position: center 26%; }  /* Seba */
.te-founder-info { display: flex; flex-direction: column; gap: .2rem; }
.te-founder-info strong {
  font-size: .9rem; font-weight: 600; color: var(--cloud);
}
.te-founder-info span {
  font-size: .72rem; color: var(--cloud-40); letter-spacing: .04em;
}

/* Title that splits apart — mix-blend-difference so always readable */
.te-title-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  z-index: 10;
  pointer-events: none;
  white-space: nowrap;
  mix-blend-mode: difference;
  opacity: 0.78;
}
.te-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 7rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cloud);
  letter-spacing: .06em;
  will-change: transform;
  display: block;
}

/* Scroll hint */
.te-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 10;
  will-change: opacity;
}
.te-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.te-hint span {
  font-size: .6rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cloud-40);
}

@media (max-width: 768px) {
  .te-media { width: 280px; height: 220px; }
  .te-title  { font-size: clamp(2rem, 10vw, 4rem); }
  .te-content { padding: 1.5rem; }
  .te-founders { flex-direction: column; gap: 1rem; }
}

/* ─── ORBITAL SERVICES ───────────────────────────────────── */
.orb-section { position: relative; z-index: 2; padding: 80px 0 70px; background: var(--bg); }
.orb-header { text-align: center; margin-bottom: 3.5rem; }

.orb-stage {
  position: relative;
  width: min(560px, 90vw);
  height: min(560px, 90vw);
  margin: 0 auto;
}

/* Orbit ring */
.orb-ring-el {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(159,107,35,.12);
  box-shadow: inset 0 0 60px rgba(15,45,31,.06);
}

/* Center */
.orb-center-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .35s ease;
  z-index: 5;
}
.orb-center-wrap.hidden { opacity: 0; pointer-events: none; }

.orb-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(159,107,35,.25);
  animation: orbPulse 3s ease-out infinite;
}
.orb-pulse--2 { animation-delay: 1.5s; }
@keyframes orbPulse {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}

.orb-iso { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(159,107,35,.4)); }

/* Detail panel (replaces center when node active) */
.orb-detail {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease-out);
  z-index: 6;
}
.orb-detail.active { opacity: 1; pointer-events: auto; }

.orb-detail-tag {
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: .6rem;
}
.orb-detail-title {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 400;
  color: var(--cloud); line-height: 1.15; margin-bottom: .75rem;
}
.orb-detail-desc {
  font-size: .8rem; font-weight: 300; line-height: 1.65;
  color: var(--cloud-60); margin-bottom: .75rem;
}
.orb-detail-key {
  display: block;
  font-size: .65rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest-bright); margin-bottom: 1.25rem;
}
.orb-detail-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .6rem 1.4rem;
  background: var(--amber); color: var(--midnight);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid var(--amber);
  transition: all .3s var(--ease-out);
}
.orb-detail-cta:hover { background: var(--amber-light); transform: translateY(-2px); box-shadow: 0 6px 20px var(--amber-glow); }

/* Hint text */
.orb-hint {
  position: absolute; bottom: -2.5rem; left: 50%; transform: translateX(-50%);
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--cloud-40); white-space: nowrap;
  transition: opacity .4s;
}
.orb-hint.hidden { opacity: 0; }

/* Nodes (injected by JS) */
.o-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer;
  transition: opacity .4s ease;
  will-change: opacity;
}
.o-node-btn {
  position: relative;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(6,8,24,.9);
  border: 1.5px solid rgba(159,107,35,.35);
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease-out);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}
.o-node-btn:hover {
  border-color: var(--amber);
  background: rgba(159,107,35,.1);
  box-shadow: 0 0 24px rgba(159,107,35,.2), 0 4px 16px rgba(0,0,0,.4);
  transform: scale(1.12);
}
.o-node-btn.active {
  border-color: var(--amber);
  background: var(--amber);
  box-shadow: 0 0 32px rgba(159,107,35,.45);
  transform: scale(1.25);
}
.o-node-btn.active svg { stroke: var(--midnight); }
.o-node-icon { width: 20px; height: 20px; color: var(--amber); pointer-events: none; }
.o-node-icon svg { width: 100%; height: 100%; stroke: var(--amber); fill: none; stroke-width: 1.5; }
.o-node-label {
  margin-top: .55rem;
  font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--cloud-60); white-space: nowrap;
  transition: color .3s;
}
.o-node:hover .o-node-label,
.o-node.active .o-node-label { color: var(--amber); }

@media (max-width: 768px) {
  .typewriter-section { justify-content: flex-start; padding: 3.5rem 1.5rem; }
  .typewriter-line {
    width: 100%; margin: 0;
    white-space: normal;        /* allow wrapping, no horizontal cut */
  }
  .tw-static  { display: block; }   /* "Nacimos para" on its own line */
  .tw-dynamic { display: inline; min-width: 0; }  /* free wrap on mobile */
}

/* ─── CTA ────────────────────────────────────────────────── */
.cta {
  position: relative; z-index: 2;
  min-height: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(15,45,31,.12), rgba(159,107,35,.06), transparent 68%);
  pointer-events: none;
  animation: ctaPulse 5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: .8; }
  50%      { transform: translate(-50%,-50%) scale(1.06); opacity: 1; }
}
.cta h2 { font-family: var(--font-display); font-size: clamp(36px,5.5vw,68px); font-weight: 400; line-height: 1.1; margin-bottom: 20px; position: relative; }
.cta h2 strong { font-weight: 700; color: var(--amber); }
.cta p { font-size: 16px; font-weight: 300; color: var(--cloud-60); max-width: 460px; margin-bottom: 36px; line-height: 1.7; position: relative; }
.cta-buttons { display: flex; gap: 14px; position: relative; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(26,74,48,.22);
  padding: 60px 24px 40px;
  background: linear-gradient(180deg, transparent, rgba(6,8,24,.8));
}
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1.4fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-logo { height: 52px; width: auto; object-fit: contain; display: block; margin-left: -2px; }
.footer-brand > p { font-size: 13px; color: var(--cloud-40); line-height: 1.6; max-width: 260px; }
.footer-claim {
  font-size: 11px !important; letter-spacing: .16em; text-transform: uppercase;
  color: var(--amber) !important; opacity: .85; font-weight: 600; margin-top: 4px;
}
.footer-col h4 { font-family: var(--font-display); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--forest-bright); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; font-size: 13px; color: var(--cloud-40); margin-bottom: 10px; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: var(--cloud); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; color: var(--cloud-40); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(26,74,48,.15);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(246,240,230,.2); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(26,74,48,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.footer-socials a:hover { border-color: var(--forest-bright); background: rgba(15,45,31,.25); transform: translateY(-2px); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--cloud-40); transition: fill .3s; }
.footer-socials a:hover svg { fill: var(--forest-bright); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
/* Switch to burger before links can overflow */
@media (max-width: 1040px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-burger { display: flex; }
  .nav { gap: 0; justify-content: space-between; min-width: 200px; }
}
@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .fleet-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .cursor-dot, .cursor-ring { display: none; }

  /* Hero: más oscuro para legibilidad en mobile */
  .hero-bg::after {
    background:
      linear-gradient(180deg, rgba(6,8,24,.6) 0%, rgba(6,8,24,.45) 35%, rgba(6,8,24,.65) 60%, rgba(6,8,24,.85) 85%, rgba(6,8,24,.95) 100%);
  }
  /* Hero: título en 2 líneas, centrado vertical, sin pisar "Scroll" */
  .hero-content { justify-content: center; padding-bottom: 0; }
  .hero-title h1 {
    font-size: clamp(34px, 11vw, 80px);
    text-shadow: 0 2px 16px rgba(0,0,0,.85), 0 6px 40px rgba(0,0,0,.6);
  }
  .hero-line { white-space: nowrap; }   /* YOUR MISSION / OUR FLIGHT, una por línea */
  .hero-tagline { color: var(--cloud); text-shadow: 0 1px 10px rgba(0,0,0,.8); }
  /* Métricas en una sola línea */
  .hero-stats { flex-direction: column; gap: 10px; align-items: stretch; padding-bottom: 14px; }
  .hero-metrics { flex-wrap: nowrap; gap: 0; width: 100%; justify-content: space-between; }
  .hero-metric { padding: 0 6px; font-size: 10.5px; white-space: nowrap; }
  .hero-metric strong { font-size: .95rem; margin-right: 4px; }

  /* "¿Por qué elegirnos?" arriba de la imagen */
  .about-label-mobile { display: block; margin-bottom: 4px; }
  .about-content > .section-label { display: none; }

  /* Imagen del hombre: recortar el lado izquierdo (margen transparente) */
  .about-img-wrap { aspect-ratio: 1 / 1; }
  .about-img-wrap img { transform: scale(1.08); object-position: 68% 52%; }

  /* Espaciados más compactos en mobile */
  .typewriter-section { padding: 2.2rem 1.5rem; }
  .request { padding: 50px 20px; }
  .about   { padding: 56px 20px; }
  .routes  { padding: 56px 20px; }
  .fleet   { padding: 50px 20px; }
  .orb-section { padding: 56px 0 48px; }
  .cta     { padding: 56px 20px; }
  .fleet-header { margin-bottom: 32px; }
  .orb-header { margin-bottom: 2.5rem; }

  /* Foto de los chicos: torso (sin zapatos), centrado vertical y horizontal */
  .te-media-img { transform: scale(1.5); object-position: 50% 40%; }
}
@media (max-width: 480px) {
  .hero-buttons, .cta-buttons, .routes-buttons { flex-direction: column; align-items: center; width: 100%; }
  .btn-primary, .btn-green, .btn-secondary { width: 100%; justify-content: center; }
  .request-inner { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
}

/* ─── ACCESIBILIDAD: foco visible por teclado ────────────── */
a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── LEGIBILIDAD EN MOBILE ──────────────────────────────── */
@media (max-width: 768px) {
  /* Subir un poco el contraste de textos chicos/tenues */
  .fleet-spec, .service-card p, .valor p,
  .footer-col a, .footer-contact-item, .footer-brand > p {
    color: rgba(246,240,230,.62);
  }
  .fleet-spec strong { color: var(--cloud); }
  .pillar__text, .servicio__text { color: rgba(246,240,230,.6); }
  /* Tamaños mínimos legibles */
  .service-card p, .valor p, .te-body { font-size: 15px; }
  .fleet-info h3, .fleet-card h3 { font-size: 1.25rem; }
  .footer-copy { color: rgba(246,240,230,.35); }
}

/* ─── MODAL DE CONFIRMACIÓN DEL FORM ─────────────────────── */
.form-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(6,8,24,.78);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease-out);
}
.form-modal.open { opacity: 1; pointer-events: auto; }
.form-modal-card {
  position: relative;
  max-width: 440px; width: 100%;
  text-align: center;
  padding: 3rem 2.25rem 2.5rem;
  background: linear-gradient(155deg, rgba(15,45,31,.35), rgba(11,14,40,.95));
  border: 1px solid rgba(159,107,35,.3);
  border-top: 1px solid rgba(159,107,35,.5);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 60px rgba(15,45,31,.15);
  transform: translateY(16px) scale(.97);
  transition: transform .4s var(--ease-out);
}
.form-modal.open .form-modal-card { transform: none; }
.form-modal-icon {
  width: 64px; height: 64px; margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(159,107,35,.2), rgba(159,107,35,.06));
  border: 1px solid rgba(159,107,35,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-light);
}
.form-modal-icon svg { width: 30px; height: 30px; }
.form-modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 400; color: var(--cloud);
  margin-bottom: .85rem;
}
.form-modal-card p {
  font-size: .95rem; font-weight: 300; line-height: 1.7;
  color: var(--cloud-60); margin-bottom: 2rem;
  max-width: 34ch; margin-inline: auto;
}
.form-modal-card .btn-primary { margin: 0 auto; }
.form-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: transparent; color: var(--cloud-40);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: color .2s;
}
.form-modal-close:hover { color: var(--cloud); }
