/* ===================== CSS VARIJABLE ===================== */
:root {
    --river: #2a7d6f;
    --river-d: #1a5a4f;
    --river-l: #4aab99;
    --stone: #8b7b6b;
    --cream: #f7f3ee;
    --bark: #3d2e22;
    --gold: #c8a96e;
    --text: #2c2318;
    --muted: #7a6e65;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: clip;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}

.section-label {
    font-family: 'Jost', sans-serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--river);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.15;
    color: var(--bark);
}

    .section-title em {
        font-style: italic;
        color: var(--river);
    }

/* ===================== NAV ===================== */
#navbar {
    position: fixed;
    top: max(0px, env(safe-area-inset-top));
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 4px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s, box-shadow .4s;
}

    #navbar.scrolled {
        background: rgba(255,255,255);
        backdrop-filter: blur(8px);
        box-shadow: 0 2px 24px rgba(0,0,0,.08);
    }

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .3s;
}

#navbar.scrolled .nav-logo {
    color: var(--bark);
}

#navbar a .logo {
    width: 350px;
}

#navbar.scrolled a .logo {
    width: 200px;
}



@media (max-width: 500px) {
    #navbar a .logo {
        width: 160px;
    }
}

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

    .nav-links a {
        font-size: .82rem;
        font-weight: 500;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(255,255,255,.85);
        text-decoration: none;
        transition: color .3s;
    }

#navbar.scrolled .nav-links a {
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--river-l) !important;
}

.nav-cta {
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,.5);
    padding: .45rem 1.2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background .3s, border-color .3s, color .3s !important;
}

    .nav-cta:hover {
        background: var(--river);
        border-color: var(--river);
    }

#navbar.scrolled .nav-cta {
    color: var(--river) !important;
    border-color: var(--river);
}

    #navbar.scrolled .nav-cta:hover {
        background: var(--river);
        color: var(--white) !important;
    }

.language-switch {
    display: flex;
    align-items: center;
    gap: .45rem;
}

.language-link {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    padding: .35rem .6rem;
    line-height: 1;
    transition: background .3s, color .3s, border-color .3s;
}

.language-link:hover,
.language-link.active {
    background: var(--river);
    border-color: var(--river);
    color: var(--white);
}

#navbar.scrolled .language-link {
    color: var(--muted);
    border-color: rgba(61,46,34,.18);
}

#navbar.scrolled .language-link:hover,
#navbar.scrolled .language-link.active {
    color: var(--white);
    border-color: var(--river);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: background .3s;
    }

#navbar.scrolled .hamburger span {
    background: var(--bark);
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 2000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

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

    .mobile-menu a {
        font-family: 'Cormorant Garamond', serif;
        font-size: 2rem;
        color: var(--bark);
        text-decoration: none;
        transition: color .3s;
    }

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

.mobile-language-switch {
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.mobile-language-switch .language-link {
    color: var(--bark);
    border-color: rgba(61,46,34,.18);
}

.mobile-language-switch .language-link:hover,
.mobile-language-switch .language-link.active {
    color: var(--white);
}

.mobile-menu-close {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--bark);
    z-index: 2001;
}

@media (max-width: 968px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ═══════════════════════════════
           INTRO / O NAMA
        ═══════════════════════════════ */
#o-smjestaju {
    background: var(--bg-light);
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.intro-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

    .intro-icon.accent {
        background: var(--accent);
    }

.intro-feature h6 {
    margin-bottom: 0.2rem;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

/* ===================== HERO ===================== */
#hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 40%, rgba(22,60,52,.7) 100%),
    /* PLACEHOLDER ZA HERO SLIKU - zamijenite sa pravom fotografijom rijeke/kuće */
    url('../slike/cg_1.png') center/cover no-repeat;
    transform: scale(1.04);
    transition: transform 8s ease-out;
}

#hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem 5rem;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(42,125,111,.3);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(74,171,153,.4);
    color: rgba(255,255,255,.9);
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: .4rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s ease both;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1rem;
    animation: fadeUp .8s .15s ease both;
}

    .hero-title em {
        font-style: italic;
        color: #a8e6dd;
    }

.hero-sub {
    color: rgba(255,255,255,.8);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 500px;
    margin-bottom: 2.5rem;
    animation: fadeUp .8s .3s ease both;
}

.hero-price-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .8rem 1rem;
    margin-bottom: 1.6rem;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 8px;
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,.96);
    font-size: .92rem;
    line-height: 1.3;
    animation: fadeUp .8s .4s ease both;
}

.hero-price-badge strong {
    font-weight: 600;
    letter-spacing: .04em;
}

.hero-price-badge span {
    color: rgba(255,255,255,.82);
}

.hero-price-link {
    text-decoration: none;
}

.hero-price-link:hover .hero-price-badge {
    border-color: rgba(255,255,255,.42);
    background: rgba(255,255,255,.16);
    transform: translateY(-1px);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .8s .45s ease both;
}

.btn-river {
    background: var(--river);
    color: var(--white);
    border: none;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .85rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background .3s, transform .2s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

    .btn-river:hover {
        background: var(--river-d);
        color: var(--white);
        transform: translateY(-2px);
    }

.btn-outline-river {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.5);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .85rem 1rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background .3s, border-color .3s;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
}

    .btn-outline-river:hover {
        background: rgba(255,255,255,.1);
        border-color: rgba(255,255,255,.8);
        color: var(--white);
    }

    .package-section {
        padding: 4rem 0;
    }

    .package-shell {
        background: linear-gradient(135deg, #f7f3ee, #e8f5f2);
        border-radius: 18px;
        border-left: 4px solid var(--river);
        padding: 1.5rem;
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }

    .package-card {
        height: 100%;
        background: rgba(255,255,255,.92);
        border-radius: 14px;
        padding: 1.4rem;
        box-shadow: 0 8px 24px rgba(0,0,0,.06);
    }

    .package-kicker {
        display: inline-block;
        color: var(--river);
        font-size: .75rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: .6rem;
    }

    .package-title {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.7rem;
        color: var(--bark);
        line-height: 1.15;
        margin-bottom: .9rem;
    }

    .package-price {
        display: inline-flex;
        flex-wrap: wrap;
        gap: .45rem;
        align-items: center;
        font-size: .92rem;
        font-weight: 500;
        color: var(--bark);
        margin: .85rem 0 1rem;
    }

    .package-price strong {
        color: var(--river);
        font-size: 1rem;
    }

    .package-note {
        margin-top: 1.2rem;
        padding-top: 1.1rem;
        border-top: 1px solid rgba(42,125,111,.14);
        color: var(--muted);
        font-size: .95rem;
    }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.6);
    font-size: .68rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    animation: fadeIn 1s 1s both;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,.4);
    animation: scrollLine 2s 1.2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===================== STATS BAR ===================== */
.stats-bar {
    background: var(--river-d);
    color: var(--white);
    padding: 1.5rem 0;
}

    .stats-bar .stat-item {
        display: flex;
        align-items: center;
        gap: .8rem;
        padding: .5rem 1.5rem;
        border-right: 1px solid rgba(255,255,255,.15);
    }

        .stats-bar .stat-item:last-child {
            border-right: none;
        }

.stat-icon {
    font-size: 1.4rem;
    color: var(--river-l);
}

.stat-val {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1;
}

.stat-lbl {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

/* ===================== SECTIONS SHARED ===================== */
section {
    padding: 6rem 0;
}

.divider {
    width: 48px;
    height: 2px;
    background: var(--river);
    margin: 1rem 0 1.5rem;
}

/* ===================== O SMJEŠTAJU ===================== */
#o-smjestaju {
    background: var(--cream);
}

.feature-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow .3s, transform .3s;
    height: 100%;
    border-bottom: 3px solid transparent;
}

    .feature-card:hover {
        box-shadow: 0 12px 40px rgba(42,125,111,.12);
        transform: translateY(-4px);
        border-bottom-color: var(--river);
    }

    .feature-card .icon {
        font-size: 2.2rem;
        color: var(--river);
        margin-bottom: 1rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
        color: var(--bark);
        margin-bottom: .5rem;
    }

    .feature-card p {
        font-size: .9rem;
        color: var(--muted);
    }

/* ===================== GALERIJA ===================== */
#galerija {
    background: var(--bark);
}

    #galerija .section-title {
        color: var(--cream);
    }

    #galerija .section-label {
        color: var(--river-l);
    }

    #galerija .lead-text {
        color: rgba(247,243,238,.65);
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 8px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    background: rgba(255,255,255,.05);
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

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

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

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px dashed rgba(255,255,255,.15);
    color: rgba(255,255,255,.3);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    gap: .5rem;
    transition: background .3s;
}

    .gallery-placeholder:hover {
        background: rgba(255,255,255,.07);
    }

    .gallery-placeholder i {
        font-size: 1.8rem;
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,60,52,.6) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--white);
    font-size: .8rem;
    letter-spacing: .08em;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(14, 20, 18, .92);
    backdrop-filter: blur(8px);
    display: grid;
    place-items: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

    .gallery-lightbox.open {
        opacity: 1;
        pointer-events: auto;
    }

.gallery-lightbox-image {
    max-width: min(1100px, 94vw);
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    transform: scale(.96);
    transition: transform .25s ease;
}

    .gallery-lightbox.open .gallery-lightbox-image {
        transform: scale(1);
    }

.gallery-lightbox-caption {
    margin-top: 1rem;
    color: rgba(255,255,255,.82);
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-align: center;
    max-width: min(1100px, 94vw);
}

.gallery-lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: var(--white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        height: 220px;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }

    .gallery-item {
        height: 160px;
    }

    .gallery-lightbox {
        padding: 1rem;
    }

    .gallery-lightbox-image {
        max-height: 70vh;
    }
}

/* ===================== RIJEKA ===================== */
#rijeka {
    background: linear-gradient(135deg, #e8f5f2 0%, #f7f3ee 60%);
}

.river-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

    .river-feature .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--river);
        margin-top: .6rem;
        flex-shrink: 0;
    }

.river-img-wrap {
    position: relative;
}

.river-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--river-l);
    border-radius: 4px;
    z-index: 0;
}

    .river-img-wrap .img-inner {
        position: relative;
        z-index: 1;
        border-radius: 4px;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: #d4ede9;
    }

    .river-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ===================== ATRAKCIJE ===================== */
#atrakcije {
    background: var(--cream);
}

.attraction-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

    .attraction-card .card-bg {
        position: absolute;
        inset: 0;
        background: rgba(42,125,111,.1);
        transition: transform .6s ease;
    }

    .attraction-card:hover .card-bg {
        transform: scale(1.05);
    }

.attraction-placeholder {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a7d6f 0%, #1a5a4f 100%);
    color: rgba(255,255,255,.4);
    gap: .8rem;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

    .attraction-placeholder i {
        font-size: 3rem;
    }

.attraction-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22,60,52,.95) 0%, rgba(22,60,52,.95) 90%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
}

.attraction-dist {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--river-l);
    margin-bottom: .3rem;
}

.attraction-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: .5rem;
}

.attraction-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}

.attraction-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-top: .8rem;
}

.tag {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    border: 1px solid rgba(74,171,153,.5);
    color: var(--river-l);
    border-radius: 2px;
}

/* ===================== KAKO STIĆI ===================== */
#kako-stici {
    background: #f0f7f5;
}

.map-placeholder {
    width: 100%;
    height: 340px;
    background: linear-gradient(135deg, #c8ddd9 0%, #a8cdc7 100%);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--river-d);
    font-size: .85rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    gap: 1rem;
}

    .map-placeholder i {
        font-size: 3rem;
        opacity: .5;
    }

.route-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.route-num {
    width: 32px;
    height: 32px;
    background: var(--river);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 500;
    flex-shrink: 0;
}

/* ===================== KONTAKT ===================== */
#kontakt {
    background: var(--bark);
}

    #kontakt .section-title {
        color: var(--cream);
    }

    #kontakt .section-label {
        color: var(--river-l);
    }

.contact-form-wrap {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label-custom {
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(247,243,238,.6);
    margin-bottom: .4rem;
    display: block;
}

.form-control-custom {
    width: 100%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 2px;
    padding: .75rem 1rem;
    color: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: .9rem;
    font-weight: 300;
    outline: none;
    transition: border-color .3s, background .3s;
}

    .form-control-custom:focus {
        border-color: var(--river-l);
        background: rgba(255,255,255,.09);
    }

    .form-control-custom::placeholder {
        color: rgba(247,243,238,.3);
    }

    .form-control-custom option {
        background: var(--bark);
        color: var(--cream);
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-submit {
    width: 100%;
    background: var(--river);
    color: var(--white);
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: background .3s, transform .2s;
    margin-top: .8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
}

    .btn-submit:hover {
        background: var(--river-l);
        transform: translateY(-2px);
    }

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    color: rgba(247,243,238,.75);
}

    .contact-info-item .ci-icon {
        font-size: 1.3rem;
        color: var(--river-l);
        margin-top: .1rem;
        flex-shrink: 0;
    }

    .contact-info-item h5 {
        font-family: 'Jost', sans-serif;
        font-size: .75rem;
        font-weight: 500;
        letter-spacing: .15em;
        text-transform: uppercase;
        color: rgba(247,243,238,.45);
        margin-bottom: .2rem;
    }

.success-msg {
    display: none;
    background: rgba(42,125,111,.2);
    border: 1px solid var(--river-l);
    color: var(--cream);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
}

/* ===================== FOOTER ===================== */
footer {
    background: #1a1510;
    color: rgba(247,243,238,.45);
    padding: 2.5rem 0;
    text-align: center;
    font-size: .82rem;
}

    footer a {
        color: var(--river-l);
        text-decoration: none;
    }

        footer a:hover {
            color: var(--cream);
        }

    footer .footer-logo {
        font-family: 'Cormorant Garamond', serif;
        font-size: 1.6rem;
        color: var(--cream);
        display: block;
        margin-bottom: .5rem;
    }

.footer-language-switch {
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-language-switch .language-link {
    color: rgba(247,243,238,.7);
    border-color: rgba(247,243,238,.2);
}

.footer-language-switch .language-link:hover,
.footer-language-switch .language-link.active {
    color: var(--white);
}

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}

.reveal-delay-4 {
    transition-delay: .4s;
}
