

  /* ══ TOKENS ══════════════════════════════════════════════════════════ */
  :root {
    --navy:      #004272;
    --navy-d:    #003159;
    --navy-dd:   #001e3a;
    --navy-glass:rgba(0,50,90,.65);
    --gold:      #B4A152;
    --gold-lt:   #CFC07A;
    --gold-dim:  rgba(180,161,82,.18);
    --gold-mid:  rgba(180,161,82,.38);
    --cream:     #F4F0E8;
    --cream-d:   #E8E2D4;
    --serif:       'Cormorant Garamond', Georgia, serif;
    --sans:        'Jost', Helvetica, sans-serif;
    /* Emil: strong ease-out curves | impeccable: no bounce, no elastic */
    --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
    --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body { font-family: var(--sans); background: var(--navy); color: #fff; overflow-x: hidden; }
  a { text-decoration: none; color: inherit; }
  img { display: block; max-width: 100%; }

  /* ══ GRAIN TEXTURE (hero & CTA) ════════════════════════════════════ */
  .grain::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
    opacity: .038;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 1;
  }

  /* ══ SCROLL REVEAL ══════════════════════════════════════════════════ */
  /* Emil: always combine scale + opacity — nothing appears from nowhere */
  .reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  }
  .reveal.in { opacity: 1; transform: translateY(0) scale(1); }

  /* ══ EYEBROW ════════════════════════════════════════════════════════ */
  .eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }
  .eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
  }

  /* ══ BUTTONS ════════════════════════════════════════════════════════ */
  /* Emil: specify exact properties — never transition: all */
  .btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1.1rem 2.6rem;
    /* Emil: 160ms for button press feedback, exact props only */
    transition: background-color 160ms var(--ease-out),
                transform 160ms var(--ease-out),
                box-shadow 160ms var(--ease-out),
                border-color 160ms var(--ease-out),
                color 160ms var(--ease-out);
    cursor: pointer;
    border: none;
    overflow: hidden;
    white-space: nowrap;
  }
  /* Emil: scale(0.97) on :active — instant press feedback */
  .btn:active { transform: scale(0.97) !important; }

  .btn-gold { background: var(--gold); color: var(--navy-dd); }
  /* Shimmer — decorative, seen rarely on marketing page */
  .btn-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    animation: shimmer 3.2s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes shimmer {
    0%   { left: -80%; }
    50%  { left: 160%; }
    100% { left: 160%; }
  }
  .btn-gold:hover { background-color: var(--gold-lt); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(180,161,82,.28); }
  .btn-ghost {
    background: transparent;
    color: rgba(255,255,255,.82);
    border: 1px solid var(--gold-mid);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); background-color: rgba(180,161,82,.06); }
  .btn-navy {
    background: var(--navy);
    color: #fff;
    border: 1px solid rgba(255,255,255,.08);
  }
  .btn-navy:hover { background-color: var(--navy-d); transform: translateY(-2px); }

  /* ══ FLOATING CTA ═══════════════════════════════════════════════════ */
  #float-cta {
    position: fixed;
    right: 2rem; bottom: 2rem;
    z-index: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy-dd);
    font-family: var(--sans);
    font-size: .65rem;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .9rem 1.8rem;
    box-shadow: 0 8px 32px rgba(0,0,0,.3);
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), background-color .22s, box-shadow .22s;
    overflow: hidden;
  }
  #float-cta::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
  }
  #float-cta.show { opacity: 1; transform: none; pointer-events: auto; }
  #float-cta:hover { background: var(--gold-lt); transform: translateY(-4px) !important; box-shadow: 0 16px 48px rgba(0,0,0,.35); }
  #float-cta svg { width: 15px; height: 15px; flex-shrink: 0; }

  /* ══ NAV ════════════════════════════════════════════════════════════ */
  #nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 300;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    transition: background .5s, border-color .5s, backdrop-filter .5s;
    border-bottom: 1px solid transparent;
    background: rgba(0,42,80,0);
  }
  #nav.scrolled {
    background: var(--navy-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-color: var(--gold-dim);
  }
  .nav-logo img { height: 40px; width: auto; transition: filter .3s; }
  .nav-logo:hover img { filter: drop-shadow(0 0 12px rgba(180,161,82,.35)); }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    list-style: none;
  }
  .nav-links a {
    font-size: .65rem;
    font-weight: 300;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    transition: color .22s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width .28s var(--ease-out);
  }
  .nav-links a:hover { color: var(--gold-lt); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .75rem 1.65rem;
    background: transparent;
    border: 1px solid var(--gold-mid);
    color: var(--gold-lt);
    transition: color 160ms var(--ease-out), border-color 160ms var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
  }
  .nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms var(--ease-out);
  }
  .nav-cta:hover { color: var(--navy-dd); border-color: var(--gold); }
  .nav-cta:hover::before { transform: scaleX(1); }
  .nav-cta:active { transform: scale(0.97); }
  .nav-cta span { position: relative; z-index: 1; display: flex; align-items: center; gap: 8px; }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 7px;
    border: 1px solid var(--gold-dim);
    transition: border-color .2s;
  }
  .burger:hover { border-color: var(--gold-mid); }
  .burger span { display: block; width: 20px; height: 1px; background: rgba(255,255,255,.75); transition: transform 280ms var(--ease-out), opacity 200ms var(--ease-out); }
  .burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .mob-menu {
    position: fixed;
    inset: 82px 0 0;
    background: rgba(0,16,36,.97);
    backdrop-filter: blur(24px);
    z-index: 290;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.25rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .38s;
  }
  .mob-menu.open { opacity: 1; pointer-events: auto; }
  .mob-menu a {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 300;
    color: rgba(255,255,255,.75);
    transition: color .2s, transform .2s;
  }
  .mob-menu a:hover { color: var(--gold-lt); transform: translateX(6px); }
  .mob-cta {
    font-family: var(--sans) !important;
    font-size: .68rem !important;
    font-weight: 400 !important;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    background: var(--gold) !important;
    color: var(--navy-dd) !important;
    margin-top: 1rem;
    transform: none !important;
  }

  /* ══ HERO ═══════════════════════════════════════════════════════════ */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 140px 10% 100px;
    background: url("/img/bg-hero.jpg") center center / cover no-repeat;
    position: relative;
    overflow: hidden;
  }
  /* Layered radial glows */
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 88% 42%, rgba(0,90,160,.38) 0%, transparent 60%),
      radial-gradient(ellipse 40% 40% at 15% 85%, rgba(180,161,82,.06) 0%, transparent 55%),
      radial-gradient(ellipse 30% 30% at 50% 5%, rgba(0,66,114,.5) 0%, transparent 60%);
    pointer-events: none;
  }
  /* Brand diagonal lines */
  .hero-deco {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 36%;
    overflow: hidden;
    pointer-events: none;
  }
  .hero-deco::before,
  .hero-deco::after,
  .hero-deco .l3 {
    position: absolute;
    top: -60%; bottom: -60%;
    width: 1px;
    transform: rotate(-38deg);
    transform-origin: center;
  }
  .hero-deco::before {
    content: '';
    right: 40%;
    background: linear-gradient(to bottom, transparent 5%, rgba(180,161,82,.3) 35%, rgba(180,161,82,.15) 65%, transparent 92%);
  }
  .hero-deco::after {
    content: '';
    right: 25%;
    background: linear-gradient(to bottom, transparent 18%, rgba(180,161,82,.14) 48%, rgba(180,161,82,.07) 70%, transparent 92%);
  }
  .hero-deco .l3 {
    right: 12%;
    background: linear-gradient(to bottom, transparent 32%, rgba(180,161,82,.07) 60%, transparent 92%);
  }
  /* Corner brackets */
  .brkt { position: absolute; width: 48px; height: 48px; pointer-events: none; }
  .brkt-tl { top: 88px; left: 6%; border-top: 1px solid rgba(180,161,82,.4); border-left: 1px solid rgba(180,161,82,.4); }
  .brkt-br { bottom: 58px; right: 6%; border-bottom: 1px solid rgba(180,161,82,.4); border-right: 1px solid rgba(180,161,82,.4); }

  /* Large logo — right side */
  .hero-emblem {
    position: absolute;
    right: 7%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    will-change: transform;
  }
  .hero-emblem img {
    height: 290px;
    width: auto;
    opacity: .72;
    filter: drop-shadow(0 0 60px rgba(180,161,82,.15)) drop-shadow(0 0 20px rgba(0,66,114,.4));
    transition: filter .4s;
  }
  .hero-emblem:hover img { filter: drop-shadow(0 0 80px rgba(180,161,82,.28)) drop-shadow(0 0 20px rgba(0,66,114,.4)); }

/* ── Hero entrance: elements start hidden, GSAP reveals them ──── */
  .hero-tag, .hero-sub, .hero-btns {
    opacity: 0;
    transform: translateY(18px);
  }

  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(0,26,54,0) 0%, rgba(0,26,54,.55) 14%, rgba(0,26,54,.45) 100%),
      linear-gradient(to right, rgba(0,26,54,.62) 0%, rgba(0,42,80,.35) 55%, rgba(0,26,54,.22) 100%);
    z-index: 1;
    pointer-events: none;
  }
  /* Hero content */
  .hero-content { position: relative; z-index: 3; max-width: 820px; }
  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .68rem;
    font-weight: 300;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(255,255,255,.58);
    margin-bottom: 2.75rem;
  }
  .hero-tag-line { width: 28px; height: 1px; background: var(--gold); opacity: .7; flex-shrink: 0; }
  .hero-tag-gold { color: var(--gold); }
  .hero-h1 {
    font-family: var(--serif);
    font-size: clamp(56px, 7vw, 108px);
    font-weight: 300;
    font-style: italic;
    line-height: .92;
    color: #fff;
    margin-bottom: 2.5rem;
    letter-spacing: -.01em;
  }
  /* impeccable: gradient text is decorative, never meaningful — solid color */
  .hero-h1 em {
    font-style: normal;
    color: var(--gold-lt);
  }
  .hero-sub {
    font-size: 1.08rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,.68);
    max-width: 480px;
    margin-bottom: 3.25rem;
  }
  .hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  /* Animated vertical text accent */
  .hero-vertical {
    position: absolute;
    right: 6%;
    bottom: 12%;
    writing-mode: vertical-rl;
    font-size: .6rem;
    font-weight: 300;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: rgba(255,255,255,.18);
    pointer-events: none;
    z-index: 3;
    transform: rotate(180deg);
  }

  /* ══ TICKER ═════════════════════════════════════════════════════════ */
  #ticker {
    background: var(--gold);
    height: 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
  }
  #ticker::before,
  #ticker::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }
  #ticker::before { left: 0; background: linear-gradient(to right, var(--gold), transparent); }
  #ticker::after  { right: 0; background: linear-gradient(to left, var(--gold), transparent); }
  .ticker-wrap {
    display: flex;
    animation: tickerRoll 32s linear infinite;
    white-space: nowrap;
  }
  .ticker-wrap:hover { animation-play-state: paused; }
  .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    font-size: .62rem;
    font-weight: 400;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--navy-dd);
    padding: 0 2.5rem;
  }
  .ticker-dot {
    display: inline-block;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--navy-dd);
    opacity: .3;
    flex-shrink: 0;
  }
  @keyframes tickerRoll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

  /* ══ STATS ══════════════════════════════════════════════════════════ */
  #stats {
    background: var(--navy-d);
    border-bottom: 1px solid var(--gold-dim);
  
    background: url("/img/bg-stats.jpg") center / cover no-repeat;}
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
  }
  .stat-cell {
    padding: 4rem 2.5rem;
    border-right: 1px solid var(--gold-dim);
    position: relative;
    overflow: hidden;
    transition: background .35s var(--ease-out);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: rgba(180,161,82,.04); }
  .stat-cell::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .55s var(--ease-expo);
  }
  .stat-cell:hover::after { width: 100%; }
  .stat-cell::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transition: width .45s var(--ease-out);
  }
  .stat-cell:hover { background: rgba(0,40,75,.95); }
  .stat-cell:hover::before { width: 100%; }
  .stat-num {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    color: #fff;
    line-height: .95;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
  }
  .stat-num em {
    font-style: normal;
    font-size: .55em;
    color: var(--gold);
    vertical-align: super;
  }
  .stat-label {
    font-size: .75rem;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
  }

  /* ══ PROPUESTA ══════════════════════════════════════════════════════ */
  #propuesta {
    padding: 11rem 10% 10rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .prop-inner { position: relative; z-index: 1; }
  /* Compass image — right side, position:absolute, zero layout impact */
  #propuesta::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 48%; height: 100%;
    background:
      linear-gradient(to right, var(--cream) 0%, rgba(244,240,232,.5) 25%, rgba(244,240,232,.05) 65%, transparent 100%),
      url('/img/bg-propuesta.jpg') center / cover no-repeat;
    pointer-events: none;
    opacity: .28;
    z-index: 0;
  }
  /* Diagonal lines texture */
  #propuesta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      rgba(180,161,82,.055) 0px,
      rgba(180,161,82,.055) 1px,
      transparent 1px,
      transparent 20px
    );
    pointer-events: none;
  }
  
  .prop-quote {
    font-family: var(--serif);
    font-size: clamp(42px, 6.5vw, 96px);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -.01em;
    max-width: 1100px;
    margin-bottom: 3rem;
  }
  .prop-quote em { font-style: normal; color: var(--gold); }
  .prop-quote em { font-style: normal; color: var(--gold); }
  .prop-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(0,50,90,.68);
    max-width: 560px;
    margin-bottom: 2.5rem;
  }
  .prop-body strong { font-weight: 400; color: var(--gold); }

  /* ══ SERVICIOS ══════════════════════════════════════════════════════ */
  #servicios {
    padding: 9rem 10%;
    background: var(--navy);
    border-top: 1px solid var(--gold-dim);
    position: relative;
    overflow: hidden;
  }
  #servicios::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/img/bg-servicios.png') center / cover no-repeat;
    opacity: .038;
    pointer-events: none;
    mix-blend-mode: screen;
  }
  .svc-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 5rem;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .svc-top h2 {
    font-family: var(--serif);
    font-size: clamp(42px, 5.5vw, 80px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.0;
    margin-top: .75rem;
  }
  .svc-top h2 em { font-style: normal; color: var(--gold-lt); }
  .svc-note {
    font-size: .85rem;
    font-weight: 300;
    color: rgba(255,255,255,.42);
    max-width: 480px;
    text-align: left;
    line-height: 1.78;
  }
  .svc-list { border-top: 1px solid var(--gold-dim); position: relative; z-index: 1; }
  .svc-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    align-items: start;
    cursor: pointer;
    gap: 2.5rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--gold-dim);
    cursor: default;
    /* Emil: specify exact properties */
    transition: padding-left 240ms var(--ease-out),
                padding-right 240ms var(--ease-out),
                background-color 240ms var(--ease-out);
    position: relative;
  }
  /* Animated gold underline */
  .svc-row::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height .45s var(--ease-expo);
  }
  .svc-row:hover::before { height: 100%; }
  .svc-row::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: linear-gradient(to right, var(--gold), rgba(180,161,82,.2));
    transition: width .5s var(--ease-out);
  }
  .svc-row:hover { background: rgba(180,161,82,.04); padding-left: 1.25rem; padding-right: 1.25rem; }
  .svc-row:hover::after { width: 100%; }
  .svc-n {
    font-family: var(--serif);
    font-size: 4.2rem;
    font-weight: 300;
    color: rgba(180,161,82,.65);
    line-height: 1;
    transition: color 240ms var(--ease-out);
    user-select: none;
  }
  .svc-row:hover .svc-n { color: rgba(180,161,82,.85); }
  .svc-row-title {
    font-family: var(--serif);
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
    transition: color .3s;
  }
  .svc-row:hover .svc-row-title { color: var(--gold-lt); }
  .svc-row-desc {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,.62);
    max-width: 560px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .45s var(--ease-out),
                opacity .4s var(--ease-out),
                margin-top .35s var(--ease-out);
  }
  .svc-row:hover .svc-row-desc {
    max-height: 140px;
    opacity: 1;
    margin-top: .6rem;
  }

  /* ══ PROCESO (blueprint bg) ═════════════════════════════════════════ */
  #proceso {
    padding: 10rem 10% 9rem;
    background: var(--navy-d);
    /* glass texture */ 
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
  }
  #proceso::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("/img/bg-proceso.jpg");
    background-size: cover;
    opacity: .06;
    mix-blend-mode: luminosity;
    pointer-events: none;
  }
  .proceso-h {
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
  }
  .proceso-h h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.05;
    margin-top: .75rem;
  }
  .proceso-h h2 em { font-style: normal; color: var(--gold-lt); }
  .steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(180,161,82,.15);
    position: relative;
    z-index: 1;
  }
  /* Animated connector dots above the grid */
  .steps-track {
    display: flex;
    align-items: center;
    margin-bottom: 1px;
    position: relative;
    z-index: 1;
  }
  .steps-track-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--gold-dim), rgba(180,161,82,.35), var(--gold-dim));
  }
  .steps-track-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(180,161,82,.5);
  }
  .step {
    background: rgba(0,26,54,.92);
    backdrop-filter: blur(8px);
    padding: 3.5rem 2.75rem 3rem;
    position: relative;
    cursor: default;
    border-top: 3px solid transparent;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(180,161,82,0);
    transition: background .35s var(--ease-out),
                border-color .35s var(--ease-out),
                transform .4s var(--ease-out),
                box-shadow .4s var(--ease-out);
  }
  .step:hover {
    background: rgba(0,40,80,.97);
    border-top-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,10,24,.55), 0 0 0 1px rgba(180,161,82,.12);
  }
  .step-ghost {
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-family: var(--serif);
    font-size: 5.5rem;
    font-weight: 600;
    color: rgba(180,161,82,.25);
    line-height: 1;
    user-select: none;
    transform: scale(1) translateY(0);
    transition: color .4s var(--ease-out),
                transform .4s var(--ease-out),
                font-size .4s var(--ease-out);
  }
  .step:hover .step-ghost {
    color: rgba(180,161,82,.65);
    transform: scale(1.18) translateY(-4px);
  }
  .step-phase {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
  }
  .step-title {
    font-family: var(--serif);
    font-size: 1.75rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
    transition: color .3s var(--ease-out);
  }
  .step:hover .step-title { color: var(--gold-lt); }
  .step-desc {
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255,255,255,.68);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    transition: max-height .45s var(--ease-out),
                opacity .4s var(--ease-out),
                margin-top .35s var(--ease-out);
  }
  .step:hover .step-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: .85rem;
  }

  /* ══ NOSOTROS ═══════════════════════════════════════════════════════ */
  #nosotros {
    padding: 0;
    background: var(--navy-dd);
    border-top: 1px solid var(--gold-dim);
    position: relative;
    overflow: hidden;
  }
  #nosotros::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      -38deg,
      rgba(180,161,82,.05) 0px,
      rgba(180,161,82,.05) 1px,
      transparent 1px,
      transparent 24px
    );
    pointer-events: none;
    z-index: 0;
  }
  .nos-h {
    padding: 5rem 10% 3.5rem;
    border-bottom: 1px solid var(--gold-dim);
    position: relative;
    z-index: 1;
  }

  .nos-h h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 300; color: #fff; line-height: 1.05;
  }
  .nos-h h2 em { font-style: italic; color: var(--gold-lt); }
  .founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--gold-dim);
    position: relative;
    z-index: 1;
  }
  .founder-card {
    display: grid;
    grid-template-columns: 155px 1fr;
    align-items: stretch;
    border-right: 1px solid var(--gold-dim);
    overflow: hidden;
    transition: background-color .4s var(--ease-out);
  }
  .founder-card:last-child { border-right: none; }
  .founder-card:hover { background-color: rgba(180,161,82,.04); }
  .founder-photo {
    position: relative;
    overflow: hidden;
    min-height: 300px;
  }
  .founder-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block;
    transition: transform .6s var(--ease-expo), filter .5s var(--ease-out);
    filter: grayscale(.1);
  }
  .founder-card:hover .founder-photo img {
    transform: scale(1.04);
    filter: grayscale(0);
  }
  .founder-photo::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--navy-dd) 100%);
    pointer-events: none;
  }
  .f-content {
    padding: 2.5rem 2rem 2.5rem 1.75rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .f-role {
    font-size: .64rem; font-weight: 400;
    letter-spacing: .26em; text-transform: uppercase;
    color: var(--gold); margin-bottom: .8rem;
  }
  .f-name {
    font-family: var(--serif);
    font-size: clamp(24px, 2.8vw, 42px);
    font-weight: 300; font-style: italic; color: #fff;
    line-height: .95; letter-spacing: -.015em; margin-bottom: 1rem;
  }
  .f-divider {
    width: 30px; height: 1px;
    background: var(--gold); margin-bottom: 1rem;
    transition: width .4s var(--ease-out);
  }
  .founder-card:hover .f-divider { width: 54px; }
  .f-bio {
    font-family: var(--serif); font-size: .95rem;
    font-style: italic; font-weight: 300;
    line-height: 1.55; color: rgba(255,255,255,.72); margin-bottom: .8rem;
  }
  .f-note {
    font-size: .76rem; font-weight: 300;
    line-height: 1.78; color: rgba(255,255,255,.38);
  }

/* ══ CTA ════════════════════════════════════════════════════════════ */
  #cta {
    background: linear-gradient(150deg, #004a82 0%, var(--navy) 35%, #003d70 65%, #004a82 100%);
    background-size: 300% 300%;
    animation: ctaBreath 9s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 70% 65% at 50% 50%, rgba(0,85,153,.22) 0%, transparent 65%),
      radial-gradient(ellipse 30% 30% at 20% 80%, rgba(180,161,82,.06) 0%, transparent 50%);
    pointer-events: none;
  }
  .cta-deco {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .cta-deco::before,
  .cta-deco::after {
    content: '';
    position: absolute;
    top: -60%; bottom: -60%;
    width: 1px;
    transform: rotate(-38deg);
    transform-origin: center;
  }
  .cta-deco::before {
    left: 15%;
    background: linear-gradient(to bottom, transparent 8%, rgba(180,161,82,.22) 40%, rgba(180,161,82,.1) 65%, transparent);
  }
  .cta-deco::after {
    right: 15%;
    background: linear-gradient(to bottom, transparent 8%, rgba(180,161,82,.22) 40%, rgba(180,161,82,.1) 65%, transparent);
  }
  .cta-inner { position: relative; z-index: 2; }
  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .65rem;
    font-weight: 400;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: .5rem 1.5rem;
    margin-bottom: 3rem;
  }
  .cta-badge::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; animation: ctaPulse 2s ease-in-out infinite; }
  @keyframes ctaPulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.4)} }
  .cta-h2 {
    font-family: var(--serif);
    font-size: clamp(50px, 7.5vw, 120px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: .92;
    margin-bottom: 2rem;
    letter-spacing: -.01em;
  }
  .cta-h2 em {
    font-style: normal;
    color: var(--gold-lt);
  }
  .cta-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.58);
    margin-bottom: 3rem;
  }
  .cta-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
  }
  .cta-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .68rem;
    font-weight: 300;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255,255,255,.52);
  }
  .cta-pill::before { content: '✦'; font-size: .5rem; color: var(--gold); }
  /* Big CTA button with pulsing ring */
  .cta-btn-wrap {
    position: relative;
    display: inline-block;
  }
  .cta-btn-ring {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(180,161,82,.3);
    animation: ringPulse 2.5s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes ringPulse {
    0%  { inset: -4px; opacity: .7; }
    50% { inset: -14px; opacity: 0; }
    51% { inset: -4px; opacity: 0; }
    100%{ inset: -4px; opacity: .7; }
  }
  .cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1.35rem 3.5rem;
    background: var(--gold);
    color: var(--navy-dd);
    transition: background-color 160ms var(--ease-out),
                transform 160ms var(--ease-out),
                box-shadow 160ms var(--ease-out);
    cursor: pointer;
    overflow: hidden;
  }
  .cta-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
  }
  /* Emil: scale(0.97) on :active — instant press feedback */
  .cta-btn:hover { background-color: var(--gold-lt); transform: translateY(-4px); box-shadow: 0 20px 56px rgba(180,161,82,.3); }
  .cta-btn:active { transform: scale(0.97) !important; box-shadow: none; }
  .cta-btn svg { width: 16px; height: 16px; }

  /* ══ CONTACTO ═══════════════════════════════════════════════════════ */
  #contacto {
    padding: 9rem 10%;
    background: var(--cream);
  }
  .contact-h { margin-bottom: 5rem; }
  .contact-h h2 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.05;
    margin-top: .75rem;
  }
  .contact-h h2 em { font-style: normal; color: var(--gold); }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 7rem;
    align-items: start;
  }
  .c-info { display: flex; flex-direction: column; }
  .c-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.85rem 0;
    border-bottom: 1px solid rgba(0,66,114,.1);
    transition: padding .25s;
  }
  .c-item:first-child { border-top: 1px solid rgba(0,66,114,.1); }
  .c-item:hover { padding-left: .5rem; }
  .c-icon {
    width: 44px; height: 44px;
    border: 1px solid rgba(0,66,114,.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: border-color .25s, background .25s;
  }
  .c-item:hover .c-icon { border-color: var(--gold); background: rgba(180,161,82,.08); }
  .c-icon svg { width: 17px; height: 17px; }
  .c-label {
    font-size: .7rem;
    font-weight: 400;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: rgba(0,66,114,.55);
    margin-bottom: .4rem;
  }
  .c-val {
    font-size: 1rem;
    font-weight: 300;
    color: var(--navy);
    line-height: 1.55;
  }
  .c-val a { color: var(--navy); transition: color .2s; }
  .c-val a:hover { color: var(--gold); }
  .c-form { display: flex; flex-direction: column; gap: 1.75rem; }
  .f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
  .f-field { display: flex; flex-direction: column; gap: .45rem; }
  .f-field label {
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(0,66,114,.58);
  }
  .f-field input,
  .f-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,66,114,.18);
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--navy);
    padding: .8rem 0;
    outline: none;
    transition: border-color .22s;
    width: 100%;
  }
  .f-field input::placeholder,
  .f-field textarea::placeholder { color: rgba(0,66,114,.28); }
  .f-field input:focus,
  .f-field textarea:focus { border-color: var(--gold); }
  .f-field textarea { resize: none; min-height: 100px; }
  .f-submit {
    align-self: flex-start;
    background: var(--navy);
    color: #fff;
    font-family: var(--sans);
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 1.05rem 2.5rem;
    border: none;
    cursor: pointer;
    transition: color 160ms var(--ease-out), transform 160ms var(--ease-out);
    position: relative;
    overflow: hidden;
  }
  .f-submit:active { transform: scale(0.97); }
  .f-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s var(--ease-out);
  }
  .f-submit:hover { color: var(--navy-dd); }
  .f-submit:hover::before { transform: scaleX(1); }
  .f-submit span { position: relative; z-index: 1; }
  #form-ok {
    display: none;
    font-size: .85rem;
    font-weight: 300;
    color: var(--gold);
    padding-top: .3rem;
  }

  /* ══ FOOTER ═════════════════════════════════════════════════════════ */
  footer {
    padding: 5.5rem 10% 3.5rem;
    background: var(--navy-dd);
    border-top: 1px solid var(--gold-dim);
  }
  .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--gold-dim);
    flex-wrap: wrap;
  }
  .footer-brand img { height: 100px; width: auto; }
  .footer-tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255,255,255,.38);
    margin-top: 1rem;
    max-width: 250px;
    line-height: 1.6;
  }
  .footer-cols { display: flex; gap: 4.5rem; flex-wrap: wrap; }
  .f-col h5 {
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.35rem;
  }
  .f-col ul { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
  .f-col a {
    font-size: .82rem;
    font-weight: 300;
    color: rgba(255,255,255,.45);
    transition: color .2s, padding-left .2s;
    display: block;
  }
  .f-col a:hover { color: rgba(255,255,255,.78); padding-left: 4px; }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2.25rem;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy {
    font-size: .7rem;
    font-weight: 300;
    color: rgba(255,255,255,.32);
    letter-spacing: .08em;
  }
  .footer-legal { display: flex; gap: 2rem; list-style: none; }
  .footer-legal a {
    font-size: .68rem;
    font-weight: 300;
    color: rgba(255,255,255,.32);
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: color .2s;
  }
  .footer-legal a:hover { color: var(--gold); }

  /* ══ RESPONSIVE ═════════════════════════════════════════════════════ */
  @media (max-width: 1100px) {
    .steps { grid-template-columns: repeat(2,1fr); }
    .hero-emblem { display: none; }
    #hero { padding: 130px 8% 80px; }
    .hero-vertical { display: none; }
    .stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
  }

    .steps { grid-template-columns: 1fr; }
    .steps-track { display: none; }
    .founders-grid { grid-template-columns: 1fr; }
    #nosotros .nos-h { padding: 3.5rem 6% 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top { flex-direction: column; }
    .brkt-tl, .brkt-br { display: none; }
  }
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .burger { display: flex; }
    #hero { padding: 110px 6% 80px; }
    #propuesta, #servicios, #proceso, #cta, #contacto { padding: 5.5rem 6%; }
    .stat-cell {
    padding: 4rem 2.5rem;
    border-right: 1px solid var(--gold-dim);
    position: relative;
    overflow: hidden;
    transition: background .35s var(--ease-out);
  }
  .stat-cell:last-child { border-right: none; }
  .stat-cell:hover { background: rgba(180,161,82,.04); }
  .stat-cell::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width .55s var(--ease-expo);
  }
  .stat-cell:hover::after { width: 100%; }
    .svc-row { grid-template-columns: 48px 1fr; gap: 1rem; }
    .hero-btns { flex-direction: column; align-items: flex-start; }
    #float-cta { right: 1rem; bottom: 1rem; font-size: .6rem; padding: .8rem 1.3rem; }
    .cta-pills { gap: 1.5rem; }
    .footer-cols { gap: 2.5rem; }
    .f-row { grid-template-columns: 1fr; }
    /* Typography scale-down for mobile */
    .hero-h1 { font-size: clamp(36px, 9.5vw, 50px); }
    .hero-tag { flex-wrap: wrap; letter-spacing: .18em; gap: 6px 10px; }
    .prop-quote {
    font-family: var(--serif);
    font-size: clamp(42px, 6.5vw, 96px);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -.01em;
    max-width: 1100px;
    margin-bottom: 3rem;
  }
  .prop-quote em { font-style: normal; color: var(--gold); }
    .f-name {
    font-family: var(--serif);
    font-size: clamp(32px, 8vw, 42px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin-bottom: 1.5rem;
  }
    .f-bio { font-size: 1rem; }
    .founder-card {
    grid-template-columns: 1fr;
    background-color: rgba(0,30,60,.72);
    border: 1px solid rgba(180,161,82,.14);
    border-top: 3px solid var(--gold-dim);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: border-top-color .4s var(--ease-out),
                background-color .4s var(--ease-out),
                transform .45s var(--ease-expo);
  }
    .svc-n { font-size: 2.4rem; }
    .nos-h h2 { font-size: clamp(30px, 7.5vw, 40px); }
  }
  @media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .cta-h2 { font-size: clamp(38px, 11vw, 56px); }
    .hero-h1 { font-size: clamp(32px, 9vw, 42px); }
    .f-name {
    font-family: var(--serif);
    font-size: clamp(32px, 8vw, 42px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin-bottom: 1.5rem;
  }
    .prop-quote {
    font-family: var(--serif);
    font-size: clamp(42px, 6.5vw, 96px);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -.01em;
    max-width: 1100px;
    margin-bottom: 3rem;
  }
  .prop-quote em { font-style: normal; color: var(--gold); }
    .founder-card {
    grid-template-columns: 1fr;
    background-color: rgba(0,30,60,.72);
    border: 1px solid rgba(180,161,82,.14);
    border-top: 3px solid var(--gold-dim);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: border-top-color .4s var(--ease-out),
                background-color .4s var(--ease-out),
                transform .45s var(--ease-expo);
  }
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .ticker-wrap { animation: none; }
  }


  /* ══ MEMBRESÍAS ════════════════════════════════════════════════════ */
  #membresias {
    padding: 2.75rem 10%;
    background: var(--cream);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .memb-label {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--navy);
    white-space: nowrap;
  }
  .memb-divider {
    width: 1px;
    height: 32px;
    background: var(--gold-mid);
    flex-shrink: 0;
  }
  .memb-logos {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .memb-logos a { display: flex; align-items: center; }
  .memb-logos .memb-hispanic { height: 44px; width: auto; }
  .memb-logos .memb-slw      { height: 64px; width: auto; }
  .memb-logos .memb-fna      { height: 72px; width: auto; }
  .memb-logos .memb-realtor  { height: 72px; width: auto; }
  .memb-logos img { transition: opacity .3s var(--ease-out); opacity: .85; }
  .memb-logos img:hover { opacity: 1; }
  @media (max-width: 768px) {
    #membresias { gap: 1.75rem; padding: 2.5rem 6%; flex-direction: column; }
    .memb-divider { width: 32px; height: 1px; }
  }
  }

  /* ══ MODALES LEGALES ════════════════════════════════════════════════ */
  dialog.legal-dialog {
    border: none;
    padding: 0;
    background: transparent;
    max-width: 780px;
    width: calc(100% - 2rem);
    max-height: 90vh;
    overflow-y: auto;
    outline: none;
  }
  dialog.legal-dialog::backdrop {
    background: rgba(0,18,36,.92);
  }
  .legal-box {
    background: var(--navy-d);
    border: 1px solid var(--gold-dim);
    border-top: 3px solid var(--gold);
    padding: 3.5rem;
    position: relative;
  }
  .legal-close {
    position: absolute;
    top: 1.25rem; right: 1.5rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
  }
  .legal-close:hover { color: var(--gold); }
  .legal-box h2 {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: .4rem;
  }
  .legal-box .legal-date {
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(180,161,82,.6);
    margin-bottom: 2.5rem;
    display: block;
  }
  .legal-box h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--gold-lt);
    margin: 2rem 0 .6rem;
  }
  .legal-box p, .legal-box li {
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255,255,255,.72);
  }
  .legal-box ul { padding-left: 1.5rem; margin: .5rem 0; }
  .legal-box li { margin-bottom: .3rem; }
  .legal-box strong { color: rgba(255,255,255,.9); font-weight: 400; }
  .legal-box a { color: var(--gold-lt); text-decoration: underline; }
  @media (max-width: 768px) {
    .legal-box { padding: 2.5rem 1.5rem; }
    dialog.legal-dialog { width: calc(100% - 1.5rem); }
  }

  /* ══ LANG SWITCHER ══════════════════════════════════════════════════ */
  .lang-switch {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: .68rem;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-left: .25rem;
    border: 1px solid rgba(180,161,82,.3);
    border-radius: 2px;
    overflow: hidden;
  }
  .lang-switch a, .lang-switch span {
    padding: .38rem .62rem;
    line-height: 1;
    transition: background .2s, color .2s;
  }
  .lang-switch a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
  }
  .lang-switch a:hover { color: var(--gold); background: rgba(180,161,82,.08); }
  .lang-switch span {
    color: var(--gold);
    background: rgba(180,161,82,.12);
    cursor: default;
  }
  .lang-switch .lang-sep {
    width: 1px;
    height: 18px;
    background: rgba(180,161,82,.25);
    padding: 0;
    flex-shrink: 0;
  }
  @media (max-width: 768px) { .lang-switch { display: none; } }

  /* ══ CUSTOM CURSOR ══════════════════════════════════════════════════ */
  #va-cursor, #va-cursor-ring {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    top: 0; left: 0;
    transform: translate(-50%,-50%);
    transition: opacity .4s;
  }
  #va-cursor {
    width: 7px; height: 7px;
    background: var(--gold);
  }
  #va-cursor-ring {
    width: 34px; height: 34px;
    border: 1.5px solid rgba(180,161,82,.45);
    transition: opacity .4s, width .35s var(--ease-out), height .35s var(--ease-out);
  }
  body:has(a:hover) #va-cursor-ring,
  body:has(button:hover) #va-cursor-ring {
    width: 52px; height: 52px;
    border-color: rgba(180,161,82,.7);
  }
  @media (hover: none) { #va-cursor, #va-cursor-ring { display: none; } }

  /* ══ WORD MASK REVEAL ═══════════════════════════════════════════════ */
  .word-mask {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-bottom: .3em;
    margin-bottom: -.22em;
  }
  .word-inner {
    display: inline-block;
    transform: translateY(135%);
  }

  /* ══ SCRUBBING QUOTE ════════════════════════════════════════════════ */
  .sq { opacity: 0.1; display: inline; }
  .prop-quote {
    font-family: var(--serif);
    font-size: clamp(42px, 6.5vw, 96px);
    font-weight: 300;
    font-style: italic;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -.01em;
    max-width: 1100px;
    margin-bottom: 3rem;
  }
  .prop-quote em { font-style: normal; color: var(--gold); }

  @keyframes ctaBreath {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
  }

  /* ══ FOUNDER DECO ═══════════════════════════════════════════════════ */
  .founder-card[data-deco]::after {
    content: attr(data-deco);
    position: absolute;
    bottom: -.15em;
    right: .1em;
    font-family: var(--serif);
    font-size: 8rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(180,161,82,.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    transition: color .5s var(--ease-out);
  }
  .founder-card:hover[data-deco]::after { color: rgba(180,161,82,.13); }

  /* ══ FIXED GRAIN OVERLAY (performance: single repaint-free layer) ══ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='1'/%3E%3C/svg%3E");
    background-size: 180px;
    opacity: .035;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 9990;
  }

  /* ══ BUTTON-IN-BUTTON ARROW ════════════════════════════════════════ */
  .btn-arr {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    margin-left: .65rem;
    flex-shrink: 0;
    transition: transform .35s var(--ease-out), background .3s;
    font-style: normal;
    font-size: .75rem;
  }
  .btn:hover .btn-arr {
    transform: translate(2px, -1px);
    background: rgba(255,255,255,.22);
  }
  .btn-navy .btn-arr { background: rgba(0,50,90,.15); }
  .btn-navy:hover .btn-arr { background: rgba(0,50,90,.28); }

  /* ══ PREFERS-REDUCED-MOTION ════════════════════════════════════════ */
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    .word-inner { transform: none !important; }
    .sq { opacity: 1 !important; }
    .step, .founder-card, .svc-row, .visa-card { transition: none !important; transform: none !important; }
    .stat-cell::after { transition: none !important; }
    .svc-row::before { transition: none !important; }
    .f-divider { transition: none !important; }
    #va-cursor, #va-cursor-ring { display: none !important; }
    .ticker-track { animation-play-state: paused; }
    body::before { display: none; }
    @keyframes ctaBreath { 0%, 100% { background-position: 0% 50%; } }
  }

  /* ══ PROPUESTA IMAGE ════════════════════════════════════════════════ */
  #propuesta {
    padding: 11rem 10% 10rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  
  .prop-img {
    background: url("/img/bg-propuesta.jpg") center / cover no-repeat;
    position: relative;
    overflow: hidden;
  }
  .prop-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream) 0%, transparent 40%);
  }
  @media (max-width: 1100px) {
    #propuesta {
    padding: 11rem 10% 10rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
    .prop-img { display: none; }
    
  }

  #stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,30,60,.78);
    pointer-events: none;
  }
  #stats { position: relative; }
  .stats-grid { position: relative; z-index: 1; }

  

  

  

  
  
  @media (max-width: 768px) {
    .stat-cell:nth-child(odd) { border-right: 1px solid var(--gold-dim); }
    .stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-top: 1px solid var(--gold-dim); }
  }

  /* ══ SOCIAL ICONS ═══════════════════════════════════════════════════ */
  .social-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border: 1px solid rgba(180,161,82,.25);
    border-radius: 50%;
    color: rgba(255,255,255,.45);
    transition: color .25s var(--ease-out), border-color .25s var(--ease-out), background .25s var(--ease-out);
    flex-shrink: 0;
  }
  .social-links a:hover {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(180,161,82,.06);
  }
  .social-links svg { width: 16px; height: 16px; fill: currentColor; }
  