:root {
    --lake-deep: #245069;
    --lake-deep-rgb: 36, 80, 105;
    --lake-mist: #5e92aa;
    --lake-mist-rgb: 94, 146, 170;
    --stone-light: #eadfd2;
    --cream: #fbf7f1;
    --text-dark: #25323a;
    --text-muted: #687171;
}

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

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stone-light);
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--lake-deep);
    text-decoration: none;
}

.logo span {
    color: var(--lake-mist);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a,
.lang-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active,
.lang-switcher a.active {
    color: var(--lake-deep);
}

.lang-switcher {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

main {
    max-width: 980px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.hero {
    padding: 2rem 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    background: rgba(var(--lake-mist-rgb), 0.12);
    color: var(--lake-deep);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--lake-deep);
    margin-bottom: 1rem;
}

.hero p {
    max-width: 760px;
    font-size: 1.08rem;
    color: var(--text-muted);
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pill-row span {
    border-radius: 999px;
    padding: 0.45rem 0.95rem;
    background: rgba(var(--lake-deep-rgb), 0.08);
    color: var(--lake-deep);
    font-size: 0.9rem;
}

.jump-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0 3rem;
}

.jump-card {
    display: block;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid var(--stone-light);
    text-decoration: none;
    background: #fff;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.jump-card:hover {
    transform: translateY(-2px);
    border-color: var(--lake-mist);
}

.jump-card small {
    display: block;
    color: var(--lake-mist);
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.jump-card strong {
    color: var(--lake-deep);
    font-size: 1rem;
}

.content-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--lake-deep);
    margin-bottom: 0.4rem;
}

.spot-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.35rem 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--stone-light);
}

.spot-index {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--lake-deep-rgb), 0.08);
    color: var(--lake-deep);
    font-weight: 600;
    font-size: 0.9rem;
}

.spot-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.6rem;
    color: var(--lake-deep);
    margin-bottom: 0.5rem;
}

.spot-card p {
    color: var(--text-muted);
}

.tips,
.cta-block {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--stone-light);
}

.tips h2,
.cta-block h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--lake-deep);
    margin-bottom: 0.75rem;
}

.tips ul {
    padding-left: 1.2rem;
    color: var(--text-muted);
}

.tips li + li {
    margin-top: 0.45rem;
}

.cta-block p {
    color: var(--text-muted);
    margin-bottom: 1.1rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.8rem 1.3rem;
    background: var(--lake-deep);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.button.secondary {
    background: transparent;
    color: var(--lake-deep);
    border: 1px solid rgba(var(--lake-deep-rgb), 0.18);
}

footer {
    padding: 2.5rem 2rem 3rem;
    border-top: 1px solid var(--stone-light);
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 1.4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--lake-deep);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.86rem;
}

@media (max-width: 900px) {
    nav {
        padding: 1rem 1.1rem;
        gap: 1rem;
        align-items: flex-start;
    }

    main {
        padding: 7rem 1.2rem 3rem;
    }
}

@media (max-width: 720px) {
    nav {
        flex-wrap: wrap;
    }

    .nav-links {
        display: none;
    }

    .spot-card {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}