@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* =========================================================
   BLACKAGED HOLDINGS
   FILM / TELEVISION / ORIGINAL CONTENT
   CINEMATIC LUXURY THEME
========================================================= */

:root {
    --black: #050505;
    --black-soft: #0a0a0a;
    --black-light: #111111;
    --white: #f5f1e8;
    --white-soft: #d8d3c9;
    --gray: #9a978f;
    --gray-dark: #66635d;
    --gold: #c9a45a;
    --gold-light: #ddbd76;
    --gold-dark: #9e7b39;
    --border: rgba(255, 255, 255, 0.10);
    --border-gold: rgba(201, 164, 90, 0.30);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;
    --container: 1500px;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   PRELOADER
========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

    #preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-content {
    width: min(260px, 70vw);
    text-align: center;
}

    .loader-content img {
        width: 180px;
        max-width: 100%;
        margin: 0 auto 28px;
    }

.loader-line {
    position: relative;
    width: 100%;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.15);
}

    .loader-line::after {
        content: "";
        position: absolute;
        inset: 0;
        width: 45%;
        background: var(--gold);
        animation: loaderLine 1.4s ease-in-out infinite;
    }

@keyframes loaderLine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(300%);
    }
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: 108px;
    background: rgba(3, 3, 3, 0.16);
    border-bottom: 1px solid transparent;
    transition: background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}

    .header.scrolled {
        height: 82px;
        background: rgba(5, 5, 5, 0.94);
        border-bottom-color: var(--border);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

    .logo img {
        width: 148px;
        height: auto;
        object-fit: contain;
        transition: width 0.35s ease, opacity 0.3s ease;
    }

.header.scrolled .logo img {
    width: 128px;
}

.logo:hover img {
    opacity: 0.88;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-links a {
        position: relative;
        display: inline-block;
        padding: 8px 0;
        color: rgba(255, 255, 255, 0.86);
        font-family: var(--sans);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold-light);
        }

            .nav-links a:hover::after {
                width: 100%;
            }


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--white);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.99) );
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-close {
    position: absolute;
    top: 28px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: transparent;
    color: var(--white);
    font-size: 38px;
    font-weight: 300;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

    .mobile-nav a {
        color: var(--white);
        font-family: var(--serif);
        font-size: 42px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

        .mobile-nav a:hover {
            color: var(--gold);
        }


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505 url("/images/backgrounds/hero.jpg") center center / cover no-repeat;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient( 90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 30%, rgba(0, 0, 0, 0.36) 60%, rgba(0, 0, 0, 0.18) 100% );
    }

    .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        background: linear-gradient( 180deg, rgba(0, 0, 0, 0.46) 0%, transparent 22%, transparent 68%, rgba(0, 0, 0, 0.82) 100% );
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient( circle at 30% 48%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.30) 62%, rgba(0, 0, 0, 0.46) 100% );
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.075;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    transform: translateY(-1vh);
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero-content::before {
    content: "FILM  ·  TELEVISION  ·  ORIGINAL CONTENT";
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    line-height: 1.5;
    text-transform: uppercase;
}

.hero h1 {
    margin: 18px 0 28px;
    max-width: 850px;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(76px, 8vw, 122px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.045em;
}

    .hero h1 span {
        display: block;
    }

.hero-content p {
    max-width: 610px;
    margin: 0 0 34px;
    color: rgba(245, 241, 232, 0.80);
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 30px;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border: 1px solid var(--gold);
}

    .btn-gold:hover {
        background: var(--gold-light);
        border-color: var(--gold-light);
    }

.btn-outline {
    background: rgba(0, 0, 0, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.34);
}

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.10);
        border-color: rgba(255, 255, 255, 0.70);
    }

.hero-bottom {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 26px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.48);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    right: 34px;
    bottom: 92px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.56);
    font-family: var(--sans);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

    .scroll-cue::after {
        content: "";
        display: block;
        width: 1px;
        height: 55px;
        background: rgba(255, 255, 255, 0.35);
    }


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
    position: relative;
}

.about,
.properties,
.why-us,
.executives,
.contact {
    padding: 140px 0;
}

.about {
    background: var(--black);
}

.properties {
    background: #080808;
}

.why-us {
    background: var(--black);
}

.executives {
    background: #080808;
}

.contact {
    background: var(--black);
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
    max-width: 850px;
    margin-bottom: 70px;
}

    .section-title > span,
    .section-tag {
        display: inline-block;
        margin-bottom: 18px;
        color: var(--gold);
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .section-title h2,
    .section-header h2 {
        margin: 0;
        color: var(--white);
        font-family: var(--serif);
        font-size: clamp(54px, 6vw, 88px);
        font-weight: 400;
        line-height: 0.98;
        letter-spacing: -0.035em;
    }

        .section-title h2 span,
        .section-header h2 span {
            color: var(--gold);
        }

    .section-title p {
        max-width: 700px;
        margin: 26px 0 0;
        color: var(--gray);
        font-size: 16px;
        font-weight: 300;
        line-height: 1.8;
    }


/* =========================================================
   ABOUT / STUDIO
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 90px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--black-light);
}

    .about-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, transparent 50%, rgba(0, 0, 0, 0.55) 100% );
    }

    .about-image img {
        width: 100%;
        height: 100%;
        min-height: 620px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .about-image:hover img {
        transform: scale(1.035);
    }

.about-content h2 {
    margin: 0 0 30px;
    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(52px, 5vw, 78px);
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

    .about-content h2 span {
        display: block;
        color: var(--gold);
    }

.about-content p {
    max-width: 640px;
    margin: 0 0 20px;
    color: var(--gray);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 42px 0;
}

.feature {
    padding: 18px 20px;
    border-top: 1px solid var(--border);
    color: var(--white-soft);
    font-size: 13px;
    font-weight: 500;
}

    .feature:nth-child(3),
    .feature:nth-child(4) {
        border-bottom: 1px solid var(--border);
    }

    .feature span {
        display: inline-block;
        margin-right: 14px;
        color: var(--gold);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.14em;
    }


/* =========================================================
   STATISTICS
========================================================= */

.statistics {
    padding: 0;
    background: var(--black-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}

    .stat-card:first-child {
        border-left: 1px solid var(--border);
    }

    .stat-card h2 {
        margin: 0 0 8px;
        color: var(--gold);
        font-family: var(--serif);
        font-size: 68px;
        font-weight: 400;
        line-height: 1;
    }

    .stat-card p {
        margin: 0;
        color: var(--gray);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }


/* =========================================================
   PRODUCTIONS
========================================================= */

.property-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.property-card {
    overflow: hidden;
    background: #0c0c0c;
    border: 1px solid var(--border);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

    .property-card:hover {
        transform: translateY(-7px);
        border-color: var(--border-gold);
    }

.property-image {
    position: relative;
    height: 420px;
    overflow: hidden;
    background: #111;
}

    .property-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease, filter 0.5s ease;
    }

.property-card:hover .property-image img {
    transform: scale(1.045);
    filter: brightness(1.05);
}

.property-price {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.property-content {
    padding: 32px;
}

    .property-content .section-tag {
        margin-bottom: 12px;
        font-size: 9px;
    }

    .property-content h3 {
        margin: 0 0 12px;
        color: var(--white);
        font-family: var(--serif);
        font-size: 34px;
        font-weight: 400;
        line-height: 1.05;
    }

    .property-content p {
        min-height: 56px;
        margin: 0 0 25px;
        color: var(--gray);
        font-size: 14px;
        font-weight: 300;
        line-height: 1.65;
    }

.property-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

    .property-info span {
        color: var(--gray-dark);
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }


/* =========================================================
   CREATIVE APPROACH
========================================================= */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.why-card {
    min-height: 310px;
    padding: 38px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s ease;
}

    .why-card:hover {
        background: #0c0c0c;
    }

.why-icon {
    margin-bottom: 60px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 25px;
}

.why-card h3 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
}

.why-card p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
}


/* =========================================================
   LEADERSHIP
========================================================= */

.section-header {
    max-width: 800px;
    margin-bottom: 65px;
}

    .section-header h5 {
        margin: 0 0 18px;
        color: var(--gold);
        font-family: var(--sans);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.22em;
        text-transform: uppercase;
    }

    .section-header p {
        max-width: 650px;
        margin: 24px 0 0;
        color: var(--gray);
        font-size: 16px;
        font-weight: 300;
    }

.executives-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.executive-card {
    position: relative;
    overflow: hidden;
    background: #0d0d0d;
    border: 1px solid var(--border);
}

    .executive-card > img {
        width: 100%;
        height: 460px;
        object-fit: cover;
        filter: grayscale(100%);
        transition: transform 0.7s ease, filter 0.7s ease;
    }

    .executive-card:hover > img {
        transform: scale(1.035);
        filter: grayscale(15%);
    }

.executive-content {
    padding: 24px 26px 28px;
    border-top: 1px solid var(--border);
}

    .executive-content h3 {
        margin: 0 0 5px;
        color: var(--white);
        font-family: var(--serif);
        font-size: 30px;
        font-weight: 400;
    }

    .executive-content p {
        margin: 0;
        color: var(--gold);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 90px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-box {
    padding: 25px 0;
    border-top: 1px solid var(--border);
}

    .contact-box:last-child {
        border-bottom: 1px solid var(--border);
    }

    .contact-box h3 {
        margin: 0 0 8px;
        color: var(--gold);
        font-family: var(--sans);
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 0.17em;
        text-transform: uppercase;
    }

    .contact-box p {
        margin: 0;
        color: var(--gray);
        font-size: 15px;
        font-weight: 300;
        line-height: 1.7;
    }

.contact-form {
    padding: 42px;
    background: #0a0a0a;
    border: 1px solid var(--border);
}

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 17px 18px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 0;
        outline: none;
        color: var(--white);
        font-family: var(--sans);
        font-size: 14px;
        font-weight: 300;
        transition: border-color 0.3s ease, background 0.3s ease;
    }

        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #77746e;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            background: rgba(255, 255, 255, 0.025);
            border-color: var(--gold);
        }

    .contact-form textarea {
        resize: vertical;
        min-height: 170px;
    }

    .contact-form .btn {
        align-self: flex-start;
        margin-top: 8px;
    }

.field-validation-error {
    color: #c98787;
    font-size: 11px;
}

.alert-success,
.alert-error {
    padding: 14px 16px;
    font-size: 13px;
}

.alert-success {
    background: rgba(92, 145, 91, 0.12);
    border: 1px solid rgba(92, 145, 91, 0.30);
    color: #a9d5a7;
}

.alert-error {
    background: rgba(160, 65, 65, 0.12);
    border: 1px solid rgba(160, 65, 65, 0.30);
    color: #e0a0a0;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #050505;
    padding: 80px 0 0;
    width: 100%;
}

    .footer .container {
        width: 100%;
    }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-about {
    min-width: 0;
}

.footer-logo {
    width: 80px;
    height: auto;
    display: block;
    margin-bottom: 25px;
}

.footer-about p {
    color: #888;
    line-height: 1.8;
    max-width: 350px;
    margin: 0;
}

.footer h3 {
    color: #fff;
    font-size: 22px;
    line-height: 1.3;
    margin: 0 0 25px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-links a:hover {
        color: #fff;
    }

.footer-contact p,
.footer-hours p {
    color: #aaa;
    margin: 0 0 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding: 25px 0;
    text-align: center;
    color: #666;
    font-size: 13px;
}

    .footer-bottom p {
        margin: 0;
    }


/* =========================================================
   FOOTER RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}


@media (max-width: 600px) {

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-about p {
        max-width: 100%;
    }
}
/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1001px) {

    .hero-content {
        padding-left: 80px;
        padding-right: 80px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1200px) {

    :root {
        --container: 1180px;
    }

    .nav-links {
        gap: 27px;
    }

    .hero h1 {
        font-size: clamp(68px, 8vw, 105px);
    }

    .about-grid {
        gap: 55px;
    }

    .about-image,
    .about-image img {
        min-height: 540px;
    }

    .property-image {
        height: 350px;
    }

    .executive-card > img {
        height: 390px;
    }

    .why-card {
        padding: 30px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1000px) {

    .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .header {
        height: 90px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        padding-left: 40px;
        padding-right: 40px;
        transform: translateY(-2vh);
    }

    .hero h1 {
        max-width: 760px;
        font-size: clamp(64px, 10vw, 94px);
    }

    .hero-content p {
        max-width: 560px;
        font-size: 16px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image,
    .about-image img {
        min-height: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card:nth-child(3) {
        border-left: 1px solid var(--border);
    }

    .stat-card:nth-child(3),
    .stat-card:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .property-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 13px);
        width: 100%;
        justify-self: center;
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .executives-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    html {
        scroll-padding-top: 75px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .header,
    .header.scrolled {
        height: 76px;
    }

        .logo img,
        .header.scrolled .logo img {
            width: 118px;
        }

    .mobile-close {
        top: 18px;
        right: 18px;
    }

    .mobile-nav a {
        font-size: 34px;
    }

    .hero {
        min-height: 100svh;
        height: 100svh;
        background-position: 62% center;
    }

        .hero::before {
            background: linear-gradient( 90deg, rgba(0, 0, 0, 0.91) 0%, rgba(0, 0, 0, 0.72) 55%, rgba(0, 0, 0, 0.38) 100% );
        }

    .hero-content {
        padding-left: 24px;
        padding-right: 24px;
        transform: translateY(-2vh);
    }

    .hero-eyebrow {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: 0.20em;
    }

    .hero-content::before {
        margin-bottom: 8px;
        font-size: 8px;
        letter-spacing: 0.14em;
    }

    .hero h1 {
        max-width: 100%;
        margin: 14px 0 22px;
        font-size: clamp(54px, 15vw, 78px);
        line-height: 0.92;
    }

    .hero-content p {
        max-width: 450px;
        margin-bottom: 27px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }

    .btn {
        min-height: 48px;
        padding: 0 21px;
        font-size: 9px;
        letter-spacing: 0.13em;
    }

    .hero-bottom {
        left: 24px;
        right: 24px;
        bottom: 20px;
        font-size: 7px;
        letter-spacing: 0.13em;
    }

    .scroll-cue {
        display: none;
    }

    .about,
    .properties,
    .why-us,
    .executives,
    .contact {
        padding: 90px 0;
    }

    .section-title {
        margin-bottom: 45px;
    }

        .section-title h2,
        .section-header h2 {
            font-size: clamp(48px, 13vw, 65px);
        }

        .section-title p {
            font-size: 14px;
        }

    .about-image,
    .about-image img {
        min-height: 380px;
    }

    .about-content h2 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .about-content p {
        font-size: 14px;
    }

    .about-features {
        grid-template-columns: 1fr;
        margin: 32px 0;
    }

    .feature:nth-child(3),
    .feature:nth-child(4) {
        border-bottom: 0;
    }

    .feature:last-child {
        border-bottom: 1px solid var(--border);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card,
    .stat-card:first-child,
    .stat-card:nth-child(3) {
        min-height: 170px;
        border-left: 1px solid var(--border);
        border-right: 1px solid var(--border);
        border-top: 0;
        border-bottom: 1px solid var(--border);
    }

        .stat-card h2 {
            font-size: 58px;
        }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .property-image {
        height: 340px;
    }

    .property-content {
        padding: 26px;
    }

        .property-content h3 {
            font-size: 31px;
        }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
        padding: 30px;
    }

    .why-icon {
        margin-bottom: 35px;
    }

    .executives-grid {
        grid-template-columns: 1fr;
    }

    .executive-card > img {
        height: 430px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
