:root {
    --ocean: #0a3d52;
    --teal: #1a7a8a;
    --seafoam: #5ec4b0;
    --sand: #f0e8d8;
    --cream: #faf7f2;
    --dusk: #c4785a;
    --forest: #2d4a3e;
    --mist: rgba(250, 247, 242, 0.08);
    --text: #1a1a1a;
    --light: #6b7b74;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAV ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 61, 82, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(94, 196, 176, 0.15);
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sand);
    letter-spacing: 0.08em;
}

.nav-logo span {
    color: var(--seafoam);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: rgba(240, 232, 216, 0.75);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--seafoam);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--ocean) 0%, #0d5568 40%, var(--forest) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 30%, rgba(94, 196, 176, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(196, 120, 90, 0.08) 0%, transparent 50%);
}

/* Animated waves */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%23faf7f2' fill-opacity='1' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80C1248,75,1344,53,1392,42.7L1440,32L1440,120L1392,120C1344,120,1248,120,1152,120C1056,120,960,120,864,120C768,120,672,120,576,120C480,120,384,120,288,120C192,120,96,120,48,120L0,120Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 50% 100%;
}

.wave1 {
    opacity: 0.5;
    animation: wave 8s linear infinite;
}

.wave2 {
    opacity: 0.3;
    animation: wave 12s linear infinite reverse;
    bottom: -10px;
}

.wave3 {
    opacity: 1;
    animation: wave 6s linear infinite;
    bottom: -5px;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 860px;
    padding: 2rem;
}

.hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--seafoam);
    border: 1px solid rgba(94, 196, 176, 0.4);
    padding: 0.4rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--sand);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
    font-style: italic;
    color: var(--seafoam);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(240, 232, 216, 0.65);
    max-width: 480px;
    margin: 0 auto 3rem;
    line-height: 1.75;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeUp 0.8s 0.45s ease both;
}

.pill {
    padding: 0.5rem 1.2rem;
    background: rgba(94, 196, 176, 0.12);
    border: 1px solid rgba(94, 196, 176, 0.3);
    border-radius: 100px;
    color: var(--seafoam);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--seafoam);
    color: var(--ocean);
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeUp 0.8s 0.6s ease both;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(94, 196, 176, 0.35);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== HIGHLIGHTS STRIP ===== */
.highlights {
    background: var(--ocean);
    padding: 2rem 3rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.highlight-item {
    text-align: center;
    color: var(--sand);
}

.highlight-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--seafoam);
}

.highlight-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(240, 232, 216, 0.55);
    margin-top: 0.2rem;
}

/* ===== SECTION BASE ===== */
section {
    padding: 6rem 3rem;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--ocean);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--light);
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 3rem;
}

/* ===== SPOTS SECTION ===== */
#spots {
    background: var(--cream);
}

.spots-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid #d0ccc4;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s;
    color: var(--light);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--ocean);
    color: var(--sand);
    border-color: var(--ocean);
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.spot-card {
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 16px rgba(10, 61, 82, 0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.spot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 61, 82, 0.14);
}

.spot-img {
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.spot-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 61, 82, 0.85);
    backdrop-filter: blur(8px);
    color: var(--seafoam);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
}

.spot-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ocean);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.spot-body {
    padding: 1.5rem;
}

.spot-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ocean);
    margin-bottom: 0.4rem;
}

.spot-location {
    font-size: 0.78rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.spot-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.spot-meta {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.meta-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    background: var(--sand);
    border-radius: 6px;
    color: var(--forest);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.spot-btn {
    display: block;
    text-align: center;
    margin-top: 1.2rem;
    padding: 0.65rem;
    background: var(--ocean);
    color: var(--sand);
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.25s;
}

.spot-btn:hover {
    background: var(--teal);
}

/* ===== MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;  /* ← changed from 200 */
    background: rgba(10, 61, 82, 0.65);
    backdrop-filter: blur(6px);
    padding: 2rem;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
}

.modal {
    background: var(--cream);
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 32px 80px rgba(10, 61, 82, 0.25);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(16px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.modal-body {
    padding: 2rem;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--ocean);
    margin-bottom: 0.3rem;
}

.modal-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.modal-tag {
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    border: 1px solid var(--teal);
    color: var(--teal);
}

.modal-section {
    margin: 1.5rem 0;
}

.modal-section h4 {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.6rem;
}

.modal-section p,
.modal-section li {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.75;
}

.modal-section ul {
    padding-left: 1.2rem;
}

.modal-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.info-box {
    background: var(--sand);
    border-radius: 12px;
    padding: 1rem;
}

.info-box label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light);
}

.info-box p {
    font-size: 0.9rem;
    color: var(--ocean);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* ===== MAP SECTION ===== */
#map-section {
    background: var(--ocean);
    color: var(--sand);
}

#map-section .section-title {
    color: var(--sand);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(94, 196, 176, 0.2);
    height: 460px;
    position: relative;
    background: linear-gradient(135deg, #0d4a5e 0%, #1a7a8a 50%, #0a3d52 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: rgba(240, 232, 216, 0.6);
}

.map-placeholder .map-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--seafoam);
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 380px;
}

.map-markers {
    position: absolute;
    inset: 0;
}

.marker {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--seafoam);
    border: 2px solid white;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 0 0 4px rgba(94, 196, 176, 0.3);
}

.marker:hover {
    transform: scale(1.5);
}

.marker-label {
    position: absolute;
    left: 18px;
    top: -6px;
    background: rgba(10, 61, 82, 0.9);
    color: var(--seafoam);
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.marker:hover .marker-label {
    opacity: 1;
}

/* ===== TRAVEL GUIDE SECTION ===== */
#guide {
    background: var(--sand);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.guide-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(10, 61, 82, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 61, 82, 0.1);
}

.guide-emoji {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.guide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--ocean);
    margin-bottom: 0.6rem;
}

.guide-text {
    font-size: 0.85rem;
    color: var(--light);
    line-height: 1.7;
}

/* ===== FOOD SECTION ===== */
#food {
    background: var(--cream);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
}

.food-card {
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(10, 61, 82, 0.06);
    transition: transform 0.25s;
}

.food-card:hover {
    transform: translateY(-4px);
}

.food-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.food-body {
    padding: 1rem 1.2rem 1.2rem;
}

.food-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: var(--ocean);
    margin-bottom: 0.3rem;
}

.food-desc {
    font-size: 0.78rem;
    color: var(--light);
    line-height: 1.6;
}

/* ===== TRANSPORT SECTION ===== */
#transport {
    background: var(--ocean);
    color: var(--sand);
}

#transport .section-title {
    color: var(--sand);
}

#transport .section-desc {
    color: rgba(240, 232, 216, 0.6);
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
}

.transport-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(94, 196, 176, 0.2);
    border-radius: 16px;
    padding: 1.8rem;
}

.transport-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.transport-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--seafoam);
    margin-bottom: 0.5rem;
}

.transport-text {
    font-size: 0.82rem;
    color: rgba(240, 232, 216, 0.6);
    line-height: 1.7;
}

/* ===== WEATHER SECTION ===== */
#weather {
    background: var(--forest);
    color: var(--sand);
}

#weather .section-title {
    color: var(--sand);
}

.weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.month-card {
    border-radius: 12px;
    padding: 1.2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.month-card.best {
    background: rgba(94, 196, 176, 0.15);
    border-color: rgba(94, 196, 176, 0.3);
}

.month-card.ok {
    background: rgba(255, 255, 255, 0.05);
}

.month-card.risky {
    background: rgba(196, 120, 90, 0.15);
    border-color: rgba(196, 120, 90, 0.3);
}

.month-name {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(240, 232, 216, 0.6);
    margin-bottom: 0.4rem;
}

.month-icon {
    font-size: 1.6rem;
}

.month-status {
    font-size: 0.65rem;
    margin-top: 0.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.best .month-status {
    color: var(--seafoam);
}

.risky .month-status {
    color: var(--dusk);
}

.ok .month-status {
    color: rgba(240, 232, 216, 0.5);
}

/* ===== AI PLANNER SECTION ===== */
#planner {
    background: var(--cream);
}

.planner-box {
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(10, 61, 82, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(10, 61, 82, 0.08);
}

.planner-header {
    background: linear-gradient(135deg, var(--ocean), var(--teal));
    padding: 2rem 2.5rem;
    color: var(--sand);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.planner-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 300;
}

.planner-header p {
    font-size: 0.82rem;
    color: rgba(240, 232, 216, 0.65);
    margin-top: 0.2rem;
}

.planner-body {
    padding: 2rem 2.5rem;
}

.planner-quick-btns {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.quick-btn {
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(10, 61, 82, 0.2);
    background: var(--sand);
    font-size: 0.78rem;
    cursor: pointer;
    color: var(--ocean);
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

.quick-btn:hover {
    background: var(--ocean);
    color: var(--sand);
    border-color: var(--ocean);
}

.planner-input-row {
    display: flex;
    gap: 0.75rem;
}

#planner-input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    border: 1px solid rgba(10, 61, 82, 0.2);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--cream);
    outline: none;
    transition: border-color 0.2s;
}

#planner-input:focus {
    border-color: var(--teal);
}

#planner-btn {
    padding: 0.85rem 1.8rem;
    border-radius: 12px;
    background: var(--ocean);
    color: var(--sand);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s;
    white-space: nowrap;
}

#planner-btn:hover {
    background: var(--teal);
}

#planner-btn:disabled {
    background: #aaa;
    cursor: not-allowed;
}

#planner-output {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--sand);
    border-radius: 12px;
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--text);
    display: none;
    white-space: pre-wrap;
    min-height: 60px;
    border-left: 3px solid var(--seafoam);
}

.typing-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    margin: 0 2px;
    animation: typing 1.2s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }

    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--ocean);
    color: rgba(240, 232, 216, 0.5);
    text-align: center;
    padding: 3rem;
}

footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--sand);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

footer p {
    font-size: 0.8rem;
    line-height: 1.8;
}

/* ===== FOUNDER SECTION ===== */
#founder {
    background: var(--sand);
    padding: 6rem 3rem;
}

.founder-wrapper {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 4rem;
    align-items: center;
}

.founder-avatar-side {
    text-align: center;
}

.founder-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 40px rgba(10, 61, 82, 0.2);
    position: relative;
}

.founder-avatar::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(94, 196, 176, 0.4);
    animation: spin 20s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.founder-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--ocean);
    color: var(--seafoam);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
}

.founder-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.5rem;
}

.founder-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ocean);
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

.founder-role {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.founder-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--forest);
    line-height: 1.65;
    border-left: 3px solid var(--seafoam);
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 0.88rem;
    color: var(--light);
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

.founder-chips {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.8rem;
}

.founder-chip {
    padding: 0.4rem 0.9rem;
    border-radius: 100px;
    background: white;
    border: 1px solid rgba(10, 61, 82, 0.15);
    font-size: 0.75rem;
    color: var(--ocean);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.founder-socials {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(10, 61, 82, 0.12);
}

.social-btn.primary {
    background: var(--ocean);
    color: var(--sand);
}

.social-btn.ghost {
    background: white;
    color: var(--ocean);
    border: 1px solid rgba(10, 61, 82, 0.2);
}

@media (max-width: 720px) {
    .founder-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .founder-role,
    .founder-chips,
    .founder-socials {
        justify-content: center;
    }

    .founder-quote {
        text-align: left;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .highlights {
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .spots-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .planner-input-row {
        flex-direction: column;
    }

    .modal-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== LEAFLET MAP ===== */
#leaflet-map {
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(94, 196, 176, 0.25);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.map-filters {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.map-filter-btn {
    padding: 0.45rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(94, 196, 176, 0.3);
    background: rgba(94, 196, 176, 0.08);
    color: rgba(240, 232, 216, 0.75);
    font-size: 0.78rem;
    cursor: pointer;
    font-family: "DM Sans", sans-serif;
    transition: all 0.2s;
}

.map-filter-btn.active,
.map-filter-btn:hover {
    background: var(--seafoam);
    color: var(--ocean);
    border-color: var(--seafoam);
    font-weight: 500;
}

.map-legend {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(240, 232, 216, 0.6);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Leaflet popup custom style */
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(10, 61, 82, 0.25) !important;
    font-family: "DM Sans", sans-serif !important;
}

.leaflet-popup-content {
    margin: 0 !important;
}

.map-popup {
    padding: 1rem;
    min-width: 200px;
}

.map-popup-emoji {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.map-popup-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    color: #0a3d52;
    font-weight: 400;
    margin-bottom: 0.2rem;
}

.map-popup-cat {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a7a8a;
    margin-bottom: 0.5rem;
}

.map-popup-desc {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.map-popup-btn {
    display: block;
    text-align: center;
    background: #0a3d52;
    color: #f0e8d8;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    width: 100%;
    font-family: "DM Sans", sans-serif;
}

.founder-avatar {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f4f4;
}

/* Responsive image */
.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .founder-avatar {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .founder-avatar {
        width: 160px;
        height: 160px;
    }
}