@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
    --terracotta: #c8684a;
    --terracotta-dark: #a8543a;
    --ochre: #d4953a;
    --gold: #c9a84c;
    --cream: #fdf6ee;
    --cream-dark: #f5ebe0;
    --charcoal: #2c2c2c;
    --charcoal-light: #3d3d3d;
    --warm-gray: #6b6058;
    --warm-gray-light: #9c9288;
    --sandy: #e8dcc8;
    --sandy-light: #f0e8d8;
    --deep-green: #3a6b35;
    --deep-green-light: #4a7b45;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --max-width: 1200px;
    --section-spacing: 100px;
    --nav-height: 80px;
    --font-serif: "Playfair Display", Georgia, serif;
    --font-sans: "Inter", -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(253, 246, 238, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}
.nav-scrolled {
    background: rgba(253, 246, 238, 0.98);
    box-shadow: var(--shadow-md);
}
.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}
.logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--charcoal);
}
.logo span {
    color: var(--terracotta);
}
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--warm-gray);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--terracotta);
}
.nav-links .nav-cta {
    background: var(--terracotta);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
}
.nav-links .nav-cta:hover {
    background: var(--terracotta-dark);
    color: white;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    margin: 0 auto;
    margin-top: -40px;
}
.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.hero-cta {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(200, 104, 74, 0.4);
    transition: all 0.2s;
}
.hero-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}
.hero-credit {
    position: absolute;
    bottom: 20px;
    right: 24px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

/* PAGE HERO */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.page-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}
.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}
.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.page-hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}
.page-hero-credit {
    position: absolute;
    bottom: 16px;
    right: 24px;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Shorter hero for map page */
.page-hero-short {
    height: 30vh;
    min-height: 200px;
}

/* MAP PAGE — Sidebar + Fullscreen layout */
.map-page {
    display: flex;
    height: 60vh;
    min-height: 500px;
}
.map-legend {
    width: 320px;
    flex-shrink: 0;
    background: var(--white);
    border-right: 1px solid var(--sandy);
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.map-legend h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.map-legend h3 i {
    color: var(--terracotta);
}
.map-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s ease;
}
.map-legend-item:hover {
    background: var(--sandy-light);
}
.map-legend-marker {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}
.map-legend-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.map-legend-info strong {
    font-size: 0.92rem;
    color: var(--charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.map-legend-info span {
    font-size: 0.78rem;
    color: var(--warm-gray);
}
.map-legend-badge {
    flex-shrink: 0;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.map-legend-footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--sandy);
}
.map-legend-footer p {
    font-size: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.5;
}
.map-legend-footer i {
    color: var(--ochre);
    margin-right: 4px;
}
.map-fullscreen {
    flex: 1;
    position: relative;
}
.map-fullscreen .map-init {
    border-radius: 0;
}

/* DETAIL HERO */
.detail-hero {
    height: 60vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* SECTIONS */
.section {
    padding: var(--section-spacing) 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}
.section-alt {
    background: var(--sandy-light);
    width: 100%;
    padding: var(--section-spacing) 24px;
}
.section-full {
    width: 100%;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 500px;
    margin: 0 auto;
}
.section-header .view-all {
    display: inline-block;
    margin-top: 16px;
    color: var(--terracotta);
    font-weight: 600;
    text-decoration: none;
}

/* PLACE CARDS */
.place-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.place-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.place-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.place-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.place-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.place-card-body {
    padding: 20px;
}
.place-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.place-card-body p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.place-card-rating {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* CATEGORY CARDS */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.category-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.category-icon {
    font-size: 2.5rem;
}
.category-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--charcoal);
}
.category-desc {
    font-size: 0.82rem;
    color: var(--warm-gray);
}

/* REGION CARDS */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.region-card {
    position: relative;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
    color: white;
}
.region-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}
.region-card:hover {
    transform: scale(1.02);
}
.region-card * {
    position: relative;
    z-index: 2;
}
.region-card .region-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
}
.region-card .region-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SPLIT SECTION */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}
.split-section.reverse {
    direction: rtl;
}
.split-section.reverse > * {
    direction: ltr;
}
.split-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}
.split-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.split-content p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 24px;
}
.split-cta {
    background: var(--terracotta);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.2s;
}
.split-cta:hover {
    background: var(--terracotta-dark);
}

/* MAP SECTION */
.map-section {
    width: 100%;
    padding: 0 24px var(--section-spacing);
    max-width: var(--max-width);
    margin: 0 auto;
}
.map-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    text-align: center;
    margin-bottom: 32px;
    color: var(--charcoal);
}
.map-container {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* FOOTER */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 24px 40px;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}
.footer-brand span {
    color: var(--terracotta);
}
.footer-about {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
    line-height: 1.7;
}
.footer-acknowledgment {
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 24px;
}
.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-bottom {
    max-width: var(--max-width);
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
}

/* BADGES */
.badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.badge-category {
    background: rgba(201, 168, 76, 0.9);
    color: white;
}
.badge-region {
    background: rgba(58, 107, 53, 0.85);
    color: white;
}

/* FILTER CHIPS */
.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}
.filter-chip {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--sandy);
    background: transparent;
    color: var(--warm-gray);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s;
}
.filter-chip:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}
.filter-chip.active {
    background: var(--terracotta);
    border-color: var(--terracotta);
    color: white;
}
.filter-chip a {
    text-decoration: none;
    color: inherit;
}

/* FORM ELEMENTS */
.search-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 32px;
}
.search-input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--sandy);
    font-size: 0.95rem;
    background: white;
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}
.search-input:focus {
    outline: none;
    border-color: var(--terracotta);
}

/* DETAIL PAGE */
.detail-body {
    max-width: 900px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
.detail-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.detail-info-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}
.detail-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--warm-gray);
}

/* BLOG */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

/* LEGACY / UTILITY */
.api-warning {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    text-align: center;
    font-size: 14px;
}
.main {
    min-height: calc(100vh - 60px);
}
.not-found {
    text-align: center;
    padding: 80px 24px;
}
.not-found h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--charcoal);
}
.places-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px;
}
.page-header {
    margin-bottom: 24px;
}
.page-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
}
.page-header p {
    color: var(--warm-gray);
    margin-top: 4px;
}
.results-count {
    color: var(--warm-gray);
    margin-bottom: 16px;
    font-size: 0.95rem;
}
.no-results {
    text-align: center;
    padding: 60px 24px;
    color: var(--warm-gray);
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.page-btn {
    background: var(--deep-green);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.page-btn:hover {
    background: var(--deep-green-light);
}
.page-info {
    color: var(--warm-gray);
}
.rating-stars {
    color: var(--gold);
    font-size: 1.2rem;
}
.rating-text {
    margin-left: 8px;
    color: white;
    font-size: 0.9rem;
}
.view-all {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
}
.search-btn {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.search-btn:hover {
    background: transparent;
    color: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
}
.region-select {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--sandy);
    font-size: 0.9rem;
    background: white;
    cursor: pointer;
    color: var(--charcoal);
    font-family: var(--font-sans);
}
.region-select:focus {
    outline: none;
    border-color: var(--terracotta);
}
.btn {
    display: inline-block;
    background: var(--terracotta);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.btn:hover {
    background: var(--terracotta-dark);
}
.btn-green {
    background: var(--deep-green);
}
.btn-green:hover {
    background: var(--deep-green-light);
}
.detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.badge-gold {
    background: var(--gold);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.badge-blue {
    background: var(--warm-gray);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.detail-content {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 24px;
}
.detail-main h2 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin: 24px 0 12px;
    font-family: var(--font-serif);
}
.detail-main h3 {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin: 20px 0 8px;
}
.detail-map {
    margin-top: 24px;
}
.detail-map iframe {
    border-radius: var(--radius-md);
}
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}
.info-card h3 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
}
.info-card p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: var(--warm-gray);
}
.info-card a {
    color: var(--terracotta);
    text-decoration: none;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid var(--sandy);
}
.hours-day {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--charcoal);
}
.hours-time {
    color: var(--warm-gray);
    font-size: 0.9rem;
}
.place-card-simple {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
    display: block;
}
.place-card-simple:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.card-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}
.card-body {
    padding: 12px 16px;
}
.card-body h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-serif);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .split-section {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .place-grid {
        grid-template-columns: 1fr;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-info-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        height: 70vh;
    }
    .section {
        padding: 60px 16px;
    }
    .nav-links a {
        font-size: 0.8rem;
    }
    .split-content {
        padding: 40px 24px;
    }
    .detail-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    .region-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ACCOUNT / AUTH PAGES (login, signup, dashboard, profile, ...)
   ============================================================ */

.auth-page {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
}
.auth-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}
.auth-card h1 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    color: var(--charcoal);
    margin-bottom: 24px;
    text-align: center;
}
.auth-card.text-center {
    text-align: center;
}
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.auth-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    font-size: 0.9rem;
}
.auth-links a {
    color: var(--warm-gray);
}
.auth-links a:hover {
    color: var(--terracotta);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--charcoal-light);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1px solid var(--sandy);
    border-radius: var(--radius-sm);
    background: var(--cream);
    color: var(--charcoal);
    width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--terracotta);
}
.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.password-toggle {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: var(--warm-gray);
    cursor: pointer;
    padding: 4px;
    display: flex;
}
.password-toggle:hover {
    color: var(--terracotta);
}

.btn-primary {
    background: var(--terracotta);
    color: white;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--terracotta-dark);
}
.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border: 1.5px solid var(--terracotta);
}
.btn-outline:hover {
    background: var(--terracotta);
    color: white;
}
.btn-danger {
    background: none;
    color: var(--terracotta-dark);
    border: 1.5px solid var(--sandy);
}
.btn-danger:hover {
    background: var(--terracotta);
    color: white;
    border-color: var(--terracotta);
}
.btn-google {
    background: var(--white);
    color: var(--charcoal);
    border: 1px solid var(--sandy);
}
.btn-google:hover {
    background: var(--cream-dark);
}
.btn-full {
    display: block;
    width: 100%;
    text-align: center;
    border-radius: 50px;
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.82rem;
}
button.btn {
    font-family: var(--font-sans);
}

.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--warm-gray-light);
    font-size: 0.85rem;
}
.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--sandy);
}
.divider-line {
    border: none;
    border-top: 1px solid var(--sandy);
    margin: 24px 0;
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.alert-error {
    background: #fbeae6;
    color: var(--terracotta-dark);
}
.alert-success {
    background: #eaf4e8;
    color: var(--deep-green);
}

.page-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    text-align: center;
}
.stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--terracotta);
    font-weight: 700;
}
.stat-label {
    color: var(--warm-gray);
    font-size: 0.85rem;
    margin-top: 4px;
}

.dashboard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin: 20px 0;
}
.card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--cream-dark);
}
.card-header h2 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--charcoal);
}
.card-content {
    padding: 24px;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}
.list-item {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.list-item-content h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.list-item-content p {
    color: var(--charcoal-light);
    font-size: 0.92rem;
    margin: 4px 0;
}
.list-item-actions {
    flex-shrink: 0;
}

.stars .star {
    color: var(--sandy);
}
.stars .star.filled {
    color: var(--gold);
}

.text-muted {
    color: var(--warm-gray);
}
.text-sm {
    font-size: 0.85rem;
}
.text-center {
    text-align: center;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 28px 24px;
    }
    .list-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* --- Auth pages --- */

.auth-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 40px 36px;
    max-width: 420px;
    width: 100%;
}

.auth-logo {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.auth-logo span {
    color: var(--terracotta);
}

.auth-subtitle {
    color: var(--warm-gray);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.auth-alt {
    text-align: center;
    margin-top: 16px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.88rem;
    color: var(--warm-gray);
}

.auth-footer p {
    margin: 6px 0;
}

.auth-footer a {
    color: var(--terracotta);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.btn-link {
    background: none;
    border: none;
    color: var(--terracotta);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 8px;
    text-decoration: underline;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--terracotta-dark);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 12px 14px;
    border: 1px solid var(--sandy);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--terracotta);
}

.form-input:disabled {
    background: var(--gray-100);
    color: var(--gray-500);
    cursor: not-allowed;
}

/* --- Account pages (/user/*) --- */

.account-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 40px) 24px 60px;
}

.confirm-delete-form {
    display: inline;
}

/* ============================================================
   ZIMAURA LAUNCH — 4 Destination Pillars
   ============================================================ */

/* --- Destination Card Meta (Places page) --- */
.dest-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: var(--deep-green);
    margin-top: 6px;
}
.dest-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.dest-card-meta i {
    font-size: 0.7rem;
}

/* --- Intro Section --- */
.intro-section {
    padding-bottom: 20px;
}
.intro-section .section-header p {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===== DESTINATION PILLARS (Homepage) ===== */
.pillar-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
    margin: 0;
    border-top: 1px solid var(--sandy);
}
.pillar-reversed {
    direction: rtl;
}
.pillar-reversed .pillar-content {
    direction: ltr;
}
.pillar-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.pillar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.pillar-section:hover .pillar-image img {
    transform: scale(1.05);
}
.pillar-stage-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 16px;
    border-radius: 20px;
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
}
.pillar-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
    background: var(--white);
}
.pillar-role {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    margin-bottom: 8px;
}
.pillar-content h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
    line-height: 1.2;
}
.pillar-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    margin-bottom: 16px;
    font-style: italic;
}
.pillar-description {
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.pillar-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.pillar-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--warm-gray);
}
.pillar-stat i {
    color: var(--deep-green);
    font-size: 0.9rem;
}
.pillar-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.pillar-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 16px;
    background: var(--sandy-light);
    font-size: 0.8rem;
    color: var(--charcoal);
    white-space: nowrap;
}
.pillar-tag i {
    font-size: 0.75rem;
    color: var(--deep-green);
}
.pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}
.pillar-cta:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- Why Zimbabwe Section --- */
.why-section {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 40px auto 0;
    padding: 0 24px;
}
.why-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--sandy-light);
    font-size: 1.3rem;
    color: var(--terracotta);
    margin-bottom: 16px;
}
.why-card h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.why-card p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* --- CTA Section --- */
.cta-section {
    padding-top: 60px;
    padding-bottom: 80px;
}
.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.cta-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.cta-card p {
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

/* ============================================================
   DESTINATION DETAIL PAGES
   ============================================================ */

/* --- Destination Hero --- */
.dest-hero {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.dest-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}
.dest-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 24px;
    max-width: 750px;
}
.dest-stage-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
    margin-bottom: 20px;
}
.dest-hero-content h1 {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.dest-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 8px;
}
.dest-tagline {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.85;
    margin-top: 4px;
}

/* --- Destination About --- */
.dest-about {
    padding-top: var(--section-spacing);
    padding-bottom: calc(var(--section-spacing) - 40px);
}
.dest-about-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.dest-about-text h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 16px;
}
.dest-about-text p {
    color: var(--charcoal-light);
    line-height: 1.8;
    font-size: 1rem;
}
.dest-quick-facts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.quick-fact {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px;
    background: var(--sandy-light);
    border-radius: var(--radius-md);
}
.quick-fact i {
    font-size: 1.2rem;
    color: var(--deep-green);
    margin-top: 2px;
    flex-shrink: 0;
}
.quick-fact strong {
    display: block;
    font-size: 0.9rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}
.quick-fact p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

/* --- Stays Grid --- */
.dest-stays {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}
.stays-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding: 0 24px;
}
.stay-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.stay-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.stay-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.stay-type-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}
.stay-card-body {
    padding: 20px;
}
.stay-card-body h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}
.stay-card-body p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-bottom: 12px;
}
.stay-price {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 14px;
    background: var(--sandy);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--charcoal);
}

/* --- Activities Grid --- */
.dest-activities {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}
.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding: 0 24px;
}
.activity-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.activity-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.activity-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sandy-light);
    border-radius: 50%;
    font-size: 1.2rem;
}
.activity-body h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 6px;
}
.activity-body p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.5;
    margin-bottom: 8px;
}
.activity-price {
    font-size: 0.82rem;
    color: var(--deep-green);
    font-weight: 600;
}
.activity-price i {
    font-size: 0.7rem;
    margin-right: 3px;
}

/* --- Itinerary Timeline --- */
.dest-itinerary {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}
.itinerary {
    max-width: 750px;
    margin: 32px auto 0;
    padding: 0 24px;
}
.itinerary-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--charcoal);
    margin-bottom: 32px;
    text-align: center;
}
.itinerary-timeline {
    position: relative;
    padding-left: 40px;
}
.itinerary-timeline::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--sandy);
}
.timeline-day {
    position: relative;
    margin-bottom: 32px;
}
.timeline-day:last-child {
    margin-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    z-index: 1;
}
.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.timeline-content h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}
.timeline-content ul {
    list-style: none;
    padding: 0;
}
.timeline-content li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.5;
}
.timeline-content li i {
    margin-right: 8px;
}

/* --- Insider Tips --- */
.dest-tips {
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 32px auto 0;
    padding: 0 24px;
}
.tip-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--sandy-light);
    border-radius: var(--radius-md);
    transition: background 0.2s ease;
}
.tip-card:hover {
    background: var(--sandy);
}
.tip-number {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}
.tip-card p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — Pillars & Destinations
   ============================================================ */

@media (max-width: 900px) {
    .pillar-section {
        grid-template-columns: 1fr;
    }
    .pillar-reversed {
        direction: ltr;
    }
    .pillar-image {
        min-height: 280px;
        max-height: 350px;
    }
    .pillar-content {
        padding: 40px 32px;
    }
    .pillar-content h3 {
        font-size: 1.8rem;
    }
    .dest-about-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .dest-hero-content h1 {
        font-size: 2.4rem;
    }
    .stays-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .activities-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
    .tips-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Map page stacks vertically */
    .map-page {
        flex-direction: column;
        height: auto;
    }
    .map-legend {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        border-right: none;
        border-bottom: 1px solid var(--sandy);
    }
    .map-legend h3 {
        width: 100%;
        margin-bottom: 0;
        font-size: 1rem;
    }
    .map-legend-item {
        flex: 0 0 auto;
        padding: 8px 12px;
        white-space: nowrap;
    }
    .map-legend-info strong {
        font-size: 0.82rem;
    }
    .map-legend-info span {
        display: none;
    }
    .map-legend-footer {
        display: none;
    }
    .map-fullscreen {
        height: 60vh;
        min-height: 400px;
    }
}

@media (max-width: 600px) {
    .dest-hero {
        height: 420px;
    }
    .dest-hero-content h1 {
        font-size: 1.9rem;
    }
    .dest-subtitle {
        font-size: 1rem;
    }
    .pillar-content h3 {
        font-size: 1.5rem;
    }
    .pillar-stats {
        gap: 12px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
    .cta-card {
        padding: 40px 24px;
    }
    .dest-about-text h2 {
        font-size: 1.5rem;
    }
}
