/* Tikal Experience Tours — Coming Soon */
:root {
    --ink: #071410;
    --canopy: #0f2a1f;
    --moss: #1a4a35;
    --mist: #9ec9b4;
    --limestone: #f0e6d4;
    --sunstone: #e0a84a;
    --cenote: #2f8f8a;
    --ember: #d06a3a;
    --text: #f4efe6;
    --text-soft: rgba(244, 239, 230, 0.78);
    --text-faint: rgba(244, 239, 230, 0.52);
    --glow: rgba(224, 168, 74, 0.35);
    --overlay: linear-gradient(
        115deg,
        rgba(7, 20, 16, 0.88) 0%,
        rgba(15, 42, 31, 0.62) 46%,
        rgba(7, 20, 16, 0.84) 100%
    );
    --font-display: "Fraunces", Georgia, serif;
    --font-sans: "Sora", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--ink);
    overflow-x: hidden;
}

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

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

.page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Full-bleed atmosphere */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: kenburns 22s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
    z-index: 1;
}

.hero-glow {
    position: absolute;
    inset: auto auto -20% -10%;
    width: 55vw;
    height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(47, 143, 138, 0.28), transparent 68%);
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
    animation: drift 14s ease-in-out infinite alternate;
}

.hero-glow--sun {
    inset: -15% -10% auto auto;
    width: 42vw;
    height: 42vw;
    background: radial-gradient(circle, rgba(224, 168, 74, 0.22), transparent 70%);
    animation-delay: -4s;
}

.topbar {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
    .topbar {
        padding: 1.75rem 3rem;
    }
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 2.4vw, 1.85rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--limestone);
}

.brand-mark span {
    color: var(--sunstone);
}

.brand-sub {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-faint);
    font-weight: 500;
}

.lang-switch {
    display: inline-flex;
    border: 1px solid rgba(240, 230, 212, 0.22);
    background: rgba(7, 20, 16, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.lang-switch a {
    padding: 0.55rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    transition: color 0.25s ease, background 0.25s ease;
}

.lang-switch a:hover {
    color: var(--limestone);
}

.lang-switch a.is-active {
    background: rgba(224, 168, 74, 0.18);
    color: var(--sunstone);
}

.hero {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem 4rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 2rem 3rem 5rem;
    }
}

.hero-inner {
    width: 100%;
    max-width: 42rem;
}

.kicker {
    display: inline-block;
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mist);
    opacity: 0;
    animation: rise 0.9s ease forwards 0.15s;
}

.hero-title {
    margin: 0 0 1.25rem;
    font-family: var(--font-display);
    font-weight: 650;
    font-size: clamp(2.35rem, 6.2vw, 4.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--limestone);
    max-width: 14ch;
    opacity: 0;
    animation: rise 1s ease forwards 0.35s;
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: var(--sunstone);
}

.hero-lead {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    line-height: 1.65;
    color: var(--text-soft);
    opacity: 0;
    animation: rise 1s ease forwards 0.55s;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
    opacity: 0;
    animation: rise 1s ease forwards 0.75s;
}

.btn-soon {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 1.45rem;
    border: 1px solid rgba(224, 168, 74, 0.45);
    background: linear-gradient(135deg, rgba(224, 168, 74, 0.22), rgba(47, 143, 138, 0.18));
    color: var(--limestone);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-soon:hover {
    transform: translateY(-2px);
    border-color: rgba(224, 168, 74, 0.75);
    box-shadow: 0 14px 36px var(--glow);
}

.pulse-dot {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: var(--sunstone);
    box-shadow: 0 0 0 0 rgba(224, 168, 74, 0.55);
    animation: pulse 2.2s ease-out infinite;
}

.soon-note {
    font-size: 0.85rem;
    color: var(--text-faint);
}

.footer-line {
    position: relative;
    z-index: 3;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-faint);
}

@media (min-width: 768px) {
    .footer-line {
        padding: 0 3rem 2rem;
    }
}

.footer-line strong {
    color: var(--mist);
    font-weight: 600;
}

@keyframes kenburns {
    from {
        transform: scale(1.08) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.18) translate3d(-2%, -1.5%, 0);
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(224, 168, 74, 0.55);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(224, 168, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(224, 168, 74, 0);
    }
}

@keyframes drift {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(4%, -3%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-media img,
    .hero-glow,
    .pulse-dot,
    .kicker,
    .hero-title,
    .hero-lead,
    .cta-row {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}
