:root {
    --green: #183a28;
    --green-2: #214a34;
    --green-soft: #edf4ee;
    --gold: #c99a3a;
    --gold-2: #e1bb65;
    --cream: #faf7f0;
    --cream-2: #f2eadc;
    --text: #1f1f1f;
    --muted: #6d6a63;
    --white: #ffffff;
    --line: rgba(31, 31, 31, .12);
    --shadow: 0 24px 70px rgba(24, 58, 40, .18);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
}

body::selection {
    background: var(--gold);
    color: var(--green);
}

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

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

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

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    padding: 22px 0;
    transition: .25s ease;
}

.site-header.is-scrolled {
    padding: 12px 0;
    background: rgba(24, 58, 40, .92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(0,0,0,.14);
}

.header-inner {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    flex: 0 0 auto;
}

.brand-mark {
    width: 48px;
    height: 48px;
    color: var(--gold);
    display: grid;
    place-items: center;
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: grid;
    line-height: 1.05;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.brand-text strong {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.brand-text small {
    font-size: .72rem;
    color: rgba(255,255,255,.78);
    margin-top: 3px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
}

.main-nav > a,
.nav-dropdown > button {
    position: relative;
    padding: 8px 0;
    color: rgba(255,255,255,.9);
    background: transparent;
    border: 0;
    font: inherit;
    text-transform: uppercase;
    cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown > button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: .2s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.nav-dropdown:hover > button::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button::before {
    content: "⌄";
    margin-left: 6px;
    float: right;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    min-width: 190px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    background: rgba(24, 58, 40, .94);
    box-shadow: 0 16px 46px rgba(0,0,0,.2);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(255,255,255,.88);
}

.nav-dropdown-menu a:hover {
    background: rgba(255,255,255,.08);
    color: var(--gold-2);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 19px;
    border: 1px solid rgba(201,154,58,.75);
    border-radius: 14px;
    color: var(--gold-2);
    font-weight: 800;
    white-space: nowrap;
    transition: .2s ease;
}

.header-phone:hover {
    background: var(--gold);
    color: var(--green);
}

.header-phone-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
    transition: .2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: .84rem;
    font-weight: 850;
    letter-spacing: .03em;
    text-transform: uppercase;
    transition: .22s ease;
    border: 1px solid transparent;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    color: #1f220f;
    box-shadow: 0 12px 28px rgba(201,154,58,.28);
}

.btn-green {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(24,58,40,.22);
}

.btn-ghost {
    border-color: rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-outline-light {
    border-color: rgba(255,255,255,.35);
    color: var(--white);
}

.btn-small {
    min-height: 42px;
    padding: 12px 18px;
    font-size: .78rem;
}

/* Hero */

.hero-home {
    position: relative;
    min-height: 820px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.04); }
    to { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 72% 35%, rgba(0,0,0,.08), rgba(0,0,0,.52) 64%),
        linear-gradient(90deg, rgba(10,20,14,.82) 0%, rgba(10,20,14,.48) 42%, rgba(10,20,14,.12) 100%),
        linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.34));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    padding-top: 78px;
    max-width: 720px;
    margin-left: calc((100% - min(1240px, calc(100% - 48px))) / 2);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-2);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.hero-content h1 {
    margin: 14px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.8rem, 8vw, 7.8rem);
    line-height: .92;
    letter-spacing: -.06em;
}

.hero-script,
.script-line {
    margin: 6px 0 0;
    font-family: "Caveat", cursive;
    color: var(--gold-2);
    font-size: clamp(2.1rem, 4vw, 4.2rem);
    line-height: .9;
}

.hero-text {
    max-width: 510px;
    margin: 28px 0 0;
    color: rgba(255,255,255,.9);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
}

.hero-scroll span {
    display: block;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    position: relative;
}

.hero-scroll span::before {
    content: "";
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold-2);
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 1.5s ease infinite;
}

@keyframes scrollDot {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 14px); opacity: 0; }
}

/* Sections */

.section {
    padding: 86px 0;
}

.section-overlap {
    position: relative;
    z-index: 5;
    margin-top: -78px;
    padding-top: 0;
}

.section-heading {
    margin-bottom: 38px;
}

.section-heading.centered {
    text-align: center;
}

.section-heading.centered .section-kicker {
    justify-content: center;
}

.section-heading.centered .section-kicker::after {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.section-heading.centered .section-kicker::before {
    display: none;
}

.section h2,
.section-head-row h2,
.banja-copy h2,
.final-contact-card h2 {
    margin: 6px 0 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.035em;
}

.section-head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

/* Villa choice */

.villa-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.villa-card {
    min-height: 390px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--green);
}

.villa-card-link {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: end;
    isolation: isolate;
}

.villa-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
}

.villa-card:hover img {
    transform: scale(1.07);
}

.villa-card-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.22) 38%, rgba(0,0,0,.82) 100%),
        linear-gradient(90deg, rgba(0,0,0,.34), rgba(0,0,0,.05));
}

.villa-card-content {
    width: 100%;
    padding: 34px;
    color: var(--white);
}

.villa-card h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1;
}

.villa-card p {
    max-width: 450px;
    margin: 14px 0 22px;
    color: rgba(255,255,255,.88);
}

.villa-feature-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 26px;
}

.villa-feature-row span {
    font-size: .78rem;
    line-height: 1.25;
    color: rgba(255,255,255,.9);
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,.25);
}

.villa-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 9px 14px;
    background: var(--gold);
    color: var(--green);
    border-radius: 11px;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Why */

.why-section {
    padding-top: 44px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(24,58,40,.08);
}

.why-card {
    min-height: 190px;
    padding: 26px 18px;
    text-align: center;
    background: rgba(255,255,255,.66);
    backdrop-filter: blur(14px);
}

.why-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--green-soft);
    color: var(--green);
    font-size: 2rem;
    line-height: 1;
}

.why-card h3 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
}

.why-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.45;
}

.info-note {
    margin: 22px auto 0;
    max-width: 760px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #fff8e7;
    border: 1px solid rgba(201,154,58,.24);
    color: #5f4a1a;
    text-align: center;
}

/* Gallery preview */

.gallery-preview-section {
    padding-top: 44px;
}

.home-gallery-grid {
    display: grid;
    grid-template-columns: 1.18fr .72fr .9fr .76fr;
    grid-auto-rows: 138px;
    gap: 12px;
}

.home-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--cream-2);
    box-shadow: 0 16px 42px rgba(24,58,40,.08);
}

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

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

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

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

.home-gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

/* Banja section - full width */

.banja-section {
    padding: 54px 0 0;
}

.banja-panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 80px max(34px, calc((100vw - var(--container)) / 2));
    border-radius: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.76) 48%, rgba(255,255,255,.30) 100%),
        url("../images/banja/bazeni-i-okruzenje.webp") center 38% / cover;
    box-shadow: 0 -10px 55px rgba(24,58,40,.06), 0 24px 80px rgba(24,58,40,.12);
}

.banja-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: center;
    width: 100%;
}

.banja-copy p:not(.script-line) {
    max-width: 570px;
    color: var(--muted);
}

.banja-copy .btn {
    margin-top: 18px;
}

.banja-cards {
    align-self: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.banja-cards article {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 18px;
    text-align: center;
    border-radius: 18px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 18px 46px rgba(24,58,40,.1);
    backdrop-filter: blur(10px);
}

.banja-cards span {
    color: var(--gold);
    font-size: 2.4rem;
}

.banja-cards h3 {
    margin: 10px 0 4px;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
}

.banja-cards p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

/* Final contact - full width strip */

.final-contact-section {
    padding: 0;
    margin: 0;
    background: linear-gradient(135deg, var(--green), #102719);
    color: var(--white);
}

.final-contact-card {
    width: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 52px max(34px, calc((100vw - var(--container)) / 2));
    border-radius: 0;
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.final-contact-card p {
    max-width: 650px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.76);
}

.final-contact-actions {
    flex: 0 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Footer - full width */

.site-footer {
    padding: 0;
    background: var(--cream);
}

.footer-cta {
    width: 100%;
    margin: 0;
    transform: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 26px max(34px, calc((100vw - var(--container)) / 2));
    border-radius: 0;
    background: linear-gradient(135deg, var(--green), #102719);
    color: var(--white);
    box-shadow: none;
}

.footer-cta-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green);
    font-size: 2rem;
}

.footer-cta p {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
}

.footer-cta strong {
    display: block;
    font-family: "Caveat", cursive;
    color: var(--gold-2);
    font-size: 2.2rem;
    line-height: 1;
}

.footer-cta-actions {
    display: flex;
    gap: 12px;
}

.footer-cta-actions a {
    min-width: 170px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 10px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.04);
}

.footer-cta-actions span {
    grid-row: span 2;
    color: var(--gold-2);
    font-size: 1.3rem;
}

.footer-cta-actions b {
    font-size: .88rem;
}

.footer-cta-actions small {
    color: rgba(255,255,255,.65);
}

.footer-main {
    width: 100%;
    margin: 0;
    padding: 54px max(34px, calc((100vw - var(--container)) / 2)) 36px;
    display: grid;
    grid-template-columns: 1.35fr .8fr .9fr 1.1fr;
    gap: 34px;
    border-radius: 0;
    background: rgba(255,255,255,.72);
    box-shadow: none;
}

.brand-footer {
    color: var(--green);
}

.brand-footer .brand-text small {
    color: var(--muted);
}

.footer-brand p {
    max-width: 300px;
    color: var(--muted);
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-weight: 900;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    color: var(--muted);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-map {
    min-height: 150px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    background:
        radial-gradient(circle at 70% 28%, rgba(201,154,58,.28), transparent 20%),
        linear-gradient(135deg, #e5f0e4, #f8efe0);
    color: var(--green);
}

.footer-map div {
    text-align: center;
}

.footer-map span {
    display: block;
    font-size: 2.2rem;
    color: #d33630;
}

.footer-map strong,
.footer-map small {
    display: block;
}

.footer-bottom {
    width: 100%;
    margin: 0;
    padding: 16px max(34px, calc((100vw - var(--container)) / 2)) 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: .84rem;
    background: rgba(255,255,255,.72);
}

/* Reveal */

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile call */

.mobile-call {
    display: none;
}

/* Responsive */

@media (max-width: 1180px) {
    .main-nav {
        gap: 16px;
        font-size: .76rem;
    }

    .header-phone {
        padding: 12px 14px;
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-cta,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-cta-actions {
        flex-wrap: wrap;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 920px) {
    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        width: min(100% - 30px, 1240px);
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .brand-text strong {
        font-size: 1.08rem;
    }

    .nav-toggle {
        display: block;
    }

    .header-inner > .header-phone {
        display: none;
    }

    .main-nav {
        position: fixed;
        top: 76px;
        left: 15px;
        right: 15px;
        max-height: calc(100vh - 96px);
        overflow: auto;
        display: grid;
        gap: 0;
        padding: 16px;
        border-radius: 22px;
        background: rgba(24,58,40,.97);
        box-shadow: 0 22px 70px rgba(0,0,0,.28);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-nav > a,
    .nav-dropdown > button {
        padding: 14px 12px;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: grid;
        margin: 0 0 8px 10px;
        box-shadow: none;
        border: 0;
        background: rgba(255,255,255,.05);
    }

    .header-phone-mobile {
        display: inline-flex;
        margin-top: 10px;
        justify-content: center;
    }

    .hero-home {
        min-height: 760px;
        background-position: 62% center;
    }

    .hero-content {
        width: min(100% - 34px, 760px);
        margin-left: auto;
        margin-right: auto;
    }

    .section {
        padding: 62px 0;
    }

    .section-overlap {
        margin-top: -70px;
    }

    .villa-choice-grid,
    .banja-inner {
        grid-template-columns: 1fr;
    }

    .villa-feature-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-head-row {
        align-items: start;
        flex-direction: column;
    }

    .home-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .home-gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

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

    .banja-panel {
        padding: 54px 28px;
    }

    .banja-cards {
        grid-template-columns: 1fr;
    }

    .final-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-contact-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero-home {
        min-height: 710px;
    }

    .hero-content h1 {
        font-size: clamp(3rem, 17vw, 4.6rem);
    }

    .hero-script {
        font-size: 2.3rem;
    }

    .hero-actions,
    .final-contact-actions {
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .villa-card,
    .villa-card-link {
        min-height: 430px;
    }

    .villa-card-content {
        padding: 26px;
    }

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

    .home-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .home-gallery-item:nth-child(n) {
        grid-row: auto;
    }

    .banja-panel {
        padding: 44px 20px;
    }

    .final-contact-card {
        padding: 34px 20px;
    }

    .footer-cta {
        padding: 24px 20px;
        transform: none;
    }

    .footer-cta-actions {
        display: grid;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 38px 20px 28px;
    }

    .footer-bottom {
        flex-direction: column;
        padding-bottom: 62px;
    }

    .mobile-call {
        position: fixed;
        left: 18px;
        right: 18px;
        bottom: 14px;
        z-index: 60;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 52px;
        border-radius: 999px;
        background: var(--gold);
        color: var(--green);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: .04em;
        box-shadow: 0 14px 36px rgba(0,0,0,.24);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


/* V8 homepage fixes */

.villa-feature-row span {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.villa-feature-row span i {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(201,154,58,.92);
    color: #172515;
    font-style: normal;
    font-size: .9rem;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.villa-feature-row span b {
    min-width: 0;
    font: inherit;
    font-weight: 700;
}

/* The first cards section should breathe below hero text. */
.section-overlap {
    margin-top: -78px;
}

/* Banja icon cards */
.banja-copy .btn {
    margin-top: 26px;
}

.banja-inner {
    gap: 62px;
}

.banja-cards {
    gap: 18px;
}

.banja-cards article {
    min-height: 178px;
    padding: 20px 16px;
}

.banja-cards span {
    font-size: clamp(4.6rem, 7vw, 5.8rem);
    line-height: .68;
    margin-bottom: 4px;
}

/* Footer map with two markers */
.footer-map-two {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    display: block;
    border-radius: 22px;
    background:
        radial-gradient(circle at 22% 72%, rgba(201,154,58,.28), transparent 12%),
        radial-gradient(circle at 68% 38%, rgba(24,58,40,.18), transparent 14%),
        linear-gradient(115deg, rgba(229,240,228,.98), rgba(248,239,224,.98));
    border: 1px solid rgba(24,58,40,.08);
}

.footer-map-two::before,
.footer-map-two::after {
    content: "";
    position: absolute;
    inset: auto -10% 48% -10%;
    height: 42px;
    border-radius: 999px;
    border: 2px dashed rgba(24,58,40,.18);
    transform: rotate(-16deg);
}

.footer-map-two::after {
    inset: 48% -18% auto -18%;
    transform: rotate(18deg);
    border-color: rgba(201,154,58,.28);
}

.map-marker {
    position: absolute;
    z-index: 2;
    min-width: 138px;
    padding: 10px 12px 10px 36px;
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    color: var(--green);
    box-shadow: 0 16px 38px rgba(24,58,40,.14);
    backdrop-filter: blur(10px);
    transition: .2s ease;
}

.map-marker:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px rgba(24,58,40,.18);
}

.marker-vila-1 {
    left: 12%;
    top: 28%;
}

.marker-vila-2 {
    right: 10%;
    bottom: 22%;
}

.map-pin {
    position: absolute;
    left: 12px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50% 50% 50% 0;
    background: #d33a2c;
    transform: translateY(-50%) rotate(-45deg);
    box-shadow: 0 0 0 7px rgba(211,58,44,.12);
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: #fff;
}

.map-marker strong,
.map-marker small {
    display: block;
    line-height: 1.15;
}

.map-marker small {
    margin-top: 3px;
    color: var(--muted);
    font-size: .72rem;
}

/* Standalone VilaLightbox plugin */
.vila-lightbox-open {
    overflow: hidden;
}

.vila-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 38px 80px;
    background: rgba(8, 15, 11, .94);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, visibility .22s ease;
}

.vila-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.vila-lightbox__figure {
    position: relative;
    width: min(1180px, 100%);
    height: min(78vh, 780px);
    margin: 0;
    display: grid;
    place-items: center;
}

.vila-lightbox__image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 28px 90px rgba(0,0,0,.55);
    opacity: 0;
    transform: scale(.985);
    transition: opacity .2s ease, transform .2s ease;
}

.vila-lightbox__image.is-loaded {
    opacity: 1;
    transform: scale(1);
}

.vila-lightbox__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -44px;
    color: rgba(255,255,255,.78);
    text-align: center;
    font-size: .95rem;
}

.vila-lightbox__close,
.vila-lightbox__nav {
    position: fixed;
    z-index: 10001;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
    transition: .18s ease;
}

.vila-lightbox__close:hover,
.vila-lightbox__nav:hover {
    background: var(--gold);
    color: var(--green);
}

.vila-lightbox__close {
    top: 24px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    font-size: 2.2rem;
    line-height: 1;
}

.vila-lightbox__nav {
    top: 50%;
    width: 58px;
    height: 74px;
    border-radius: 999px;
    transform: translateY(-50%);
    font-size: 3.2rem;
    line-height: .8;
}

.vila-lightbox__prev {
    left: 22px;
}

.vila-lightbox__next {
    right: 22px;
}

.vila-lightbox__counter {
    position: fixed;
    left: 28px;
    top: 28px;
    z-index: 10001;
    padding: 10px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: rgba(255,255,255,.82);
    font-size: .88rem;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

.vila-lightbox.has-single-image .vila-lightbox__nav,
.vila-lightbox.has-single-image .vila-lightbox__counter {
    display: none;
}

@media (max-width: 920px) {
    .hero-home {
        min-height: 760px;
    }

    .section-overlap {
        margin-top: -46px;
    }

    .villa-feature-row span {
        align-items: flex-start;
    }

    .banja-cards {
        margin-top: 26px;
    }

    .vila-lightbox {
        padding: 28px 18px 64px;
    }

    .vila-lightbox__figure {
        height: 74vh;
    }

    .vila-lightbox__nav {
        top: auto;
        bottom: 18px;
        width: 54px;
        height: 54px;
        font-size: 2.6rem;
    }

    .vila-lightbox__prev {
        left: calc(50% - 68px);
    }

    .vila-lightbox__next {
        right: calc(50% - 68px);
    }

    .vila-lightbox__close {
        top: 16px;
        right: 16px;
    }

    .vila-lightbox__counter {
        top: 18px;
        left: 18px;
    }

    .vila-lightbox__caption {
        bottom: -36px;
        font-size: .86rem;
    }
}

@media (max-width: 640px) {
    .villa-feature-row {
        gap: 10px;
    }

    .villa-feature-row span i {
        flex-basis: 24px;
        width: 24px;
        height: 24px;
        font-size: .82rem;
    }

    .footer-map-two {
        min-height: 250px;
    }

    .marker-vila-1 {
        left: 8%;
        top: 18%;
    }

    .marker-vila-2 {
        right: 7%;
        bottom: 16%;
    }
}


/* V9 fixes: Banja background/spacing and footer without map */

.banja-copy .btn {
    margin-top: 28px;
    margin-bottom: 34px;
}

.banja-inner {
    align-items: center;
    gap: 78px;
}

.banja-cards {
    margin-top: 0;
}

.banja-cards article {
    min-height: 170px;
}

.banja-cards span {
    font-size: clamp(4.8rem, 6.6vw, 5.9rem);
    line-height: .62;
}

/* Footer is now 3 columns, no map. */
.footer-main.footer-main-three {
    grid-template-columns: 1.35fr .8fr 1.15fr;
    align-items: start;
}

.footer-mini-note {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff8e7;
    border: 1px solid rgba(201,154,58,.22);
    color: #5f4a1a;
    font-size: .9rem;
}

.footer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-contact-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    font-size: .82rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .035em;
    transition: .2s ease;
}

.footer-contact-actions a:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--green);
}

/* Old decorative map classes disabled in case markup remains somewhere. */
.footer-map,
.footer-map-two {
    display: none !important;
}

@media (max-width: 1180px) {
    .footer-main.footer-main-three {
        grid-template-columns: 1.15fr .85fr 1fr;
    }

    .banja-inner {
        gap: 46px;
    }
}

@media (max-width: 920px) {
    .footer-main.footer-main-three {
        grid-template-columns: 1fr;
    }

    .banja-copy .btn {
        margin-bottom: 24px;
    }

    .banja-cards {
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .footer-contact-actions {
        display: grid;
    }

    .footer-contact-actions a {
        width: 100%;
    }

    .banja-cards span {
        font-size: 4.4rem;
    }
}
