:root {
    --bg: #F8F4F0;
    --bg2: #F0E8E2;
    --card: #FFFFFF;
    --card-border: #E5DBD4;
    --text: #2C2420;
    --text-light: #8A7A72;
    --accent: #C4957A;
    --accent-hover: #B58468;
    --btn: #2C2420;
    --btn-hover: #1A1412;
    --btn-text: #F8F4F0;
    --ff-display: 'Bringbold Nineties', 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --radius: 4px;
    --shadow: 0 2px 8px rgba(44,36,32,0.06);
    --shadow-hover: 0 8px 24px rgba(44,36,32,0.1);
}

@font-face {
    font-family: 'Bringbold Nineties';
    src: url('./fonts/Bringbold Nineties Demo.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    padding: 8px 16px;
    background: var(--btn);
    color: var(--btn-text);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}
.skip-link:focus {
    top: 0;
}

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(20px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale { opacity: 0; transform: scale(0.96); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
}

/* Intro Overlay - Handwriting Animation */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.intro-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.intro-content {
    text-align: center;
    padding: 40px;
}
.intro-svg {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 0 auto 24px;
}
.intro-text {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: introWrite 2.2s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
@keyframes introWrite {
    0% { stroke-dashoffset: 1200; opacity: 0; }
    15% { opacity: 1; }
    85% { stroke-dashoffset: 0; opacity: 1; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}
.intro-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    opacity: 0;
    animation: introFadeIn 0.6s ease 2.0s forwards;
}
@keyframes introFadeIn {
    to { opacity: 1; transform: translateY(0); }
}
.intro-loader {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.intro-loader span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.4;
    animation: introBounce 1.2s ease-in-out infinite;
}
.intro-loader span:nth-child(2) { animation-delay: 0.15s; }
.intro-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes introBounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-14px); opacity: 1; }
}
.intro-overlay.hidden .intro-text,
.intro-overlay.hidden .intro-subtitle,
.intro-overlay.hidden .intro-loader {
    animation: none;
}
@media (prefers-reduced-motion: reduce) {
    .intro-overlay { display: none; }
    .intro-text { stroke-dashoffset: 0; }
    .intro-subtitle { opacity: 1; }
}
html { scroll-behavior: smooth; }
body {
    font-family: var(--ff-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

#bgCanvas {
    position: fixed; top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
}

#loader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
    width: 28px; height: 28px;
    border: 1.5px solid var(--card-border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    max-width: 1280px;
    margin: 0 auto;
    transition: all 0.35s var(--ease);
    gap: 24px;
}
#navbar.scrolled {
    background: rgba(248,244,240,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    padding: 12px 40px;
}
#navbar.at-bottom {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}
.nav-logo {
    font-family: var(--ff-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    color: var(--btn);
    flex-shrink: 0;
    transition: color 0.3s;
}
.nav-center {
    display: flex;
    gap: 32px;
    align-items: center;
    margin: 0 auto;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.nav-account {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(44,36,32,0.1);
    transition: all 0.25s ease;
}
.nav-account:hover {
    color: var(--btn);
    border-color: var(--btn);
    background: rgba(44,36,32,0.03);
}
.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.25s var(--ease);
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute; bottom: -4px; left: 50%;
    width: 0; height: 1.5px;
    background: var(--accent);
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
}
.nav-link:hover { color: var(--btn); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--btn-text);
    padding: 8px 22px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    background: linear-gradient(145deg, var(--btn) 0%, var(--btn-hover) 100%);
    box-shadow: 0 4px 12px rgba(44,36,32,0.15), inset 0 1px 1px rgba(255,255,255,0.08);
    border: none;
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-cta:hover {
    background: linear-gradient(145deg, var(--btn-hover) 0%, #0f0c0a 100%);
    box-shadow: 0 8px 20px rgba(44,36,32,0.25);
    transform: translateY(-1px);
}
.nav-cta:hover::before { opacity: 1; }
.nav-cta > * { position: relative; z-index: 1; pointer-events: none; }
.nav-toggle {
    display: none; background: none; border: none;
    flex-direction: column; gap: 5px; cursor: pointer;
    padding: 4px; flex-shrink: 0;
}
.nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--btn); border-radius: 1px;
    transition: all 0.3s;
}

#hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}
.hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding-top: 50px;
}
.hero-content {
    max-width: 560px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(196,149,122,0.3);
    padding: 7px 20px;
    margin-bottom: 32px;
    background: linear-gradient(145deg, rgba(196,149,122,0.1) 0%, rgba(196,149,122,0.02) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(196,149,122,0.1), inset 0 1px 1px rgba(255,255,255,0.4);
}
.hero-title {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 24px;
}
.hero-title-line {
    display: block;
    font-size: 72px;
    color: var(--btn);
    letter-spacing: -1px;
}
.hero-title-line.accent {
    font-style: italic;
    color: var(--accent);
    font-weight: 500;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    letter-spacing: 0;
    margin-top: 4px;
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-flex;
    align-items: center; gap: 8px;
    height: 48px;
    padding: 0 28px;
    background: linear-gradient(145deg, var(--btn) 0%, var(--btn-hover) 100%);
    color: var(--btn-text);
    font-weight: 500;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 16px rgba(44,36,32,0.12), inset 0 1px 1px rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover {
    background: linear-gradient(145deg, var(--btn-hover) 0%, #0f0c0a 100%);
    box-shadow: 0 8px 28px rgba(44,36,32,0.2), inset 0 1px 1px rgba(255,255,255,0.1);
    transform: translateY(-1px);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; pointer-events: none; }
.btn-text {
    display: inline-flex;
    align-items: center; gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s var(--ease-out);
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}
.btn-text:hover { color: var(--btn); border-bottom-color: var(--accent); }

/* Hero Visual - 3D Boxes */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
}
.boxes-scene {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 800px;
}

/* Conveyor Belt */
.conveyor {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(196,149,122,0.15);
    border-radius: 2px;
}
.conveyor-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: conveyorMove 3s linear infinite;
}
.conveyor-dots {
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 11px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 24px,
        rgba(196,149,122,0.25) 24px,
        rgba(196,149,122,0.25) 26px
    );
    animation: conveyorDots 1.2s linear infinite;
}

/* 3D Boxes */
.box {
    position: absolute;
    width: 90px;
    height: 72px;
    transform-style: preserve-3d;
    transform: rotateX(-15deg) rotateY(25deg);
    animation: floatBox 5s ease-in-out infinite;
}
.box-1 {
    left: 8%;
    bottom: 75px;
    animation-delay: 0s;
}
.box-2 {
    left: 42%;
    bottom: 95px;
    animation-delay: 1.6s;
}
.box-3 {
    right: 8%;
    bottom: 75px;
    animation-delay: 3.2s;
}
.box-face {
    position: absolute;
    backface-visibility: visible;
}
.box-front {
    width: 90px;
    height: 72px;
    background: linear-gradient(135deg, #d4a574 0%, #c4956a 50%, #b8856a 100%);
    border-radius: 4px;
    box-shadow: 
        0 8px 24px rgba(44,36,32,0.12),
        inset 0 2px 4px rgba(255,255,255,0.15);
    transform: translateZ(36px);
}
.box-top {
    width: 90px;
    height: 72px;
    background: linear-gradient(180deg, #e8c9a8 0%, #d4b894 100%);
    border-radius: 4px;
    transform: rotateX(90deg) translateZ(36px);
    transform-origin: top;
}
.box-side {
    width: 72px;
    height: 72px;
    background: linear-gradient(90deg, #a87560 0%, #986a55 100%);
    border-radius: 4px;
    transform: rotateY(90deg) translateZ(45px);
    transform-origin: right;
}

@keyframes floatBox {
    0%, 100% {
        transform: rotateX(-15deg) rotateY(25deg) translateY(0);
    }
    30% {
        transform: rotateX(-15deg) rotateY(25deg) translateY(-18px);
    }
    60% {
        transform: rotateX(-15deg) rotateY(25deg) translateY(-8px);
    }
}
@keyframes conveyorMove {
    0% { left: -100%; }
    100% { left: 100%; }
}
@keyframes conveyorDots {
    0% { transform: translateX(0); }
    100% { transform: translateX(26px); }
}

.scroll-indicator {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex; align-items: center; gap: 8px;
    color: var(--accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
}

#how { padding: 72px 0; max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; scroll-margin-top: 80px; }
#products { padding: 72px 40px; max-width: 1280px; margin: 0 auto; scroll-margin-top: 80px; }
#testimonials { padding: 64px 40px; max-width: 1280px; margin: 0 auto; scroll-margin-top: 80px; }
#cta { padding: 72px 40px; max-width: 1280px; margin: 0 auto; scroll-margin-top: 80px; }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}
.section-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 4px 14px;
    border: 1px solid rgba(196,149,122,0.2);
    background: linear-gradient(145deg, rgba(196,149,122,0.06) 0%, rgba(196,149,122,0.01) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.section-title {
    font-family: var(--ff-display);
    font-size: 38px;
    font-weight: 500;
    color: var(--btn);
    line-height: 1.15;
    margin-bottom: 12px;
}
.section-title em { font-style: italic; color: var(--accent); font-weight: 400; }
.section-desc {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.how-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 8px 8px 20px rgba(44,36,32,0.08),
                -8px -8px 20px rgba(255,255,255,0.9);
    border: none;
}
#mapCanvas {
    width: 100%; height: 100%; display: block;
    position: relative; z-index: 1;
}
.map-plane {
    position: absolute; z-index: 6; pointer-events: none;
    filter: drop-shadow(0 0 16px rgba(196,149,122,0.7)) drop-shadow(0 0 32px rgba(196,149,122,0.3));
    transition: filter 0.3s ease;
}
.map-dot {
    position: absolute; z-index: 4;
    width: 16px; height: 16px;
    border-radius: 50%;
    box-shadow: 0 0 28px currentColor;
}
.usa-dot { top: 22%; left: 25%; background: var(--accent); color: var(--accent); animation: pulseDot 2.5s ease-in-out infinite; }
.ve-dot { bottom: 22%; right: 20%; background: var(--accent); color: var(--accent); animation: pulseDot 2.5s ease-in-out infinite 1.25s; }
@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}
.map-label {
    position: absolute; z-index: 5;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
}
.map-label-usa { top: 16%; left: 22%; }
.map-label-ve { bottom: 16%; right: 17%; }
.how-cards { display: flex; flex-direction: column; gap: 16px; }
.how-card {
    background: var(--card);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex; gap: 16px;
    align-items: flex-start;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 8px 8px 20px rgba(44,36,32,0.08),
                -8px -8px 20px rgba(255,255,255,0.9);
    border: none;
}
.how-card:hover {
    box-shadow: 12px 12px 28px rgba(44,36,32,0.12),
                -12px -12px 28px rgba(255,255,255,0.95);
    transform: translateY(-2px);
}
.how-card-icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, rgba(196,149,122,0.15) 0%, rgba(196,149,122,0.06) 100%);
    flex-shrink: 0;
    color: var(--accent-hover);
    border: 1px solid rgba(196,149,122,0.1);
}
.how-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--btn);
    margin-bottom: 4px;
}
.how-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}
.how-step-badge {
    position: absolute;
    top: 12px; right: 16px;
    font-family: var(--ff-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
    opacity: 0.25;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
}
.product-card {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    padding: 28px 16px 24px;
    border-radius: 20px;
    background: var(--card);
    font-size: 0.82rem;
    color: var(--text);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 8px 8px 20px rgba(44,36,32,0.08),
                -8px -8px 20px rgba(255,255,255,0.9);
    border: none;
    transform-style: preserve-3d;
    perspective: 600px;
}
.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(196,149,122,0) 0%, rgba(196,149,122,0) 40%, rgba(196,149,122,0.15) 50%, rgba(196,149,122,0) 60%, rgba(196,149,122,0) 100%);
    background-size: 300% 300%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 0;
}
.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(196,149,122,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 0;
}
.product-card:hover {
    color: var(--btn);
    box-shadow: 12px 12px 28px rgba(44,36,32,0.12),
                -12px -12px 28px rgba(255,255,255,0.95);
    transform: translateY(-4px);
}
.product-card:hover::before {
    opacity: 1;
    animation: productShimmer 2.5s ease-in-out infinite;
}
.product-card:hover::after { opacity: 1; }
@keyframes productShimmer {
    0% { background-position: 0% 50%; opacity: 0.3; }
    50% { background-position: 100% 50%; opacity: 1; }
    100% { background-position: 0% 50%; opacity: 0.3; }
}
.product-card-lg {
    grid-column: span 2;
    flex-direction: row;
    padding: 24px 28px;
    gap: 16px;
}
.product-card > * { position: relative; z-index: 1; }
.product-icon {
    color: var(--accent);
    display: flex;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.product-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: rgba(196,149,122,0.1);
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}
.product-card:hover .product-icon {
    transform: scale(1.15);
    color: var(--accent-hover);
}
.product-card:hover .product-icon::after { transform: scale(1); }
.product-card span:last-child {
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover span:last-child {
    letter-spacing: 0.5px;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1020px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--card);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 8px 8px 20px rgba(44,36,32,0.08),
                -8px -8px 20px rgba(255,255,255,0.9);
    border: none;
}
.testimonial-card:hover {
    box-shadow: 12px 12px 28px rgba(44,36,32,0.12),
                -12px -12px 28px rgba(255,255,255,0.95);
    transform: translateY(-2px);
}
.testimonial-card.featured {
    box-shadow: 10px 10px 24px rgba(44,36,32,0.1),
                -10px -10px 24px rgba(255,255,255,0.95);
    transform: translateY(-2px);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
    color: var(--accent);
}
.testimonial-card blockquote {
    font-family: var(--ff-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}
.testimonial-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--btn);
}
.testimonial-role {
    display: block;
    font-size: 0.72rem;
    color: var(--text-light);
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(145deg, var(--card) 0%, rgba(255,255,255,0.95) 100%);
    border: 1px solid var(--card-border);
    padding: 56px;
    box-shadow: 0 4px 16px rgba(44,36,32,0.04);
    transition: box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-inner:hover {
    box-shadow: 0 8px 32px rgba(44,36,32,0.06);
}
.cta-content {
    max-width: 480px;
}
.cta-content .section-header {
    text-align: left;
    margin: 0 0 12px;
}
.cta-content .section-title { font-size: 34px; }
.cta-content .section-desc { margin-bottom: 28px; }
.cta-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.btn-social {
    height: 44px;
    padding: 0 20px;
    font-size: 0.8rem;
    justify-content: center;
}
.cta-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    position: relative;
}
.cta-ring::before {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
}
.cta-ring::after {
    content: 'JAMA';
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--ff-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 4px;
}

/* === PILL / GLASSMORPHISM === */
.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3), inset 0 1px 1px rgba(255,255,255,0.08), inset 0 -1px 2px rgba(0,0,0,0.2);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.glass-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
}
.glass-pill:hover::before { opacity: 1; }
.glass-pill:hover {
    border-color: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4), inset 0 1px 1px rgba(255,255,255,0.15);
}
.glass-pill > * { position: relative; z-index: 1; pointer-events: none; }
.glass-pill.sm {
    padding: 8px 18px;
    font-size: 0.72rem;
    gap: 6px;
}
.glass-pill.icon {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
}

/* === CINEMATIC FOOTER === */
#footerCurtain {
    position: relative;
    height: auto;
    min-height: 100vh;
    width: 100%;
    margin-top: -1px;
    overflow: hidden;
}
#cinematicFooter {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: var(--btn);
    color: var(--bg);
}
.footer-aurora {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70vw;
    height: 50vh;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, rgba(196,149,122,0.1) 0%, rgba(248,244,240,0.02) 40%, transparent 70%);
    animation: footerBreathe 10s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
@keyframes footerBreathe {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}
.footer-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: 60px 60px;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
}
.footer-giant {
    position: absolute;
    bottom: -2vh;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--ff-display);
    font-size: 22vw;
    line-height: 0.7;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.03);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    user-select: none;
}
.footer-marquee {
    position: absolute;
    top: 48px;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 2;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(44,36,32,0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: rotate(-1.5deg) scale(1.03);
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: footerMarquee 55s linear infinite;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
}
.marquee-track span { padding: 0 16px; white-space: nowrap; }
.marquee-track .sep { color: var(--accent); opacity: 0.6; }
@keyframes footerMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.footer-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 28px;
    padding: 80px 24px 40px;
}
.footer-heading {
    font-family: var(--ff-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.1;
    text-align: center;
    letter-spacing: -1px;
    background: linear-gradient(180deg, var(--bg) 0%, rgba(248,244,240,0.4) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0px 0px 30px rgba(248,244,240,0.08));
}
.footer-heading em {
    font-style: italic;
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    font-weight: 400;
}
.footer-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.footer-pills .glass-pill {
    padding: 18px 34px;
    font-size: 0.9rem;
    gap: 10px;
}
.footer-sub-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-sub-links .glass-pill {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.35);
    box-shadow: 0 4px 16px -6px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.04);
    padding: 8px 20px;
}
.footer-sub-links .glass-pill:hover {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.12);
}
.footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px 28px;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copy {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}
.footer-heart {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.footer-heart .heart-icon {
    font-size: 0.9rem;
    color: var(--accent);
    filter: drop-shadow(0 0 6px rgba(196,149,122,0.4));
    animation: heartbeat 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15%, 45% { transform: scale(1.35); }
    30% { transform: scale(1); }
}
#footerTop {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    box-shadow: 0 4px 16px -6px rgba(0,0,0,0.2), inset 0 1px 1px rgba(255,255,255,0.04);
}
#footerTop:hover {
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
    color: var(--bg);
    border-color: rgba(255,255,255,0.15);
}
#footerTop svg { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
#footerTop:hover svg { transform: translateY(-4px); }

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content { max-width: 100%; }
    .hero-visual { height: 360px; }
    .hero-title-line { font-size: 52px; }
    .hero-title-line.accent { font-size: 38px; }
    .how-grid { gap: 32px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .testimonials-track { grid-template-columns: repeat(2, 1fr); }
    .cta-inner { grid-template-columns: 1fr; }
    .cta-ring { width: 160px; height: 160px; }
    .footer-heading { font-size: 40px; }
    .footer-pills .glass-pill { padding: 14px 26px; font-size: 0.8rem; }
}

/* Tablet específico: 768px - 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 32px;
        align-items: center;
    }
    .hero-content { max-width: 100%; }
    .hero-visual { height: 320px; }
    .hero-title-line { font-size: 48px; }
    .hero-title-line.accent { font-size: 36px; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-card-lg { grid-column: span 2; }
    
    .testimonials-track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    
    .how-grid { gap: 24px; }
    .how-video-row { grid-template-columns: 1fr 1fr; gap: 24px; }
    .how-video-col { max-width: none; }
    
    .cta-inner { grid-template-columns: 1fr; padding: 32px 24px; }
    .cta-ring { width: 140px; height: 140px; }
    
    .footer-heading { font-size: 36px; }
    .footer-pills { gap: 8px; }
}

/* === HOW SECTION SHIPPING === */
.how-shipping {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.shipping-card {
    background: var(--card);
    border-radius: 20px;
    padding: 24px;
    display: flex; flex-direction: column; gap: 6px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 8px 8px 20px rgba(44,36,32,0.08),
                -8px -8px 20px rgba(255,255,255,0.9);
    border: none;
}
.shipping-card:hover {
    box-shadow: 12px 12px 28px rgba(44,36,32,0.12),
                -12px -12px 28px rgba(255,255,255,0.95);
    transform: translateY(-2px);
}
.shipping-icon {
    color: var(--accent);
    margin-bottom: 4px;
}
.shipping-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--btn);
}
.shipping-time {
    font-family: var(--ff-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--accent);
}
.shipping-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 767px) {
    .how-shipping { grid-template-columns: 1fr; }
}

/* === HOW SECTION VIDEO === */
.how-video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-top: 36px;
    align-items: center;
}
.how-video-col {
    max-width: 380px;
}
.how-video-col video {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 8px 8px 20px rgba(44,36,32,0.08),
                -8px -8px 20px rgba(255,255,255,0.9);
}
.how-desc-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.how-desc-col .section-tag { margin-bottom: 0; }
.how-desc-title {
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 500;
    color: var(--btn);
    line-height: 1.15;
}
.how-desc-title em {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
}
.how-desc-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}
.how-desc-stats {
    display: flex;
    gap: 32px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--card-border);
}
.how-desc-stat strong {
    display: block;
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.2;
}
.how-desc-stat span {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 767px) {
    .how-video-row { gap: 16px; }
    .how-video-col { max-width: 240px; margin: 0 auto; }
    .how-video-col video { border-radius: 16px; }
}

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

/* === PROGRESS RING === */
#progressRing {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 199;
    width: 40px;
    height: 40px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
#progressRing.visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
#progressRing svg { position: absolute; top: 0; left: 0; }
#progressRing span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}
#progressRing:hover span { transform: translateY(-2px); }
#progressArc { transition: stroke-dashoffset 0.1s linear; }

/* === MODAL === */
#modalOverlay {
    position: fixed; inset: 0;
    z-index: 10000;
    background: rgba(44,36,32,0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px;
}
#modalOverlay.open { opacity: 1; pointer-events: all; }
#modalContent {
    background: var(--card);
    max-width: 520px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 24px 64px rgba(44,36,32,0.15);
    transform: translateY(16px) scale(0.98);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
#modalOverlay.open #modalContent { transform: translateY(0) scale(1); }
#modalClose {
    position: absolute;
    top: 12px; right: 16px;
    background: none; border: none;
    font-size: 1.6rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    padding: 4px;
}
#modalClose:hover { color: var(--btn); }
#modalBody h2 {
    font-family: var(--ff-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--btn);
    margin-bottom: 16px;
}
#modalBody p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 12px;
}

/* === SCROLL PROGRESS BAR === */
#scrollProgress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--accent-hover));
    z-index: 10001;
    transition: width 0.1s linear;
    pointer-events: none;
}

/* === ACTIVE NAV LINK === */
.nav-link.active { color: var(--btn); }
.nav-link.active::after { width: 100%; }

/* === SECTION DIVIDERS === */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--card-border), transparent);
    max-width: 1280px;
    margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    #grain { opacity: 0; }
}

@media (max-width: 767px) {
    #navbar { padding: 14px 16px; }
    #navbar.scrolled { padding: 10px 16px; }
    
    /* Nav center - horizontal scroll */
    .nav-center { 
        display: flex; 
        flex: 1; 
        overflow-x: auto; 
        gap: 16px; 
        padding: 8px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .nav-center::-webkit-scrollbar { display: none; }
    .nav-link { 
        white-space: nowrap; 
        font-size: 0.8rem; 
        padding: 6px 10px; 
        flex-shrink: 0;
    }
    
    /* Nav right - Mi cuenta button visible */
    .nav-right { display: flex; }
    .nav-cta { display: none; }
    .nav-account { 
        padding: 8px 12px; 
        font-size: 0.75rem; 
        gap: 6px; 
    }
    .nav-account svg { width: 16px; height: 16px; }
    
    .nav-toggle { display: none; }

    #hero { padding: 0 16px; min-height: auto; padding-top: 20px; padding-bottom: 40px; }
    .hero-inner { 
        grid-template-columns: 1fr 0.9fr; 
        gap: 24px; 
        align-items: center;
        padding-top: 40px;
    }
    .hero-title-line { font-size: 36px; }
    .hero-title-line.accent { font-size: 26px; }
    .hero-sub { font-size: 0.85rem; line-height: 1.5; }
    .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; justify-content: flex-start; }
    .hero-visual { height: 240px; }
    .scroll-indicator { display: none; }

    .section-title { font-size: 24px; }
    .section-header { margin-bottom: 20px; }
    .section-desc { font-size: 0.88rem; }

    #how { padding: 40px 16px; }
    #products { padding: 40px 16px; }
    #testimonials { padding: 40px 16px; }
    #cta { padding: 40px 16px; }

    .how-grid { grid-template-columns: 1fr; gap: 16px; }
    .how-visual { aspect-ratio: 4/3; max-height: 260px; }
    .how-card { padding: 12px 14px; gap: 10px; }
    .how-step-badge { display: none; }
    .how-card-icon { width: 32px; height: 32px; }
    .how-card h3 { font-size: 0.8rem; }
    .how-card p { font-size: 0.7rem; }
    .how-cards { gap: 8px; }
    .how-desc-title { font-size: 20px; }
    .how-desc-text { font-size: 0.78rem; }
    .how-desc-stats { gap: 16px; }
    .how-desc-stat strong { font-size: 1.1rem; }
    .how-video-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .how-video-col { max-width: none; }
    .how-video-col video { border-radius: 14px; }

    .how-shipping { grid-template-columns: 1fr; gap: 10px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: 8px; }
    .product-card-lg { grid-column: span 2; }
    .product-card { padding: 16px 8px; gap: 8px; }
    .product-card .product-icon { width: 34px; height: 34px; font-size: 1rem; }
    .product-card span:last-child { font-size: 0.68rem; }

    .testimonials-track { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .testimonial-card { padding: 18px; }
    .testimonial-card blockquote { font-size: 0.82rem; }

    .cta-inner { grid-template-columns: 1fr; padding: 24px 16px; gap: 16px; }
    .cta-content .section-title { font-size: 24px; }
    .cta-socials { grid-template-columns: 1fr; gap: 8px; }
    .cta-ring { width: 90px; height: 90px; }
    .cta-ring::after { font-size: 0.9rem; }
    .cta-ring::before { inset: 8px; }

    #footerCurtain { min-height: 70vh; }
    #cinematicFooter { padding: 40px 16px 0; gap: 20px; }
    .footer-heading { font-size: 24px; }
    .footer-pills { gap: 6px; }
    .footer-pills .glass-pill { padding: 10px 16px; font-size: 0.72rem; }
    .footer-bottom { justify-content: center; padding: 10px 16px 16px; gap: 4px; flex-wrap: wrap; }
    .footer-marquee { top: auto; padding: 6px 0; }
    .marquee-track { font-size: 0.45rem; }
    .footer-giant { font-size: 30vw; }
    .footer-sub-links { gap: 4px; }

    .desktop-cta { display: none; }
    .nav-open .nav-center {
        display: flex; flex-direction: column; align-items: flex-start;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        z-index: 99;
        background: rgba(248,244,240,0.97);
        backdrop-filter: blur(12px);
        padding: 100px 24px 32px;
        gap: 16px;
        margin: 0;
    }
    .nav-open .nav-center .nav-link { font-size: 1.1rem; color: var(--btn); }
    .nav-open .nav-right { display: flex; position: static; margin-top: 16px; }
    .nav-open .nav-toggle { z-index: 100; position: relative; }
    .nav-open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav-cta-link {
        display: inline-flex; text-decoration: none;
        font-size: 0.78rem; font-weight: 600;
        letter-spacing: 0.8px; text-transform: uppercase;
        color: var(--btn-text);
        padding: 10px 28px;
        background: linear-gradient(145deg, var(--btn) 0%, var(--btn-hover) 100%);
        box-shadow: 0 4px 12px rgba(44,36,32,0.15);
        border: none; margin-top: 8px; align-self: flex-start;
    }
    .nav-cta-link > * { pointer-events: none; }

    #modalContent { margin: 16px; padding: 24px 20px; max-width: none; border-radius: 8px; }
    #modalOverlay { align-items: flex-start; padding: 60px 12px 12px; }

    .usa-dot, .ve-dot { width: 10px; height: 10px; }
    .map-label-usa, .map-label-ve { font-size: 0.55rem; }

    .hero-badge { font-size: 0.6rem; padding: 5px 14px; margin-bottom: 20px; }
}
