/* ================================================
   BUCANEROS CHAPALITA — STYLES
   Paleta: Bucanero Fresón (dark premium)
   Fonts: Syne (display) + Inter (body)
   ================================================ */

/* ---- CUSTOM PROPERTIES ---- */
:root {
    /* Colors */
    --black: #0A0A0A;
    --black-light: #121212;
    --carbon: #1A1A1A;
    --gold: #C9A84C;
    --gold-light: #E5D5A0;
    --gold-dim: #8A7433;
    --crimson: #8B1A2B;
    --crimson-light: #B82840;
    --cream: #EDE6DA;
    --cream-dim: #C4BDB2;
    --gray: #6B6560;
    --gray-dark: #3A3632;
    --gray-darker: #2A2725;

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Sizes */
    --nav-height: 72px;
    --section-pad: clamp(80px, 12vh, 160px);
    --container-width: 1280px;
    --container-pad: clamp(20px, 4vw, 60px);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.6s;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: auto; /* ScrollSmoother handles this */
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--cream);
    background: var(--black);
    overflow-x: hidden;
    cursor: none;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

button {
    background: none;
    border: none;
    color: inherit;
    cursor: none;
    font-family: inherit;
}

em {
    font-style: italic;
    color: var(--gold);
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--black);
}
::-webkit-scrollbar-thumb {
    background: var(--gray-dark);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dim);
}

/* ---- SCROLL SMOOTHER ---- */
#smooth-wrapper {
    overflow: hidden;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

#smooth-content {
    overflow: visible;
    width: 100%;
}

/* ---- LOADER ---- */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--container-pad);
}

.loader-inner {
    text-align: center;
    width: 100%;
}

.loader-logo {
    margin-bottom: clamp(20px, 4vw, 32px);
    opacity: 0.3;
}

.loader-logo img {
    width: clamp(48px, 10vw, 80px);
    height: auto;
    margin: 0 auto;
    filter: grayscale(1) brightness(0.6);
}

.loader-text {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(24px, 7vw, 64px);
    letter-spacing: clamp(0.08em, 2vw, 0.2em);
    color: var(--gold);
    margin-bottom: clamp(20px, 4vw, 32px);
    white-space: nowrap;
}

.loader-bar {
    width: min(200px, 60vw);
    height: 2px;
    background: var(--gray-dark);
    margin: 0 auto clamp(10px, 2vw, 16px);
    overflow: hidden;
    border-radius: 1px;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gold);
    border-radius: 1px;
}

.loader-counter {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(12px, 2vw, 14px);
    letter-spacing: 0.15em;
    color: var(--gray);
}

/* ---- CUSTOM CURSOR ---- */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), opacity 0.3s, border-color 0.3s;
}

.cursor-follower.is-hover {
    width: 64px;
    height: 64px;
    opacity: 0.8;
    border-color: var(--crimson-light);
}

/* ---- GRAIN OVERLAY ---- */
.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ---- NAVIGATION ---- */
#nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 var(--container-pad);
    height: var(--nav-height);
    transition: transform 0.4s var(--ease-out), background 0.4s;
}

#nav.is-scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

#nav.is-hidden {
    transform: translateY(-100%);
}

.nav-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo img {
    transition: opacity 0.3s;
}

.nav-logo:hover img {
    opacity: 0.7;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cream-dim);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Button Gold */
.btn-gold {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 12px 28px;
    border-radius: 0;
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.btn-gold.large {
    font-size: 15px;
    padding: 18px 48px;
}

/* Nav Burger (mobile) */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--cream);
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
}

.nav-burger.is-active span:first-child {
    transform: translateY(3.75px) rotate(45deg);
}

.nav-burger.is-active span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
}

/* Mobile Menu */
#mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}

#mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 6vw, 48px);
    letter-spacing: 0.02em;
    color: var(--cream);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--gold);
}

.mobile-cta {
    margin-top: 24px;
}

/* ---- HERO ---- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--black);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--container-pad);
}

.hero-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    opacity: 0;
}

.hero-label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold-dim);
}

.hero-label-text {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--gold);
    white-space: nowrap;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title-line {
    display: block;
    overflow: hidden;
}

.hero-title-word {
    display: inline-block;
    font-size: clamp(56px, 12vw, 160px);
    visibility: hidden;
}

.hero-title-line:first-child .hero-title-word {
    color: var(--cream);
}

.hero-title-line:last-child .hero-title-word {
    color: var(--gold);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--cream-dim);
    opacity: 0;
}

.hero-logo {
    position: absolute;
    z-index: 1;
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 50vw, 600px);
    pointer-events: none;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
}

.hero-scroll span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s var(--ease-in-out) infinite;
}

@keyframes scrollLine {
    0% { top: -100%; }
    50% { top: 100%; }
    50.01% { top: -100%; }
    100% { top: 100%; }
}

/* ---- PALMARÉS ---- */
.palmares {
    background: linear-gradient(180deg, var(--black) 0%, var(--carbon) 50%, var(--black) 100%);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    padding: clamp(14px, 2vw, 20px) 0;
    overflow: hidden;
    opacity: 0;
}

.palmares-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.palmares-trophy {
    color: var(--gold);
    flex-shrink: 0;
}

.palmares-text {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 16px);
    flex-wrap: wrap;
    justify-content: center;
}

.palmares-title {
    font-family: var(--font-display);
    font-size: clamp(12px, 1.6vw, 16px);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.palmares-cat {
    font-family: var(--font-body);
    font-size: clamp(10px, 1.2vw, 13px);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dim);
    padding: 3px 10px;
    border: 1px solid var(--gold-dim);
    border-radius: 2px;
}

/* ---- MARQUEE ---- */
.marquee {
    padding: 24px 0;
    overflow: hidden;
    background: var(--carbon);
    border-top: 1px solid var(--gray-darker);
    border-bottom: 1px solid var(--gray-darker);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    will-change: transform;
}

.marquee-item {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(14px, 2vw, 18px);
    letter-spacing: 0.15em;
    color: var(--cream-dim);
}

.marquee-sep {
    color: var(--gold-dim);
    font-size: 18px;
}

/* ---- SECTIONS COMMON ---- */
section {
    padding: var(--section-pad) 0;
    position: relative;
}

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

.section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.section-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.section-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gray);
}

.section-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--cream);
    margin-bottom: 64px;
    max-width: 800px;
}

/* ---- REVEAL LINE ---- */
.reveal-line {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream-dim);
    margin-bottom: 24px;
}

.reveal-line.large {
    font-size: clamp(24px, 3.5vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    color: var(--cream);
    margin-bottom: 40px;
}

.reveal-line.accent {
    color: var(--gold);
    font-weight: 400;
}

/* ---- MANIFIESTO ---- */
#manifiesto {
    background: var(--black);
}

.manifiesto-hero {
    max-width: 900px;
    margin-bottom: 80px;
}

.manifiesto-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
}

.manifiesto-quote {
    text-align: center;
    padding: 80px 0;
    position: relative;
}

.manifiesto-quote::before,
.manifiesto-quote::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold-dim);
    margin: 0 auto 40px;
}

.manifiesto-quote::after {
    margin: 40px auto 0;
}

.quote-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 5vw, 56px);
    line-height: 1.15;
    color: var(--gold);
    letter-spacing: -0.01em;
}

.manifiesto-detail {
    max-width: 800px;
}

/* ---- PRINCIPIOS ---- */
#principios {
    background: var(--carbon);
    overflow: hidden;
}

#principios .section-container {
    margin-bottom: 64px;
}

.principios-track {
    display: flex;
    gap: 2px;
    padding: 0 var(--container-pad);
}

.principio-card {
    flex: 0 0 clamp(280px, 30vw, 400px);
    background: var(--black-light);
    padding: clamp(32px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    transition: background 0.4s;
}

.principio-card:hover {
    background: var(--gray-darker);
}

.principio-num-big {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(64px, 8vw, 100px);
    color: var(--gray-darker);
    line-height: 1;
    margin-bottom: 24px;
    transition: color 0.4s;
}

.principio-card:hover .principio-num-big {
    color: var(--gold-dim);
}

.principio-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 28px);
    color: var(--cream);
    margin-bottom: 16px;
}

.principio-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
    transition: width 0.4s var(--ease-out);
}

.principio-card:hover .principio-line {
    width: 64px;
}

.principio-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--gray);
    transition: color 0.4s;
}

.principio-card:hover .principio-desc {
    color: var(--cream-dim);
}

/* ---- LA CANCHA ---- */
#cancha {
    background: var(--black);
}

.cancha-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
}

.cancha-block h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--cream);
    margin-bottom: 20px;
}

.cancha-block p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--cream-dim);
    margin-bottom: 12px;
}

.cancha-icon {
    width: 60px;
    height: 60px;
    color: var(--gold);
    margin-bottom: 24px;
}

.cancha-divider {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.net-svg {
    height: 200px;
    color: var(--gray-dark);
}

.cancha-statement {
    text-align: center;
    padding-top: 40px;
}

/* ---- EL PUERTO ---- */
#puerto {
    background: var(--carbon);
}

.puerto-hero {
    max-width: 900px;
    margin-bottom: 80px;
}

.puerto-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 80px;
}

.puerto-item {
    background: var(--black-light);
    padding: clamp(32px, 4vw, 56px);
    text-align: center;
    transition: background 0.4s;
}

.puerto-item:hover {
    background: var(--gray-darker);
}

.puerto-item-icon {
    width: 48px;
    height: 48px;
    color: var(--gold);
    margin: 0 auto 20px;
}

.puerto-item h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 8px;
}

.puerto-item-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--gray);
    letter-spacing: 0.05em;
}

.puerto-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.puerto-statement {
    text-align: center;
    padding-top: 40px;
}

/* ---- EL CÓDIGO ---- */
#codigo {
    background: var(--black);
}

.codigo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 80px;
}

.codigo-block {
    background: var(--carbon);
    padding: clamp(32px, 4vw, 56px);
}

.codigo-block p {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    line-height: 1.65;
    color: var(--cream-dim);
}

.codigo-aspiration {
    max-width: 800px;
}

.codigo-aspiration > p {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 300;
    line-height: 1.6;
    color: var(--cream-dim);
    margin-bottom: 40px;
}

.codigo-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.codigo-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--cream);
    padding-left: 24px;
    border-left: 2px solid var(--gold);
}

/* ---- ÚNETE ---- */
#unete {
    background: var(--carbon);
    text-align: center;
    padding: clamp(120px, 16vh, 240px) 0;
}

.unete-content {
    max-width: 800px;
    margin: 0 auto;
}

.unete-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(32px, 5.5vw, 64px);
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 32px;
}

.unete-title .accent {
    color: var(--gold);
}

.unete-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 300;
    color: var(--cream-dim);
    margin-bottom: 48px;
    line-height: 1.6;
}

/* ---- CRAFTED BY (Quantum Garage) ---- */
#crafted {
    position: relative;
    padding: clamp(64px, 10vh, 120px) 0;
    background: var(--carbon);
    overflow: hidden;
}

.crafted-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.crafted-grid-svg {
    width: 100%;
    height: 100%;
}

.crafted-grid-line,
.crafted-grid-line-v {
    stroke: var(--gray-darker);
    stroke-width: 0.5;
    opacity: 0;
}

.crafted-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.crafted-label {
    font-family: var(--font-body);
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: clamp(16px, 3vw, 32px);
    opacity: 0;
}

.crafted-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    text-decoration: none;
    margin-bottom: clamp(20px, 3vw, 40px);
}

.crafted-name-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.crafted-name-line {
    font-family: var(--font-display);
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--cream);
    transition: color 0.5s var(--ease-out);
    visibility: hidden;
}

.crafted-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 6vw, 72px);
    height: clamp(48px, 6vw, 72px);
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.5s var(--ease-out);
    flex-shrink: 0;
    opacity: 0;
}

.crafted-link:hover .crafted-name-line {
    color: var(--gold);
}

.crafted-link:hover .crafted-arrow {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: rotate(-45deg) scale(1.1);
}

.crafted-tagline {
    overflow: hidden;
}

.crafted-tagline-text {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(13px, 1.4vw, 16px);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--gray);
    font-style: italic;
    opacity: 0;
}

/* ---- FOOTER ---- */
#footer {
    background: var(--black);
    padding: 64px 0 32px;
}

.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo img {
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-logo:hover img {
    opacity: 0.8;
}

.footer-tagline p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--gray);
    text-align: right;
}

.footer-line {
    height: 1px;
    background: var(--gray-darker);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 13px;
    font-weight: 300;
    color: var(--gray);
}

.footer-location {
    letter-spacing: 0.05em;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Large tablet / small desktop */
@media (max-width: 1200px) {
    .hero-title-word {
        font-size: clamp(48px, 10vw, 140px);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-burger {
        display: flex;
    }

    .manifiesto-body,
    .puerto-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cancha-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cancha-divider {
        display: none;
    }

    .cancha-block {
        text-align: center;
    }

    .cancha-icon {
        margin: 0 auto 24px;
    }

    .codigo-grid {
        grid-template-columns: 1fr;
    }

    .principios-track {
        flex-direction: column;
        gap: 2px;
        padding: 0 var(--container-pad);
    }

    .principio-card {
        flex: none;
        width: 100%;
    }

    .principio-num-big {
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 72px;
        opacity: 0.15;
    }

    .section-title {
        margin-bottom: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
        --section-pad: clamp(56px, 8vh, 100px);
        --container-pad: 20px;
    }

    /* Hero adjustments */
    .hero-title-word {
        font-size: clamp(32px, 8.5vw, 64px);
    }

    .hero-label {
        margin-bottom: 20px;
    }

    .hero-label-line {
        width: 24px;
    }

    .hero-label-text {
        font-size: 10px;
        letter-spacing: 0.15em;
    }

    .hero-sub {
        font-size: 16px;
    }

    .hero-logo {
        width: 200px;
        opacity: 0.03;
    }

    .hero-scroll {
        bottom: 24px;
    }

    /* Marquee */
    .marquee {
        padding: 16px 0;
    }

    .marquee-item {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    /* Sections */
    .section-header {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(28px, 7vw, 40px);
        margin-bottom: 40px;
    }

    /* Reveal line mobile */
    .reveal-line {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .reveal-line.large {
        font-size: clamp(20px, 5.5vw, 32px);
        margin-bottom: 28px;
    }

    /* Manifiesto */
    .manifiesto-hero {
        margin-bottom: 48px;
    }

    .manifiesto-body {
        margin-bottom: 48px;
    }

    .manifiesto-quote {
        padding: 48px 0;
    }

    .manifiesto-quote::before {
        margin-bottom: 24px;
    }

    .manifiesto-quote::after {
        margin-top: 24px;
    }

    .quote-text {
        font-size: clamp(22px, 6vw, 36px);
    }

    .manifiesto-detail {
        max-width: 100%;
    }

    /* Principios */
    .principio-card {
        padding: 28px 24px;
    }

    .principio-num-big {
        font-size: 56px;
        position: absolute;
        top: 12px;
        right: 16px;
        opacity: 0.12;
    }

    .principio-title {
        font-size: 20px;
    }

    .principio-desc {
        font-size: 14px;
    }

    /* Cancha */
    .cancha-grid {
        gap: 40px;
    }

    .cancha-block h3 {
        font-size: 24px;
    }

    .cancha-block p {
        font-size: 15px;
    }

    .cancha-statement {
        padding-top: 24px;
    }

    /* Puerto */
    .puerto-hero {
        margin-bottom: 48px;
    }

    .puerto-items {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .puerto-item {
        padding: 28px 24px;
    }

    .puerto-body {
        margin-bottom: 40px;
    }

    /* Codigo */
    .codigo-grid {
        margin-bottom: 48px;
    }

    .codigo-block {
        padding: 28px 24px;
    }

    .codigo-block p {
        font-size: 15px;
    }

    .codigo-value {
        font-size: 18px;
        padding-left: 16px;
    }

    .codigo-aspiration > p {
        font-size: 16px;
        margin-bottom: 28px;
    }

    /* Unete */
    #unete {
        padding: clamp(80px, 12vh, 160px) 0;
    }

    .unete-title {
        font-size: clamp(28px, 7vw, 48px);
        margin-bottom: 24px;
    }

    .unete-sub {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .btn-gold.large {
        font-size: 14px;
        padding: 16px 36px;
    }

    /* Footer */
    #footer {
        padding: 48px 0 24px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-tagline p {
        text-align: center;
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    /* Crafted */
    #crafted {
        padding: clamp(48px, 8vh, 80px) 0;
    }

    .crafted-link {
        flex-direction: column;
        gap: 16px;
    }

    .crafted-name-wrap {
        align-items: center;
    }

    .crafted-arrow {
        width: 48px;
        height: 48px;
    }

    /* Hide custom cursor on touch */
    .cursor,
    .cursor-follower {
        display: none;
    }

    body {
        cursor: auto;
    }
}

/* Small mobile (iPhone SE, etc.) */
@media (max-width: 480px) {
    :root {
        --container-pad: 16px;
    }

    .hero-title-word {
        font-size: clamp(28px, 8vw, 48px);
    }

    .hero-label {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-label-line {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin-bottom: 24px;
    }

    .section-title {
        font-size: clamp(24px, 8vw, 36px);
        margin-bottom: 32px;
    }

    .manifiesto-quote {
        padding: 32px 0;
    }

    .quote-text {
        font-size: clamp(20px, 7vw, 28px);
    }

    .reveal-line.large {
        font-size: clamp(18px, 5vw, 26px);
    }

    .principio-card {
        padding: 24px 20px;
    }

    .puerto-item {
        padding: 24px 20px;
    }

    .codigo-block {
        padding: 24px 20px;
    }

    .mobile-link {
        font-size: 28px;
    }

    .btn-gold.large {
        width: 100%;
        text-align: center;
    }

    .unete-title {
        font-size: clamp(24px, 8vw, 40px);
    }
}

/* Landscape phone */
@media (max-width: 768px) and (orientation: landscape) {
    #hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-title-word {
        font-size: clamp(32px, 8vw, 56px);
    }

    .hero-scroll {
        display: none;
    }
}
