:root {
    --bg: #0d090b;
    --surface: #171013;
    --surface-2: #21171b;
    --brand: #6d2031;
    --brand-light: #a84059;
    --text: #f7f3f4;
    --muted: #b9aeb2;
    --border: rgba(255,255,255,.1);
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

img {
    max-width: 100%;
}

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

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 9, 11, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
}

.brand img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 14px;
}

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

.nav-links a:hover {
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
    border: 1px solid transparent;
}

.btn.secondary {
    background: transparent;
    border-color: var(--border);
}

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(13,9,11,.96), rgba(13,9,11,.68)),
        url("/assets/images/building.webp") center/cover;
}

.hero-content {
    max-width: 760px;
    padding: 100px 0;
}

.eyebrow {
    color: #d48195;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 13px;
    font-weight: 800;
}

h1 {
    margin: 15px 0 20px;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -.04em;
}

.hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 19px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.section {
    padding: 100px 0;
}

.section.alt {
    background: var(--surface);
}

.section-title {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 50px);
    margin: 8px 0;
    letter-spacing: -.03em;
}

.section-title p {
    color: var(--muted);
}

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

.card {
    min-height: 250px;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, var(--surface-2), var(--surface));
}

.card h3 {
    font-size: 23px;
    margin: 10px 0;
}

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

.card a {
    color: #dc93a4;
    font-weight: 700;
}

.company-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.company-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.company-info > div {
    padding: 28px;
    border-right: 1px solid var(--border);
}

.company-info span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.company-info strong {
    display: block;
    margin-top: 5px;
}

.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer p,
.footer a {
    color: var(--muted);
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

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

    .grid,
    .company-info,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .company-info > div {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        min-height: 600px;
    }

    .section {
        padding: 70px 0;
    }
}


/* ===== Inner pages ===== */

.page-hero {
    padding: 110px 0 75px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 80% 10%, rgba(109,32,49,.24), transparent 35%),
        var(--bg);
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(40px, 6vw, 68px);
}

.page-hero p {
    max-width: 720px;
    color: var(--muted);
    font-size: 18px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
}

.prose {
    max-width: 820px;
}

.prose h2 {
    margin-top: 45px;
    font-size: 30px;
}

.prose p,
.prose li {
    color: var(--muted);
}

.info-panel {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    align-self: start;
}

.info-row {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: 0;
}

.info-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.info-row strong,
.info-row a {
    display: block;
    margin-top: 4px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-box {
    padding: 30px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: var(--surface);
}

.service-box p {
    color: var(--muted);
}

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

.contact-card {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
}

.contact-card span {
    color: var(--muted);
    display: block;
    margin-bottom: 8px;
}

.notice {
    margin-top: 30px;
    padding: 20px 24px;
    border-left: 3px solid var(--brand-light);
    background: var(--surface);
    color: var(--muted);
}

.mobile-menu-button {
    display: none;
    border: 1px solid var(--border);
    background: transparent;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    font-size: 21px;
}

@media (max-width: 850px) {
    .content-grid,
    .service-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mobile-menu-button {
        display: block;
    }

    .nav.open .nav-links {
        position: absolute;
        display: grid;
        left: 20px;
        right: 20px;
        top: 76px;
        padding: 22px;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: #171013;
    }

    .nav > .btn {
        display: none;
    }
}

/* ===== Properties ===== */

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

.property-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
}

.property-image {
    display: block;
    width: 100%;
    height: 230px;
    object-fit: cover;
    background: var(--surface-2);
}

.property-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

.property-content {
    padding: 24px;
}

.property-content h3 {
    margin: 8px 0;
    font-size: 22px;
}

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

.property-price {
    display: block;
    margin: 18px 0;
    font-size: 20px;
}

.property-link {
    color: #dc93a4;
    font-weight: 700;
}

.muted {
    color: var(--muted);
}

@media (max-width: 950px) {
    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   POLTAVA COMPANY EXPANSION
   ================================================== */

.large-section {
    padding: 120px 0;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.split-copy h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.035em;
    margin: 12px 0 22px;
}

.split-copy p {
    color: var(--muted);
    font-size: 18px;
}

.feature-panel {
    padding: 42px;
    border: 1px solid var(--border);
    border-radius: 26px;
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(168,64,89,.18),
            transparent 35%
        ),
        var(--surface);
}

.feature-panel h3 {
    font-size: 28px;
    margin-top: 0;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin-top: 25px;
}

.feature-item {
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}

.feature-item strong {
    display: block;
}

.feature-item span {
    color: var(--muted);
    font-size: 14px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.activity-card {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition:
        transform .25s ease,
        border-color .25s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168,64,89,.6);
}

.activity-card h3 {
    font-size: 23px;
    margin: 12px 0;
}

.activity-card p {
    color: var(--muted);
}

.activity-number {
    font-size: 13px;
    color: #dc93a4;
    letter-spacing: .13em;
}

.investment-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(109,32,49,.32),
            transparent 35%
        ),
        #120c0f;
}

.trading-panel {
    padding: 45px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.035);
}

.trading-panel h3 {
    font-size: 32px;
    margin-top: 0;
}

.trading-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.trading-point {
    padding: 18px;
    border-radius: 13px;
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
}

.trading-point strong {
    display: block;
    margin-bottom: 5px;
}

.trading-point span {
    color: var(--muted);
    font-size: 14px;
}

.location-section {
    background: var(--surface);
}

.location-card {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 40px;
    padding: 45px;
    border-radius: 26px;
    border: 1px solid var(--border);
    background: var(--bg);
}

.location-big {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -.04em;
    margin: 10px 0;
}

.location-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.location-detail {
    padding: 20px;
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.location-detail span {
    color: var(--muted);
    font-size: 13px;
    display: block;
}

.location-detail strong {
    display: block;
    margin-top: 5px;
}

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

.credibility-item {
    padding: 28px;
    border-top: 1px solid var(--border);
}

.credibility-item h3 {
    margin-bottom: 9px;
}

.credibility-item p {
    color: var(--muted);
}

.big-cta {
    padding: 80px 50px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(168,64,89,.25),
            transparent 45%
        ),
        var(--surface);
}

.big-cta h2 {
    max-width: 760px;
    margin: auto;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.06;
}

.big-cta p {
    max-width: 680px;
    margin: 20px auto;
    color: var(--muted);
}

.company-legal-line {
    margin-top: 15px;
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1000px) {
    .activity-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-section,
    .location-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 650px) {
    .activity-grid,
    .credibility-grid,
    .trading-points,
    .location-details {
        grid-template-columns: 1fr;
    }

    .large-section {
        padding: 75px 0;
    }

    .feature-panel,
    .trading-panel,
    .location-card {
        padding: 26px;
    }

    .big-cta {
        padding: 55px 24px;
    }
}


/* ==================================================
   PREMIUM VISUAL UPGRADE
   ================================================== */

body {
    overflow-x: hidden;
}

::selection {
    background: var(--brand-light);
    color: #fff;
}

a,
button {
    transition:
        opacity .2s ease,
        transform .2s ease,
        border-color .2s ease,
        background .2s ease;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid #dc93a4;
    outline-offset: 4px;
}


/* Navbar */

.header {
    background: rgba(10,7,8,.78);
    backdrop-filter: blur(22px);
}

.brand > div {
    display: grid;
    line-height: 1.05;
}

.brand small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: #dc93a4;
    transition: right .2s ease;
}

.nav-links a:hover::after {
    right: 0;
}


/* Premium hero */

.premium-hero {
    min-height: 790px;
    position: relative;
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            rgba(8,5,6,.97) 0%,
            rgba(12,7,9,.85) 48%,
            rgba(12,7,9,.50) 100%
        ),
        url("/assets/images/building.webp")
        center / cover no-repeat;
}

.premium-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    z-index: -1;
    background:
        linear-gradient(
            transparent,
            var(--bg)
        );
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(80px);
    opacity: .35;
    pointer-events: none;
    z-index: -1;
}

.hero-glow-one {
    width: 360px;
    height: 360px;
    background: #852a40;
    top: 20%;
    left: -180px;
}

.hero-glow-two {
    width: 260px;
    height: 260px;
    background: #6d2031;
    right: 10%;
    bottom: 5%;
}

.hero-badge {
    width: max-content;
    max-width: 100%;
    padding: 8px 13px;
    display: flex;
    gap: 9px;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .04em;
}

.hero-badge span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #dc93a4;
    box-shadow:
        0 0 18px rgba(220,147,164,.75);
}

.premium-hero h1 {
    max-width: 870px;
    margin-top: 25px;
    font-size: clamp(54px, 8vw, 100px);
    line-height: .94;
}

.hero-lead {
    max-width: 720px !important;
    font-size: 19px !important;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
}

.hero-proof {
    width: min(900px, 100%);
    display: grid;
    grid-template-columns: 1.45fr .75fr 1fr;
    margin-top: 65px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.hero-proof-item {
    padding: 18px 22px 18px 0;
}

.hero-proof-item + .hero-proof-item {
    padding-left: 22px;
    border-left: 1px solid var(--border);
}

.hero-proof-item span {
    display: block;
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-proof-item strong {
    font-size: 14px;
}


/* Section headings */

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 40px;
}

.section-heading-row .section-title {
    margin-bottom: 0;
}


/* Featured property cards */

.featured-properties-section {
    position: relative;
}

.featured-property-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0,1fr));
    gap: 20px;
}

.featured-property-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    transition:
        transform .3s ease,
        border-color .3s ease;
}

.featured-property-card:hover {
    transform: translateY(-6px);
    border-color: rgba(220,147,164,.42);
}

.featured-property-media {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: var(--surface-2);
}

.featured-property-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.featured-property-card:hover
.featured-property-media img {
    transform: scale(1.035);
}

.featured-property-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: var(--muted);
}

.property-purpose-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(9,6,7,.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.featured-property-body {
    padding: 25px;
}

.featured-property-body h3 {
    min-height: 58px;
    margin: 9px 0;
    font-size: 22px;
}

.property-location {
    min-height: 50px;
    color: var(--muted);
    font-size: 14px;
}

.featured-property-footer {
    min-height: 54px;
    margin-top: 22px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--border);
}

.featured-property-footer strong {
    font-size: 20px;
}

.featured-property-footer a {
    color: #dc93a4;
    font-weight: 700;
    white-space: nowrap;
}

.property-loading {
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border);
    color: var(--muted);
}


/* Cards polish */

.activity-card,
.feature-panel,
.trading-panel,
.location-card,
.big-cta {
    box-shadow:
        0 30px 100px rgba(0,0,0,.16);
}


/* Footer */

.footer {
    padding-top: 75px;
    background: #090607;
}

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

.footer-company p {
    max-width: 500px;
    margin-top: 22px;
}

.footer-contact-lines {
    display: grid;
    gap: 6px;
    margin-top: 20px;
}

.footer-contact-lines a:hover {
    color: #fff;
}

.footer-grid strong {
    display: block;
    margin-bottom: 17px;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}


/* Scroll reveal */

.reveal-ready {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .65s ease,
        transform .65s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1100px) {

    .nav-links {
        gap: 17px;
    }

    .nav-links a {
        font-size: 12px;
    }

    .featured-property-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


@media (max-width: 850px) {

    .premium-hero {
        min-height: 720px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .hero-proof-item,
    .hero-proof-item + .hero-proof-item {
        padding: 15px 0;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .hero-proof-item:first-child {
        border-top: 0;
    }

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

    .footer-bottom {
        display: grid;
    }

}


@media (max-width: 650px) {

    .premium-hero h1 {
        font-size: clamp(48px, 15vw, 70px);
    }

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

    .section-heading-row {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .featured-property-media {
        height: 245px;
    }

}


/* ==================================================
   CONTACT FORM
   ================================================== */

.contact-form-section {
    position: relative;
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(109,32,49,.20),
            transparent 32%
        ),
        var(--bg);
}

.contact-form-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    align-items: start;
}

.contact-form-copy {
    position: sticky;
    top: 120px;
}

.contact-form-copy h2 {
    margin: 12px 0 20px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.contact-form-copy > p {
    max-width: 500px;
    color: var(--muted);
    font-size: 17px;
}

.contact-form-highlights {
    display: grid;
    gap: 14px;
    margin-top: 35px;
}

.contact-form-highlights > div {
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
}

.contact-form-highlights strong {
    display: block;
    font-size: 13px;
}

.contact-form-highlights span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
}

.contact-form-panel {
    padding: 38px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow:
        0 30px 100px rgba(0,0,0,.17);
}

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

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-field label {
    font-size: 13px;
    font-weight: 700;
}

.form-field label span {
    color: var(--muted);
    font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #100b0d;
    color: var(--text);
    font: inherit;
    outline: none;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.form-field input,
.form-field select {
    min-height: 52px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 170px;
    padding: 15px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #7f7478;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(220,147,164,.7);
    box-shadow:
        0 0 0 3px rgba(168,64,89,.14);
    background: #130d10;
}

.form-field input:invalid:not(:placeholder-shown),
.form-field textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(220,100,110,.55);
}

.contact-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
}

.form-status {
    display: none;
    margin: 5px 0 20px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
}

.form-status.visible {
    display: block;
}

.form-status.success {
    color: #cff4dc;
    border: 1px solid rgba(80,180,115,.35);
    background: rgba(55,140,85,.12);
}

.form-status.error {
    color: #ffd7db;
    border: 1px solid rgba(220,90,105,.35);
    background: rgba(180,55,70,.12);
}

.contact-submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.contact-submit-row p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

#contact-submit[disabled] {
    opacity: .6;
    cursor: wait;
}

@media (max-width: 900px) {

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

    .contact-form-copy {
        position: static;
    }

}

@media (max-width: 620px) {

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

    .contact-form-panel {
        padding: 25px 20px;
    }

    .contact-submit-row {
        display: grid;
    }

    #contact-submit {
        width: 100%;
    }

}


/* ==================================================
   FINAL RESPONSIVE POLISH
   ================================================== */

img {
    max-width: 100%;
    height: auto;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}


/* Tablet */

@media (max-width: 1024px) {

    .container {
        width: min(
            calc(100% - 44px),
            1200px
        );
    }

    .nav-cta {
        display: none;
    }

    .premium-hero {
        min-height: 700px;
    }

    .premium-hero h1 {
        max-width: 760px;
    }

    .activity-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


/* Mobile navigation */

@media (max-width: 850px) {

    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    .nav {
        min-height: 72px;
    }

    .mobile-menu-button {
        display: grid;
        place-items: center;

        width: 44px;
        height: 44px;

        margin-left: auto;

        border: 1px solid var(--border);
        border-radius: 12px;

        background: rgba(255,255,255,.04);
        color: #fff;

        font-size: 21px;
        cursor: pointer;
    }

    .nav-links {
        position: absolute;

        top: calc(100% + 1px);
        left: 20px;
        right: 20px;

        display: none;
        grid-template-columns: 1fr;
        gap: 0;

        padding: 12px;

        border: 1px solid var(--border);
        border-radius: 18px;

        background:
            rgba(14,9,11,.98);

        backdrop-filter: blur(24px);

        box-shadow:
            0 25px 80px rgba(0,0,0,.45);
    }

    .nav-links.open {
        display: grid;
    }

    .nav-links a {
        padding: 13px 12px;
        border-radius: 10px;
        font-size: 14px;
    }

    .nav-links a:hover {
        background:
            rgba(255,255,255,.045);
    }

    .nav-links a::after {
        display: none;
    }

}


/* Phones */

@media (max-width: 650px) {

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

    .brand img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .brand span {
        font-size: 17px;
    }

    .brand small {
        font-size: 8px;
    }


    /* Hero */

    .premium-hero {
        min-height: auto;

        padding:
            90px 0
            70px;

        background-position:
            62% center;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-badge {
        width: fit-content;

        font-size: 10px;

        line-height: 1.35;
    }

    .premium-hero h1 {
        margin-top: 22px;

        font-size:
            clamp(
                49px,
                15vw,
                68px
            );

        line-height: .94;

        word-break: normal;
    }

    .hero-lead {
        margin-top: 23px;

        font-size:
            16px !important;

        line-height: 1.65;
    }

    .hero-actions {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-proof {
        margin-top: 45px;
    }


    /* General sections */

    .large-section {
        padding:
            70px 0;
    }

    .section {
        padding:
            65px 0;
    }

    .section-title h2,
    .split-copy h2,
    .contact-form-copy h2 {
        font-size:
            clamp(
                34px,
                10vw,
                48px
            );
    }


    /* Activities */

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

    .activity-card {
        min-height: auto;
        padding: 25px;
    }


    /* Featured properties */

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

    .featured-property-card {
        border-radius: 18px;
    }

    .featured-property-media {
        height: 235px;
    }

    .featured-property-body {
        padding: 21px;
    }

    .featured-property-body h3 {
        min-height: auto;
    }

    .property-location {
        min-height: auto;
    }


    /* Investment/trading */

    .feature-panel,
    .trading-panel {
        padding: 23px;
    }

    .trading-points {
        grid-template-columns: 1fr;
    }


    /* Location */

    .location-card {
        padding: 24px;
    }

    .location-details {
        grid-template-columns: 1fr;
    }

    .location-big {
        font-size: 48px;
    }


    /* CTA */

    .big-cta {
        padding:
            50px 22px;
    }

    .big-cta h2 {
        font-size:
            clamp(
                34px,
                10vw,
                46px
            );
    }

    .big-cta .actions {
        display: grid;
        gap: 10px;
    }

    .big-cta .btn {
        width: 100%;
        justify-content: center;
    }


    /* Contact */

    .contact-form-layout {
        grid-template-columns: 1fr;
    }

    .contact-form-panel {
        padding:
            24px 18px;
    }

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

    .form-field input,
    .form-field select {
        min-height: 54px;
        font-size: 16px;
    }

    .form-field textarea {
        font-size: 16px;
    }


    /* Footer */

    .footer {
        padding-top: 55px;
    }

    .footer-company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;

        font-size: 11px;
    }

}


/* Very small phones */

@media (max-width: 390px) {

    .container {
        width:
            calc(100% - 26px);
    }

    .premium-hero h1 {
        font-size: 47px;
    }

    .hero-badge {
        max-width: 100%;
    }

    .brand small {
        display: none;
    }

}


/* Accessibility: respect reduced motion */

@media (
    prefers-reduced-motion:
    reduce
) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }

}

/* Temporary safeguard against accidental top-left generated content */
body::before,
body::after,
.header::before,
.header::after {
    content: none !important;
}
