/*
Theme Name: Nonla Escape Theme
Template: hello-elementor
Description: Nonla Cultural Escape — custom child theme
Version: 1.0
*/

/* ── TOKENS ──────────────────────────────────────────────────────────────── */

:root {
    --cream:   #FAF5EC;
    --parch:   #F2E8D4;
    --white:   #FFFDF7;
    --terra:   #B85520;
    --terra-l: #D4703A;
    --gold:    #B8841A;
    --gold-l:  #D4A030;
    --forest:  #2C4A1A;
    --text:    #1A0E06;
    --text2:   #4A3318;
    --muted:   #7A6040;
    --border:  #DDD0B0;
    --card:    #FFF8EE;
    --shadow:  rgba(26, 14, 6, .08);
}

/* ── BASE ─────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

body {
    background: var(--cream);
    color: var(--text);
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Cormorant Garamond", serif; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* Elementor widget-container padding reset for full-bleed HTML widgets */
.elementor-widget-html .elementor-widget-container { padding: 0; }

/* ── NAV ─────────────────────────────────────────────────────────────────── */

.nl-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
    padding: 28px 52px;
    opacity: 0; transform: translateY(-100%);
    transition: background .35s, padding .35s, opacity .3s ease, transform .3s ease;
}
.nl-nav.nl-nav-visible,
.nl-nav.stuck {
    opacity: 1; transform: translateY(0);
}
.nl-nav.stuck {
    background: rgba(250, 245, 236, .96);
    backdrop-filter: blur(12px);
    padding: 16px 52px;
    border-bottom: 1px solid var(--border);
}

.nl-nav-logo {
    text-decoration: none; display: flex; align-items: center; justify-self: start;
    background: rgba(250, 245, 236, .18);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 6px 10px;
    transition: background .35s, backdrop-filter .35s;
}
.nl-nav.stuck .nl-nav-logo { background: transparent; backdrop-filter: none; padding: 0; }
.nl-nav-logo-img { height: 40px; width: auto; display: block; }

.nl-nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nl-nav-links a {
    font-size: 16px; letter-spacing: .12em; text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 253, 247, .7); text-decoration: none; transition: color .2s;
}
.nl-nav.stuck .nl-nav-links a { color: var(--muted); }
.nl-nav-links a:hover { color: var(--white); }
.nl-nav.stuck .nl-nav-links a:hover { color: var(--text); }

.nl-nav-right { display: flex; align-items: center; gap: 14px; justify-self: end; }

.nl-lang { display: flex; gap: 3px; }
.nl-lang-btn {
    font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: 5px 10px; border-radius: 2px; cursor: pointer; border: none;
    background: transparent; color: rgba(255, 253, 247, .45); transition: all .2s;
}
.nl-lang-btn.active { background: var(--gold-l); color: var(--text); }
.nl-lang-btn:hover:not(.active) { color: rgba(255, 253, 247, .9); }
.nl-nav.stuck .nl-lang-btn { color: var(--muted); }
.nl-nav.stuck .nl-lang-btn.active { background: var(--terra); color: #fff; }
.nl-nav.stuck .nl-lang-btn:hover:not(.active) { color: var(--text); }

.nl-nav-cta {
    background: var(--terra); color: #fff; font-size: 12px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase; padding: 10px 22px;
    border-radius: 3px; text-decoration: none; transition: background .2s, transform .2s;
}
.nl-nav-cta:hover { background: var(--terra-l); transform: translateY(-1px); color: #fff; }

/* Nav social icons */
.nl-nav-social { display: flex; align-items: center; gap: 10px; padding-right: 14px; border-right: 1px solid rgba(255,253,247,.18); }
.nl-nav.stuck .nl-nav-social { border-right-color: var(--border); }
.nl-nav-social-link { display: flex; align-items: center; color: rgba(255,253,247,.6); transition: color .2s; }
.nl-nav-social-link:hover { color: var(--white); }
.nl-nav.stuck .nl-nav-social-link { color: var(--muted); }
.nl-nav.stuck .nl-nav-social-link:hover { color: var(--text); }

/* Burger (shown only on mobile) */
.nl-nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: rgba(255,253,247,.85); line-height: 1; }
.nl-nav.stuck .nl-nav-burger { color: var(--text2); }

/* Mobile menu overlay */
.nl-mobile-menu {
    position: fixed; inset: 0; z-index: 10000;
    background: var(--cream); display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.nl-mobile-menu.open { transform: none; }
@media (min-width: 961px) { .nl-mobile-menu { display: none !important; } }

.nl-mobile-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.nl-mobile-logo { font-family: "Bebas Neue", sans-serif; font-size: 22px; letter-spacing: .1em; color: var(--text); text-decoration: none; }
.nl-mobile-logo span { color: var(--terra); }
.nl-mobile-close { background: none; border: none; cursor: pointer; padding: 8px; color: var(--text2); display: flex; }

.nl-mobile-links { list-style: none; margin: 0; padding: 16px 28px; flex: 1; }
.nl-mobile-links li { border-bottom: 1px solid var(--border); }
.nl-mobile-links a { display: block; padding: 18px 0; font-family: "Cormorant Garamond", serif; font-size: 34px; font-weight: 600; color: var(--text); text-decoration: none; transition: color .2s; }
.nl-mobile-links a:hover { color: var(--terra); }

.nl-mobile-bottom { padding: 24px 28px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 20px; flex-shrink: 0; }
.nl-mobile-social { display: flex; gap: 24px; }
.nl-mobile-social-link { display: flex; align-items: center; gap: 8px; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; color: var(--muted); text-decoration: none; transition: color .2s; }
.nl-mobile-social-link:hover { color: var(--text); }

/* Footer social */
.nl-footer-social { display: flex; gap: 20px; margin-top: 20px; }
.nl-footer-social-link { display: flex; align-items: center; gap: 7px; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: rgba(242,232,212,.45); text-decoration: none; transition: color .2s; }
.nl-footer-social-link:hover { color: var(--parch); }

/* ── SECTION COMMONS ─────────────────────────────────────────────────────── */

.nl-section-inner { max-width: 1200px; margin: 0 auto; padding: 0 52px; }

.nl-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; letter-spacing: .24em; text-transform: uppercase;
    color: var(--terra); font-weight: 600; margin-bottom: 16px;
}
.nl-eyebrow::before { content: ''; width: 20px; height: 1.5px; background: var(--terra); display: block; }
.nl-eyebrow-center { justify-content: center; }
.nl-eyebrow-center::before { display: none; }
.nl-eyebrow-gold { color: var(--gold-l); }
.nl-eyebrow-gold::before { background: var(--gold-l); }

.nl-section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 600; line-height: .96; margin-bottom: 48px; color: var(--text);
}
.nl-section-title em { font-style: italic; color: var(--terra); }

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */

.nl-btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--terra); color: #fff !important; font-weight: 600;
    font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
    padding: 14px 32px; border-radius: 3px; text-decoration: none;
    transition: background .2s, transform .2s, box-shadow .2s;
}
.nl-btn-primary:hover {
    background: var(--terra-l); transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(184, 85, 32, .3);
}

.nl-btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--terra); border: 1.5px solid rgba(184, 85, 32, .35);
    padding: 12px 24px; border-radius: 3px; text-decoration: none; transition: all .2s;
}
.nl-btn-outline:hover { border-color: var(--terra); background: rgba(184, 85, 32, .05); }

.nl-btn-ghost-light {
    font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
    color: rgba(255, 253, 247, .6); border-bottom: 1px solid rgba(255, 253, 247, .25);
    padding: 14px 4px; text-decoration: none; transition: color .2s, border-color .2s;
}
.nl-btn-ghost-light:hover { color: var(--white); border-color: rgba(255, 253, 247, .65); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.nl-hero {
    position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden;
}
.nl-hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center;
}
.nl-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(20, 10, 4, .48) 0%,
        rgba(20, 10, 4, .15) 30%,
        rgba(20, 10, 4, .42) 65%,
        rgba(20, 10, 4, .90) 100%);
}
.nl-hero-content {
    position: relative; z-index: 2;
    width: 100%; max-width: 1200px; margin: 0 auto;
    padding: 0 52px 90px;
}
.nl-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-l); font-weight: 500; margin-bottom: 22px;
}
.nl-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold-l); display: block; }
.nl-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(72px, 11vw, 156px);
    font-weight: 600; line-height: .92; color: var(--white); margin-bottom: 30px;
}
.nl-hero h1 em { font-style: italic; color: var(--gold-l); }
.nl-hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.nl-hero-sub { font-size: 19px; color: rgba(255, 253, 247, .75); max-width: 440px; line-height: 1.75; font-weight: 300; }
.nl-hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 28px; }
.nl-hero-stats {
    display: flex; gap: 36px; flex-shrink: 0;
    border-left: 1px solid rgba(255, 253, 247, .18); padding-left: 36px;
}
.nl-stat-n { font-family: "Bebas Neue", sans-serif; font-size: 48px; line-height: 1; color: var(--gold-l); }
.nl-stat-l { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: rgba(255, 253, 247, .45); margin-top: 4px; }

/* ── TICKER ──────────────────────────────────────────────────────────────── */

.nl-ticker-wrap { background: var(--terra); overflow: hidden; padding: 13px 0; }
.nl-ticker { display: flex; animation: nl-tick 30s linear infinite; white-space: nowrap; }
.nl-ticker-item {
    display: inline-flex; align-items: center; gap: 18px;
    padding: 0 24px; font-size: 12px; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase; color: rgba(255, 255, 255, .88);
}
.nl-ticker-sep { width: 3px; height: 3px; background: rgba(255, 255, 255, .35); border-radius: 50%; flex-shrink: 0; }
@keyframes nl-tick { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.nl-countdown {
    display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
    margin-top: 36px; padding-top: 28px;
    border-top: 1px solid rgba(255,253,247,.15);
}
.nl-cd-label {
    font-size: 14px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
    color: var(--gold-l); white-space: nowrap;
}
.nl-cd-units { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nl-cd-unit { display: flex; flex-direction: column; align-items: center; min-width: 44px; }
.nl-cd-n {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(36px, 4.5vw, 52px);
    line-height: 1; color: #fff; letter-spacing: .05em;
}
.nl-cd-l {
    font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
    color: rgba(255,255,255,.5); margin-top: 3px;
}
.nl-cd-sep { width: 1px; height: 36px; background: rgba(255,255,255,.18); }

/* ── ABOUT ───────────────────────────────────────────────────────────────── */

.nl-about-wrap { padding: 100px 0; }
.nl-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.nl-about-photo-stack { position: relative; }
.nl-about-photo-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.nl-about-photo-float {
    position: absolute; bottom: -28px; right: -28px;
    width: 52%; aspect-ratio: 1; object-fit: cover; border-radius: 4px;
    border: 4px solid var(--cream); box-shadow: 0 8px 32px var(--shadow);
}
.nl-about-text { padding-left: 16px; }
.nl-about-text p { font-size: 18px; color: var(--text2); line-height: 1.85; font-weight: 300; margin-bottom: 18px; }
.nl-about-text p strong { color: var(--text); font-weight: 600; }
.nl-about-quote {
    font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 24px;
    color: var(--text); line-height: 1.5;
    border-left: 2.5px solid var(--terra); padding-left: 22px; margin: 30px 0;
}

/* ── SERIES ──────────────────────────────────────────────────────────────── */

.nl-series-wrap { padding: 0 0 100px; }
.nl-series-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.nl-series-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 6px; padding: 44px 40px;
    transition: box-shadow .25s, transform .25s;
}
.nl-series-card:hover { box-shadow: 0 16px 48px var(--shadow); transform: translateY(-3px); }
.nl-series-label {
    display: inline-flex; align-items: center;
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--terra); background: rgba(184, 85, 32, .08);
    padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.nl-series-name {
    font-family: "Cormorant Garamond", serif; font-size: 40px; font-weight: 600;
    line-height: 1.1; color: var(--text); margin-bottom: 14px;
}
.nl-series-desc { font-size: 16px; color: var(--text2); line-height: 1.75; font-weight: 300; }
.nl-series-link {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
    font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: var(--terra); text-decoration: none;
    border-bottom: 1px solid rgba(184, 85, 32, .3); padding-bottom: 2px;
    transition: border-color .2s, gap .2s;
}
.nl-series-link:hover { border-color: var(--terra); gap: 12px; }

/* ── DESTINATIONS ────────────────────────────────────────────────────────── */

.nl-dest-wrap { background: var(--parch); }
.nl-dest-header { padding: 80px 52px 52px; max-width: 1200px; margin: 0 auto; }
.nl-dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 3px; height: 560px; }
.nl-dest-card { position: relative; overflow: hidden; }
.nl-dest-card { background-size: cover; background-position: center; }
.nl-dest-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(20,10,4,.82) 0%, rgba(20,10,4,.15) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 28px 22px;
}
.nl-dest-tag { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 6px; }
.nl-dest-name {
    font-family: "Cormorant Garamond", serif; font-size: 38px; font-weight: 600;
    color: var(--white); margin-bottom: 5px; line-height: 1;
}
.nl-dest-desc { font-size: 13px; color: rgba(255, 253, 247, .6); line-height: 1.5; font-weight: 300; }
.nl-dest-hover {
    font-size: 13px; color: rgba(255, 253, 247, .85); line-height: 1.6; font-weight: 300;
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    margin-top: 0; padding-top: 0; border-top: 1px solid transparent;
    transition: max-height .4s ease, opacity .3s ease, visibility .3s ease, margin-top .35s ease, padding-top .35s ease, border-color .35s ease;
}
.nl-dest-card:hover .nl-dest-hover,
.nl-dest-card.nl-active .nl-dest-hover {
    max-height: 160px; opacity: 1; visibility: visible; margin-top: 10px; padding-top: 10px;
    border-color: rgba(255, 253, 247, .15);
}
 
/* ── WHY ─────────────────────────────────────────────────────────────────── */

.nl-why-wrap { padding: 100px 0; }
.nl-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.nl-why-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 6px;
    padding: 36px 30px; transition: box-shadow .2s, transform .2s;
}
.nl-why-item:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-2px); }
.nl-why-icon { font-size: 28px; margin-bottom: 16px; }
.nl-why-title { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.nl-why-desc { font-size: 15px; color: var(--text2); line-height: 1.75; font-weight: 300; }

/* ── GALLERY ─────────────────────────────────────────────────────────────── */

.nl-gallery-wrap { padding: 4px 0; }
.nl-gallery-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4px; }
.nl-gallery-col { display: flex; flex-direction: column; gap: 4px; }
.nl-gallery-photo { overflow: hidden; }
.nl-gallery-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; display: block; }
.nl-gallery-photo:hover img { transform: scale(1.04); }
.nl-gallery-photo-tall { aspect-ratio: 16/9; }
.nl-gallery-photo-short { aspect-ratio: 4/3; }

/* ── CTA ─────────────────────────────────────────────────────────────────── */

.nl-cta-wrap {
    position: relative; overflow: hidden;
    background-size: cover; background-position: center 35%; background-repeat: no-repeat;
}
.nl-cta-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(20, 10, 4, .70), rgba(20, 10, 4, .82)); }
.nl-cta-inner { position: relative; z-index: 2; text-align: center; max-width: 1200px; margin: 0 auto; padding: 120px 52px; }
.nl-cta-inner .nl-eyebrow { color: var(--gold-l); }
.nl-cta-inner .nl-eyebrow::before { background: var(--gold-l); }
.nl-cta-inner h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 9vw, 122px);
    font-weight: 600; line-height: .92; color: var(--white); margin-bottom: 22px;
}
.nl-cta-inner h2 em { font-style: italic; color: var(--gold-l); }
.nl-cta-inner p { font-size: 19px; color: rgba(255, 253, 247, .7); max-width: 420px; margin: 0 auto 44px; font-weight: 300; line-height: 1.75; }
.nl-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */

.nl-footer { background: var(--text); color: var(--parch); }
.nl-footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 52px 36px; }
.nl-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 44px; }
.nl-footer-logo {
    font-family: "Bebas Neue", sans-serif; font-size: 24px; letter-spacing: .1em;
    margin-bottom: 14px; color: var(--parch); text-decoration: none; display: block;
}
.nl-footer-logo span { color: var(--gold-l); }
.nl-footer-tagline { font-size: 15px; color: rgba(242, 232, 212, .5); line-height: 1.7; max-width: 260px; font-weight: 300; }
.nl-footer-head { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(242, 232, 212, .38); margin-bottom: 18px; }
.nl-footer-links { list-style: none; display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0; }
.nl-footer-links a { font-size: 15px; color: rgba(242, 232, 212, .52); transition: color .2s; text-decoration: none; }
.nl-footer-links a:hover { color: var(--parch); }
.nl-footer-bottom {
    border-top: 1px solid rgba(242, 232, 212, .1); padding-top: 24px;
    display: flex; justify-content: space-between; font-size: 13px; color: rgba(242, 232, 212, .32);
}

/* ── PAGE HEADER ─────────────────────────────────────────────────────────── */

.nl-page-header {
    padding: 140px 52px 80px;
    background: var(--parch);
    border-bottom: 1px solid var(--border);
}
.nl-page-header-inner { max-width: 1200px; margin: 0 auto; }
.nl-breadcrumb { font-size: 13px; color: var(--muted); letter-spacing: .08em; margin-bottom: 24px; }
.nl-breadcrumb a { color: var(--terra); }
.nl-breadcrumb a:hover { text-decoration: underline; }
.nl-page-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 7.5vw, 108px);
    font-weight: 600; line-height: .92; color: var(--text); margin-bottom: 20px;
}
.nl-page-title em { font-style: italic; color: var(--terra); }
.nl-page-subtitle { font-size: 19px; color: var(--text2); line-height: 1.7; font-weight: 300; max-width: 540px; }

/* ── FILTER TABS ─────────────────────────────────────────────────────────── */

.nl-filters-bar { padding: 40px 52px 0; max-width: 1200px; margin: 0 auto; }
.nl-filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.nl-filter-btn {
    font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    padding: 9px 20px; border-radius: 100px; cursor: pointer;
    border: 1.5px solid var(--border); background: transparent; color: var(--muted);
    transition: all .2s;
}
.nl-filter-btn.active { background: var(--terra); border-color: var(--terra); color: #fff; }
.nl-filter-btn:hover:not(.active) { border-color: var(--terra); color: var(--terra); }

/* ── PROJECTS LIST ───────────────────────────────────────────────────────── */

.nl-projects-list { padding: 48px 52px 100px; max-width: 1200px; margin: 0 auto; }
.nl-project-card {
    display: flex; align-items: stretch;
    background: var(--card); border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; margin-bottom: 32px;
    transition: box-shadow .25s, transform .25s;
}
.nl-project-card:hover { box-shadow: 0 16px 56px var(--shadow); transform: translateY(-3px); }
.nl-project-cover { position: relative; overflow: hidden; min-height: 300px; flex: 0 0 420px; background-size: cover; background-position: center; background-color: var(--parch); }
.nl-project-cover::after { content: ''; position: absolute; inset: 0; background: inherit; background-size: cover; background-position: center; transition: transform .6s; }
.nl-project-card:hover .nl-project-cover::after { transform: scale(1.04); }
.nl-project-cover-placeholder { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; background: var(--parch); color: var(--border); }
.nl-project-status-badge {
    position: absolute; top: 20px; left: 20px;
    font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 100px;
}
.nl-project-status-badge.completed { background: rgba(26, 14, 6, .6); color: rgba(255, 253, 247, .8); }
.nl-project-status-badge.upcoming { background: var(--terra); color: #fff; }
.nl-project-body { padding: 44px 64px 44px 48px; display: flex; flex-direction: column; }
.nl-project-series {
    display: inline-flex; align-items: center;
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--terra); background: rgba(184, 85, 32, .08);
    padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; align-self: flex-start;
}
.nl-project-name {
    font-family: "Cormorant Garamond", serif; font-size: 46px; font-weight: 600;
    color: var(--text); line-height: 1; margin-bottom: 6px;
}
.nl-project-edition { font-size: 15px; color: var(--muted); letter-spacing: .06em; margin-bottom: 20px; }
.nl-project-desc { font-size: 17px; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 28px; overflow-wrap: break-word; }
.nl-project-desc p { margin: 0 0 12px; }
.nl-project-desc p:last-child { margin-bottom: 0; }
.nl-project-desc ul { margin: 0 0 12px; padding-left: 20px; }
.nl-project-desc li { margin-bottom: 4px; }

.nl-project-social-links { display: flex; align-items: center; gap: 10px; padding-left: 12px; border-left: 1px solid var(--border); }
.nl-project-social-link { display: flex; align-items: center; color: var(--muted); transition: color .2s; }
.nl-project-social-link:hover { color: var(--text); }
.nl-project-meta {
    display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 28px;
    padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.nl-meta-label { font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: var(--muted); margin-bottom: 4px; }
.nl-meta-value { font-family: "Cormorant Garamond", serif; font-size: 18px; font-weight: 600; color: var(--text); }
.nl-meta-price { color: var(--terra); }
.nl-meta-note { font-size: 12px; color: var(--muted); margin-top: 2px; }
.nl-project-dests { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.nl-dest-pill {
    font-size: 12px; font-weight: 500; letter-spacing: .06em;
    color: var(--text2); background: var(--parch);
    padding: 5px 12px; border-radius: 100px; border: 1px solid var(--border);
}
.nl-project-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.nl-project-actions-right { display: flex; align-items: center; gap: 12px; }
.nl-empty-state {
    text-align: center; padding: 80px 24px;
    background: var(--card); border: 1.5px dashed var(--border); border-radius: 8px;
}
.nl-empty-state p { font-size: 17px; color: var(--muted); line-height: 1.7; }

/* ── TEAM GRID ───────────────────────────────────────────────────────────── */

.nl-team-wrap { max-width: 1200px; margin: 0 auto; padding: 80px 52px 100px; }
.nl-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.nl-team-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.nl-team-card:hover { box-shadow: 0 16px 48px var(--shadow); transform: translateY(-3px); }
.nl-team-photo { aspect-ratio: 3/4; overflow: hidden; background: var(--parch); }
.nl-team-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    transition: transform .5s; display: block;
}
.nl-team-card:hover .nl-team-photo img { transform: scale(1.04); }
.nl-team-photo-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    font-size: 56px; background: var(--parch);
}
.nl-team-body { padding: 28px 28px 32px; }
.nl-team-name { font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.nl-team-role { font-size: 13px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 16px; }
.nl-team-city { font-size: 12px; color: var(--muted); letter-spacing: .08em; margin-top: 4px; margin-bottom: 12px; }
.nl-team-bio { font-size: 16px; color: var(--text2); line-height: 1.75; font-weight: 300; }
.nl-team-email { margin-top: 18px; }
.nl-team-email a { font-size: 13px; color: var(--terra); letter-spacing: .04em; }
.nl-team-email a:hover { text-decoration: underline; }
.nl-team-empty { text-align: center; padding: 100px 24px; font-size: 17px; color: var(--muted); }

.nl-team-cta { background: var(--parch); border-top: 1px solid var(--border); padding: 80px 52px; text-align: center; }
.nl-team-cta-inner { max-width: 600px; margin: 0 auto; }
.nl-team-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 56px); font-weight: 600; color: var(--text);
    margin-bottom: 16px; line-height: 1.05;
}
.nl-team-cta h2 em { font-style: italic; color: var(--terra); }
.nl-team-cta p { font-size: 18px; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 32px; }

/* ── INSTAGRAM CAROUSEL ─────────────────────────────────────────────────── */

.nl-ig-wrap { background: var(--cream); padding: 40px 0; overflow: hidden; position: relative; }

/* Hide Smash Balloon header, bio, buttons */
.nl-ig-wrap .sbi_header,
.nl-ig-wrap #sbi_header,
.nl-ig-wrap .sbi_follow_btn,
.nl-ig-wrap .sbi_load_btn,
.nl-ig-wrap .sbi_footer { display: none !important; }

/* Strip plugin padding */
.nl-ig-wrap #sb_instagram { padding: 0 !important; background: transparent !important; }

/* Horizontal scroll carousel */
.nl-ig-wrap #sb_instagram #sbi_images {
    display: flex !important; flex-wrap: nowrap !important;
    overflow-x: auto !important; scroll-snap-type: x mandatory;
    gap: 16px; padding: 0 !important;
    scrollbar-width: none; -ms-overflow-style: none;
}
.nl-ig-wrap #sb_instagram #sbi_images::-webkit-scrollbar { display: none; }

.nl-ig-wrap #sb_instagram .sbi_item {
    flex: 0 0 360px !important; width: 360px !important; height: 360px !important;
    scroll-snap-align: start; position: relative;
}
.nl-ig-wrap #sb_instagram .sbi_photo_wrap {
    position: relative; width: 100%; height: 100%; display: block;
    border-radius: 0 !important;
}
.nl-ig-wrap #sb_instagram .sbi_photo_wrap a { display: block; width: 100%; height: 100%; }
.nl-ig-wrap #sb_instagram .sbi_photo { width: 100% !important; height: 100% !important; }
.nl-ig-wrap #sb_instagram .sbi_photo img {
    width: 100% !important; height: 100% !important;
    object-fit: cover !important; display: block !important;
    transition: transform .5s ease !important;
}
.nl-ig-wrap #sb_instagram .sbi_item:hover .sbi_photo img { transform: scale(1.06) !important; }

/* Arrow buttons */
.nl-ig-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
    background: var(--terra); color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s; box-shadow: 0 2px 12px rgba(26,14,6,.25);
}
.nl-ig-arrow:hover { background: var(--terra-l); }
.nl-ig-arrow-prev { left: 16px; }
.nl-ig-arrow-next { right: 16px; }

/* IG logo — injected via JS into each photo wrap */
.nl-ig-logo {
    position: absolute; bottom: 10px; right: 10px;
    width: 28px; height: 28px; pointer-events: none; opacity: .9; z-index: 2;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='20' height='20' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1.5' fill='white' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */

.nl-testimonials-wrap { padding: 100px 0; background: var(--parch); }
.nl-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.nl-testimonial-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 8px;
    padding: 40px 36px; display: flex; flex-direction: column;
    transition: box-shadow .25s, transform .25s;
}
.nl-testimonial-card:hover { box-shadow: 0 16px 48px var(--shadow); transform: translateY(-3px); }
.nl-testimonial-quote-mark {
    font-family: "Cormorant Garamond", serif; font-size: 64px; line-height: .7;
    color: var(--terra); opacity: .3; margin-bottom: 16px; font-style: italic;
}
.nl-testimonial-text {
    font-family: "Cormorant Garamond", serif; font-style: italic;
    font-size: 20px; line-height: 1.6; color: var(--text);
    flex: 1; margin-bottom: 28px;
}
.nl-testimonial-text p { margin: 0; }
.nl-testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.nl-testimonial-author-photo {
    width: 44px; height: 44px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0;
}
.nl-testimonial-author-photo-placeholder {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--parch); display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.nl-testimonial-author-name { font-size: 17px; font-weight: 600; color: var(--text); line-height: 1.3; }
.nl-testimonial-author-role { font-size: 13px; color: var(--muted); letter-spacing: .06em; margin-top: 2px; }

/* ── LEGAL ────────────────────────────────────────────────────────────────── */

.nl-legal-wrap { max-width: 800px; margin: 0 auto; padding: 80px 52px; }
.nl-legal-wrap h2 { font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 600; margin: 40px 0 16px; color: var(--text); }
.nl-legal-wrap h3 { font-family: "Cormorant Garamond", serif; font-size: 24px; font-weight: 600; margin: 28px 0 10px; color: var(--text); }
.nl-legal-wrap p { font-size: 17px; color: var(--text2); line-height: 1.85; font-weight: 300; margin-bottom: 16px; }
.nl-legal-wrap ul { padding-left: 20px; margin-bottom: 16px; }
.nl-legal-wrap li { font-size: 17px; color: var(--text2); line-height: 1.85; font-weight: 300; margin-bottom: 6px; }

/* ── REVEAL ANIMATION ────────────────────────────────────────────────────── */

.nl-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.nl-reveal.on { opacity: 1; transform: none; }
.nl-d1 { transition-delay: .1s; }
.nl-d2 { transition-delay: .2s; }
.nl-d3 { transition-delay: .3s; }
.nl-d4 { transition-delay: .4s; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
    .nl-nav { display: flex; justify-content: space-between; padding: 20px 24px; }
    .nl-nav.stuck { padding: 14px 24px; }
    .nl-nav-links { display: none; }
    .nl-nav .nl-nav-social { display: none; }
    .nl-nav .nl-nav-cta { display: none; }
    .nl-nav .nl-lang { display: none; }
    .nl-nav-burger { display: flex; }
    .nl-hero-content { padding: 0 24px 64px; }
    .nl-hero-stats { display: none; }
    .nl-countdown { gap: 16px; margin-top: 28px; padding-top: 20px; }
    .nl-cd-units { gap: 10px; }
    .nl-cd-unit { min-width: 36px; }
    .nl-cd-sep { height: 28px; }
    .nl-section-inner { padding: 0 24px; }
    .nl-about-grid { grid-template-columns: 1fr; }
    .nl-about-photo-float { display: none; }
    .nl-about-text { padding-left: 0; }
    .nl-about-wrap { padding: 80px 0; }
    .nl-series-grid { grid-template-columns: 1fr; }
    .nl-dest-header { padding: 60px 24px 40px; }
    .nl-dest-grid { grid-template-columns: repeat(2, 1fr); height: 700px; }
    .nl-why-grid { grid-template-columns: 1fr; gap: 14px; }
    .nl-why-wrap { padding: 80px 0; }
    .nl-testimonials-grid { grid-template-columns: 1fr; }
    .nl-testimonials-wrap { padding: 80px 0; }
    .nl-gallery-row { grid-template-columns: 1fr; }
    .nl-cta-inner { padding: 90px 24px; }
    .nl-footer-top { grid-template-columns: 1fr; gap: 36px; }
    .nl-footer-inner { padding: 48px 24px 28px; }
    .nl-page-header { padding: 110px 24px 60px; }
    .nl-filters-bar { padding: 32px 24px 0; }
    .nl-projects-list { padding: 32px 24px 80px; }
    .nl-project-card { flex-direction: column; }
    .nl-project-cover { flex: none; min-height: 0; aspect-ratio: 16/9; }
    .nl-project-body { padding: 32px 28px; }
    .nl-team-wrap { padding: 60px 24px 80px; }
    .nl-team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .nl-team-cta { padding: 60px 24px; }
    .nl-legal-wrap { padding: 60px 24px; }
}

/* ── GHOST DARK BUTTON ───────────────────────────────────────────────────── */

.nl-btn-ghost-dark {
    font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
    color: var(--muted); text-decoration: none; transition: color .2s;
    display: inline-flex; align-items: center;
}
.nl-btn-ghost-dark:hover { color: var(--text); }

/* ── PROJECT DETAIL ──────────────────────────────────────────────────────── */

.nl-project-detail-header { padding-bottom: 100px; }

.nl-project-detail-header-inner {
    display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start;
    margin-top: 16px;
}

.nl-project-detail-meta {
    display: flex; gap: 32px; flex-wrap: wrap; margin: 28px 0;
    padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.nl-detail-meta-item { min-width: 100px; }

.nl-project-detail-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.nl-project-detail-cover {
    border-radius: 6px; overflow: hidden; aspect-ratio: 3/4;
    box-shadow: 0 24px 64px var(--shadow);
}
.nl-project-detail-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── DETAIL SECTION WRAPPER ─────────────────────────────────────────────── */

.nl-detail-section { padding: 100px 0; }
.nl-accomm-section { background: var(--parch); }
.nl-detail-inner { max-width: 1200px; margin: 0 auto; padding: 0 52px; }

/* ── ITINERARY ──────────────────────────────────────────────────────────── */

.nl-itinerary-list { margin-top: 48px; display: flex; flex-direction: column; gap: 2px; }

.nl-itinerary-day {
    border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
    background: var(--card);
}

.nl-itin-head {
    width: 100%; display: flex; align-items: center; gap: 20px;
    padding: 22px 28px; cursor: pointer; background: none; border: none;
    text-align: left; transition: background .2s;
}
.nl-itin-head:hover { background: rgba(184, 85, 32, .04); }
.nl-itin-head.open { background: rgba(184, 85, 32, .06); }

.nl-itin-day-num {
    font-family: "Bebas Neue", sans-serif; font-size: 15px; letter-spacing: .12em;
    color: var(--terra); min-width: 60px; flex-shrink: 0;
}
.nl-itin-date {
    font-size: 13px; color: var(--muted); letter-spacing: .06em;
    min-width: 80px; flex-shrink: 0;
}
.nl-itin-title {
    font-family: "Cormorant Garamond", serif; font-size: 20px; font-weight: 600;
    color: var(--text); flex: 1; line-height: 1.2;
}
.nl-itin-chevron {
    flex-shrink: 0; color: var(--muted); transition: transform .25s;
}
.nl-itin-head.open .nl-itin-chevron { transform: rotate(180deg); }

.nl-itin-body {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.nl-itin-body p {
    font-size: 17px; color: var(--text2); line-height: 1.85; font-weight: 300;
    padding: 0 28px 28px; margin: 0;
}

/* ── ACCOMMODATIONS ─────────────────────────────────────────────────────── */

.nl-accomm-note {
    font-size: 17px; color: var(--text2); line-height: 1.75; font-weight: 300;
    max-width: 600px; margin-bottom: 48px;
}

.nl-accomm-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}

.nl-accomm-card {
    background: var(--card); border: 1px solid var(--border); border-radius: 8px;
    overflow: hidden; transition: box-shadow .25s, transform .25s;
}
.nl-accomm-card:hover { box-shadow: 0 16px 48px var(--shadow); transform: translateY(-3px); }

.nl-accomm-photos {
    display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px;
    height: 260px;
}
.nl-accomm-photo { overflow: hidden; }
.nl-accomm-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s; }
.nl-accomm-card:hover .nl-accomm-photo img { transform: scale(1.04); }
.nl-accomm-photo-main { grid-row: 1 / 3; }

.nl-accomm-body { padding: 28px 32px 32px; }
.nl-accomm-city {
    font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
    color: var(--terra); margin-bottom: 8px;
}
.nl-accomm-hotel {
    font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 600;
    color: var(--text); margin-bottom: 12px; line-height: 1.1;
}
.nl-accomm-desc { font-size: 16px; color: var(--text2); line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.nl-accomm-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: var(--terra); text-decoration: none;
    border-bottom: 1px solid rgba(184, 85, 32, .3); padding-bottom: 2px;
    transition: border-color .2s, gap .2s;
}
.nl-accomm-link:hover { border-color: var(--terra); gap: 11px; }

/* ── RESPONSIVE — PROJECT DETAIL ────────────────────────────────────────── */

@media (max-width: 960px) {
    .nl-project-detail-header-inner { grid-template-columns: 1fr; }
    .nl-project-detail-cover { aspect-ratio: 16/9; max-height: 340px; }
    .nl-detail-inner { padding: 0 24px; }
    .nl-detail-section { padding: 72px 0; }
    .nl-accomm-grid { grid-template-columns: 1fr; }
    .nl-itin-head { padding: 18px 20px; gap: 12px; }
    .nl-itin-date { display: none; }
    .nl-itin-body p { padding: 0 20px 20px; }
}

@media (max-width: 540px) {
    .nl-dest-grid { grid-template-columns: 1fr; height: auto; }
    .nl-dest-card { height: 280px; }
    .nl-team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
    .nl-ig-arrow { display: none; }
    .nl-dest-card:hover .nl-dest-hover { max-height: 0; opacity: 0; visibility: hidden; margin-top: 0; padding-top: 0; border-color: transparent; }
}
