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

:root {
    --brown-dark:  #2c1810;
    --brown-mid:   #5c3317;
    --brown-light: #8a6a5d;
    --cream:       #fdf8f0;
    --cream-dark:  #f0e6cc;
    --gold:        #c9a84c;
    --green:       #2d6a4f;
    --green-dark:  #1b4332;
    --text:        #1a1a1a;
    --text-muted:  #666;
    --white:       #ffffff;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; display: block; }

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: var(--brown-dark);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 50px; width: auto; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-links .nav-cta {
    background: var(--green);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}
.nav-links .nav-cta:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 0;
    background: var(--brown-dark);
    color: white;
    overflow: hidden;
}

/* ─── Video Background ─── */
.video-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;  /* 16:9 em altura */
    height: 56.25vw;  /* 16:9 em largura */
    min-width: 100%;
    min-height: 100%;
    border: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(30, 15, 8, 0.72) 0%,
        rgba(44, 24, 16, 0.78) 60%,
        rgba(20, 10, 5, 0.92) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-logo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 40px;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}
.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.hero h1 .highlight {
    color: var(--gold);
    font-style: italic;
}
.hero-content > p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    background: var(--green);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.4px;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(45, 106, 79, 0.4);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.55);
}
.btn-primary.large { padding: 20px 48px; font-size: 1rem; }

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    display: inline-block;
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding: 28px 48px;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    animation: fadeUp 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,0.18);
}

/* Hero scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.scroll-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid rgba(255,255,255,0.35);
    border-bottom: 2px solid rgba(255,255,255,0.35);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* ─── Featured Video ─── */
.featured-video-wrapper {
    max-width: 1100px;
    margin: -80px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 20;
}
.featured-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding: 0 4px;
}
.featured-label p {
    color: var(--brown-light);
    font-size: 0.88rem;
}
.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.22);
    background: #000;
    border: 6px solid white;
}
.video-container iframe { width: 100%; height: 100%; border: none; }

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--brown-dark);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── Main Wrapper ─── */
.main-wrapper {
    background: var(--cream);
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

/* ─── Sections ─── */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
}
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green);
    margin-bottom: 14px;
    padding: 6px 16px;
    background: rgba(45,106,79,0.08);
    border-radius: 50px;
    border: 1px solid rgba(45,106,79,0.15);
}
.section-tag.light {
    color: var(--gold);
    background: rgba(201,168,76,0.1);
    border-color: rgba(201,168,76,0.2);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--brown-light);
    font-size: 1rem;
}

/* ─── Video Cards ─── */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}
.modern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    text-decoration: none;
    display: block;
}
.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}
.card-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.card-image-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.modern-card:hover .card-image-wrapper img { transform: scale(1.08); }

.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 54px; height: 54px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    transition: background 0.3s, transform 0.3s;
    z-index: 2;
}
.play-btn::after {
    content: '';
    width: 0; height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid var(--green);
    margin-left: 4px;
}
.modern-card:hover .play-btn {
    background: var(--green);
    transform: translate(-50%, -50%) scale(1.1);
}
.modern-card:hover .play-btn::after { border-left-color: white; }

.card-duration {
    position: absolute;
    bottom: 12px; right: 12px;
    background: rgba(0,0,0,0.72);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
.card-body { padding: 28px; }
.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(45,106,79,0.08);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(45,106,79,0.15);
}
.card-body h3 {
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}
.card-body p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.card-meta {
    font-size: 0.78rem;
    color: #aaa;
    font-weight: 500;
}

/* ─── About ─── */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 100px 60px;
    max-width: 1300px;
    margin: 0 auto;
}
.about-image { position: relative; }
.about-image img {
    width: 100%;
    border-radius: 24px;
    aspect-ratio: 4/5;
    object-fit: cover;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--gold);
    color: var(--brown-dark);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(201,168,76,0.4);
}
.about-badge span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 4px;
}
.about-badge p {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}
.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--brown-dark);
    margin: 16px 0 24px;
    line-height: 1.2;
}
.about-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.97rem;
}
.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.about-tags span {
    padding: 8px 16px;
    background: var(--cream-dark);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--brown-mid);
}

/* ─── Masonry Gallery ─── */
.gallery-section {
    background: white;
    padding: 100px 20px;
}
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}
.masonry-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}
.masonry-item.tall  { grid-row: span 2; }
.masonry-item.wide  { grid-column: span 2; }
.masonry-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,24,16,0.88) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.masonry-item:hover img { transform: scale(1.1); }
.masonry-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.masonry-item:hover .gallery-overlay span { transform: translateY(0); }

/* ─── Diários de Bordo ─── */
.diarios-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.diario-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.1);
}

.diario-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.diario-slide {
    display: flex;
    min-width: 100%;
    min-height: 520px;
    background: white;
}

.diario-image {
    position: relative;
    width: 55%;
    flex-shrink: 0;
    overflow: hidden;
}

.diario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.diario-slide:hover .diario-image img { transform: scale(1.04); }

.diario-counter {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(0,0,0,0.45);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.diario-content {
    flex: 1;
    padding: 56px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.diario-date {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.diario-content h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--brown-dark);
    line-height: 1.2;
    margin-bottom: 12px;
}

.diario-subtitle {
    font-size: 0.95rem;
    color: var(--green);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}

.diario-text {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-diario {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brown-mid);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.btn-diario::after {
    content: '→';
    transition: transform 0.3s;
}

.btn-diario:hover {
    color: var(--green);
    border-color: var(--green);
}

.btn-diario:hover::after { transform: translateX(4px); }

/* Navegação do carrossel */
.diario-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 28px;
    background: var(--cream-dark);
}

.diario-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--brown-light);
    background: white;
    color: var(--brown-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.diario-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
    transform: scale(1.1);
}

.diario-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.diario-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: var(--brown-light);
    opacity: 0.35;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.diario-dot.active {
    opacity: 1;
    background: var(--green);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .diario-slide {
        flex-direction: column;
        min-height: auto;
    }
    .diario-image {
        width: 100%;
        height: 280px;
    }
    .diario-content {
        padding: 36px 30px;
    }
}

@media (max-width: 600px) {
    .diario-image { height: 220px; }
    .diario-content { padding: 28px 22px; }
    .diario-content h3 { font-size: 1.4rem; }
}

/* ─── Destinations ─── */
.destinations-list {
    display: flex;
    flex-direction: column;
}
.destination-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: padding-left 0.35s ease;
    cursor: pointer;
}
.destination-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }
.destination-item:hover { padding-left: 16px; }

.dest-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    min-width: 80px;
    transition: color 0.3s;
}
.destination-item:hover .dest-number { color: var(--green); }
.dest-content { flex: 1; }
.dest-date {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 8px;
}
.dest-content h3 {
    font-size: 1.8rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}
.dest-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}
.dest-arrow {
    font-size: 1.6rem;
    color: var(--cream-dark);
    transition: color 0.3s, transform 0.3s;
}
.destination-item:hover .dest-arrow {
    color: var(--green);
    transform: translateX(8px);
}

/* ─── Footer CTA ─── */
.footer-cta {
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-mid) 100%);
    padding: 120px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.footer-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44,24,16,0.82) 0%, rgba(92,51,23,0.78) 100%);
    z-index: 1;
}
.footer-cta-content {
    position: relative;
    z-index: 2;  /* acima do ::before (z-index 1) */
    max-width: 600px;
    margin: 0 auto;
}
.footer-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 16px 0 20px;
    line-height: 1.2;
}
.footer-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* ─── Footer ─── */
footer {
    background: #111;
    color: #888;
    padding: 60px 20px 0;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo { height: 60px; width: auto; }
.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 260px;
}
.footer-links h4,
.footer-social h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
}
.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a,
.social-link {
    color: #888;
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s;
    display: inline-block;
}
.footer-links a:hover,
.social-link:hover { color: var(--gold); }
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    font-size: 0.82rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-dev a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}
.footer-dev a:hover { opacity: 0.75; }

/* ─── Reveal Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Keyframes ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50%       { transform: rotate(45deg) translateY(6px); }
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .about-section { padding: 80px 30px; gap: 50px; }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: var(--brown-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.4rem; }
    .nav-toggle { display: flex; }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px 32px;
    }
    .stat-divider { width: 44px; height: 1px; }

    .about-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }
    .about-badge { bottom: -10px; right: 10px; }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .masonry-item.wide { grid-column: span 1; }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .destination-item { gap: 20px; }
    .dest-number { font-size: 2.5rem; min-width: 55px; }
}

@media (max-width: 600px) {
    .hero h1   { font-size: 2.2rem; }
    .hero-logo { width: 120px; height: 120px; }
    .section   { padding: 60px 20px; }
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .masonry-item.tall { grid-row: span 1; }
    .dest-content h3   { font-size: 1.4rem; }
    .hero-actions      { flex-direction: column; align-items: center; }
}
