/* ── Fonts ─────────────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Literata';
    src: url('../fonts/literata/Literata72pt-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Literata';
    src: url('../fonts/literata/Literata72pt-RegularItalic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Literata';
    src: url('../fonts/literata/Literata72pt-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Literata';
    src: url('../fonts/literata/Literata72pt-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Literata';
    src: url('../fonts/literata/Literata72pt-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans/DMSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans/DMSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ── Custom Properties ─────────────────────────────────────────────────────── */
:root {
    --bg-deep:       #0c1018;
    --bg-dark:       #141a28;
    --bg-light:      #f5f2ed;
    --bg-warm:       #ede8e0;
    --ink-dark:      #1a1e2e;
    --ink-light:     #e8e6e2;
    --ink-muted-d:   rgba(26,30,46,0.55);
    --ink-muted-l:   rgba(232,230,226,0.6);
    --accent:        #b8963e;
    --accent-dark:   #96792e;
    --accent-soft:   rgba(184,150,62,0.10);
    --surface-dark:  #1a2136;
    --surface-light: #ffffff;
    --border-dark:   #242e44;
    --border-light:  #d4cec4;
    --max-w:         1200px;
    --nav-h:         72px;
    --ease:          0.3s ease;
    --font-heading:  'Literata', Georgia, serif;
    --font-body:     'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-deep);
    color: var(--ink-light);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }

/* ── Utilities ─────────────────────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    text-wrap: balance;
}
h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-deep);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 14px 36px;
    border-radius: 4px;
    transition: background var(--ease), box-shadow var(--ease);
    box-shadow: 0 2px 12px rgba(184,150,62,0.2);
}
.btn-primary:hover {
    background: var(--accent-dark);
    color: #fff;
    box-shadow: 0 4px 20px rgba(184,150,62,0.3);
}

/* ── NAV ───────────────────────────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
    background: rgba(12,16,24,0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border-dark);
}
.nav {
    display: flex; align-items: center;
    height: var(--nav-h);
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    gap: 40px;
}
.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.01em;
}
.nav-logo:hover { color: #fff; }
.nav-links {
    display: flex; align-items: center; gap: 32px;
    margin-left: auto;
}
.nav-links a {
    color: var(--ink-muted-l);
    font-size: 0.88rem;
    font-weight: 400;
    transition: color var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; }
.nav-cta {
    background: var(--accent);
    color: var(--bg-deep);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
}
.nav-cta:hover {
    background: var(--accent-dark);
    color: #fff;
}
.nav-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
    margin-left: auto; padding: 4px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--ink-light); border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: flex; align-items: center;
    position: relative;
    background: var(--bg-deep) center/cover no-repeat;
    padding: calc(var(--nav-h) + 40px) 24px 80px;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(12,16,24,0.95) 0%,
        rgba(12,16,24,0.88) 40%,
        rgba(12,16,24,0.55) 100%
    );
}
.hero-content {
    position: relative; z-index: 1;
    max-width: 620px;
    padding-left: max(0px, 6vw);
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 24px;
    text-wrap: balance;
}
.hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--ink-muted-l);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 520px;
}

/* ── ABOUT ─────────────────────────────────────────────────────────────────── */
.about {
    background: var(--bg-light);
    color: var(--ink-dark);
}
.about a { color: var(--accent-dark); }
.about a:hover { color: var(--ink-dark); }
.about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
.about-text h2 {
    color: var(--ink-dark);
    margin-bottom: 20px;
}
.about-intro {
    color: var(--accent-dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.about-body {
    color: var(--ink-muted-d);
    margin-bottom: 36px;
}
.mission-statement {
    position: relative;
    padding: 0;
    margin: 0;
    border: none;
}
.mission-statement::before {
    content: "\201C";
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    display: block;
    margin-bottom: -20px;
}
.mission-statement h3 {
    color: var(--ink-dark);
    font-weight: 500;
    margin-bottom: 8px;
}
.mission-statement p {
    color: var(--ink-muted-d);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
}
.about-img-wrap {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.about-img-wrap img { width: 100%; height: 300px; object-fit: cover; }
.stats-row {
    display: flex;
    gap: 32px;
    align-items: baseline;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}
.stat-label {
    font-size: 0.85rem;
    color: var(--ink-muted-d);
}
.stat-divider {
    width: 1px;
    height: 28px;
    background: var(--border-light);
    align-self: center;
}

/* ── SERVICES ──────────────────────────────────────────────────────────────── */
.services { background: var(--bg-dark); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.services-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 28px;
}
.services-header h2 {
    color: #fff;
    margin-bottom: 16px;
}
.services-header p {
    color: var(--ink-muted-l);
    font-size: 0.95rem;
}
.service-card {
    background: var(--surface-dark);
    border-radius: 2px;
    padding: 32px 28px;
    transition: background var(--ease);
}
.service-card:hover {
    background: #1f2844;
}
.service-card h3 {
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid transparent;
    transition: border-color var(--ease);
}
.service-card:hover h3 {
    border-color: var(--accent);
}
.service-card p {
    color: var(--ink-muted-l);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── DESTINATIONS ──────────────────────────────────────────────────────────── */
.destinations { background: var(--bg-warm); color: var(--ink-dark); }
.destinations-header {
    margin-bottom: 48px;
}
.destinations-header h2 {
    color: var(--ink-dark);
    margin-bottom: 12px;
}
.destinations-header p {
    color: var(--ink-muted-d);
    font-size: 1.05rem;
    max-width: 640px;
}
.destinations-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 16px;
}
.dest-card {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: transform var(--ease);
}
.dest-card:hover { transform: translateY(-2px); }
.dest-featured {
    grid-row: 1 / 4;
    min-height: 480px;
}
.dest-featured .dest-img {
    position: absolute; inset: 0;
    background: var(--border-light) center/cover no-repeat;
}
.dest-featured .dest-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(12,16,24,0.85) 0%, rgba(12,16,24,0.2) 60%);
}
.dest-featured .dest-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px;
    z-index: 1;
}
.dest-featured .dest-body h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.dest-featured .dest-body p {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.6;
}
.dest-small {
    display: grid;
    grid-template-columns: 140px 1fr;
    background: var(--surface-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.dest-small .dest-img {
    height: 100%;
    min-height: 120px;
    background: var(--border-light) center/cover no-repeat;
}
.dest-small .dest-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.dest-small .dest-body h3 {
    color: var(--ink-dark);
    font-size: 1.05rem;
    margin-bottom: 6px;
}
.dest-small .dest-body p {
    color: var(--ink-muted-d);
    font-size: 0.85rem;
    line-height: 1.55;
}

/* ── PROCESS ───────────────────────────────────────────────────────────────── */
.process { background: var(--bg-deep); }
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}
.process-intro h2 {
    color: #fff;
    margin-bottom: 16px;
}
.process-intro p {
    color: var(--ink-muted-l);
    font-size: 1rem;
}
.process-steps {
    display: flex;
    flex-direction: column;
}
.process-step {
    padding: 28px 0;
    border-bottom: 1px solid var(--border-dark);
}
.process-step:last-child { border-bottom: none; }
.process-step h3 {
    color: #fff;
    margin-bottom: 6px;
    transition: color var(--ease);
}
.process-step:hover h3 { color: var(--accent); }
.process-step p {
    color: var(--ink-muted-l);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ── TESTIMONIALS ──────────────────────────────────────────────────────────── */
.testimonials { background: var(--bg-light); color: var(--ink-dark); }
.testimonials-header {
    margin-bottom: 56px;
}
.testimonials-header h2 {
    color: var(--ink-dark);
    margin-bottom: 12px;
}
.testimonials-header p {
    color: var(--ink-muted-d);
    font-size: 1.05rem;
    max-width: 600px;
}
.tst-featured {
    margin-bottom: 48px;
    position: relative;
    padding-left: 0;
}
.tst-featured::before {
    content: "\201C";
    font-family: var(--font-heading);
    font-size: 6rem;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: -24px;
}
.tst-featured blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.7;
    color: var(--ink-dark);
    max-width: 800px;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}
.tst-featured cite {
    display: flex; align-items: center; gap: 8px;
    font-style: normal;
    font-size: 0.95rem;
}
.tst-featured cite strong { color: var(--ink-dark); }
.tst-featured .tst-country {
    color: var(--ink-muted-d);
    font-size: 0.88rem;
}
.testimonials-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.tst-card {
    padding: 0;
}
.tst-card blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-muted-d);
    margin-bottom: 16px;
    border: none;
    padding: 0;
}
.tst-card cite {
    display: flex; align-items: center; gap: 8px;
    font-style: normal;
    font-size: 0.88rem;
}
.tst-card cite strong { color: var(--ink-dark); }
.tst-card .tst-country {
    color: var(--ink-muted-d);
}

/* ── CONTACT ───────────────────────────────────────────────────────────────── */
.contact { background: var(--bg-dark); }
.contact-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start;
}
.contact-info h2 {
    color: #fff;
    margin-bottom: 16px;
}
.contact-info > p {
    color: var(--ink-muted-l);
    margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details li {
    display: flex; align-items: flex-start; gap: 12px;
    color: var(--ink-muted-l);
    font-size: 0.95rem;
}
.contact-label {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
    min-width: 72px;
    padding-top: 2px;
}
.contact-details a { color: var(--ink-muted-l); }
.contact-details a:hover { color: var(--accent); }
.contact-form-wrap {
    background: var(--surface-dark);
    border-radius: 2px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}
.contact-form-wrap h3 { color: #fff; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--ink-muted-l); margin-bottom: 28px; }
.form-placeholder { color: var(--ink-muted-l); font-style: italic; }

/* FluentForms overrides */
.fluentform .ff-el-input--label label { color: var(--ink-muted-l) !important; font-size: 0.88rem; }
.fluentform input, .fluentform textarea, .fluentform select {
    background: var(--bg-deep) !important;
    border: 1px solid var(--border-dark) !important;
    color: var(--ink-light) !important;
    border-radius: 2px !important;
    padding: 12px 14px !important;
    font-size: 0.95rem !important;
    font-family: var(--font-body) !important;
    width: 100% !important;
}
.fluentform input:focus, .fluentform textarea:focus {
    border-color: var(--accent) !important;
    outline: none !important;
}
.fluentform .ff-btn-submit {
    background: var(--accent) !important;
    color: var(--bg-deep) !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    border: none !important;
    padding: 14px 28px !important;
    border-radius: 4px !important;
    cursor: pointer !important;
    transition: background var(--ease) !important;
    width: 100% !important;
}
.fluentform .ff-btn-submit:hover { background: var(--accent-dark) !important; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-dark);
    padding: 64px 0 0;
}
.footer-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
    padding-bottom: 48px;
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    margin-bottom: 12px;
    display: block;
}
.footer-logo:hover { color: #fff; }
.footer-tagline { color: var(--ink-muted-l); font-size: 0.9rem; }
.footer-col h4 {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li, .footer-col ul li a { color: var(--ink-muted-l); font-size: 0.9rem; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid var(--border-dark);
    text-align: center;
    padding: 20px 24px;
    color: var(--ink-muted-l);
    font-size: 0.82rem;
}

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */
.anim-fade {
    opacity: 0;
    transition: opacity 0.6s ease;
}
.anim-fade.visible { opacity: 1; }

.hero-headline {
    clip-path: inset(0 0 100% 0);
    animation: heroReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}
.hero-sub, .hero .btn-primary {
    opacity: 0;
    animation: fadeIn 0.6s ease 0.8s forwards;
}
@keyframes heroReveal {
    to { clip-path: inset(0 0 0 0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-headline {
        clip-path: none;
        animation: none;
    }
    .hero-sub, .hero .btn-primary {
        opacity: 1;
        animation: none;
    }
    .anim-fade {
        opacity: 1;
        transition: none;
    }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-featured { min-height: 360px; grid-row: auto; }
    .dest-small { grid-template-columns: 120px 1fr; }
    .process-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: var(--nav-h); left: 0; right: 0;
        background: rgba(12,16,24,0.98); backdrop-filter: blur(12px);
        padding: 24px; gap: 20px;
        border-bottom: 1px solid var(--border-dark);
    }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero-content { padding-left: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .destinations-grid { grid-template-columns: 1fr; }
    .dest-small { grid-template-columns: 120px 1fr; }
    .testimonials-secondary { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-layout { grid-template-columns: 1fr; gap: 32px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .stats-row { gap: 20px; }
}
@media (max-width: 480px) {
    .hero-headline { font-size: 1.9rem; }
    .stats-row { flex-direction: column; gap: 16px; }
    .stat-divider { display: none; }
    .dest-small { grid-template-columns: 1fr; }
    .dest-small .dest-img { min-height: 160px; }
}
