@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --forest: #1a2e1c;
    --forest-mid: #243d26;
    --forest-lt: #2d5016;
    --earth: #3d2810;
    --earth-mid: #5a3c1a;
    --orange: #c8601a;
    --orange-lt: #e07840;
    --cream: #f5f0e4;
    --off-white: #faf7f0;
    --muted: #7a7060;
    --border: #d8ceb8;
    --dark: #0e1810;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--off-white);
    color: var(--dark);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ── NAV ── */
#nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: transparent;
    transition: background 0.4s ease, padding 0.3s ease, border-color 0.4s;
    border-bottom: 1px solid transparent;
}

#nav.scrolled {
    background: rgba(14, 24, 16, 0.96);
    backdrop-filter: blur(10px);
    padding: 0.9rem 3rem;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.12em;
    color: var(--off-white);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--orange-lt);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.2s;
}

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

.nav-book {
    background: var(--orange);
    color: var(--off-white);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    flex-shrink: 0;
    transition: background 0.2s;
}

.nav-book:hover {
    background: var(--orange-lt);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--off-white);
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 24, 16, 0.98);
    z-index: 99;
    padding-top: 80px;
}

.mobile-menu ul {
    list-style: none;
    padding: 2rem;
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--orange-lt);
}

.mobile-menu.open {
    display: block;
}

/* ── HERO ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(14, 24, 16, 0.2) 0%,
            rgba(14, 24, 16, 0.15) 40%,
            rgba(14, 24, 16, 0.75) 80%,
            rgba(14, 24, 16, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 5rem 3rem;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange-lt);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(224, 120, 64, 0.3);
}

.hero-location span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 11vw, 11rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    color: var(--off-white);
    margin-bottom: 2.5rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--orange-lt);
}

.hero-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 420px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    background: var(--orange);
    color: var(--off-white);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--orange-lt);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--off-white);
    padding: 0.9rem 2.5rem;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.2s;
}

.btn-ghost:hover {
    border-color: var(--off-white);
    background: rgba(255, 255, 255, 0.06);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(14, 24, 16, 0.6);
    backdrop-filter: blur(8px);
}

.hero-stat {
    flex: 1;
    padding: 1.5rem 2rem;
    text-align: center;
}

.hs-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--orange-lt);
    line-height: 1;
}

.hs-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.3rem;
}

.hs-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
    align-self: stretch;
    margin: 0.8rem 0;
}

/* ── TICKER ── */
.ticker {
    background: var(--forest);
    padding: 0.8rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    padding: 0 2.5rem;
    color: rgba(255, 255, 255, 0.55);
}

.ticker-item::after {
    content: '◆';
    margin-left: 2.5rem;
    color: var(--orange);
    opacity: 0.7;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── INTRO ── */
.intro {
    padding: 5rem;
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
}

.intro-inner {
    max-width: 900px;
}

.intro-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.2rem;
}

.intro h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.1;
    color: var(--forest);
    letter-spacing: 0.02em;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 0.95;
}

/* ── EXPERIENCES ── */
.experiences {
    background: var(--cream);
}

.exp-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 1px;
    background: var(--border);
}

.exp-feature {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.exp-img {
    position: absolute;
    inset: 0;
}

.exp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: transform 0.8s ease, filter 0.4s;
}

.exp-feature:hover .exp-img img {
    transform: scale(1.04);
    filter: brightness(0.65);
}

.exp-overlay {
    position: absolute;
    inset: 0;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(14, 24, 16, 0.9) 0%, rgba(14, 24, 16, 0.2) 60%, transparent 100%);
}

.exp-tag {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--orange);
    color: var(--off-white);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    font-weight: 500;
}

.exp-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.exp-overlay h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.03em;
    color: var(--off-white);
    margin-bottom: 0.8rem;
}

.exp-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 380px;
}

.exp-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.exp-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--orange-lt);
    letter-spacing: 0.05em;
}

.exp-duration {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.exp-stack {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
}

.exp-card {
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.exp-card-img {
    height: 200px;
    overflow: hidden;
}

.exp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.85);
    transition: transform 0.6s ease;
}

.exp-card:hover .exp-card-img img {
    transform: scale(1.05);
}

.exp-card-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.exp-num-sm {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    color: var(--orange);
    letter-spacing: 0.12em;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.exp-card-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--forest);
    margin-bottom: 0.7rem;
}

.exp-card-body p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.exp-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
}

.exp-row-card {
    background: var(--off-white);
    overflow: hidden;
    transition: background 0.2s;
}

.exp-row-card:hover {
    background: var(--cream);
}

.exp-row-img {
    height: 220px;
    overflow: hidden;
}

.exp-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.85);
    transition: transform 0.6s ease;
}

.exp-row-card:hover .exp-row-img img {
    transform: scale(1.06);
}

.exp-row-body {
    padding: 2rem;
}

.exp-row-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    color: var(--forest);
    margin-bottom: 0.7rem;
    margin-top: 0.5rem;
}

.exp-row-body p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

/* ── ABOUT ── */
.about {
    background: var(--dark);
}

.about-landscape {
    position: relative;
    height: 50vh;
    overflow: hidden;
}

.about-landscape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) saturate(0.8);
}

.about-landscape-caption {
    position: absolute;
    bottom: 1.2rem;
    right: 2rem;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-text {
    padding: 6rem 5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.about-text .section-label {
    color: var(--orange);
    margin-bottom: 1rem;
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    color: var(--off-white);
    line-height: 1;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    max-width: 420px;
}

.about-values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.av-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.av-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.av-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.about-stats {
    padding: 6rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-content: start;
}

.about-stat {
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.about-stat:nth-child(2n) {
    border-right: none;
}

.about-stat:nth-last-child(-n+2) {
    border-bottom: none;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--orange-lt);
    line-height: 1;
}

.stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.3rem;
}

/* ── PROCESS ── */
.process {
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    inset: 0;
}

.process-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35) saturate(0.5);
}

.process-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 24, 16, 0.75);
}

.process-content {
    position: relative;
    z-index: 2;
    padding: 7rem 5rem;
}

.process-header {
    margin-bottom: 5rem;
}

.process-header .section-label {
    color: var(--orange-lt);
}

.process-header .section-title {
    color: var(--off-white);
    margin-top: 0.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.step {
    border-top: 2px solid rgba(200, 96, 26, 0.4);
    padding-top: 2rem;
}

.step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 1.2rem;
}

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    color: var(--off-white);
    margin-bottom: 0.8rem;
}

.step p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

/* ── FAQ ── */
.faq {
    padding: 7rem 5rem;
    background: var(--cream);
}

.faq-inner {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 7rem;
}

.faq-header .section-title {
    margin: 0.5rem 0 1.5rem;
    color: var(--forest);
}

.faq-sub {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.8;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    padding: 1.7rem 0;
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--orange);
    transition: transform 0.3s;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    max-height: 250px;
    padding-bottom: 1.7rem;
}

/* ── CONTACT ── */
.contact {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.7);
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(14, 24, 16, 0.85) 0%, rgba(14, 24, 16, 0.3) 100%);
}

.contact-content {
    position: relative;
    z-index: 2;
    padding: 6rem 5rem;
    width: 100%;
}

.contact-card {
    max-width: 520px;
}

.contact-card .section-label {
    color: var(--orange-lt);
    margin-bottom: 1rem;
}

.contact-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: var(--off-white);
    line-height: 1;
    margin-bottom: 1rem;
}

.contact-card>p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1rem;
}

.ci-label {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange-lt);
    font-weight: 500;
    padding-top: 0.1rem;
}

.ci-value {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    padding: 3rem 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
}

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

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.08em;
    font-style: italic;
}

.footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.05em;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    opacity: 0;
    animation: fadeUp 0.9s ease forwards;
}

.hero-location {
    animation-delay: 0.1s;
}

.hero h1 {
    animation-delay: 0.25s;
}

.hero-bottom {
    animation-delay: 0.45s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }

    .exp-feature {
        min-height: 480px;
    }

    .exp-stack {
        flex-direction: row;
    }

    .exp-card {
        flex: 1;
    }
}

@media (max-width: 900px) {
    #nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-book {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 0 2rem 2rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 16vw, 8rem);
    }

    .hero-bottom {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 40%;
    }

    .hs-divider {
        display: none;
    }

    .intro {
        padding: 4rem 2rem;
    }

    .exp-grid {
        grid-template-columns: 1fr;
    }

    .exp-stack {
        flex-direction: column;
    }

    .exp-row {
        grid-template-columns: 1fr;
    }

    .about-body {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 4rem 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .about-stats {
        padding: 3rem 2rem;
    }

    .process-content {
        padding: 5rem 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .faq {
        padding: 5rem 2rem;
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-content {
        padding: 5rem 2rem;
    }

    footer {
        padding: 2.5rem 2rem;
    }
}