:root {
    --accent: #c9a227;
}

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

body {
    background-color: #050505;
    background-image: radial-gradient(circle at 50% 0%, #141414 0%, #050505 55%);
    background-attachment: fixed;
    color: #e5e5e5;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    color: #ffffff;
    text-transform: uppercase;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: absolute;
    width: 100%;
    z-index: 10;
}

@media (max-width: 640px) {
    .site-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 24px 20px;
    }
    .main-nav ul {
        justify-content: center;
    }
}

.logo {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
}

.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px clamp(16px, 3vw, 30px);
    list-style: none;
}

.main-nav a {
    color: #a6a6a6;
    text-decoration: none;
    font-size: clamp(0.78rem, 1.8vw, 0.85rem);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    white-space: nowrap;
    transition: color 0.4s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--accent);
}

.hero-section {
    min-height: 100vh;

    padding-top: clamp(130px, 20vh, 190px);
    box-sizing: border-box;

    background: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.72)),
                url('Namibie/DSCF0971-min.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 6vw, 3.5rem);
    margin-bottom: 20px;
    letter-spacing: clamp(2px, 1vw, 8px);
    animation: fadeIn 1.5s ease-out;
}

.hero-content p {
    font-size: clamp(0.95rem, 2.4vw, 1.1rem);
    font-weight: 300;
    letter-spacing: clamp(1px, 0.4vw, 2px);
    margin-bottom: 40px;
    color: #cccccc;
}

.intro-section {
    padding: 100px 0;
    text-align: center;
    background-color: transparent;
}

.intro-section h2 {
    font-size: clamp(1.45rem, 4vw, 1.8rem);
    margin-bottom: 30px;
}

.intro-section .lead {
    font-size: clamp(0.95rem, 2.3vw, 1.1rem);
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    color: #999999;
}

.btn {
    display: inline-block;
    padding: clamp(10px, 1.6vw, 12px) clamp(22px, 4vw, 30px);
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(0.72rem, 1.8vw, 0.8rem);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    transition: all 0.4s ease;
}

.btn:hover {
    background-color: #ffffff;
    color: #0d0d0d;
}

.page-header {
    text-align: center;
    padding: 150px 0 50px 0;
}

.page-header p.lead {
    color: #999999;
    font-weight: 300;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
    margin-top: 10px;
}

.gallery-title {
    display: inline-block;
    font-size: clamp(1.9rem, 5.5vw, 2.6rem);
    margin-bottom: 45px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.gallery-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin-top: 16px;
}

.gallery-title.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-divider {
    border: 0;
    height: 1px;
    margin: 70px 0 50px 0;
    background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
    opacity: 0.45;
}

.marquee-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 60px;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    gap: 18px;
    width: max-content;
    position: relative;
    will-change: transform, left;


    animation: ping-pong-left 80s ease-in-out infinite alternate;
}

.marquee-track.reverse-track {
    animation-name: ping-pong-right;
}

.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes ping-pong-left {
    0% {
        left: 0;
        transform: translateX(0);
    }
    100% {
        left: 100%;
        transform: translateX(-100%);
    }
}

@keyframes ping-pong-right {
    0% {
        left: 100%;
        transform: translateX(-100%);
    }
    100% {
        left: 0;
        transform: translateX(0);
    }
}

.marquee-track .grid-item {
    flex: none;
    height: 320px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.marquee-track .grid-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.marquee-track .grid-item img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.marquee-track .grid-item img:hover {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    padding-bottom: 100px;
}

.destination-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 2px;
    text-decoration: none;
    color: #ffffff;
}

.destination-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.destination-info {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(13, 13, 13, 0.9));
}

.destination-info h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.destination-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #cccccc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.video-background-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(rgba(5, 5, 5, 0.45), rgba(5, 5, 5, 0.65) 70%, #050505 100%);
    z-index: -1;
}

.video-background-container .hero-content {
    position: relative;
    z-index: 1;
}

.photo-hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.photo-hero-container .hero-content {
    position: relative;
    z-index: 1;
}

.obj-bottom {
    object-position: center bottom;
}

.story-full.darken-15::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
    pointer-events: none;
}

.article-hero {
    min-height: max(70vh, 340px);
    padding-top: clamp(130px, 20vh, 190px);
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    justify-content: center;
    text-align: center;
}

.article-hero h1 {
    font-size: clamp(2.1rem, 5.5vw, 3rem);
    margin-bottom: 10px;
}

.article-hero p {
    font-family: 'Montserrat', sans-serif;
    color: #cccccc;
    letter-spacing: clamp(1px, 0.4vw, 2px);
    text-transform: uppercase;
    font-size: clamp(0.82rem, 2vw, 0.9rem);
}

.about-duo {
    align-items: stretch;
}

.about-portrait {
    flex: 1;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.about-bio {
    flex: 1.5;
}

.about-bio-second {
    margin-top: 15px;
}

.intro-section-tight {
    padding-top: 0;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(18px, 4vw, 44px);
    margin-top: 34px;
}

.contact-links a {
    color: #a6a6a6;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding-bottom: 5px;
    border-bottom: 1px solid transparent;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.contact-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.article-content {
    max-width: 95%;
    margin: 0 auto;
    padding: clamp(60px, 10vw, 100px) 0;
    font-size: clamp(1.05rem, 2.5vw, 1.3rem);
    font-weight: 300;
    line-height: 1.95;
    color: #d4d4d4;
}

.article-text {
    column-count: 2;
    column-gap: 60px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
    padding: 0 40px;
}

.article-content p {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    break-inside: avoid;
}

.article-content p::first-letter {
    font-family: 'Cinzel', serif;
    font-size: 1.6em;
    color: #ffffff;
}

.article-content p.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 700px) {
    .article-text {
        column-count: 1;
        padding: 0 20px;
    }
}

.photo-mosaic {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto 70px auto;
    padding: 0 20px;
}

.photo-mosaic figure {
    flex-grow: 1;
    height: 350px;
    margin: 0;
    overflow: hidden;
    border-radius: 2px;


    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.photo-mosaic img:hover {
    transform: scale(1.03);
    filter: brightness(1.05);
}

.fineart-chapter {
    margin-bottom: 10px;
}

.fineart-chapter-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px auto;
    padding: 0 20px;
}

.fineart-chapter-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    font-size: clamp(0.72rem, 1.6vw, 0.8rem);
    color: var(--accent);
    margin-bottom: 16px;
}

.fineart-chapter-header h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.1rem);
    margin-bottom: 16px;
}

.fineart-chapter-header p {
    color: #999999;
    font-weight: 300;
    font-size: clamp(0.9rem, 2.2vw, 1rem);
}

.fineart-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 2px;
    grid-auto-flow: dense;
    gap: clamp(10px, 2vw, 20px);
    max-width: 1600px;
    margin: 0 auto 80px auto;
    padding: 0 clamp(12px, 4vw, 20px);
}

.fineart-mosaic figure {
    margin: 0;
    overflow: hidden;
    border-radius: 2px;
    background: #0a0a0a;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fineart-mosaic figure.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.fineart-mosaic figure.large {
    grid-column: span 2;
}

.fineart-mosaic img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.fineart-mosaic img:hover {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.story-full {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    overflow: hidden;
    margin-bottom: 140px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-full.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-full img {
    width: 100%;
    height: 78vh;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.story-full::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
    pointer-events: none;
}

.story-caption {
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 55px;
    max-width: 560px;
    z-index: 2;
}

.story-caption.align-right {
    left: auto;
    right: 8%;
    text-align: right;
}

.story-caption h3 {
    font-size: clamp(1.3rem, 3.2vw, 1.6rem);
    margin-bottom: 14px;
    color: #ffffff;
}

.story-caption p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.8;
    color: #e5e5e5;
    font-weight: 300;
    margin-bottom: 0;
}

.story-full.story-quote::after {
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.68));
}

.story-full.story-quote .story-caption {
    left: 50%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 700px;
}

.story-full.story-quote .story-caption p {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    letter-spacing: 0.5px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
}

.story-duo {
    display: flex;
    align-items: stretch;
    gap: 24px;
    max-width: 1600px;
    padding: 0 20px;
    margin: 0 auto 150px auto;
}

.story-duo.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 700px) {
    .story-duo, .story-duo.reverse {
        flex-direction: column;
        gap: 20px;
    }
    .duo-large img {
        min-height: 320px;
    }
}

.duo-img {
    overflow: hidden;
    border-radius: 2px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.duo-img.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.duo-img img {
    display: block;
    cursor: zoom-in;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.duo-img img:hover {
    transform: scale(1.03);
}

.duo-large { flex: 1.4; }
.duo-large img {
    width: 100%;
    height: 100%;
    min-height: clamp(240px, 42vw, 420px);
    object-fit: cover;
}

.duo-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.duo-small img {
    width: 100%;
    height: auto;
}

.story-text-fill {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 32px;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.story-text-fill.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-text-fill h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 14px;
}

.story-text-fill p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1rem);
    line-height: 1.8;
    color: #d8d8d8;
    font-weight: 300;
    margin-bottom: 0;
}

.site-footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.8rem;
    color: #555555;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.carnets-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: clamp(130px, 20vh, 190px);
}

.carnet-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 75vh;
    width: 100%;
    text-decoration: none;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #000000;
}

.carnet-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.5s ease;
    z-index: 1;
}

.carnet-banner:hover::before {
    background: rgba(0, 0, 0, 0);
}

.carnet-banner-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    transition: transform 0.5s ease;
}

.carnet-banner:hover .carnet-banner-content {
    transform: translateY(-5px);
}

.carnet-banner-content h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.1rem, 5.5vw, 3.5rem);
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: clamp(2px, 0.8vw, 6px);
    text-transform: uppercase;
    font-weight: 400;
}

.carnet-banner-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #cccccc;
    letter-spacing: clamp(1px, 0.3vw, 2px);
    text-transform: uppercase;
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 2, 2, 0.93);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 88%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 2px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}

.close-lightbox:hover {
    color: var(--accent);
    transform: rotate(90deg);
}

.article-intro {
    max-width: 900px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.article-intro p {
    font-size: clamp(1.15rem, 3vw, 1.5rem);
    line-height: 1.8;
}

.mosaic-text-block {
    break-inside: avoid;
    margin: 0 0 20px 0;
    padding: 30px;
    background: rgba(15, 15, 15, 0.4);
    border-radius: 2px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.mosaic-text-block h3 {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    margin-bottom: 15px;
    color: #ffffff;
}

.mosaic-text-block p {
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 0;
}

.highlight-text {
    border-left: 2px solid #ffffff;
    background: transparent;
    padding-left: 25px;
    font-style: italic;
}

.mosaic-text-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}
