```css
/* ════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════ */
:root {
    --bg:      #0D0B0A;
    --bg1:     #141210;
    --bg2:     #1C1917;
    --cr:      #F4EFE6;
    --cr1:     #EBE4D8;
    --text:    #EDEAE0;
    --gold:    #C4A05A;
    --gold2:   #D9B96A;
    --muted:   rgba(237,234,224,0.42);
    --dim:     rgba(237,234,224,0.16);
    --border:  rgba(237,234,224,0.08);
    --fh:      'Syne', sans-serif;
    --fb:      'Inter', sans-serif;
    --ease:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; cursor: none; }
html  { scroll-behavior: smooth; }
body  { background: var(--bg); color: var(--text); font-family: var(--fb); overflow-x: hidden; line-height: 1.7; }
body.loading { overflow: hidden; }
a    { text-decoration: none; color: inherit; }
img  { display: block; max-width: 100%; }

/* ════════════════════════════════════════════
   LOADER
════════════════════════════════════════════ */
.loader {
    position: fixed; inset: 0; z-index: 9999;
    background: #060504;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 18px;
    transition: opacity .6s var(--ease), visibility .6s;
}
.loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-num {
    font-family: var(--fh);
    font-size: clamp(80px, 20vw, 240px);
    font-weight: 800; line-height: 1; letter-spacing: -6px;
    color: var(--text);
}
.loader-bar {
    width: 220px; height: 1px;
    background: rgba(237,234,224,.08); overflow: hidden;
}
.loader-fill { height: 100%; background: var(--gold); width: 0%; transition: width .08s linear; }
.loader-label {
    font-family: var(--fh); font-size: 10px; font-weight: 800;
    letter-spacing: 7px; color: rgba(237,234,224,.18);
    margin-top: 6px;
}

/* ════════════════════════════════════════════
   CURSOR
════════════════════════════════════════════ */
.cur-dot {
    position: fixed; width: 7px; height: 7px;
    background: #fff; border-radius: 50%;
    pointer-events: none; z-index: 10000;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s, background .2s;
    will-change: left, top;
}
.cur-ring {
    position: fixed; width: 38px; height: 38px;
    border: 1.5px solid rgba(255,255,255,.55); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .35s, height .35s, border-color .35s;
    will-change: left, top;
}
.cur-dot.hov  { width: 11px; height: 11px; background: var(--gold); }
.cur-ring.hov { width: 62px; height: 62px; border-color: rgba(196,160,90,.6); }

@media (hover: none) {
    .cur-dot, .cur-ring { display: none; }
    *, *::before, *::after { cursor: auto; }
}

/* ════════════════════════════════════════════
   BIG LOGO
════════════════════════════════════════════ */
.big-logo {
    position: fixed;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%) scale(1);
    width: clamp(200px, 40vw, 500px);
    z-index: 750;
    pointer-events: none;
    will-change: left, top, transform, opacity;
    filter: drop-shadow(0 6px 32px rgba(0,0,0,.7));
    transition: opacity .3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.big-logo img { width: 100%; height: auto; display: block; object-fit: contain; }

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 700;
    display: flex; align-items: center; justify-content: space-between;
    height: 100px; padding: 0 60px;
    background: rgba(0,0,0,0.88);
    border-bottom: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(16px);
    transition: height .4s var(--ease), background .4s, box-shadow .4s;
}
.nav.solid {
    height: 90px;
    background: rgba(0,0,0,0.95);
    border-bottom-color: rgba(255,255,255,.08);
    box-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.nav-brand {
    font-family: var(--fh); font-size: 22px; font-weight: 800;
    letter-spacing: 4px; color: var(--gold);
    opacity: 0; pointer-events: none;
}
.nav-links { list-style: none; display: flex; gap: 36px; }
.nav-links a {
    font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
    color: rgba(255,255,255,.75); text-transform: uppercase;
    position: relative; transition: color .2s;
}
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
    background: var(--gold); transform: scaleX(0); transform-origin: right;
    transition: transform .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-logo-right {
    height: 82px; width: auto; max-height: 82px; max-width: 320px;
    object-fit: contain; object-position: center right;
    border-radius: 4px; display: block; flex-shrink: 0;
}
.lang { display: flex; align-items: center; gap: 8px; }
.lang button {
    background: none; border: none;
    font-family: var(--fb); font-size: 11px; font-weight: 700;
    letter-spacing: 2px; color: rgba(255,255,255,.45); transition: color .2s;
}
.lang button.active { color: var(--gold); }
.lang button:hover  { color: #fff; }
.lang span { color: rgba(255,255,255,.25); }

/* Hamburguesa */
.nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 36px; height: 36px;
    background: none; border: none; z-index: 800; flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 24px; height: 1.5px;
    background: var(--text);
    transition: transform .35s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Menú mobile */
.nav-mobile {
    display: none;
    position: fixed; inset: 0; top: 64px; z-index: 770;
    background: rgba(6,5,4,.97); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 36px; opacity: 0; pointer-events: none;
    transition: opacity .35s var(--ease);
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
    font-family: var(--fh); font-size: clamp(26px, 8vw, 42px);
    font-weight: 800; letter-spacing: 2px;
    color: rgba(237,234,224,.75); text-transform: uppercase;
    transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .lang { margin-top: 16px; }
.nav-mobile .lang button { font-size: 14px; }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
    position: relative; height: 100svh; min-height: 500px;
    overflow: hidden;
    background: #0D0B0A;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hslide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    background-repeat: no-repeat;
    background-color: #0D0B0A;
    opacity: 0; transform: scale(1.06);
    transition: opacity 1.2s var(--ease), transform 8s linear;
}
.hslide.active { opacity: 1; transform: scale(1.0); }
.hero-veil {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(5,4,3,.85) 0%,
        rgba(5,4,3,.3) 25%,
        rgba(5,4,3,.15) 50%,
        rgba(10,8,7,.6) 80%,
        rgba(13,11,10,1) 100%
    );
}
.hero-grain {
    position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: .04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 160px; animation: grain .5s steps(1) infinite;
}
@keyframes grain {
    0%  { background-position: 0 0; }
    25% { background-position: -20px 10px; }
    50% { background-position: 10px -16px; }
    75% { background-position: -16px 5px; }
}
.hero-tagline {
    position: absolute; bottom: 120px; left: 0; right: 0; z-index: 3;
    display: flex; align-items: center; justify-content: center; gap: 16px;
    font-size: 11px; font-weight: 700; letter-spacing: 4px;
    color: rgba(237,234,224,.55); text-transform: uppercase; padding: 0 20px;
    animation: fadeUp .7s 1.4s var(--ease) both;
}
.ht-line {
    display: inline-block; height: 1px; width: 60px; flex-shrink: 0;
    background: linear-gradient(to right, transparent, rgba(196,160,90,.5));
}
.hero-tagline .ht-line:last-child {
    background: linear-gradient(to left, transparent, rgba(196,160,90,.5));
}
.hero-slide-dots {
    position: absolute; bottom: 76px; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; gap: 10px;
}
.hsdot {
    width: 7px; height: 7px; border-radius: 50%;
    border: 1px solid rgba(237,234,224,.35); background: transparent;
    transition: background .3s, border-color .3s, transform .3s;
}
.hsdot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
.hero-scroll-hint {
    position: absolute; bottom: 36px; left: 60px; z-index: 3;
    display: flex; align-items: center; gap: 14px;
    font-size: 9px; font-weight: 700; letter-spacing: 4px;
    color: rgba(237,234,224,.35);
    animation: fadeUp .6s 1.6s var(--ease) both;
}
.hs-line {
    display: inline-block; width: 44px; height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    animation: hpulse 2s ease-in-out infinite;
}
@keyframes hpulse {
    0%,100% { transform: scaleX(1); opacity: 1; }
    50%      { transform: scaleX(.5); opacity: .35; }
}
.hero-bar {
    position: absolute; bottom: 0; left: 0; z-index: 4;
    height: 2px; width: 0%; background: var(--gold);
}
.hero-bar.run { animation: hbar 6s linear forwards; }
@keyframes hbar { to { width: 100%; } }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ════════════════════════════════════════════
   LIGHT SECTIONS
════════════════════════════════════════════ */
.light-sec { background: var(--cr) !important; color: #1A1512; }
.light-sec .dh,
.light-sec .sec-n,
.light-sec .tl-yr { color: #8B5E2A; }
.light-sec .sec-label > span:nth-child(2) { color: rgba(26,21,18,.5); }
.light-sec .sec-en { color: rgba(26,21,18,.3); }
.light-sec .svc-hd h3,
.light-sec .tl-card h3,
.light-sec .stat-n { color: #1A1512; }
.light-sec .svc-list,
.light-sec .svc-item,
.light-sec .tl-spine { border-color: rgba(26,21,18,.1); }
.light-sec .svc-plus,
.light-sec .about-body p,
.light-sec .tl-card p,
.light-sec .stat-l { color: rgba(26,21,18,.6); }
.light-sec .svc-bd p { color: rgba(26,21,18,.6); }
.light-sec .svc-item.open .svc-hd h3,
.light-sec .svc-hd:hover h3 { color: #8B5E2A; }
.light-sec .svc-item.open .svc-plus { color: #8B5E2A; }
.light-sec .tl-dot { background: var(--cr1); border-color: rgba(26,21,18,.2); }
.light-sec .cli-fade-l { background: linear-gradient(to right, var(--cr), transparent); }
.light-sec .cli-fade-r { background: linear-gradient(to left,  var(--cr), transparent); }
.light-sec .cli-logo { filter: grayscale(1) opacity(0.45); }
.light-sec .cli-logo:hover { filter: grayscale(0) opacity(1); }

/* ════════════════════════════════════════════
   STATS
════════════════════════════════════════════ */
.stats {
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    gap: 64px; flex-wrap: wrap; padding: 88px 60px;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.stat-top { display: flex; align-items: flex-start; line-height: 1; }
.stat-n {
    font-family: var(--fh);
    font-size: clamp(64px, 8vw, 112px);
    font-weight: 800; color: var(--text);
}
.stat-sym {
    font-family: var(--fh); font-size: clamp(34px, 4vw, 58px);
    font-weight: 700; color: var(--gold); margin-top: 6px;
}
.stat-l {
    font-size: 13px; font-weight: 500; letter-spacing: 1px;
    color: var(--muted); max-width: 160px; line-height: 1.6;
}
.stat-sep { font-size: 28px; color: rgba(237,234,224,.1); }

/* ════════════════════════════════════════════
   SECTION UTILITY
════════════════════════════════════════════ */
.sp { padding: 130px 60px; }
.sec-label {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 72px; flex-wrap: wrap;
}
.sec-n {
    font-family: var(--fh); font-size: 10px; font-weight: 800;
    letter-spacing: 3px; color: var(--gold);
}
.sec-label > span:nth-child(2) {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    color: var(--muted); text-transform: uppercase;
}
.sec-en {
    font-size: 10px; font-weight: 400; letter-spacing: 2px;
    color: var(--dim); font-style: italic; margin-left: auto;
}
.dh {
    font-family: var(--fh);
    font-size: clamp(44px, 5.6vw, 88px);
    font-weight: 800; line-height: 1.05; letter-spacing: -2px;
    color: var(--text); margin-bottom: 48px;
}
.dh em { font-style: italic; color: var(--gold); }
.reveal-up {
    opacity: 0; transform: translateY(32px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay: var(--d, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════════════
   01 — ABOUT
════════════════════════════════════════════ */
.about { background: var(--bg); }
.about-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 88px; align-items: start;
}
.about-body { display: flex; flex-direction: column; gap: 24px; }
.about-body p { font-size: clamp(16px, 1.6vw, 20px); color: var(--muted); line-height: 1.9; }
.quote {
    background: var(--bg1); border-left: 2px solid var(--gold);
    border-radius: 0 12px 12px 0; padding: 44px 40px;
    position: sticky; top: 110px; margin-top: 40px;
}
.quote p {
    font-family: Georgia, serif; font-style: italic;
    font-size: clamp(19px, 2.1vw, 26px);
    color: var(--text); line-height: 1.65; margin-bottom: 24px;
}
.quote cite {
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    color: var(--gold); font-style: normal;
}
.about-right {
    display: flex; flex-direction: column; gap: 16px;
    position: sticky; top: 110px;
}
.about-video-wrap {
    width: 100%; border-radius: 14px; overflow: hidden;
    height: calc(100vh - 130px); max-height: 680px;
    position: sticky; top: 100px; background: var(--bg2);
}
.about-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ════════════════════════════════════════════
   02 — SERVICIOS
════════════════════════════════════════════ */
.svc-dh { margin-bottom: 56px; }
.svc-list { border-top: 1px solid var(--border); }
.svc-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.svc-hd {
    display: grid;
    grid-template-columns: 36px 44px 1fr 28px;
    align-items: center; gap: 18px; padding: 28px 0;
    transition: opacity .2s;
}
.svc-hd:hover { opacity: .85; }
.svc-item.open .svc-hd { opacity: 1; }
.svc-icon { font-size: 22px; }
.svc-num {
    font-family: var(--fh); font-size: 10px; font-weight: 700;
    letter-spacing: 2px; color: var(--dim);
}
.svc-hd h3 {
    font-family: var(--fh); font-size: clamp(18px, 2vw, 26px);
    font-weight: 700; color: var(--text); transition: color .2s;
}
.svc-item.open .svc-hd h3,
.svc-hd:hover h3 { color: var(--gold); }
.svc-plus {
    font-size: 28px; font-weight: 300; line-height: 1;
    color: var(--dim); text-align: right;
    transition: transform .35s var(--ease), color .2s;
}
.svc-item.open .svc-plus { transform: rotate(45deg); color: var(--gold); }
.svc-bd {
    max-height: 0; overflow: hidden; padding: 0 0 0 98px;
    transition: max-height .45s var(--ease), padding .45s var(--ease);
}
.svc-item.open .svc-bd { max-height: 180px; padding: 0 0 28px 98px; }
.svc-bd p { font-size: 16px; color: var(--muted); line-height: 1.82; max-width: 600px; }

/* ════════════════════════════════════════════
   03 — WORKS
════════════════════════════════════════════ */
.works { background: var(--bg1); }
.works-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-top: 56px;
}
.wk-item {
    position: relative; overflow: hidden;
    border-radius: 10px; aspect-ratio: 4/3; display: block;
}
.wk-large { grid-column: span 2; aspect-ratio: 16/9; }
.wk-tall  { grid-row: span 2; aspect-ratio: auto; }
.wk-wide  { grid-column: span 2; aspect-ratio: 16/7; }
.wk-item img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform .7s var(--ease);
}
.wk-item:hover img { transform: scale(1.06); }
.wk-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,8,7,.85) 0%, rgba(10,8,7,.2) 50%, transparent 100%);
    opacity: .7; transition: opacity .4s;
}
.wk-item:hover .wk-overlay { opacity: 1; }
.wk-info {
    position: absolute; bottom: 22px; left: 22px; right: 22px; z-index: 2;
    transform: translateY(6px); transition: transform .4s var(--ease);
}
.wk-item:hover .wk-info { transform: translateY(0); }
.wk-cat {
    display: block; font-size: 9px; font-weight: 800;
    letter-spacing: 3px; color: var(--gold); margin-bottom: 6px;
}
.wk-info h3 {
    font-family: var(--fh); font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 4px;
}
.wk-info p { font-size: 13px; color: rgba(237,234,224,.55); line-height: 1.5; }
.wk-arr {
    position: absolute; top: 18px; right: 18px; z-index: 2;
    font-size: 22px; color: rgba(237,234,224,.3);
    transition: color .3s, transform .3s;
}
.wk-item:hover .wk-arr { color: var(--gold); transform: translate(3px,-3px); }

/* ════════════════════════════════════════════
   04 — TIMELINE
════════════════════════════════════════════ */
.tl-wrap { position: relative; display: flex; flex-direction: column; padding-top: 8px; }
.tl-spine {
    position: absolute; left: 50%; top: 0; bottom: 0;
    width: 1px; background: var(--border); transform: translateX(-50%);
}
.tl-item {
    display: grid; grid-template-columns: 1fr 24px 1fr;
    align-items: center; padding: 38px 0;
}
.tl-l .tl-card { grid-column: 1; padding-right: 60px; text-align: right; }
.tl-l .tl-dot  { grid-column: 2; justify-self: center; }
.tl-r .tl-dot  { grid-column: 2; justify-self: center; }
.tl-r .tl-card { grid-column: 3; padding-left: 60px; }
.tl-dot {
    width: 12px; height: 12px; flex-shrink: 0;
    background: var(--bg2); border: 1px solid rgba(237,234,224,.2);
    border-radius: 50%; z-index: 1;
    transition: border-color .3s, background .3s;
}
.tl-item:hover .tl-dot { border-color: var(--gold); }
.tl-dot-red { background: #C8372D !important; border-color: #C8372D !important; }
.tl-yr {
    display: block; font-family: var(--fh);
    font-size: 10px; font-weight: 800; letter-spacing: 3px;
    color: var(--gold); margin-bottom: 8px;
}
.tl-card h3 {
    font-family: var(--fh); font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3;
}
.tl-card p { font-size: 15px; color: var(--muted); line-height: 1.78; max-width: 340px; }
.tl-l .tl-card p { margin-left: auto; }
.tl-mark .tl-card { background: rgba(196,160,90,.06); border-radius: 10px; padding: 20px 24px; }
.tl-l.tl-mark .tl-card { padding-right: 24px; }

/* ════════════════════════════════════════════
   05 — DIRECTOR
════════════════════════════════════════════ */
.director { background: var(--bg1); position: relative; overflow: hidden; }
.dir-grid {
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 88px; position: relative; z-index: 1; align-items: start;
}
.dir-img-wrap {
    position: sticky; top: 110px;
    border-radius: 14px; overflow: hidden; aspect-ratio: 3/4;
}
.dir-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .7s var(--ease);
}
.dir-img-wrap:hover img { transform: scale(1.04); }
.dir-img-tag {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(to top, rgba(10,8,7,.9) 0%, transparent 100%);
}
.dir-name {
    display: block; font-family: var(--fh); font-size: clamp(18px, 2vw, 24px);
    font-weight: 800; color: #fff; margin-bottom: 4px;
}
.dir-role { font-size: 11px; font-weight: 600; letter-spacing: 2px; color: var(--gold); }
.dir-content .dh { margin-bottom: 28px; }
.dir-bio {
    font-size: clamp(16px, 1.6vw, 19px); color: var(--muted); line-height: 1.9; margin-bottom: 48px;
}

/* ════════════════════════════════════════════
   06 — CLIENTES
════════════════════════════════════════════ */
.cli-marquee-wrap {
    position: relative; margin-top: 56px;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 44px 0; overflow: hidden;
}
.cli-fade {
    position: absolute; top: 0; bottom: 0; width: 180px; z-index: 2; pointer-events: none;
}
.cli-fade-l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.cli-fade-r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }
.cli-track-wrap { overflow: hidden; }
.cli-track {
    display: flex; align-items: center; gap: 72px;
    width: max-content; animation: cliScroll 30s linear infinite;
}
.cli-track-wrap:hover .cli-track { animation-play-state: paused; }
@keyframes cliScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.cli-logo {
    height: 72px; width: auto; max-width: 220px;
    object-fit: contain; flex-shrink: 0;
    filter: grayscale(1) opacity(0.45);
    transition: filter .35s var(--ease), transform .3s var(--ease);
}
.cli-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.06); }

/* ════════════════════════════════════════════
   BOTONES
════════════════════════════════════════════ */
.btn-cta {
    display: inline-block; padding: 18px 52px;
    background: var(--gold); color: #000;
    font-size: 12px; font-weight: 800; letter-spacing: 3px;
    text-transform: uppercase; border-radius: 3px;
    transition: background .25s, transform .2s;
}
.btn-cta:hover { background: var(--gold2); transform: translateY(-2px); }
.cta-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 18px 40px; border: 1.5px solid #25D366; color: #25D366;
    font-size: 12px; font-weight: 800; letter-spacing: 2px;
    text-transform: uppercase; border-radius: 3px;
    transition: background .25s, color .25s, transform .2s;
}
.btn-wa:hover { background: #25D366; color: #000; transform: translateY(-2px); }

/* ════════════════════════════════════════════
   CONTACT SPLIT
════════════════════════════════════════════ */
.contact-split {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: 65vh; position: relative;
}
.cs-video-wrap { position: relative; overflow: hidden; }
.cs-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cs-veil {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,.18), rgba(0,0,0,.5));
}
.cs-content {
    background: var(--bg2);
    display: flex; flex-direction: column; justify-content: center;
    padding: 64px 72px; border-left: 1px solid var(--border);
}
.sec-label-sm {
    font-size: 10px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 36px; display: block;
}
.cs-h {
    font-family: var(--fh); font-size: clamp(32px, 3.8vw, 64px);
    font-weight: 800; line-height: 1.0; color: var(--text); margin-bottom: 28px;
}
.cs-h em { font-style: italic; color: var(--gold); }
.cs-sub {
    font-size: clamp(15px, 1.4vw, 18px); color: var(--muted);
    line-height: 1.8; margin-bottom: 48px;
}
.cs-info {
    margin-top: 44px; display: flex; flex-direction: column; gap: 8px;
    padding-top: 32px; border-top: 1px solid var(--border);
}
.cs-email {
    font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--gold); transition: color .2s;
}
.cs-email:hover { color: var(--gold2); }
.cs-loc { font-size: 11px; letter-spacing: 2px; color: var(--dim); text-transform: uppercase; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
    background: #060402; border-top: 1px solid var(--border);
    padding: 56px 60px 44px;
}
.footer-top {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 24px;
    padding-bottom: 40px; margin-bottom: 28px; border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.footer-name { font-size: 11px; font-weight: 500; letter-spacing: 2px; color: var(--dim); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a {
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    color: var(--muted); transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 32px; }
.footer-bottom span { font-size: 10px; letter-spacing: 2px; color: rgba(237,234,224,.55); }

/* ════════════════════════════════════════════
   RESPONSIVE 1100px
════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .nav { padding: 0 32px; }
    .nav-links { gap: 22px; }
    .sp { padding: 96px 32px; }
    .stats { gap: 40px; padding: 72px 32px; }
    .about-grid { grid-template-columns: 1fr; gap: 52px; }
    .about-right { position: static; }
    .about-video-wrap { position: static; height: 56vw; max-height: 520px; }
    .quote { position: static; margin-top: 32px; }
    .works-grid { grid-template-columns: repeat(2, 1fr); }
    .wk-large { grid-column: span 2; }
    .wk-tall  { grid-row: span 1; aspect-ratio: 4/3; }
    .wk-wide  { grid-column: span 2; }
    .tl-spine { left: 16px; transform: none; }
    .tl-item  { grid-template-columns: 24px 1fr; }
    .tl-l .tl-card,
    .tl-r .tl-card { grid-column: 2; padding: 0 0 0 22px; text-align: left; }
    .tl-l .tl-dot,
    .tl-r .tl-dot  { grid-column: 1; justify-self: center; }
    .tl-l .tl-card p { margin-left: 0; }
    .tl-l.tl-mark .tl-card { padding-left: 22px; padding-right: 22px; }
    .dir-grid { grid-template-columns: 1fr; gap: 52px; }
    .dir-img-wrap { position: static; max-width: 520px; aspect-ratio: 4/3; }
    .hero-scroll-hint { left: 32px; }
    .footer { padding: 48px 32px 36px; }
    .contact-split { grid-template-columns: 1fr; }
    .cs-video-wrap { min-height: 55vw; }
    .cs-content { padding: 60px 40px; border-left: none; border-top: 1px solid var(--border); }
}

/* ════════════════════════════════════════════
   RESPONSIVE 768px  (MOBILE)
════════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav {
        padding: 0 14px !important;
        height: 64px !important;
        justify-content: space-between !important;
    }
    .nav.solid { height: 60px !important; }
    .nav-brand { display: none !important; }
    .nav-links { display: none !important; }
    .nav-right {
        display: flex !important;
        align-items: center;
        gap: 10px;
        margin-left: auto;
        margin-right: 8px;
    }
    .nav-logo-right { height: 32px !important; max-width: 90px !important; }
    .lang { gap: 4px; }
    .lang button { font-size: 10px !important; letter-spacing: 1px !important; }
    .lang span { font-size: 10px; }
    .nav-toggle { display: flex !important; width: 32px; height: 32px; flex-shrink: 0; }
    .nav-mobile { display: flex !important; top: 64px; z-index: 770; }

    .big-logo {
        width: clamp(120px, 38vw, 200px);
        left: 50% !important;
    }
    body:has(.nav.solid) .big-logo,
    body:has(.nav-mobile.open) .big-logo,
    body:has(.nav-toggle.open) .big-logo {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .hslide {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: #0D0B0A !important;
    }
    .hslide:nth-child(1) { background-image: url('img/mobile/futbol.jpeg') !important; }
    .hslide:nth-child(2) { background-image: url('img/mobile/triologia.jpeg') !important; }
    .hslide:nth-child(3) { background-image: url('img/mobile/4.jpg') !important; }
    .hslide:nth-child(4) { background-image: url('img/mobile/paraiso.jpeg') !important; }
    .hslide:nth-child(5) { background-image: url('img/mobile/vys.jpeg') !important; }
    .hslide:nth-child(6) { background-image: url('img/mobile/daniel.jpeg') !important; }
    .hslide:nth-child(7) { background-image: url('img/mobile/balones.jpeg') !important; }
    .hslide:nth-child(8) { background-image: url('img/mobile/VIVIANA-m.png') !important; }
    .hslide:nth-child(9) { background-image: url('img/mobile/oso-m.jpeg') !important; }

    .hero-tagline { bottom: 88px; font-size: 9px; letter-spacing: 2px; gap: 8px; }
    .ht-line { width: 18px; }
    .hero-slide-dots { bottom: 60px; gap: 8px; }
    .hsdot { width: 6px; height: 6px; }
    .hero-scroll-hint { left: 16px; bottom: 24px; font-size: 8px; letter-spacing: 3px; }

    .sp { padding: 64px 20px; }
    .sec-label { margin-bottom: 40px; }
    .sec-en { display: none; }
    .dh { letter-spacing: -1px; margin-bottom: 32px; }

    .stats {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 0; padding: 0; border: none;
    }
    .stat {
        padding: 32px 16px;
        border-right: 1px solid rgba(26,21,18,.1);
        border-bottom: 1px solid rgba(26,21,18,.1);
    }
    .stat:nth-child(even) { border-right: none; }
    .stat-sep { display: none; }
    .stat-n { font-size: clamp(44px, 12vw, 72px); }
    .stat-sym { font-size: clamp(24px, 6vw, 38px); }
    .stat-l { font-size: 11px; max-width: 140px; }

    .about-video-wrap { height: 60vw; max-height: 360px; border-radius: 10px; }
    .quote { padding: 24px 20px; }
    .quote p { font-size: 15px; margin-bottom: 16px; }

    .svc-hd {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 20px 4px 20px 0 !important;
        grid-template-columns: unset !important;
    }
    .svc-icon { font-size: 20px !important; flex-shrink: 0 !important; flex-grow: 0 !important; order: 0; }
    .svc-num { display: none !important; }
    .svc-hd h3 { flex: 1 1 0 !important; min-width: 0 !important; font-size: 15px !important; line-height: 1.35 !important; order: 1; word-break: break-word; }
    .svc-plus { flex: 0 0 24px !important; width: 24px !important; font-size: 24px !important; line-height: 1 !important; text-align: right !important; align-self: center !important; margin-left: auto !important; order: 2; }
    .svc-bd { padding: 0 0 0 34px; }
    .svc-item.open .svc-bd { max-height: 260px; padding: 0 0 22px 34px; }
    .svc-bd p { font-size: 14px; }

    .works-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 32px; }
    .wk-large, .wk-wide { grid-column: span 1; aspect-ratio: 16/9; }
    .wk-tall  { grid-row: span 1; aspect-ratio: 16/9; }
    .wk-item  { aspect-ratio: 16/9; border-radius: 8px; }
    .wk-info  { transform: none !important; bottom: 14px; left: 14px; right: 14px; }
    .wk-overlay { opacity: 1 !important; }
    .wk-arr { top: 12px; right: 12px; font-size: 18px; color: rgba(237,234,224,.5); }

    .tl-item { padding: 22px 0; }
    .tl-card h3 { font-size: 15px; }
    .tl-card p  { font-size: 13px; }

    .dir-img-wrap { max-width: 100%; aspect-ratio: 3/4; max-height: 480px; }
    .dir-bio { font-size: 15px; margin-bottom: 32px; }

    .cs-video-wrap { min-height: 60vw; }
    .cs-content { padding: 48px 20px 60px; }
    .cta-btns { flex-direction: column; align-items: stretch; }
    .btn-cta, .btn-wa { width: 100%; justify-content: center; padding: 18px 20px; }

    .cli-logo { height: 48px; max-width: 140px; }
    .cli-track { gap: 40px; }
    .cli-fade  { width: 60px; }

    .footer { padding: 40px 20px 32px; }
    .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-links { gap: 16px; }
    .footer-bottom { text-align: left; margin-top: 8px; }
}

/* ════════════════════════════════════════════
   RESPONSIVE 480px  (MÓVIL CHICO)
════════════════════════════════════════════ */
@media (max-width: 480px) {
    .nav { padding: 0 10px !important; }
    .nav-logo-right { height: 28px !important; max-width: 78px !important; }
    .lang button { font-size: 9px !important; }
    .big-logo { width: clamp(100px, 44vw, 160px); }

    .sp { padding: 52px 16px; }
    .stat { padding: 24px 10px; }

    .hero-tagline { display: none; }
    .hero-slide-dots { bottom: 50px; }

    .svc-hd { gap: 10px !important; padding: 17px 4px 17px 0 !important; }
    .svc-icon { display: none !important; }
    .svc-hd h3 { font-size: 14px !important; }
    .svc-plus { font-size: 22px !important; }
    .svc-bd { padding: 0; }
    .svc-item.open .svc-bd { padding: 0 0 18px 0; }

    .wk-info h3 { font-size: 13px; }
    .wk-cat { font-size: 8px; }

    .quote { padding: 20px 14px; }
    .quote p { font-size: 14px; }

    .dir-img-wrap { aspect-ratio: 1/1; max-height: 300px; }

    .cs-video-wrap { min-height: 66vw; }
    .cs-content { padding: 40px 16px 48px; }
    .cs-h { font-size: clamp(24px, 9vw, 38px); }

    .footer-alv { font-size: 24px; }
}