:root {
    --forest: #183524;
    --forest-dark: #10271a;
    --green: #5d714a;
    --green-light: #84936b;
    --cream: #f3f0e5;
    --cream-dark: #e7e1d1;
    --paper: #faf8f1;
    --brown: #76543d;
    --terracotta: #bd6a3c;
    --text: #203026;
    --muted: #667068;
    --white: #ffffff;
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.65;
}

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

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

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    letter-spacing: .14em;
    font-weight: 600;
}

.logo b {
    font-weight: 300;
    opacity: .72;
}

.logo-mark {
    width: 35px;
    height: 30px;
    position: relative;
    display: inline-block;
}

.logo-mark i {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.logo-mark i:nth-child(1) { left: 2px; top: 17px; }
.logo-mark i:nth-child(2) { left: 10px; top: 11px; }
.logo-mark i:nth-child(3) { left: 18px; top: 5px; }
.logo-mark i:nth-child(4) { left: 25px; top: 14px; }
.logo-mark i:nth-child(5) { left: 16px; top: 23px; }

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,.78);
    transition: .2s ease;
}

.nav a:hover,
.nav a.active {
    color: #fff;
}

.menu-toggle {
    display: none;
}


/* HERO */

.hero {
    min-height: 760px;
    height: 100vh;
    max-height: 950px;
    position: relative;
    overflow: hidden;
    background: #183524;
}

.hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,28,17,.78) 0%, rgba(10,28,17,.48) 42%, rgba(10,28,17,.08) 75%),
        linear-gradient(0deg, rgba(10,28,17,.35), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-text {
    max-width: 760px;
    color: white;
}

.eyebrow,
.section-label {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .19em;
    color: var(--green);
    margin-bottom: 18px;
}

.eyebrow {
    color: rgba(255,255,255,.78);
}

.hero h1 {
    margin: 0 0 28px;
    font-size: clamp(50px, 6vw, 88px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.045em;
}

.hero p {
    margin: 0;
    max-width: 650px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-top: 38px;
}

.button {
    min-height: 52px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--cream);
    color: var(--forest);
}

.button-glass {
    border: 1px solid rgba(255,255,255,.45);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    color: white;
}

.button-light {
    background: var(--cream);
    color: var(--forest);
}

.button-dark {
    background: var(--forest);
    color: white;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    text-align: center;
}

.scroll-line {
    width: 1px;
    height: 32px;
    margin: 12px auto 0;
    background: rgba(255,255,255,.55);
}


/* GENERAL SECTIONS */

.section {
    padding: 120px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.split-layout.reverse {
    grid-template-columns: 1.05fr .95fr;
}

.section-text h2,
.section-heading h2,
.micro-content h2,
.wide-story h2,
.about-preview h2 {
    margin: 0 0 27px;
    font-size: clamp(43px, 5vw, 70px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.035em;
}

.section-text p,
.section-heading p {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 16px;
}

.section-text .lead {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--text);
    font-size: 23px;
    line-height: 1.45;
}

.text-link {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    margin-top: 17px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--forest);
}

.text-link span {
    font-size: 20px;
    transition: transform .2s;
}

.text-link:hover span {
    transform: translateX(5px);
}

.image-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.image-card img {
    height: 570px;
    object-fit: cover;
}

.image-card.large img {
    height: 650px;
}

.image-caption {
    padding: 13px 2px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 12px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* TRAVEL */

.travel-section {
    background: var(--paper);
}

.travel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d8d4c7;
    border-bottom: 1px solid #d8d4c7;
}

.travel-card {
    padding: 42px 30px 46px;
    position: relative;
    border-right: 1px solid #d8d4c7;
}

.travel-card:last-child {
    border-right: 0;
}

.travel-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 60px;
    border: 1px solid #b7beaa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 25px;
}

.card-number {
    position: absolute;
    right: 24px;
    top: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #9aa093;
}

.travel-card h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 14px;
}

.travel-card p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 14px;
}


/* MICRO */

.micro-section {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--forest-dark);
}

.micro-image img {
    height: 100%;
    min-height: 760px;
    object-fit: cover;
}

.micro-content {
    padding: 90px clamp(50px, 7vw, 120px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.section-label.light {
    color: #aeba99;
}

.micro-content p {
    max-width: 550px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.68);
}

.fact-list {
    margin: 35px 0 40px;
}

.fact {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.13);
}

.fact:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}

.fact > span {
    padding-top: 3px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: #aeba99;
}

.fact h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 400;
}

.fact p {
    margin: 0;
    font-size: 13px;
}

.micro-content .button {
    align-self: flex-start;
}


/* PLANTS */

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.feature-card {
    background: var(--paper);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-image {
    height: 410px;
    overflow: hidden;
}

.feature-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.035);
}

.feature-content {
    padding: 34px 36px 38px;
}

.feature-content > span,
.article-body > span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--terracotta);
}

.feature-content h3 {
    font-size: 34px;
    font-weight: 400;
    margin: 10px 0 12px;
}

.feature-content p,
.feature-content a {
    font-family: Arial, Helvetica, sans-serif;
}

.feature-content p {
    color: var(--muted);
}

.feature-content a {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}


/* WIDE STORY */

.wide-story {
    height: 680px;
    position: relative;
    overflow: hidden;
}

.wide-story-image,
.wide-story-image img,
.wide-story-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wide-story-image img {
    object-fit: cover;
}

.wide-story-overlay {
    background: linear-gradient(90deg, rgba(15,39,25,.83), rgba(15,39,25,.1));
}

.wide-story-content {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    color: white;
}

.wide-story-content > div {
    max-width: 600px;
}

.wide-story p {
    max-width: 540px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.75);
    font-size: 16px;
    margin-bottom: 30px;
}


/* ARTICLES */

.heading-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    overflow: hidden;
    background: var(--paper);
    border-radius: 18px;
}

.article-card > img {
    height: 260px;
    object-fit: cover;
}

.article-body {
    padding: 28px;
}

.article-body h3 {
    margin: 10px 0 13px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
}

.article-body p,
.article-body a {
    font-family: Arial, Helvetica, sans-serif;
}

.article-body p {
    color: var(--muted);
    font-size: 14px;
}

.article-body a {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 13px;
}

.mobile-link {
    display: none;
}


/* GALLERY */

.gallery-preview {
    background: var(--paper);
}

.gallery-grid {
    height: 640px;
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 13px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

.g1 {
    grid-row: 1 / 3;
}

.g4 {
    grid-column: 3;
    grid-row: 1 / 3;
}

.center-button {
    text-align: center;
    margin-top: 42px;
}


/* ABOUT */

.about-preview {
    padding: 110px 0;
    background: var(--forest);
    color: white;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.about-preview p {
    max-width: 570px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.72);
    font-size: 17px;
}

.light-link {
    color: white;
}


/* FOOTER */

.footer {
    padding: 75px 0 28px;
    background: #0c1f14;
    color: white;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 65px;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-brand p,
.footer-column a,
.footer-bottom {
    font-family: Arial, Helvetica, sans-serif;
}

.footer-brand p {
    color: rgba(255,255,255,.5);
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-column h4 {
    margin: 0 0 10px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #9aaa8e;
}

.footer-column a {
    color: rgba(255,255,255,.64);
    font-size: 13px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.11);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.38);
    font-size: 11px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .header-inner {
        height: 72px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        border: 0;
        background: transparent;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }

    .menu-toggle span {
        width: 24px;
        height: 1px;
        margin-left: auto;
        background: white;
    }

    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 25px 24px 30px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        background: rgba(12,31,20,.97);
    }

    .nav.open {
        display: flex;
    }

    .hero {
        min-height: 720px;
    }

    .hero-image {
        object-position: 42% center;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 80px 0;
    }

    .split-layout,
    .split-layout.reverse,
    .feature-grid,
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .image-card img,
    .image-card.large img {
        height: auto;
        max-height: 620px;
    }

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

    .travel-card:nth-child(2) {
        border-right: 0;
    }

    .travel-card:nth-child(-n+2) {
        border-bottom: 1px solid #d8d4c7;
    }

    .micro-section {
        grid-template-columns: 1fr;
    }

    .micro-image img {
        min-height: 0;
        height: auto;
    }

    .micro-content {
        padding: 75px 32px;
    }

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

    .article-card {
        display: grid;
        grid-template-columns: .85fr 1.15fr;
    }

    .article-card > img {
        height: 100%;
        min-height: 280px;
    }

    .gallery-grid {
        height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 260px);
    }

    .g1,
    .g4 {
        grid-column: auto;
        grid-row: auto;
    }

    .g1 {
        grid-column: 1 / 3;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / 3;
    }
}


@media (max-width: 600px) {

    .hero {
        min-height: 700px;
        height: 100svh;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .button {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    .section-text h2,
    .section-heading h2,
    .micro-content h2,
    .wide-story h2,
    .about-preview h2 {
        font-size: 41px;
    }

    .section-text .lead {
        font-size: 20px;
    }

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

    .travel-card {
        border-right: 0;
        border-bottom: 1px solid #d8d4c7;
    }

    .travel-card:last-child {
        border-bottom: 0;
    }

    .feature-image {
        height: 280px;
    }

    .wide-story {
        height: 620px;
    }

    .wide-story-image img {
        object-position: 55% center;
    }

    .article-card {
        display: block;
    }

    .article-card > img {
        height: 240px;
        min-height: 0;
    }

    .desktop-link {
        display: none;
    }

    .mobile-link {
        display: inline-flex;
        margin-top: 30px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 180px 180px;
    }

    .g1 {
        grid-column: 1 / 3;
    }

    .about-inner {
        gap: 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
}


/* =========================================
   INNER PAGES / GALLERY
   ========================================= */

.inner-page {
    background: var(--cream);
}

.inner-header {
    position: absolute;
    background: rgba(12, 31, 20, .18);
}

.page-hero {
    min-height: 470px;
    padding: 175px 0 90px;
    display: flex;
    align-items: flex-end;
    background: var(--forest);
    color: white;
}

.gallery-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(12,31,20,.95), rgba(24,53,36,.86)),
        url('/assets/images/7.jpg') center 47% / cover no-repeat;
}

.gallery-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255,255,255,.08), transparent 30%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(64px, 8vw, 108px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.05em;
}

.page-hero p {
    max-width: 670px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.73);
}


.gallery-page-section {
    padding: 95px 0 120px;
}

.gallery-intro {
    width: min(720px, 100%);
    margin: 0 0 70px auto;
}

.gallery-intro p {
    margin: 0;
    font-size: 25px;
    line-height: 1.48;
    color: var(--text);
}


.full-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 28px;
}

.full-gallery-item {
    margin: 0;
}

.full-gallery-item.gallery-wide {
    grid-column: 1 / 3;
}

.gallery-open {
    position: relative;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    cursor: zoom-in;
    background: var(--forest-dark);
}

.gallery-open img {
    width: 100%;
    height: 455px;
    object-fit: cover;
    transition:
        transform .7s cubic-bezier(.2,.7,.2,1),
        opacity .4s ease;
}

.gallery-wide .gallery-open img {
    height: 650px;
}

.gallery-open:hover img {
    transform: scale(1.025);
    opacity: .92;
}

.gallery-zoom {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243,240,229,.92);
    color: var(--forest);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 300;
    transform: translateY(8px);
    opacity: 0;
    transition: .3s ease;
}

.gallery-open:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

.full-gallery-item figcaption {
    padding: 22px 5px 0;
}

.full-gallery-item figcaption > span {
    display: block;
    margin-bottom: 7px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .17em;
    color: var(--terracotta);
}

.full-gallery-item figcaption h2 {
    margin: 0 0 7px;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 400;
}

.full-gallery-item figcaption p {
    max-width: 650px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 14px;
}


.gallery-more {
    padding: 100px 0;
    background: var(--forest);
    color: white;
}

.gallery-more-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.gallery-more h2 {
    margin: 0;
    max-width: 600px;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -.035em;
}

.gallery-more p {
    max-width: 560px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.68);
}


/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    padding: 45px;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(6, 15, 10, .96);
    backdrop-filter: blur(8px);
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    max-width: 1380px;
    max-height: calc(100vh - 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    width: auto;
    max-width: 100%;
    max-height: calc(100vh - 145px);
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-caption {
    padding-top: 15px;
    color: rgba(255,255,255,.7);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    z-index: 2;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    background: transparent;
    color: white;
    font-size: 35px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,.1);
}

body.lightbox-active {
    overflow: hidden;
}


@media (max-width: 900px) {

    .page-hero {
        min-height: 420px;
        padding-top: 145px;
    }

    .full-gallery {
        gap: 50px 20px;
    }

    .gallery-open img {
        height: 330px;
    }

    .gallery-wide .gallery-open img {
        height: 490px;
    }

    .gallery-more-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


@media (max-width: 600px) {

    .page-hero {
        min-height: 390px;
        padding: 130px 0 60px;
    }

    .page-hero h1 {
        font-size: 62px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .gallery-page-section {
        padding: 65px 0 80px;
    }

    .gallery-intro {
        margin-bottom: 45px;
    }

    .gallery-intro p {
        font-size: 21px;
    }

    .full-gallery {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .full-gallery-item.gallery-wide {
        grid-column: auto;
    }

    .gallery-open img,
    .gallery-wide .gallery-open img {
        height: 310px;
    }

    .gallery-zoom {
        opacity: 1;
        transform: none;
        width: 42px;
        height: 42px;
    }

    .full-gallery-item figcaption h2 {
        font-size: 27px;
    }

    .gallery-more {
        padding: 75px 0;
    }

    .lightbox {
        padding: 16px;
    }

    .lightbox-content img {
        max-height: calc(100vh - 110px);
    }

    .lightbox-close {
        top: 13px;
        right: 13px;
        width: 45px;
        height: 45px;
    }

}


/* =========================================
   ABOUT PAGE
   ========================================= */

.about-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(11,29,18,.94), rgba(18,50,31,.7)),
        url('/assets/images/1.jpg') center 48% / cover no-repeat;
}

.about-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(9,25,15,.32), transparent 55%);
    pointer-events: none;
}

.about-intro-section {
    background: var(--cream);
}


/* PURPOSE */

.about-purpose {
    padding: 115px 0;
    background: var(--forest-dark);
    color: white;
}

.about-purpose-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 110px;
}

.about-purpose h2 {
    margin: 0;
    max-width: 550px;
    font-size: clamp(44px, 5vw, 67px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -.035em;
}

.about-purpose-text p {
    margin-top: 0;
    margin-bottom: 21px;
    max-width: 620px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255,255,255,.68);
}


/* TOPICS */

.about-topics-section {
    background: var(--paper);
}

.about-topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #d8d4c7;
    border-bottom: 1px solid #d8d4c7;
}

.about-topic-card {
    min-height: 315px;
    padding: 34px 27px 40px;
    border-right: 1px solid #d8d4c7;
}

.about-topic-card:last-child {
    border-right: 0;
}

.about-topic-card > span {
    display: block;
    margin-bottom: 85px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #989e91;
}

.about-topic-card h3 {
    margin: 0 0 15px;
    font-size: 30px;
    font-weight: 400;
}

.about-topic-card p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}


/* VISUAL STORY */

.about-visual-story {
    padding: 130px 0;
    background: var(--cream);
}

.about-visual-grid {
    display: grid;
    grid-template-columns: .85fr 1fr .75fr;
    gap: 38px;
    align-items: center;
}

.about-visual-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-visual-image img {
    height: 480px;
    object-fit: cover;
}

.about-visual-image.tall img {
    height: 620px;
}

.about-visual-copy {
    padding: 0 22px;
}

.about-visual-copy h2 {
    margin: 0 0 27px;
    font-size: clamp(40px, 4vw, 57px);
    line-height: 1.03;
    font-weight: 400;
    letter-spacing: -.035em;
}

.about-visual-copy p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: var(--muted);
}


/* MICRO */

.about-micro {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 730px;
    background: var(--forest);
    color: white;
}

.about-micro-image img {
    width: 100%;
    height: 100%;
    min-height: 730px;
    object-fit: cover;
}

.about-micro-content {
    padding: 90px clamp(45px, 6vw, 105px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-micro-content h2 {
    margin: 0 0 28px;
    font-size: clamp(45px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -.04em;
}

.about-micro-content p {
    max-width: 510px;
    margin: 0 0 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.7);
}

.about-micro-content .button {
    align-self: flex-start;
    margin-top: 21px;
}


/* PRINCIPLES */

.about-principles {
    background: var(--paper);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.principle {
    min-height: 310px;
    padding: 37px;
    border: 1px solid #d9d5c9;
    border-radius: 18px;
}

.principle > span {
    display: block;
    margin-bottom: 85px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: var(--terracotta);
}

.principle h3 {
    margin: 0 0 14px;
    font-size: 29px;
    font-weight: 400;
}

.principle p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 14px;
}


/* QUOTE */

.about-quote {
    padding: 135px 0;
    background: var(--cream);
}

.about-quote-inner {
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.about-quote-inner > span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--terracotta);
}

.about-quote blockquote {
    margin: 31px 0 0;
    font-size: clamp(39px, 5vw, 66px);
    line-height: 1.13;
    letter-spacing: -.03em;
}


/* NEXT */

.about-next {
    padding: 100px 0;
    background: var(--forest);
    color: white;
}

.about-next-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

.about-next h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(43px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -.035em;
}

.about-next-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


@media (max-width: 1000px) {

    .about-purpose-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

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

    .about-topic-card:nth-child(2) {
        border-right: 0;
    }

    .about-topic-card:nth-child(-n+2) {
        border-bottom: 1px solid #d8d4c7;
    }

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

    .about-visual-copy {
        grid-column: 1 / 3;
        grid-row: 1;
        max-width: 760px;
        padding: 0 0 20px;
    }

    .about-visual-image.tall img,
    .about-visual-image img {
        height: 500px;
    }

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

    .about-micro-image img {
        min-height: 0;
        height: auto;
    }

    .about-next-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 700px) {

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

    .about-topic-card {
        min-height: 260px;
        border-right: 0;
        border-bottom: 1px solid #d8d4c7;
    }

    .about-topic-card:last-child {
        border-bottom: 0;
    }

    .about-topic-card > span {
        margin-bottom: 55px;
    }

    .about-visual-story {
        padding: 80px 0;
    }

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

    .about-visual-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .about-visual-image.tall img,
    .about-visual-image img {
        height: 380px;
    }

    .about-micro-content {
        padding: 70px 25px;
    }

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

    .principle {
        min-height: 260px;
    }

    .principle > span {
        margin-bottom: 55px;
    }

    .about-quote {
        padding: 90px 0;
    }

    .about-next-actions {
        width: 100%;
        flex-direction: column;
    }

}


/* =========================================
   PRIVACY PAGE
   ========================================= */

.privacy-page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(10,29,18,.96), rgba(23,53,35,.82)),
        url('/assets/images/6.jpg') center 55% / cover no-repeat;
}

.privacy-page-hero h1 {
    max-width: 950px;
}

.privacy-section {
    padding: 110px 0 130px;
    background: var(--paper);
}

.privacy-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 760px);
    gap: 100px;
    justify-content: center;
    align-items: start;
}

.privacy-aside {
    position: sticky;
    top: 40px;
}

.privacy-aside p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

.privacy-content section {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid #d9d5c8;
}

.privacy-content section:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-content h2 {
    margin: 0 0 22px;
    font-size: 31px;
    line-height: 1.2;
    font-weight: 400;
}

.privacy-content p,
.privacy-content li {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

.privacy-content p {
    margin: 0 0 17px;
}

.privacy-content ul {
    margin: 20px 0 23px;
    padding-left: 21px;
}

.privacy-content li {
    margin-bottom: 7px;
}

.privacy-end {
    padding: 95px 0;
    background: var(--forest);
    color: white;
}

.privacy-end-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}

.privacy-end h2 {
    max-width: 670px;
    margin: 0;
    font-size: clamp(40px, 5vw, 61px);
    line-height: 1.04;
    font-weight: 400;
    letter-spacing: -.035em;
}


@media (max-width: 850px) {

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .privacy-aside {
        position: static;
        padding-bottom: 30px;
        border-bottom: 1px solid #d9d5c8;
    }

    .privacy-end-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .privacy-page-hero h1 {
        font-size: 48px;
    }

    .privacy-section {
        padding: 70px 0 85px;
    }

    .privacy-content h2 {
        font-size: 27px;
    }

    .privacy-end {
        padding: 75px 0;
    }

}


/* =========================================
   ARTICLES INDEX
   ========================================= */

.articles-page-hero {
    position: relative;
    background:
        linear-gradient(90deg, rgba(10,29,18,.94), rgba(23,53,35,.68)),
        url('/assets/images/3.jpg') center 48% / cover no-repeat;
}

.articles-index-section {
    padding: 110px 0 130px;
    background: var(--cream);
}

.articles-index-intro {
    max-width: 760px;
    margin: 0 0 80px auto;
}

.articles-index-intro p {
    margin: 0;
    font-size: 25px;
    line-height: 1.5;
}

.featured-article {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--forest-dark);
    color: white;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 95px;
}

.featured-image {
    min-height: 600px;
    overflow: hidden;
}

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

.featured-image:hover img {
    transform: scale(1.025);
}

.featured-copy {
    padding: 65px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-category {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .17em;
    color: var(--terracotta);
}

.featured-copy h2 {
    margin: 15px 0 23px;
    font-size: clamp(38px, 4vw, 56px);
    line-height: 1.04;
    font-weight: 400;
}

.featured-copy > p {
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.67);
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    color: var(--muted);
}

.featured-copy .article-meta {
    color: rgba(255,255,255,.44);
}

.featured-copy .text-link {
    color: white;
    margin-top: 32px;
}

.articles-index-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.index-article-card {
    background: var(--paper);
    border-radius: 20px;
    overflow: hidden;
}

.index-article-image {
    height: 390px;
    overflow: hidden;
    display: block;
}

.index-article-image img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.index-article-card:hover img {
    transform: scale(1.025);
}

.index-article-copy {
    padding: 34px 36px 40px;
}

.index-article-copy h2 {
    margin: 12px 0 15px;
    font-size: 34px;
    line-height: 1.12;
    font-weight: 400;
}

.index-article-copy p,
.index-article-copy > a {
    font-family: Arial, Helvetica, sans-serif;
}

.index-article-copy p {
    color: var(--muted);
}

.index-article-copy > a {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.articles-coming {
    margin-top: 110px;
    padding: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    background: var(--forest);
    color: white;
    border-radius: 22px;
}

.articles-coming h2 {
    margin: 0;
    font-size: 45px;
    line-height: 1.05;
    font-weight: 400;
}

.articles-coming > p {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: rgba(255,255,255,.68);
}


/* =========================================
   SINGLE ARTICLE
   ========================================= */

.article-header {
    position: absolute;
}

.article-hero {
    padding: 175px 0 105px;
    background: var(--forest-dark);
    color: white;
}

.culture-article-hero {
    background: #263a25;
}

.ecology-article-hero {
    background: #173a29;
}

.article-hero-inner {
    max-width: 1040px;
}

.article-back {
    display: inline-block;
    margin-bottom: 60px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}

.light-category {
    color: #b7c79c;
}

.article-hero h1 {
    max-width: 1000px;
    margin: 14px 0 28px;
    font-size: clamp(52px, 6vw, 82px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.045em;
}

.article-lead {
    max-width: 760px;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.7);
}

.article-meta-light {
    color: rgba(255,255,255,.43);
    margin-top: 35px;
}

.article-cover {
    padding: 65px 0 0;
    background: var(--cream);
}

.article-cover img {
    height: min(650px, 65vw);
    object-fit: cover;
    border-radius: 22px;
}

.article-body-section {
    padding: 100px 0 130px;
    background: var(--cream);
}

.article-layout {
    display: grid;
    grid-template-columns: 210px minmax(0, 760px);
    gap: 95px;
    justify-content: center;
    align-items: start;
}

.article-aside {
    position: sticky;
    top: 35px;
    padding-top: 8px;
}

.article-aside > span,
.article-source > span,
.article-fact > span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .17em;
    color: var(--terracotta);
}

.article-aside p {
    margin: 18px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
}

.article-content {
    font-size: 20px;
}

.article-content > p {
    margin: 0 0 28px;
    line-height: 1.72;
}

.article-content .article-opening {
    margin-bottom: 60px;
    font-size: 28px;
    line-height: 1.48;
}

.article-content h2 {
    margin: 70px 0 24px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: -.025em;
}

.article-inline-image {
    margin: 65px 0;
}

.article-inline-image img {
    max-height: 570px;
    object-fit: cover;
    border-radius: 18px;
}

.article-inline-image figcaption {
    margin-top: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--muted);
    font-size: 11px;
}

.article-fact {
    margin: 60px 0;
    padding: 35px 38px;
    background: var(--paper);
    border-left: 3px solid var(--terracotta);
}

.article-fact p {
    margin: 12px 0 0;
    font-size: 21px;
    line-height: 1.55;
}

.article-source {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid #cec9bb;
}

.article-source p {
    margin: 13px 0 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

.article-next {
    padding: 95px 0;
    background: var(--forest);
    color: white;
}

.article-next span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    letter-spacing: .18em;
    color: #aabd9d;
}

.article-next h2 {
    max-width: 900px;
    margin: 20px 0 0;
    font-size: clamp(37px, 5vw, 58px);
    line-height: 1.08;
    font-weight: 400;
}


@media (max-width: 900px) {

    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 0;
        height: 480px;
    }

    .articles-index-grid {
        grid-template-columns: 1fr;
    }

    .articles-coming {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .article-aside {
        position: static;
        padding-bottom: 30px;
        border-bottom: 1px solid #d0ccbf;
    }

}


@media (max-width: 600px) {

    .articles-index-section {
        padding: 70px 0 90px;
    }

    .articles-index-intro p {
        font-size: 21px;
    }

    .featured-image {
        height: 310px;
    }

    .featured-copy {
        padding: 38px 27px;
    }

    .featured-copy h2 {
        font-size: 37px;
    }

    .index-article-image {
        height: 280px;
    }

    .index-article-copy {
        padding: 28px 25px 32px;
    }

    .index-article-copy h2 {
        font-size: 29px;
    }

    .articles-coming {
        padding: 38px 27px;
        margin-top: 70px;
    }

    .articles-coming h2 {
        font-size: 36px;
    }

    .article-hero {
        padding: 135px 0 75px;
    }

    .article-back {
        margin-bottom: 40px;
    }

    .article-hero h1 {
        font-size: 45px;
    }

    .article-lead {
        font-size: 16px;
    }

    .article-cover {
        padding-top: 25px;
    }

    .article-cover img {
        height: 330px;
        border-radius: 14px;
    }

    .article-body-section {
        padding: 65px 0 85px;
    }

    .article-content {
        font-size: 18px;
    }

    .article-content .article-opening {
        font-size: 23px;
    }

    .article-content h2 {
        margin-top: 55px;
        font-size: 34px;
    }

    .article-fact {
        padding: 28px 24px;
    }

    .article-fact p {
        font-size: 19px;
    }

}


/* =========================================
   404 PAGE
   ========================================= */

.error-screen {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--forest-dark);
    color: white;
}

.error-background,
.error-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.error-background {
    object-fit: cover;
}

.error-overlay {
    background:
        linear-gradient(90deg, rgba(8,24,14,.9), rgba(8,24,14,.5)),
        linear-gradient(0deg, rgba(8,24,14,.4), transparent);
}

.error-content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 70px;
    display: flex;
    flex-direction: column;
}

.error-logo {
    align-self: flex-start;
}

.error-copy {
    width: min(700px, 100%);
    margin-top: auto;
    margin-bottom: auto;
}

.error-code {
    margin-bottom: -15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    letter-spacing: .15em;
    color: #b6c5a2;
}

.error-copy h1 {
    margin: 20px 0 25px;
    font-size: clamp(52px, 7vw, 88px);
    line-height: .98;
    font-weight: 400;
    letter-spacing: -.045em;
}

.error-copy p {
    max-width: 600px;
    margin: 0 0 33px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.72);
}

.error-copy .button {
    width: auto;
}


@media (max-width: 600px) {

    .error-content {
        padding-top: 27px;
    }

    .error-copy h1 {
        font-size: 48px;
    }

}
