/* ============================================
   LOADING SCREEN
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

#loader .loader-logo {
    width: 80px;
    opacity: 0;
}

#loader .loader-bar-track {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

#loader .loader-bar {
    width: 0%;
    height: 100%;
    background: var(--coral);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--blush);
    overflow: hidden;
    padding: 120px clamp(24px, 5vw, 80px) 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(209, 77, 70, 0.08);
    border: 1px solid rgba(209, 77, 70, 0.15);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--coral);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-tag .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 28px;
}

.hero-title .accent {
    color: var(--coral);
    position: relative;
    display: inline-block;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0; right: 0;
    height: 6px;
    background: rgba(209, 77, 70, 0.2);
    border-radius: 3px;
}

.hero-desc {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.75;
    color: var(--text-muted);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--coral);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 16px 40px -8px rgba(209, 77, 70, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px -8px rgba(209, 77, 70, 0.45);
}

.hero-cta .arrow { transition: transform 0.3s ease; }
.hero-cta:hover .arrow { transform: translateX(4px); }

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 40px 80px rgba(13, 48, 90, 0.2));
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(209, 77, 70, 0.12);
    z-index: 1;
    pointer-events: none;
}

.hero-ring-1 {
    width: 130%; height: 130%;
    top: -15%; left: -15%;
    animation: spin-slow 40s linear infinite;
}

.hero-ring-2 {
    width: 110%; height: 110%;
    top: -5%; left: -5%;
    border-color: rgba(13, 48, 90, 0.06);
    animation: spin-slow 30s linear infinite reverse;
}

@keyframes spin-slow { to { transform: rotate(360deg); } }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: blob-float 14s ease-in-out infinite;
}

@keyframes blob-float {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(15px, -20px) rotate(60deg);
    }
    66% {
        border-radius: 50% 30% 50% 60% / 40% 60% 60% 40%;
        transform: translate(-10px, 15px) rotate(120deg);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    background: var(--navy);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 40px;
    white-space: nowrap;
    font-family: 'Clash Display', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.marquee-item .sep {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--coral);
    opacity: 0.6;
}

@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================
   STORY / ORIGIN SECTION
   ============================================ */
.story-section {
    padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.story-inner { max-width: 1200px; margin: 0 auto; }

.story-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.story-label::before {
    content: '';
    width: 40px;
    height: 1.5px;
    background: var(--coral);
}

.story-headline {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 4rem);
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--navy);
    max-width: 800px;
    margin-bottom: 60px;
}

.story-headline .highlight { color: var(--coral); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 300;
}

.story-text p+p { margin-top: 24px; }

.story-text strong {
    color: var(--navy);
    font-weight: 600;
}

.story-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-visual:hover img { transform: scale(1.05); }

.story-visual .overlay-tag {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 14px;
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--navy);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   EXPERIENCE / STEPS SECTION
   ============================================ */
.experience-section {
    padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
    background: var(--blush);
    position: relative;
    overflow: hidden;
}

.experience-inner { max-width: 1200px; margin: 0 auto; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: var(--white);
    border-radius: 28px;
    padding: 48px 36px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--coral-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 30px 60px -15px rgba(209, 77, 70, 0.12);
}

.step-card:hover::before { transform: scaleX(1); }

.step-number {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 5rem;
    line-height: 1;
    color: rgba(209, 77, 70, 0.06);
    margin-bottom: 20px;
    transition: color 0.5s ease;
}

.step-card:hover .step-number { color: rgba(209, 77, 70, 0.15); }

.step-card h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin-bottom: 14px;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-weight: 300;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

/* ============================================
   STEP CARD — BASES (con fondo de imagen)
   ============================================ */
.step-card-bases {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
        url('../img/bases/fondo_bases.jpeg');
    background-size: cover;
    background-position: center 35%;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-card-bases .step-number {
    color: rgba(255, 255, 255, 0.30);
}

.step-card-bases h3 {
    color: white;
}

.step-card-bases p {
    color: rgba(255, 255, 255, 0.6);
}

.step-card-bases:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.step-card-bases:hover .step-number {
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   STEP CARD — TOPPINGS (con fondo de imagen)
   ============================================ */
.step-card-toppings {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
        url('../img/toppings/fondo_toppings.jpeg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-card-toppings .step-number {
    color: rgba(255, 255, 255, 0.30);
}

.step-card-toppings h3 {
    color: white;
}

.step-card-toppings p {
    color: rgba(255, 255, 255, 0.6);
}

.step-card-toppings:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.step-card-toppings:hover .step-number {
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   STEP CARD — PESA Y DISFRUTA (con fondo de imagen)
   ============================================ */
.step-card-pesa {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.40), rgba(0, 0, 0, 0.40)),
        url('../img/fondo_pesa_y_disfruta.jpeg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.step-card-pesa .step-number {
    color: rgba(255, 255, 255, 0.30);
}

.step-card-pesa h3 {
    color: white;
}

.step-card-pesa p {
    color: rgba(255, 255, 255, 0.6);
}

.step-card-pesa:hover {
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.step-card-pesa:hover .step-number {
    color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   PRODUCTS / ZONA SECTION
   ============================================ */
.products-section {
    padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.products-inner { max-width: 1200px; margin: 0 auto; }

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-card {
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    background: var(--blush);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.product-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img { transform: scale(1.06); }

.product-card-body { padding: 36px 32px 32px; }

.product-card-body h3 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy);
    margin-bottom: 16px;
}

.product-card-body .tag-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card-body .tag-list li {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    border: 1px solid rgba(13, 48, 90, 0.06);
    transition: all 0.3s ease;
}

.product-card-body .tag-list li:hover {
    background: var(--coral);
    color: white;
    border-color: var(--coral);
}

/* ============================================
   BIG QUOTE SECTION
   ============================================ */
.quote-section {
    background: var(--navy);
    padding: clamp(80px, 12vw, 140px) clamp(24px, 5vw, 80px);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
}

.quote-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: -80px;
}

.quote-section .glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(209, 77, 70, 0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.quote-text {
    font-family: 'Clash Display', sans-serif;
    font-weight: 600;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    line-height: 1.35;
    color: white;
    margin-bottom: 32px;
}

.quote-text .q-highlight { color: var(--coral-light); }

.quote-attr {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ============================================
   LOCATION / CTA SECTION
   ============================================ */
.location-section {
    padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px);
    background: var(--blush);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.location-section .emoji-big {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.location-section h2 {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 20px;
}

.location-section .address {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

.location-section .hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 40px;
}

.location-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 44px;
    border-radius: 100px;
    text-decoration: none;
    box-shadow: 0 16px 40px -8px rgba(13, 48, 90, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.location-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -8px rgba(13, 48, 90, 0.4);
}

/* ============================================
   AUSTRALIA ORIGIN SECTION
   ============================================ */
.australia-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy);
}

.australia-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.australia-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(0.7);
}

.australia-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 48, 90, 0.6) 0%,
            rgba(13, 48, 90, 0.3) 40%,
            rgba(13, 48, 90, 0.7) 100%);
}

.australia-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 80px clamp(24px, 5vw, 60px);
}

.australia-flag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.australia-title {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    color: white;
    margin-bottom: 28px;
}

.australia-title .au-accent { color: var(--coral-light); }

.australia-desc {
    font-size: clamp(0.95rem, 1.1vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 48px;
}

.route-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 20px;
}

.route-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.route-pin .pin-dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 3px solid var(--coral-light);
    background: var(--navy);
    position: relative;
}

.route-pin .pin-dot::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: var(--coral-light);
}

.route-pin .pin-label {
    font-family: 'Clash Display', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.route-line {
    flex: 1;
    max-width: 200px;
    height: 2px;
    position: relative;
    margin: 0 16px;
    margin-bottom: 28px;
}

.route-line svg {
    width: 100%;
    height: 20px;
    overflow: visible;
}

.route-line svg path {
    stroke: var(--coral-light);
    stroke-width: 2;
    stroke-dasharray: 8, 6;
    fill: none;
    opacity: 0.5;
}

.route-line .plane-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    animation: fly-plane 4s ease-in-out infinite;
}

@keyframes fly-plane {
    0%, 100% { left: 20%; opacity: 0.3; }
    50% { left: 80%; opacity: 1; }
}

/* ============================================
   INDEX — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 116px 20px 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-visual { order: -1; }

    .hero-img-wrapper {
        max-width: 300px;
        margin: 0 auto;
        animation: none !important;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ring { display: none; }
    .hero-blob { display: none; }

    .hero-cta {
        font-size: 14px;
        padding: 16px 32px;
    }

    .marquee-item {
        font-size: 12px;
        padding: 0 20px;
        gap: 14px;
    }

    .australia-section { min-height: 70vh; }
    .australia-content { padding: 60px 20px; }

    .route-visual {
        flex-direction: row;
        gap: 0;
    }

    .route-line { max-width: 100px; }
    .route-pin .pin-label { font-size: 9px; }

    .story-section { padding: 60px 20px; }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-headline {
        font-size: 1.8rem;
        margin-bottom: 32px;
    }

    .story-visual img { height: 250px; }

    .experience-section { padding: 60px 20px; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 32px 24px 28px;
        border-radius: 20px;
    }

    .step-number { font-size: 3.5rem; }
    .step-card h3 { font-size: 1.2rem; }
    .step-card:hover { transform: translateY(-8px); }

    .quote-section { padding: 60px 20px; }

    .products-section { padding: 60px 20px; }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card-body { padding: 24px 20px 20px; }
    .product-card-body h3 { font-size: 1.3rem; }

    .location-section { padding: 60px 20px; }

    .location-cta {
        padding: 16px 36px;
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .hero-title { font-size: 2.2rem; }
    .hero-img-wrapper { max-width: 240px; }
    .australia-title { font-size: 1.8rem; }
    .step-number { font-size: 3rem; }
}
