
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --black:   #282828;
            --white:   #FBF9F8;
            --navy:    #1D2A38;
            --steel:   #8892A4;
            --olive:   #7D8B42;
            --lime:    #C4CF60;
            --cream:   #F7F5F0;
            --mid:     #787068;
            --muted:   #A8A29A;
            --border:  #E2DED8;
            --display: 'Wonderland', serif;
            --serif:   'Cormorant Garamond', Georgia, serif;
            --sans:    'Libre Franklin', system-ui, sans-serif;
            --fz-h1:   clamp(60px, 9vw, 130px);
            --fz-h2:   clamp(38px, 5.2vw, 76px);
            --g:       clamp(20px, 5vw, 72px);
            --line-navy: rgba(255,255,255,.08);
        }

        html { scroll-behavior: smooth; }
        body {
            background: var(--white);
            color: var(--black);
            font-family: var(--sans);
            font-weight: 300;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }


        /* ════════════════════════════════
           NAV
        ════════════════════════════════ */
        #nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 200;
            padding: 36px var(--g);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background .45s, padding .3s, border-color .45s;
            border-bottom: 1px solid transparent;
        }
        #nav.on {
            background: rgba(247,245,240,.94);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 18px var(--g);
            border-bottom-color: var(--border);
        }
        /* Scrim para asegurar contraste del logo/menú sobre vídeo, antes de que el nav pase a .on */
        #nav::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(to bottom, rgba(0,0,0,.45), rgba(0,0,0,0));
            opacity: 1;
            transition: opacity .45s;
            pointer-events: none;
        }
        #nav.on::before { opacity: 0; }
        .nav-logo {
            display: block;
            color: var(--white);
            transition: color .4s;
            line-height: 0;
        }
        #nav.on .nav-logo { color: var(--black); }
        .nav-logo svg { height: 22px; width: auto; }
        .nav-right {
            display: flex;
            align-items: center;
            gap: 36px;
            list-style: none;
        }
        .nav-right a {
            font-size: 15px;
            font-weight: 400;
            letter-spacing: .18em;
            text-transform: uppercase;
            text-decoration: none;
            color: rgba(255,255,255,.82);
            transition: color .3s;
        }
        #nav.on .nav-right a { color: var(--mid); }
        .nav-right a:hover { color: var(--white); font-weight: 600; }
        #nav.on .nav-right a:hover { color: var(--black); font-weight: 600; }
        .nav-right a.active { color: #fff; font-weight: 500; }
        #nav.on .nav-right a.active { color: var(--black); font-weight: 600; }
        /* Subrayado animado: aparece en hover, permanece fijo en la sección activa */
        .nav-right li a:not(.nav-lang) { position: relative; }
        .nav-right li a:not(.nav-lang)::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .35s ease;
        }
        .nav-right li a:not(.nav-lang):hover::after,
        .nav-right li a.active::after { transform: scaleX(1); }        .nav-lang { color: rgba(255,255,255,.42) !important; letter-spacing: .12em; }
        #nav.on .nav-lang { color: var(--muted) !important; }
        .nav-sep { margin: 0 1px; opacity: .5; }
        /* ════ HAMBURGER ════ */
        .nav-burger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            flex-direction: column;
            gap: 5px;
            z-index: 210;
        }
        .nav-burger span {
            display: block;
            width: 22px;
            height: 1.5px;
            background: var(--white);
            transition: background .3s;
        }
        #nav.on .nav-burger span { background: var(--black); }
        /* ════ MOBILE NAV OVERLAY ════ */
        .mobile-nav {
            position: fixed;
            inset: 0;
            background: var(--black);
            z-index: 300;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 32px;
            transform: translateY(-100%);
            transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }
        .mobile-nav.open { transform: none; pointer-events: auto; }
        .mobile-nav ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 24px; padding: 0; margin: 0; }
        .mobile-nav li a {
            position: relative;
            font-family: var(--display);
            font-size: 32px;
            font-weight: 500;
            letter-spacing: .1em;
            text-transform: uppercase;
            color: var(--white);
            text-decoration: none;
        }
        .mobile-nav li a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 100%;
            height: 1px;
            background: currentColor;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .35s ease;
        }
        .mobile-nav li a.active::after { transform: scaleX(1); }
        .mobile-nav-close {
            position: absolute;
            top: 32px; right: 32px;
            background: none; border: none; cursor: pointer;
            font-size: 28px; color: var(--white); line-height: 1;
        }
        .mobile-nav-lang {
            font-size: 13px;
            letter-spacing: .2em;
            color: rgba(255,255,255,.4);
        }
        @media (max-width: 768px) {
            .nav-right { display: none; }
            .nav-burger { display: flex; }
        }


        /* ════════════════════════════════
           ANIMATIONS
        ════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .85s ease, transform .85s ease;
        }
        .reveal.in { opacity: 1; transform: none; }
        .d1 { transition-delay: .12s; }
        .d2 { transition-delay: .24s; }
        .d3 { transition-delay: .36s; }
        .d4 { transition-delay: .48s; }
        /* ── Line reveal ── */
        .ln-wrap { display: block; overflow: hidden; }
        .ln-inner {
            display: block;
            transform: translateY(108%);
            transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .ln-inner.in { transform: none; }
        /* oval line: allow overflow so the oval isn't clipped */
        .ln-wrap-oval { overflow: visible; }
        .ln-wrap-oval > .ln-inner {
            transform: none;
            clip-path: inset(0 0 100% 0);
            transition: clip-path 1.1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .ln-wrap-oval > .ln-inner.in {
            clip-path: inset(-100% -20% -100% -20%);
        }


        /* ════════════════════════════════
           HERO — dark statement
        ════════════════════════════════ */
        .nos-hero {
            min-height: 100svh;
            background: var(--navy);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(140px, 20vh, 220px) var(--g);
            text-align: center;
        }
        .nos-hero-inner { max-width: 1100px; }
        .nos-hero-sm {
            display: block;
            font-family: var(--sans);
            font-size: clamp(14px, 1.4vw, 20px);
            font-weight: 400;
            letter-spacing: .36em;
            text-transform: uppercase;
            color: rgba(251,249,248,.52);
            margin-bottom: 36px;
        }
        .nos-hero-lg {
            display: block;
            font-family: var(--display);
            font-size: clamp(46px, 6vw, 90px);
            font-weight: 400;
            line-height: 1.4;
            color: var(--white);
            margin-bottom: 16px;
            letter-spacing: .02em;
            text-transform: uppercase;
        }
        .nos-hero-lg .h-underline {
            display: inline;
            box-decoration-break: clone;
            -webkit-box-decoration-break: clone;
            padding-bottom: .12em;
            background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20120%2012'%3E%3Cpath%20d='M0,6%20Q30,4.3%2060,6%20T120,6'%20stroke='%23C2C770'%20stroke-width='4'%20fill='none'%20stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: repeat-x;
            background-position: 0 100%;
            background-size: 120px 12px;
        }
        @media (min-width: 769px) {
            /* Todo el título achicado proporcionalmente para que "operational perspective"
               y "and creative direction." entren cada una en una sola línea — 4 renglones totales */
            .nos-hero-lg { font-size: clamp(41.4px, 5.4vw, 81px); }
        }
        .nos-hero-md {
            display: block;
            font-family: var(--display);
            font-size: clamp(20px, 2.4vw, 36px);
            font-weight: 300;
            color: rgba(251,249,248,.5);
            margin-top: clamp(28px, 5vh, 60px);
            line-height: 1.55;
            letter-spacing: .03em;
        }


        /* ════════════════════════════════
           INTRO — texto puro, 2 cols
        ════════════════════════════════ */
        .nos-intro {
            background: var(--white);
            padding: clamp(140px, 18vh, 200px) var(--g) clamp(80px, 10vh, 120px);
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .nos-intro-block {
            width: 598px;
            min-height: 716px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 60px;
            text-align: center;
            gap: 0;
        }
        .nos-intro-title {
            font-family: var(--display);
            font-size: 48px;
            font-weight: 600;
            line-height: 1.325;
            color: var(--black);
            text-transform: uppercase;
            text-align: center;
        }
        .ni-line {
            display: block;
        }
        .ni-people {
            position: relative;
            display: inline-block;
        }
        .nos-intro-squiggle {
            position: absolute;
            left: 50%;
            top: 100%;
            transform: translateX(-50%);
            margin-top: 8px;
            width: clamp(100px, 14vw, 180px);
            height: auto;
            pointer-events: none;
        }
        .nt-underline {
            position: relative;
            display: inline-block;
        }
        .nt-underline svg {
            position: absolute;
            top: calc(100% + 3px);
            left: -5%;
            width: 110%;
            height: auto;
            overflow: visible;
            pointer-events: none;
        }
        .nos-intro-body {
            font-family: var(--sans);
            font-size: 24px;
            font-weight: 400;
            line-height: 1.6;
            color: var(--mid);
            max-width: 52ch;
            margin-top: clamp(64px, 10vh, 120px);
        }


        /* ════════════════════════════════
           SHAPING PILLARS
        ════════════════════════════════ */
        .nos-pillars {
            background: var(--cream);
            padding: clamp(40px, 5vh, 64px) var(--g) clamp(100px, 14vh, 180px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(40px, 5vw, 80px);
            align-items: stretch;
        }
        .nos-pillars-left { min-width: 0; }
        .nos-pillars-header {
            margin-bottom: clamp(64px, 10vh, 120px);
        }
        .nos-pillars-eyebrow {
            font-family: var(--sans);
            font-size: 17px;
            font-weight: 400;
            letter-spacing: 0;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 20px;
        }
        .nos-pillars-title {
            font-family: var(--display);
            font-size: 40px;
            font-weight: 500;
            line-height: 1.325;
            color: var(--black);
            text-transform: uppercase;
        }
        .nos-pillars-sub {
            font-family: var(--display);
            font-size: 24px;
            font-weight: 500;
            text-transform: uppercase;
            font-style: normal;
            color: var(--mid);
            margin-top: 22px;
        }
        .nos-pillars-grid {
            display: flex;
            flex-direction: column;
        }
        .nos-pillar {
            border-top: 1px solid var(--border);
        }
        .nos-pillar:last-child { border-bottom: 1px solid var(--border); }
        .nos-pillar-header {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 22px 0;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
        }
        .nos-pillar-num {
            font-family: var(--sans);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: .28em;
            color: var(--olive);
            flex-shrink: 0;
            width: 28px;
        }
        .nos-pillar-name {
            font-family: var(--display);
            font-size: 32px;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--black);
            line-height: 1.15;
            flex: 1;
        }
        .nos-pillar-icon {
            font-size: 22px;
            font-weight: 300;
            color: var(--mid);
            line-height: 1;
            transition: transform .35s cubic-bezier(0.2, 0, 0, 1);
            flex-shrink: 0;
        }
        .nos-pillar.open .nos-pillar-icon { transform: rotate(45deg); }
        .nos-pillar-panel {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .45s cubic-bezier(0.2, 0, 0, 1);
        }
        .nos-pillar.open .nos-pillar-panel { grid-template-rows: 1fr; }
        .nos-pillar-panel-inner { overflow: hidden; }
        .nos-pillar-body {
            font-family: var(--sans);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.8;
            color: var(--mid);
            padding: 0 0 24px 48px;
        }
        /* fila de imágenes — derecha */
        .nos-pillars-images {
            display: flex;
            flex-direction: row;
            gap: 8px;
            transition: height 0.46s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nos-pillars-img {
            flex: 1;
            overflow: hidden;
            border-radius: 6px;
            min-height: 0;
            transition: flex 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nos-pillars-img.active {
            flex: 5;
        }
        #pillarsImages.has-active .nos-pillars-img:not(.active) {
            flex: 0.6;
        }
        .nos-pillars-img img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        @media (max-width: 900px) {
            .nos-pillars { grid-template-columns: 1fr; }
            .nos-pillars-images { min-height: 360px; }
        }


        /* ════════════════════════════════
           PEOPLE HEADLINE
        ════════════════════════════════ */
        .nos-people {
            background: var(--white);
            padding: clamp(120px, 18vh, 220px) var(--g);
            text-align: center;
        }
        .nos-people-eyebrow {
            font-family: var(--display);
            font-size: 40px;
            font-weight: 500;
            text-transform: uppercase;
            color: var(--mid);
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .nos-people-title {
            font-family: var(--display);
            font-size: 56px;
            font-weight: 600;
            line-height: 1.2;
            color: var(--black);
            text-transform: uppercase;
            max-width: 1200px;
            margin: 0 auto;
        }
        .np-before {
            position: relative;
            z-index: 2;
        }
        .np-circle {
            position: relative;
            display: inline-block;
            overflow: visible;
            vertical-align: middle;
        }
        .np-circle svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-44%, -50%);
            width: 114%;
            height: auto;
            overflow: visible;
            pointer-events: none;
        }
        .np-text {
            display: inline-block;
            position: relative;
            z-index: 1;
            vertical-align: middle;
            padding: 0 clamp(12px, 2vw, 28px);
        }


        /* ════════════════════════════════
           TEAM STRIP — video
        ════════════════════════════════ */
        .nos-strip {
            position: relative;
            height: clamp(300px, 48vw, 680px);
            overflow: hidden;
            background: var(--black);
        }
        .nos-strip video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: .9;
        }


        /* ════════════════════════════════
           TEAM SCROLL STRIP
        ════════════════════════════════ */
        .nos-team {
            background: var(--white);
            padding: clamp(80px, 10vh, 120px) 0;
        }
        .nos-team-track {
            display: flex;
            gap: 16px;
            overflow-x: scroll;
            padding: 0 var(--g) 0;
            scrollbar-width: none;
            -ms-overflow-style: none;
            cursor: grab;
            -webkit-overflow-scrolling: touch;
            user-select: none;
        }
        .nos-team-track:active { cursor: grabbing; }
        .nos-team-track::-webkit-scrollbar { display: none; }
        .nos-team-card {
            flex-shrink: 0;
            width: clamp(320px, 38vw, 560px);
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 8px;
            scroll-snap-align: start;
            background: var(--cream);
        }
        .nos-team-card img,
        .nos-team-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
            transition: transform .6s cubic-bezier(0.2, 0, 0, 1);
        }
        .nos-team-card:hover img,
        .nos-team-card:hover video { transform: scale(1.04); }


        /* ════════════════════════════════
           BIO SECTIONS
        ════════════════════════════════ */
        .nos-bio {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
        }
        .nos-bio-photo {
            position: relative;
            overflow: hidden;
            min-height: 500px;
        }
        .nos-bio-photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        .nos-bio-text {
            padding: clamp(72px, 10vw, 140px) clamp(48px, 6vw, 96px);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .nos-bio-1 { background: var(--navy); }
        .nos-bio-2 { background: var(--cream); }
        .nos-bio-role {
            font-family: var(--sans);
            font-size: 17px;
            font-weight: 400;
            letter-spacing: 0;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .nos-bio-1 .nos-bio-role { color: var(--steel); }
        .nos-bio-2 .nos-bio-role { color: var(--black); }
        .nos-bio-name {
            font-family: var(--display);
            font-size: 56px;
            font-weight: 600;
            text-transform: uppercase;
            line-height: 1.08;
            margin-bottom: 28px;
        }
        .nos-bio-1 .nos-bio-name { color: var(--white); }
        .nos-bio-2 .nos-bio-name { color: var(--black); }
        .nos-bio-rule {
            width: 44px;
            height: 2px;
            margin-bottom: 32px;
        }
        .nos-bio-1 .nos-bio-rule { background: var(--lime); }
        .nos-bio-2 .nos-bio-rule { background: var(--olive); }
        .nos-bio-body {
            font-family: var(--sans);
            font-size: 16px;
            font-weight: 400;
            line-height: 1.88;
            max-width: 46ch;
        }
        .nos-bio-1 .nos-bio-body { color: rgba(251,249,248,.62); }
        .nos-bio-2 .nos-bio-body { color: var(--mid); }
        @media (max-width: 768px) {
            .nos-bio { grid-template-columns: 1fr; }
            .nos-bio-photo { min-height: 360px; }
            /* Built by Hospitality People — sube la sección y agranda el vector */
            .nos-intro { padding-top: clamp(64px, 10vh, 100px); }
            .nos-intro-squiggle { width: clamp(140px, 34vw, 220px); }
        }


        /* ════════════════════════════════
           SERVICES STRIP
        ════════════════════════════════ */
        .services { background: var(--white); padding-top: clamp(120px, 16vh, 200px); }
        .svc-header { text-align: center; padding: 0 var(--g) clamp(48px, 8vh, 80px); }
        .littlebig-logo {
            display: inline-block;
            color: var(--black);
            width: clamp(180px, 22vw, 320px);
            height: auto;
        }
        .svc-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            padding: 0 var(--g) clamp(40px, 6vh, 64px);
        }
        .svc-item { display: flex; flex-direction: column; gap: 14px; }
        .svc-label {
            font-family: var(--sans);
            font-size: 13px;
            font-weight: 400;
            letter-spacing: .18em;
            text-transform: uppercase;
            text-align: center;
            color: var(--black);
        }
        .svc-card {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            border-radius: 18px;
            overflow: hidden;
            background: #2e2b28;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .svc-card img:first-child {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: transform .6s cubic-bezier(0.2, 0, 0, 1);
        }
        .svc-card:hover img:first-child { transform: scale(1.08); }
        .svc-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(22,20,16,.05) 0%, rgba(22,20,16,.45) 100%);
            z-index: 1;
        }
        .svc-logo {
            position: relative;
            z-index: 2;
            height: clamp(10px, 1vw, 14px);
            width: auto;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }
        .svc-arrow {
            position: absolute;
            bottom: 14px; right: 16px;
            font-size: 50px;
            font-weight: 100;
            color: #fff;
            z-index: 2;
            line-height: 1;
        }
        .svc-c1 { background: #2c2825; }
        .svc-c2 { background: #282828; }
        .svc-c2 img:first-child { filter: none; }
        .svc-c2 .svc-arrow { display: none; }
        .svc-c3 { background: #2e2c28; }
        .svc-c4 { background: #2a2a2a; }
        .svc-c5 { background: #2c2c2c; }
        .svc-c6 { background: #282828; }
        @media (max-width: 1024px) { .svc-row { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 580px)  { .svc-row { grid-template-columns: repeat(2, 1fr); } }


        /* ════════════════════════════════
           FOOTER
        ════════════════════════════════ */
        .foot {
            background: var(--navy);
            color: #fff;
            padding: clamp(54px,6vw,90px) var(--g) clamp(26px,3vw,40px);
        }
        .foot-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr) auto;
            gap: clamp(28px,3vw,48px);
        }
        .ftitle {
            grid-column: 1 / -1;
            font-size: 11px;
            letter-spacing: .22em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: clamp(20px,2.4vw,30px);
        }
        .ws { margin-bottom: clamp(26px,3vw,42px); }
        .ws .city {
            font-family: var(--sans);
            font-size: clamp(15px,1.3vw,19px);
            font-weight: 300;
            letter-spacing: .01em;
            text-transform: uppercase;
            margin-bottom: .7em;
        }
        .ws .addr {
            font-family: var(--sans);
            font-weight: 300;
            font-size: 14.5px;
            line-height: 1.5;
            color: #fff;
            max-width: 24ch;
        }
        .foot-talk { justify-self: end; text-align: right; }
        .foot-talk .lt {
            font-size: 11px;
            letter-spacing: .22em;
            text-transform: uppercase;
            font-weight: 600;
            margin-bottom: clamp(18px,2vw,26px);
        }
        .foot-talk a {
            font-family: var(--sans);
            font-weight: 300;
            display: block;
            font-size: 14.5px;
            color: #fff;
            text-decoration: none;
            margin-bottom: .85em;
            letter-spacing: .04em;
            transition: opacity .3s;
        }
        .foot-talk a:hover { opacity: .7; }
        .foot-rule {
            height: 1px;
            background: var(--line-navy);
            margin: clamp(30px,3.6vw,52px) 0 clamp(18px,2vw,26px);
        }
        .foot-bot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .foot-brand {
            font-family: var(--sans);
            font-weight: 300;
            letter-spacing: .42em;
            font-size: 15px;
            padding-left: .42em;
            text-transform: uppercase;
            color: #fff;
        }
        .foot-brand svg { height: 16px; width: auto; display: block; }
        .foot-legal {
            font-family: var(--sans);
            font-weight: 300;
            display: flex;
            gap: 14px;
            align-items: center;
            font-size: 13.5px;
            color: #fff;
        }
        .foot-legal a { color: inherit; text-decoration: none; transition: opacity .3s; }
        .foot-legal a:hover { opacity: .7; }
        @media (max-width: 768px) {
            .foot-grid { grid-template-columns: 1fr 1fr; }
            .foot-talk { grid-column: 1/-1; justify-self: start; text-align: left; }
        }
        @media (max-width: 560px) {
            .foot-grid { grid-template-columns: 1fr; }
            .ws .addr {
                font-size: 11px;
                max-width: none;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }


        /* ════════════════════════════════
           CURTAIN INTRO
        ════════════════════════════════ */
        #page-curtain {
            position: fixed;
            inset: 0;
            background: var(--navy);
            z-index: 9000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 1.6s cubic-bezier(0.76, 0, 0.24, 1);
            will-change: transform;
        }
        #page-curtain.away { transform: translateY(-100%); }
        .curtain-label {
            font-family: var(--display);
            font-size: clamp(36px, 6vw, 80px);
            font-weight: 400;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--white);
            opacity: 0;
            animation: curtainLogo .8s cubic-bezier(0.16, 1, 0.3, 1) .2s forwards;
        }
        @keyframes curtainLogo {
            from { opacity: 0; transform: translateY(16px); }
            to   { opacity: 1; transform: none; }
        }

        /* Hero sm y md — fade up */
        .nos-hero-sm,
        .nos-hero-md {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .9s ease, transform .9s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nos-hero-sm.in, .nos-hero-md.in { opacity: 1; transform: none; }

        /* Hero lg — clip por línea */
        .nos-hero-lg { opacity: 1; }
        .nhl-wrap {
            display: block;
            overflow: hidden;
            padding-bottom: 10px;
            margin-bottom: -10px;
        }
        .nhl {
            display: block;
            transform: translateY(115%);
            transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .nhl.up { transform: translateY(0); }

        /* ── BACK TO TOP ── */
        .back-top {
            position: fixed;
            bottom: 36px; right: 36px;
            width: 48px; height: 48px;
            border-radius: 50%;
            background: var(--black);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999;
            opacity: 0;
            transform: translateY(16px);
            transition: opacity .45s cubic-bezier(0.2,0,0,1), transform .45s cubic-bezier(0.2,0,0,1), background .25s ease;
            pointer-events: none;
        }
        .back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
        .back-top:hover { background: #333; }
        .back-top-arrow { transition: transform .3s cubic-bezier(0.2,0,0,1); display: flex; }
        .back-top:hover .back-top-arrow { transform: translateY(-3px); }

        /* ── Custom Cursor ── */
        @media (pointer: fine) { *, a, button, input, textarea, select, label { cursor: none !important; } }
        .crsr {
            position: fixed; width: 30px; height: 30px;
            border: 1.5px solid rgba(40,40,40,.65); border-radius: 50%;
            pointer-events: none; z-index: 99999;
            transform: translate(-50%,-50%);
            transition: width .35s cubic-bezier(0.16,1,0.3,1),
                        height .35s cubic-bezier(0.16,1,0.3,1),
                        border-color .35s, opacity .4s;
            opacity: 0;
        }
        .crsr.active { opacity: 1; }
        .crsr.hovering { width: 56px; height: 56px; border-color: rgba(40,40,40,.3); }
        .crsr.on-dark { border-color: rgba(251,249,248,.75); }
        .crsr.on-dark.hovering { border-color: rgba(251,249,248,.35); }
        .crsr-dot.on-dark { background: #FBF9F8; }
        .crsr-dot {
            position: fixed; width: 5px; height: 5px;
            background: #282828; border-radius: 50%;
            pointer-events: none; z-index: 99999;
            transform: translate(-50%,-50%);
            opacity: 0; transition: opacity .4s;
        }
        .crsr-dot.active { opacity: 1; }
    