/* ===== Variables ===== */
:root {
    --color-navy:      #0D1B3E;
    --color-gold:      #C9A84C;
    --color-gold-light:#D4B96A;
    --color-cream:     #F5F0E8;
    --color-white:     #FFFFFF;
    --color-text-dark: #1A1A2E;
    --font-headline:   'Cormorant Garamond', Georgia, serif;
    --font-body:       'Jost', 'Inter', sans-serif;
    --max-width:       1200px;
    --section-pad:     100px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-white);
    background: var(--color-navy);
}

/* ===== Layout ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-headline);
    font-weight: 400;
    line-height: 1.15;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--color-white);
}

h2.dark {
    color: var(--color-text-dark);
}

h3 {
    font-size: 1.55rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
}

h4 {
    font-size: 1.55rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
}

p {
    font-size: 1.55rem;
    font-weight: 300;
    margin-bottom: 1.2rem;
}

a {
    color: var(--color-gold);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.75;
}

/* ===== Section Label ===== */
.section-label {
    font-family: var(--font-body);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.section-label.gold {
    color: var(--color-gold);
}

.section-label.dark {
    color: var(--color-gold);
}

/* ===== Gold Divider ===== */
.gold-divider {
    width: 60px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.7;
    margin: 1.5rem 0 2rem;
}

/* ===== Section Divider ===== */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.2;
}

/* ===== Section Backgrounds ===== */
.section-dark {
    background: var(--color-navy);
    padding: var(--section-pad) 0;
}

.section-cream {
    background: var(--color-cream);
    padding: var(--section-pad) 0;
}

.section-cream p {
    color: var(--color-text-dark);
}

/* ===== Button ===== */
.btn-gold {
    display: inline-block;
    padding: 0.9rem 2.5rem;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s, color 0.25s;
}

.btn-gold:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    opacity: 1;
}

/* ===== Header & Nav ===== */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 100;
    transition: background 0.3s;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.1rem 2rem;
}

.logo {
    font-family: var(--font-headline);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
}

.logo span {
    color: var(--color-gold);
    font-weight: 300;
    font-size: 1.7rem;
    letter-spacing: 0.15em;
    margin-left: 0.4rem;
}

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

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--color-gold);
    opacity: 1;
}

.nav-cta {
    border: 1px solid var(--color-gold) !important;
    color: var(--color-gold) !important;
    padding: 0.45rem 1.2rem;
}

.nav-cta:hover {
    background: var(--color-gold);
    color: var(--color-navy) !important;
}

/* ===== Simple Nav (Legal Pages) ===== */
.nav-links.nav-links-simple {
    position: static;
    max-height: none;
    overflow: visible;
    background: none;
    border-bottom: none;
    padding: 0;
    flex-direction: row;
}

.nav-links-simple a {
    font-size: 1.4rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.nav-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* ===== Language Switcher ===== */
.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem 0;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.lang-btn:hover {
    color: var(--color-gold);
}

.lang-flag {
    font-size: 1.8rem;
    line-height: 1;
}

.lang-arrow {
    opacity: 0.6;
    transition: transform 0.25s ease, opacity 0.2s;
    margin-left: 0.1rem;
}

.lang-btn[aria-expanded="true"] .lang-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.lang-btn[aria-expanded="true"] {
    color: var(--color-gold);
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    min-width: 140px;
    list-style: none;
    background: rgba(13, 27, 62, 0.98);
    border: 1px solid rgba(201, 168, 76, 0.35);
    backdrop-filter: blur(12px);
    z-index: 200;
    padding: 0.4rem 0;
}

.lang-dropdown.open {
    display: block;
    animation: fadeSlideDown 0.2s ease;
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.7rem 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    transition: color 0.2s, background 0.2s;
}

.lang-option span {
    font-size: 1.6rem;
    line-height: 1;
}

.lang-option:hover {
    color: var(--color-gold);
    background: rgba(201, 168, 76, 0.08);
}

.lang-option.active {
    color: var(--color-gold);
}

/* ===== Hero ===== */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-navy);
    background-image: url('../images/Uru-field.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--color-white);
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1.55rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.08em;
    margin-bottom: 2.5rem;
}

/* ===== Two-Column Layout ===== */
.two-col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: center;
}


.col-accent {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(201, 168, 76, 0.3);
}

/* ===== Stat Blocks ===== */
.stat-block {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-headline);
    font-size: 3rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

/* ===== Blockquote ===== */
blockquote {
    border-left: 2px solid var(--color-gold);
    padding-left: 1.5rem;
    margin-top: 2rem;
    font-family: var(--font-headline);
    font-style: italic;
    font-size: 1.55rem;
    color: var(--color-gold-light);
    line-height: 1.6;
}

/* ===== Feature Cards ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: rgba(245, 240, 232, 0.5);
}

.card-icon {
    color: var(--color-gold);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-dark);
    font-size: 1.8rem;
}

/* ===== About / Market Section ===== */
.about-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: var(--section-pad) 0;
    overflow: hidden;
    background-image: url('../images/Dome.jpeg');
    background-size: cover;
    background-position: center;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(13, 27, 62, 0.82) 0%,
        rgba(13, 27, 62, 0.65) 50%,
        rgba(13, 27, 62, 0.75) 100%
    );
}

.about-content {
    position: relative;
    z-index: 2;
}

/* ===== Market Pillars ===== */
.pillars {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 0.5rem;
    margin: 2.5rem 0;
}

.pillar {
    cursor: default;
}

.pillar-word {
    font-family: var(--font-headline);
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: rgba(201, 168, 76, 0.6);
    letter-spacing: 0.06em;
    transition: color 0.35s ease, letter-spacing 0.35s ease;
    display: inline-block;
}

.pillar.active .pillar-word,
.pillar:hover .pillar-word {
    color: var(--color-gold-light);
    letter-spacing: 0.1em;
}

.pillar-dot {
    font-size: 2rem;
    color: rgba(201, 168, 76, 0.3);
    line-height: 1;
}

.market-text {
    max-width: 700px;
    color: rgba(255,255,255,0.72);
    font-size: 1.55rem;
}

/* ===== Investment ===== */
.invest-numbers {
    gap: 2rem;
}

.invest-block {
    display: flex;
    flex-direction: column;
}

.invest-number {
    font-family: var(--font-headline);
    font-size: 2.8rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.invest-label {
    font-size: 1.55rem;
    letter-spacing: 0.12em;
    color: rgba(26,26,46,0.6);
    text-transform: uppercase;
}

.invest-detail h3 {
    font-size: 1.7rem;
    margin: 2rem 0 1rem;
    color: var(--color-gold);
}

.invest-detail ul {
    list-style: none;
}

.invest-detail ul li {
    color: var(--color-text-dark);
    font-size: 1.9rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.invest-detail ul li span {
    color: var(--color-gold);
    margin-right: 0.75rem;
    font-size: 1.55rem;
}

/* ===== Timeline ===== */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 3rem;
    max-width: 750px;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    bottom: 0;
    width: 1px;
    background: rgba(201, 168, 76, 0.25);
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-family: var(--font-headline);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.timeline-content p {
    color: rgba(255,255,255,0.65);
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* ===== Founders ===== */
.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.founder-card {
    text-align: center;
}

.founder-photo-placeholder {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: rgba(201, 168, 76, 0.05);
}

.founder-photo-placeholder span {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    color: var(--color-gold);
    opacity: 0.6;
}

.founder-card h3 {
    color: var(--color-text-dark);
    font-size: 1.55rem;
    margin-bottom: 0.25rem;
}

.founder-role {
    font-size: 1.55rem;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.founder-card p:last-child {
    color: rgba(26,26,46,0.7);
    font-size: 1.8rem;
}

/* ===== Contact ===== */
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-left p {
    color: rgba(255,255,255,0.7);
}

.contact-details {
    margin-top: 2rem;
}

.contact-details p {
    margin-bottom: 0.6rem;
    font-size: 1.9rem;
}

.contact-details a {
    color: var(--color-gold-light);
}

.contact-country {
    font-size: 1.55rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.contact-company {
    margin-top: 1.5rem;
    font-size: 1.55rem;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

/* ===== Contact Form ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1.8rem;
    font-weight: 300;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--color-gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.contact-form select option {
    background: var(--color-navy);
}

/* ===== Footer ===== */
#footer {
    background: var(--color-text-dark);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

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

.footer-logo {
    font-family: var(--font-headline);
    font-size: 1.55rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 0;
}

.footer-logo span {
    color: var(--color-gold);
    font-weight: 300;
    font-size: 1.8rem;
    margin-left: 0.4rem;
}

.footer-tagline {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    margin-bottom: 0;
}

.footer-copy {
    font-size: 1.55rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.05em;
    margin-bottom: 0;
    margin-top: 0.5rem;
}

.footer-legal {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-legal a {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-gold);
}

.footer-legal-sep {
    color: rgba(255,255,255,0.2);
}

/* ===== Intro Text ===== */
.intro-text {
    max-width: 800px;
    font-size: 1.55rem;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.intro-text.dark {
    color: var(--color-text-dark);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .two-col,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .col-accent {
        border-left: none;
        border-top: 1px solid rgba(201, 168, 76, 0.3);
        padding-left: 0;
        padding-top: 2rem;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pillars {
        justify-content: center;
    }

    .about-section {
        min-height: 70vh;
    }

    /* ── Mobile Navigation ── */
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 27, 62, 0.98);
        backdrop-filter: blur(12px);
        padding: 0 2rem;
        gap: 0;
        border-bottom: 1px solid rgba(201, 168, 76, 0.25);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .nav-links.open {
        max-height: 600px;
        padding: 1.5rem 2rem 2rem;
    }

    .nav-links > li {
        border-bottom: 1px solid rgba(201, 168, 76, 0.12);
        padding: 0.75rem 0;
    }

    .nav-links > li:last-child {
        border-bottom: none;
        padding-top: 1rem;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .nav-cta {
        display: inline-block;
        margin-top: 0.25rem;
    }

    .lang-dropdown {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0.5rem 0 0;
    }
}

@media (max-width: 680px) {
    :root {
        --section-pad: 70px;
    }

    h1 {
        font-size: 2.8rem;
    }

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

/* ===== JOURNEY SECTION ===== */
.journey-section {
    height: 600vh;
    position: relative;
}

.journey-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background: var(--color-navy);
}

.journey-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.journey-panel {
    min-width: 100vw;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.journey-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.2) translateX(0%);
    will-change: transform;
}

.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(13, 27, 62, 0.75) 0%,
        rgba(13, 27, 62, 0.35) 60%,
        rgba(13, 27, 62, 0.15) 100%
    );
}

.journey-placeholder .journey-overlay {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
}

.journey-placeholder .journey-img {
    transform: none !important;
}


.journey-content {
    position: absolute;
    bottom: 12%;
    left: 8%;
    max-width: 520px;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.journey-panel.in-view .journey-content {
    opacity: 1;
    transform: translateY(0);
}

.journey-chapter {
    display: block;
    font-family: var(--font-body);
    font-size: 1.55rem;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.journey-content h2 {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.journey-content p {
    font-family: var(--font-body);
    font-size: 1.55rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 420px;
}

/* Progress bar */
.journey-progress-bar-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(201, 168, 76, 0.15);
    z-index: 10;
}

.journey-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--color-gold);
    transition: width 0.05s linear;
}

/* Dot navigation */
.journey-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.journey-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    border: 1px solid rgba(201, 168, 76, 0.5);
    transition: background 0.3s ease, transform 0.3s ease;
}

.journey-dot.active {
    background: var(--color-gold);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .journey-section {
        height: auto;
    }

    .journey-sticky {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .journey-track {
        flex-direction: column;
        transform: none !important;
    }

    .journey-panel {
        min-width: 100%;
        height: 80vh;
    }

    .journey-panel.in-view .journey-img,
    .journey-img {
        transform: scale(1);
    }

    .journey-panel.in-view .journey-content,
    .journey-content {
        opacity: 1;
        transform: translateY(0);
    }

    .journey-dots,
    .journey-progress-bar-wrap {
        display: none;
    }
}

/* ===== Legal Pages (Impressum / Privacy Policy) ===== */
.legal-page-spacer {
    padding-top: 140px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content address {
    font-style: normal;
    color: var(--color-text-dark);
}

.legal-notice-box {
    border: 1px solid var(--color-gold);
    background: rgba(201, 168, 76, 0.08);
    padding: 1.5rem 1.8rem;
    margin-bottom: 3rem;
}

.legal-notice-box p {
    color: var(--color-text-dark);
    font-size: 1.4rem;
    margin-bottom: 0;
}

.legal-todo {
    color: #b5482a;
    font-weight: 500;
}
