:root {
    --lake-deep: #2d546c;
    --lake-mist: #6f97aa;
    --lake-light: #c5dbe4;
    --stone-light: #ece3d8;
    --cream: #f7f4ef;
    --text-dark: #26333a;
    --text-muted: #6b7780;
    --accent-gold: #d8ad72;
    --verified: #2d546c;
    --verified-bg: rgba(45, 84, 108, 0.08);
}

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

body.guide-page {
    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, 244, 239, 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: 2rem;
}

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

.nav-links a:hover,
.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: var(--verified-bg);
    color: var(--verified);
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.hero h1,
.tips h2,
.sources h2,
.cta-block h2,
.section-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--lake-deep);
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
    font-weight: 400;
    line-height: 0.95;
    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(111, 151, 170, 0.28);
    background: rgba(255, 255, 255, 0.75);
    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,
.spot-card,
.tips,
.sources,
.cta-block,
.signup-container {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--stone-light);
    border-radius: 24px;
}

.jump-card {
    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-size: 2.2rem;
    font-weight: 500;
}

.spot-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    padding: 1.35rem;
}

.spot-index {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--verified-bg);
    color: var(--lake-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.spot-card p,
.tips ul,
.sources p,
.sources ul,
.cta-block p,
.signup-note,
.copyright {
    color: var(--text-muted);
}

.tips,
.sources,
.cta-block,
.signup-container {
    margin-top: 2rem;
    padding: 1.5rem;
}

.tips h2,
.sources h2,
.cta-block h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.tips ul,
.sources ul {
    padding-left: 1.2rem;
    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: var(--verified-bg);
    color: var(--lake-deep);
}

.signup-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.signup-form input[type=email] {
    flex: 1 1 260px;
    min-width: 0;
    padding: 1rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--stone-light);
    font: inherit;
    background: rgba(247, 244, 239, 0.8);
}

.signup-form button {
    padding: 1rem 1.3rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lake-deep), var(--lake-mist));
    color: #fff;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.signup-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
}

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;
    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;
        justify-content: center;
    }

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

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

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