/* ==========================================================
   DADA'S SURINAME PROPERTY WEBSITE
   Main palette:
   - Suriname green, red and white
   - Logo navy and gold
========================================================== */

:root {
    --suriname-green: #278b4b;
    --suriname-green-dark: #166736;
    --suriname-red: #c9273d;
    --suriname-red-dark: #991c2d;
    --suriname-white: #ffffff;
    --navy: #082e57;
    --navy-deep: #051f3c;
    --gold: #cda04f;
    --gold-light: #edd49b;
    --ink: #172333;
    --muted: #637083;
    --surface: #ffffff;
    --surface-soft: #f4f7f5;
    --border: rgba(8, 46, 87, 0.12);
    --shadow-sm: 0 10px 30px rgba(5, 31, 60, 0.08);
    --shadow-lg: 0 24px 70px rgba(5, 31, 60, 0.16);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --content-width: 1200px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    min-height: 100vh;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 5%, rgba(39, 139, 75, 0.10), transparent 24rem),
        radial-gradient(circle at 95% 20%, rgba(201, 39, 61, 0.08), transparent 24rem),
        #fbfcfb;
    line-height: 1.6;
}

img,
video {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================
   LANGUAGE DISPLAY
========================================================== */

.lang-en,
.lang-nl {
    display: inline;
}

body[data-language="en"] .lang-nl,
body[data-language="en"] .lang-divider,
body[data-language="nl"] .lang-en,
body[data-language="nl"] .lang-divider {
    display: none !important;
}

body[data-language="both"] .bilingual-heading,
body[data-language="both"] .bilingual-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

body[data-language="both"] .bilingual-heading .lang-nl,
body[data-language="both"] .bilingual-copy .lang-nl {
    border-left: 2px solid rgba(205, 160, 79, 0.45);
    padding-left: 1.25rem;
}

body[data-language="en"] .bilingual-heading,
body[data-language="nl"] .bilingual-heading,
body[data-language="en"] .bilingual-copy,
body[data-language="nl"] .bilingual-copy {
    display: block;
}

body[data-language="both"] .category-link strong,
body[data-language="both"] .category-link small,
body[data-language="both"] .property-card h3,
body[data-language="both"] .property-features small,
body[data-language="both"] .sold-note,
body[data-language="both"] .site-footer a,
body[data-language="both"] .footer-contact p {
    display: grid;
    gap: 0.15rem;
}

/* ==========================================================
   HEADER
========================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
    min-height: 88px;
    padding: 0.65rem max(4vw, 1.25rem);
    color: var(--navy);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(5, 31, 60, 0.06);
    backdrop-filter: blur(18px);
}

.site-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--suriname-green) 0 35%,
        #fff 35% 42%,
        var(--suriname-red) 42% 58%,
        #fff 58% 65%,
        var(--suriname-green) 65% 100%
    );
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-width: max-content;
}

.brand img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(5, 31, 60, 0.10);
}

.brand-copy {
    display: grid;
    line-height: 1.2;
}

.brand-copy strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: 0.08em;
}

.brand-copy small {
    margin-top: 0.25rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.74rem;
}

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.7rem, 1.5vw, 1.6rem);
}

.main-navigation a {
    position: relative;
    display: inline-flex;
    gap: 0.25rem;
    align-items: center;
    padding: 0.7rem 0.1rem;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 800;
    white-space: nowrap;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0.35rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--suriname-red));
    transition: right var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
    right: 0;
}

.language-switcher {
    display: flex;
    gap: 0.35rem;
    padding: 0.3rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #f8faf9;
}

.language-button {
    border: 0;
    border-radius: 999px;
    padding: 0.48rem 0.72rem;
    color: var(--navy);
    background: transparent;
    font-size: 0.75rem;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
}

.language-button:hover,
.language-button.active {
    color: #fff;
    background: var(--navy);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 21px;
    height: 2px;
    background: var(--navy);
}

/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: 680px;
    padding: clamp(5rem, 9vw, 8rem) max(5vw, 1.25rem);
    color: #fff;
    background:
        linear-gradient(115deg, rgba(5, 31, 60, 0.98), rgba(8, 46, 87, 0.92) 58%, rgba(22, 103, 54, 0.88)),
        linear-gradient(135deg, var(--navy), var(--suriname-green));
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.25;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 44px 44px;
}

.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 520px;
    height: 520px;
    right: -150px;
    top: 15%;
    border-radius: 50%;
    border: 90px solid rgba(205, 160, 79, 0.08);
    box-shadow: 0 0 0 55px rgba(255, 255, 255, 0.025);
}

.flag-ribbon {
    position: absolute;
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: 3fr 0.6fr 1.6fr 0.6fr 3fr;
    height: 12px;
}

.flag-green { background: var(--suriname-green); }
.flag-white { background: #fff; }
.flag-red { background: var(--suriname-red); }

.hero-star {
    position: absolute;
    right: 11%;
    top: 14%;
    width: 130px;
    aspect-ratio: 1;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 93%, 50% 71%, 21% 93%, 32% 57%, 2% 35%, 39% 35%);
    opacity: 0.14;
    transform: rotate(-8deg);
}

.hero-content {
    max-width: 820px;
}

.eyebrow,
.section-kicker {
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 980px;
    margin-top: 1rem;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.hero h1 .lang-nl {
    color: var(--gold-light);
}

.hero-description {
    max-width: 820px;
    margin-top: 1.6rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.5vw, 1.13rem);
}

.hero-actions,
.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.9rem;
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 50px;
    padding: 0.85rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--navy-deep);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: 0 10px 26px rgba(205, 160, 79, 0.22);
}

.button-primary:hover {
    box-shadow: 0 14px 34px rgba(205, 160, 79, 0.30);
}

.button-secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px);
}

.hero-card {
    position: relative;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(16px);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(205, 160, 79, 0.28);
    border-radius: calc(var(--radius-lg) - 10px);
    pointer-events: none;
}

.hero-card img {
    position: relative;
    z-index: 1;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.hero-card div {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0.4rem 0.35rem;
}

.hero-card strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
}

.hero-card p {
    margin-top: 0.45rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

body[data-language="both"] .hero-card p span {
    display: block;
}

/* ==========================================================
   CATEGORY BAR
========================================================== */

.category-bar {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: min(calc(100% - 2rem), var(--content-width));
    margin: -45px auto 0;
    padding: 1rem;
    border: 1px solid rgba(8, 46, 87, 0.10);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-height: 96px;
    padding: 1rem;
    border: 1px solid transparent;
    border-radius: 18px;
    transition: var(--transition);
}

.category-link:hover {
    border-color: rgba(205, 160, 79, 0.45);
    background: #fbfaf5;
    transform: translateY(-2px);
}

.category-icon {
    display: grid;
    flex: 0 0 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--navy), var(--suriname-green));
    box-shadow: 0 8px 18px rgba(5, 31, 60, 0.14);
    font-size: 1.25rem;
    font-weight: 900;
}

.category-link strong {
    color: var(--navy);
    font-size: 0.95rem;
    line-height: 1.25;
}

.category-link small {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.25;
}

/* ==========================================================
   PROPERTY SECTIONS
========================================================== */

.property-section,
.about-section {
    width: min(100%, 1480px);
    margin-inline: auto;
    padding: clamp(5rem, 8vw, 8rem) max(5vw, 1.25rem);
}

.section-tinted {
    position: relative;
    width: 100%;
    max-width: none;
    background:
        linear-gradient(180deg, rgba(39, 139, 75, 0.04), rgba(39, 139, 75, 0.09)),
        #f8faf8;
    border-top: 1px solid rgba(39, 139, 75, 0.10);
    border-bottom: 1px solid rgba(39, 139, 75, 0.10);
}

.section-tinted > * {
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
    gap: 2rem;
    align-items: end;
    width: min(100%, var(--content-width));
    margin: 0 auto 2.2rem;
}

.section-kicker {
    color: var(--suriname-red);
}

.section-heading h2,
.about-content h2 {
    margin-top: 0.55rem;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 4.2vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

body[data-language="both"] .section-heading h2 .lang-nl,
body[data-language="both"] .about-content h2 .lang-nl {
    display: block;
    color: var(--gold);
    font-size: 0.72em;
    margin-top: 0.25rem;
}

.section-intro {
    color: var(--muted);
    font-size: 1rem;
}

body[data-language="both"] .section-intro span {
    display: block;
}

body[data-language="both"] .section-intro .lang-nl {
    margin-top: 0.55rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    width: min(100%, var(--content-width));
    margin-inline: auto;
}

.property-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    border-color: rgba(205, 160, 79, 0.42);
    box-shadow: 0 22px 55px rgba(5, 31, 60, 0.14);
}

.property-media,
.media-strip {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #e7eee9, #d8e1dc);
}

.property-media img,
.media-strip img,
.media-strip video {
    height: 320px;
    object-fit: cover;
}

.media-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) rgba(255, 255, 255, 0.6);
}

.media-strip figure {
    scroll-snap-align: start;
}

.status-badge,
.media-badge {
    position: absolute;
    z-index: 3;
    top: 1rem;
    display: inline-grid;
    gap: 0.05rem;
    padding: 0.52rem 0.78rem;
    border-radius: 999px;
    color: #fff;
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(5, 31, 60, 0.18);
}

.status-badge { left: 1rem; }
.media-badge {
    right: 1rem;
    color: var(--navy-deep);
    background: rgba(255, 255, 255, 0.92);
}

.status-sale { background: var(--suriname-red); }
.status-rent { background: var(--suriname-green-dark); }
.status-sold { background: var(--navy); }

.property-content {
    padding: 1.35rem;
}

.property-location {
    color: var(--suriname-green-dark);
    font-size: 0.82rem;
    font-weight: 900;
}

.property-card h3 {
    margin-top: 0.55rem;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.15;
}

body[data-language="both"] .property-card h3 .lang-nl {
    color: #8a672d;
    font-size: 0.76em;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1rem 0;
    padding: 0.9rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.property-features > span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    min-height: 34px;
    padding: 0.4rem 0.65rem;
    border-radius: 10px;
    color: var(--navy);
    background: #f4f7f5;
    font-weight: 900;
}

.property-features small {
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.1;
}

.property-description {
    color: var(--muted);
    font-size: 0.92rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
}

.property-price {
    color: var(--suriname-red-dark);
    font-size: 1.08rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 900;
}

.text-link:hover {
    color: var(--suriname-red);
}

.sold-section {
    width: 100%;
    max-width: none;
    color: #fff;
    background:
        linear-gradient(125deg, rgba(5, 31, 60, 0.98), rgba(8, 46, 87, 0.94)),
        var(--navy);
}

.sold-section .section-heading h2,
.sold-section .section-intro {
    color: #fff;
}

.sold-section .section-kicker {
    color: var(--gold-light);
}

.sold-card {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.sold-card .property-content,
.sold-card h3,
.sold-card .property-location {
    color: #fff;
}

.sold-card .property-media img {
    filter: grayscale(0.55) contrast(0.95);
}

.sold-note {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

/* ==========================================================
   ABOUT SECTION
========================================================== */

.about-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: clamp(2.2rem, 5vw, 5rem);
    align-items: center;
    width: min(100%, var(--content-width));
}

.about-logo-wrap {
    position: relative;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(145deg, var(--gold), var(--suriname-green), var(--suriname-red)) border-box;
    border: 3px solid transparent;
    box-shadow: var(--shadow-lg);
}

.about-logo-wrap::before,
.about-logo-wrap::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 50%;
}

.about-logo-wrap::before {
    width: 150px;
    height: 150px;
    left: -45px;
    top: -45px;
    background: rgba(39, 139, 75, 0.11);
}

.about-logo-wrap::after {
    width: 110px;
    height: 110px;
    right: -30px;
    bottom: -30px;
    background: rgba(201, 39, 61, 0.09);
}

.about-logo-wrap img {
    border-radius: 20px;
}

.about-copy {
    margin-top: 1.2rem;
    color: var(--muted);
}

.about-actions .text-link {
    color: var(--suriname-green-dark);
}

/* ==========================================================
   FOOTER
========================================================== */

.site-footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr 0.8fr;
    gap: 2rem;
    align-items: start;
    padding: 3rem max(5vw, 1.25rem) 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    background: var(--navy-deep);
    border-top: 6px solid var(--suriname-red);
}

.footer-brand {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.footer-brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
}

.footer-brand div {
    display: grid;
}

.footer-brand strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
}

.footer-brand span {
    color: var(--gold-light);
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 0.55rem;
}

.footer-contact a,
.footer-links a {
    color: #fff;
    font-weight: 700;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--gold-light);
}

.copyright {
    grid-column: 1 / -1;
    margin-top: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    text-align: center;
}

/* ==========================================================
   FOCUS & ACCESSIBILITY
========================================================== */

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px;
}

/* ==========================================================
   RESPONSIVE DESIGN
========================================================== */

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: auto auto 1fr;
    }

    .menu-toggle {
        display: grid;
        justify-self: end;
        grid-column: 3;
        grid-row: 1;
    }

    .language-switcher {
        justify-self: end;
        grid-column: 2;
        grid-row: 1;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 0.8rem max(4vw, 1.25rem) 1rem;
        background: #fff;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }

    .main-navigation.open {
        display: flex;
    }

    .main-navigation a {
        padding: 0.9rem 0.4rem;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: grid;
        grid-template-columns: 180px 1fr;
        align-items: center;
        gap: 1rem;
    }

    .hero-card img {
        aspect-ratio: 1;
    }

    .category-bar {
        grid-template-columns: 1fr;
        margin-top: -30px;
    }

    .category-link {
        min-height: 78px;
    }
}

@media (max-width: 820px) {
    body[data-language="both"] .bilingual-heading,
    body[data-language="both"] .bilingual-copy {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    body[data-language="both"] .bilingual-heading .lang-nl,
    body[data-language="both"] .bilingual-copy .lang-nl {
        border-left: 0;
        border-top: 1px solid rgba(205, 160, 79, 0.35);
        padding-top: 0.8rem;
        padding-left: 0;
    }

    .section-heading,
    .property-grid,
    .about-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer .copyright {
        grid-column: 1;
    }

    .property-media,
    .media-strip,
    .property-media img,
    .media-strip img,
    .media-strip video {
        min-height: 290px;
        height: 290px;
    }
}

@media (max-width: 620px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 0.6rem;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        width: 54px;
        height: 54px;
    }

    .brand-copy strong {
        font-size: 0.84rem;
    }

    .brand-copy small {
        font-size: 0.64rem;
    }

    .language-switcher {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: stretch;
    }

    .language-button {
        flex: 1;
    }

    .menu-toggle {
        grid-column: 2;
        grid-row: 1;
    }

    .hero {
        min-height: auto;
        padding-top: 4.7rem;
    }

    .hero h1 {
        font-size: clamp(2.35rem, 12vw, 3.8rem);
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-card img {
        max-height: 310px;
    }

    .hero-actions,
    .about-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .category-bar {
        width: min(calc(100% - 1rem), var(--content-width));
        padding: 0.65rem;
    }

    .section-heading h2,
    .about-content h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .property-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .status-badge,
    .media-badge {
        top: 0.65rem;
        padding: 0.4rem 0.58rem;
        font-size: 0.58rem;
    }

    .status-badge { left: 0.65rem; }
    .media-badge { right: 0.65rem; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}