/* ── Self-hosted Fonts ── */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/inter-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/inter-500.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/inter-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/inter-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/playfair-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/playfair-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/playfair-700.ttf') format('truetype');
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/playfair-800.ttf') format('truetype');
}

/* ── Reset ── */

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

:root {
    --green: #1a6b4a;
    --green-light: #e8f5ee;
    --green-dark: #0d4a31;
    --gold: #c8956c;
    --gold-light: #faf3ec;
    --cream: #faf8f5;
    --dark: #1c1917;
    --text: #44403c;
    --text-light: #78716c;
    --border: #e7e5e4;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Navigation ── */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    font-size: 0.9rem;
}

.nav-links a {
    color: var(--text-light);
    transition: color 0.2s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--green);
}

/* ── Buttons ── */

.btn-primary {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 0.85rem 2.2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 107, 74, 0.25);
}

.btn-secondary {
    display: inline-block;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    padding: 0.82rem 2.2rem;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ── Hero ── */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(28, 25, 23, 0.65) 0%,
            rgba(26, 107, 74, 0.4) 40%,
            rgba(200, 149, 108, 0.3) 70%,
            rgba(28, 25, 23, 0.7) 100%),
        url('/img/hero.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200, 149, 108, 0.15), transparent),
        radial-gradient(ellipse 60% 80% at 80% 30%, rgba(26, 107, 74, 0.2), transparent),
        radial-gradient(circle at 50% 100%, rgba(0, 0, 0, 0.3), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 780px;
    text-align: center;
    padding: 2rem;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(200, 149, 108, 0.3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.6rem;
    color: #fff;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ── Stats Bar ── */

.stats-bar {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    padding: 2.5rem 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ── Section Shared ── */

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--green);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 700;
    color: var(--dark);
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Experiences Grid ── */

.experiences-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.experiences-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.exp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.exp-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.exp-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.exp-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.card-body {
    padding: 1.5rem;
}

.card-location {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.card-body h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    color: var(--dark);
    font-weight: 600;
}

.card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
}

.card-duration {
    color: var(--text-light);
    font-weight: 500;
}

.card-price {
    color: var(--green);
    font-weight: 700;
}

/* ── Destinations Grid ── */

.destinations-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.dest-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.2rem;
}

.dest-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 220px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: var(--dark);
}

.dest-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.dest-card:hover {
    transform: scale(1.02);
}

.dest-card-lg {
    grid-column: span 2;
    min-height: 260px;
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.dest-overlay h3 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.dest-overlay span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
}

/* ── How It Works ── */

.how-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.how-card {
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.how-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--green-light);
    transform: translateY(-2px);
}

.how-number {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--green);
    background: var(--green-light);
    padding: 0.35rem 0.85rem;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    letter-spacing: 0.03em;
}

.how-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: var(--dark);
    font-weight: 600;
}

.how-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ── Curators ── */

.curators-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.curator-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.curator-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.curator-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.curator-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.2rem;
    object-fit: cover;
}

.curator-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--dark);
    font-weight: 600;
}

.curator-role {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.curator-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.curator-stat {
    font-size: 0.78rem;
    color: var(--green);
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ── Testimonials ── */

.testimonials-section {
    padding: 6rem 2rem;
}

.testimonial-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 2.2rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-card p {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ── Press ── */

.press-section {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.press-label {
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.press-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.press-item {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #ccc;
    letter-spacing: -0.01em;
}

/* ── CTA ── */

.cta-section {
    padding: 7rem 2rem;
    background:
        linear-gradient(135deg,
            var(--dark) 0%,
            var(--green-dark) 50%,
            var(--green) 100%);
    text-align: center;
}

.cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Playfair Display', Georgia, serif;
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.cta-section .btn-primary {
    background: #fff;
    color: var(--green-dark);
    white-space: nowrap;
    margin-top: 0.5rem;
}

.cta-section .btn-primary:hover {
    background: var(--gold-light);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ── Footer ── */

footer {
    background: var(--dark);
    color: #aaa;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.footer-logo span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #777;
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
    font-size: 0.8rem;
    color: #555;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dest-card-lg {
        grid-column: span 1;
    }
    .curator-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .stats-inner {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .stat-item {
        flex: 0 0 40%;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .experiences-grid,
    .how-grid,
    .curator-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .dest-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-links {
        display: none;
    }
    .cta-form {
        flex-direction: column;
    }
    .press-logos {
        gap: 1.5rem;
    }
    .press-item {
        font-size: 0.95rem;
    }
    .experiences-section,
    .destinations-section,
    .how-section,
    .curators-section,
    .testimonials-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .stat-item {
        flex: 0 0 100%;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
