:root {
    --lake-deep: #4b3a30;
    --lake-mist: #7b6a5d;
    --stone-light: #e6ddd2;
    --cream: #f7f3ee;
    --text-dark: #2e241d;
    --text-muted: #6b6158;
}

* {
    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(247, 243, 238, 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(95, 142, 164, 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: 1px solid rgba(95, 142, 164, 0.28);
    background: rgba(255, 255, 255, 0.78);
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    font-size: 0.92rem;
    color: var(--lake-deep);
}

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

.jump-card {
    background: #fff;
    border: 1px solid var(--stone-light);
    border-radius: 22px;
    padding: 1.2rem 1.25rem;
    text-decoration: none;
    color: inherit;
}

.jump-card small {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

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

.content-grid {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    color: var(--lake-deep);
    font-size: 2.2rem;
    font-weight: 500;
}

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

.spot-index {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(35, 68, 93, 0.08);
    color: var(--lake-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.spot-card h3 {
    margin-bottom: 0.45rem;
    color: var(--lake-deep);
    font-size: 1.1rem;
}

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

.tips,
.cta-block {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--stone-light);
}

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

.tips p,
.cta-block p {
    color: var(--text-muted);
}

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

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

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

.button.secondary {
    background: rgba(35, 68, 93, 0.08);
    color: var(--lake-deep);
}

footer {
    padding: 0 2rem 3rem;
    max-width: 980px;
    margin: 0 auto;
}

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

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

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

@media (max-width: 900px) {
    .jump-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    nav {
        padding: 1rem 1.1rem;
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        gap: 1rem;
    }

    main {
        padding: 7.25rem 1.1rem 3rem;
    }

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

    .spot-index {
        width: 44px;
        height: 44px;
    }
}
