@charset "utf-8";
/* CSS Document */

/* ========================================
   ROOT
======================================== */

:root {
    --navy: #0b2b50;
    --navy-dark: #071c35;
    --navy-light: #153b65;

    --gold: #c3a658;
    --gold-light: #d7c27d;
    --gold-dark: #9d8038;

    --white: #ffffff;
    --off-white: #f8f8f5;
    --light: #f3f4f5;
    --border: #e2e5e8;

    --text: #1d2935;
    --text-light: #5f6b76;

    --shadow:
        0 20px 60px rgba(7, 28, 53, 0.12);

    --shadow-small:
        0 10px 35px rgba(7, 28, 53, 0.09);

    --radius: 14px;

    --container: 1180px;

    --font-heading:
        "Montserrat",
        Arial,
        sans-serif;

    --font-body:
        "DM Sans",
        Arial,
        sans-serif;
}


/* ========================================
   RESET
======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    margin-top: 0;
    color: var(--navy);
    font-family: var(--font-heading);
    line-height: 1.15;
}


/* ========================================
   UTILITIES
======================================== */

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-light {
    background: var(--off-white);
}

.section-heading {
    max-width: 670px;
}

.section-heading.centered {
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2,
.split-content h2,
.about-content h2,
.contact-information h2,
.faq-heading h2,
.tenant-content h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.04em;
}

.section-heading p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker::before {
    width: 30px;
    height: 2px;
    background: var(--gold);
    content: "";
}

.section-kicker.light {
    color: var(--gold-light);
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-family: var(--font-heading);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--navy-light);
    box-shadow: 0 12px 25px rgba(11, 43, 80, 0.2);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-gold:hover {
    background: var(--gold-light);
    box-shadow: 0 12px 30px rgba(195, 166, 88, 0.26);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--navy);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--navy);
    font-weight: 700;
}

.text-link span {
    color: var(--gold-dark);
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}


/* ========================================
   HEADER
======================================== */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid transparent;
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.site-header.scrolled {
    border-color: var(--border);
    box-shadow: 0 8px 30px rgba(7, 28, 53, 0.07);
}

.nav-wrapper {
    display: flex;
    min-height: 92px;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.brand-logo {
    width: 185px;
    height: 72px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 29px;
}

.desktop-nav a {
    position: relative;
    color: #344657;
    font-size: 0.93rem;
    font-weight: 600;
}

.desktop-nav a::after {
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    min-height: 46px;
    padding: 0 18px;
}

.mobile-menu-button {
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    background: transparent;
    border: 0;
}

.mobile-menu-button span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.mobile-menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}


/* ========================================
   HERO
======================================== */

.hero {
    position: relative;
    display: flex;
    min-height: 850px;
    align-items: center;
    padding: 155px 0 80px;
    background:
        linear-gradient(
            100deg,
            #071c35 0%,
            #0b2b50 58%,
            #123b63 100%
        );
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: -190px;
    right: -130px;
    width: 660px;
    height: 660px;
    border: 1px solid rgba(195, 166, 88, 0.2);
    border-radius: 50%;
    content: "";
}

.hero::after {
    position: absolute;
    right: 90px;
    bottom: -250px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.hero-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.05) 1px,
            transparent 1px
        );
    background-size: 70px 70px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 80px;
    grid-template-columns:
        minmax(0, 1.3fr)
        minmax(320px, 0.7fr);
}

.hero-content {
    max-width: 730px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(215, 194, 125, 0.35);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5.8rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.hero h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-copy {
    max-width: 680px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-trust {
    display: flex;
    margin-top: 50px;
    gap: 36px;
}

.hero-trust > div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.82rem;
}

.hero-trust span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.78rem;
}

.hero-card {
    padding: 38px;
    background:
        rgba(255, 255, 255, 0.97);
    border-top: 4px solid var(--gold);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.22);
}

.hero-card-label {
    margin-bottom: 11px;
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-bottom: 28px;
    font-size: 1.8rem;
    line-height: 1.25;
}

.check-list {
    display: grid;
    margin: 0 0 28px;
    padding: 0;
    gap: 13px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #526171;
}

.check-list li::before {
    position: absolute;
    top: 1px;
    left: 0;
    color: var(--gold-dark);
    content: "✓";
    font-weight: 800;
}

.scroll-down {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 50%;
    display: flex;
    width: 28px;
    height: 45px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 25px;
    transform: translateX(-50%);
}

.scroll-down span {
    width: 4px;
    height: 8px;
    margin-top: 8px;
    background: var(--gold-light);
    border-radius: 5px;
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(16px);
    }
}


/* ========================================
   INTRO
======================================== */

.intro-grid {
    display: grid;
    align-items: start;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
}

.intro-copy {
    color: var(--text-light);
    font-size: 1.04rem;
}

.intro-copy p:last-child {
    margin-bottom: 0;
}

.benefit-bar {
    display: grid;
    margin-top: 70px;
    border: 1px solid var(--border);
    grid-template-columns: repeat(4, 1fr);
}

.benefit {
    display: flex;
    min-height: 130px;
    align-items: center;
    padding: 25px;
    gap: 16px;
    border-right: 1px solid var(--border);
}

.benefit:last-child {
    border-right: 0;
}

.benefit-icon {
    display: flex;
    min-width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(195, 166, 88, 0.13);
    color: var(--gold-dark);
    font-family: var(--font-heading);
    font-size: 0.73rem;
    font-weight: 800;
}

.benefit strong,
.benefit span {
    display: block;
}

.benefit strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 0.88rem;
}

.benefit span {
    margin-top: 3px;
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.4;
}


/* ========================================
   SERVICES
======================================== */

.services-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    position: relative;
    min-height: 330px;
    padding: 38px 32px;
    background: var(--white);
    border: 1px solid var(--border);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    border-color: rgba(195, 166, 88, 0.55);
    box-shadow: var(--shadow-small);
    transform: translateY(-7px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(11, 43, 80, 0.08);
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
}

.service-icon {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin-bottom: 29px;
    background: rgba(195, 166, 88, 0.13);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--gold-dark);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 14px;
    font-size: 1.16rem;
}

.service-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.94rem;
}


/* ========================================
   OWNER SECTION
======================================== */

.split-layout {
    display: grid;
    align-items: center;
    gap: 90px;
    grid-template-columns: 1fr 1fr;
}

.visual-panel {
    position: relative;
    min-height: 600px;
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy-light)
        );
    overflow: hidden;
}

.visual-panel::before {
    position: absolute;
    top: 70px;
    left: 70px;
    width: 300px;
    height: 300px;
    border: 70px solid rgba(195, 166, 88, 0.16);
    content: "";
    transform: rotate(45deg);
}

.visual-panel::after {
    position: absolute;
    right: -100px;
    bottom: -80px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
    content: "";
}

.visual-label {
    position: absolute;
    z-index: 2;
    top: 52px;
    left: 52px;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,.75);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.visual-label span {
    margin-right: 15px;
    color: var(--gold-light);
    font-size: 1.6rem;
    font-weight: 800;
}

.floating-card {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 50px;
    width: 78%;
    padding: 35px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.floating-card strong {
    display: block;
    margin-bottom: 10px;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.floating-card p {
    margin: 0;
    color: var(--text-light);
    font-size: .9rem;
}

.split-content > p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.feature-list {
    display: grid;
    margin-bottom: 38px;
    gap: 23px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-check {
    display: flex;
    width: 34px;
    min-width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    background: rgba(195, 166, 88, .15);
    color: var(--gold-dark);
    font-weight: 800;
}

.feature-row h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-row p {
    margin: 0;
    color: var(--text-light);
    font-size: .9rem;
}


/* ========================================
   PROCESS
======================================== */

.process {
    background: var(--white);
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.process-grid::before {
    position: absolute;
    top: 29px;
    right: 12.5%;
    left: 12.5%;
    height: 1px;
    background: var(--border);
    content: "";
}

.process-step {
    position: relative;
    z-index: 2;
    padding: 0 25px;
    text-align: center;
}

.process-step span {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: var(--navy);
    border: 7px solid var(--white);
    box-shadow:
        0 0 0 1px var(--border);
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 800;
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.process-step p {
    margin: 0;
    color: var(--text-light);
    font-size: .9rem;
}


/* ========================================
   TENANTS
======================================== */

.tenant-section {
    position: relative;
    background:
        linear-gradient(
            115deg,
            var(--navy-dark),
            var(--navy)
        );
    color: var(--white);
    overflow: hidden;
}

.tenant-section::after {
    position: absolute;
    top: -150px;
    right: -150px;
    width: 550px;
    height: 550px;
    border: 100px solid rgba(195, 166, 88, .055);
    border-radius: 50%;
    content: "";
}

.tenant-grid {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
    gap: 90px;
    grid-template-columns: 1fr 1fr;
}

.tenant-content h2 {
    color: var(--white);
}

.tenant-content > p {
    margin-bottom: 34px;
    color: rgba(255,255,255,.7);
}

.tenant-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tenant-services {
    display: grid;
    gap: 1px;
    background: rgba(255,255,255,.12);
    grid-template-columns: 1fr 1fr;
}

.tenant-services > div {
    min-height: 210px;
    padding: 28px;
    background: rgba(255,255,255,.04);
}

.tenant-services span {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: .72rem;
    font-weight: 700;
}

.tenant-services h3 {
    margin: 18px 0 10px;
    color: var(--white);
    font-size: 1rem;
}

.tenant-services p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: .86rem;
}


/* ========================================
   MAINTENANCE
======================================== */

.maintenance {
    padding: 70px 0;
}

.maintenance-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 48px 55px;
    background: var(--off-white);
    border-left: 5px solid var(--gold);
    gap: 40px;
}

.maintenance-card h2 {
    max-width: 700px;
    margin-bottom: 10px;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.maintenance-card p {
    max-width: 780px;
    margin: 0;
    color: var(--text-light);
}


/* ========================================
   ABOUT
======================================== */

.about-grid {
    display: grid;
    align-items: center;
    gap: 100px;
    grid-template-columns: 1.1fr .9fr;
}

.about-content > p {
    color: var(--text-light);
}

.values {
    display: grid;
    margin-top: 35px;
    gap: 15px;
}

.values > div {
    padding-left: 18px;
    border-left: 3px solid var(--gold);
}

.values strong,
.values span {
    display: block;
}

.values strong {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: .92rem;
}

.values span {
    color: var(--text-light);
    font-size: .88rem;
}

.about-brand-card {
    padding: 55px;
    background: var(--white);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-brand-card img {
    width: 360px;
    margin: 0 auto;
}

.gold-line {
    width: 55px;
    height: 3px;
    margin: 30px auto;
    background: var(--gold);
}

.about-brand-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 1rem;
}


/* ========================================
   TESTIMONIALS
======================================== */

.testimonial-grid {
    display: grid;
    align-items: stretch;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
    padding: 38px 32px;
    background: var(--white);
    border: 1px solid var(--border);
}

.testimonial-card.featured {
    background: var(--navy);
    border-color: var(--navy);
}

.stars {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: .87rem;
    letter-spacing: 3px;
}

.testimonial-card blockquote {
    margin: 0 0 26px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

.testimonial-card.featured blockquote {
    color: var(--white);
}

.testimonial-author {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-card.featured .testimonial-author {
    border-top-color: rgba(255,255,255,.15);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: .83rem;
    font-weight: 700;
}

.testimonial-card.featured .testimonial-author span {
    color: rgba(255,255,255,.6);
}

.testimonial-note {
    margin: 25px 0 0;
    color: #8a939b;
    font-size: .75rem;
    text-align: center;
}


/* ========================================
   FAQ
======================================== */

.faq-layout {
    display: grid;
    align-items: start;
    gap: 90px;
    grid-template-columns: .8fr 1.2fr;
}

.faq-heading {
    position: sticky;
    top: 130px;
}

.faq-heading p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.accordion {
    border-top: 1px solid var(--border);
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 26px 0;
    background: transparent;
    border: 0;
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: .96rem;
    font-weight: 700;
    text-align: left;
}

.accordion-icon {
    display: flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
    background: var(--white);
    color: var(--gold-dark);
    font-size: 1.2rem;
    transition: transform .3s ease;
}

.accordion-button[aria-expanded="true"]
.accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.accordion-content > div {
    overflow: hidden;
}

.accordion-item.active
.accordion-content {
    grid-template-rows: 1fr;
}

.accordion-content p {
    padding: 0 55px 25px 0;
    margin: 0;
    color: var(--text-light);
    font-size: .93rem;
}


/* ========================================
   CTA
======================================== */

.cta-section {
    padding: 75px 0;
    background: var(--gold);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-inner span {
    display: block;
    margin-bottom: 8px;
    color: rgba(7,28,53,.65);
    font-family: var(--font-heading);
    font-size: .73rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.cta-inner h2 {
    max-width: 700px;
    margin: 0;
    color: var(--navy-dark);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}


/* ========================================
   CONTACT
======================================== */

.contact-grid {
    display: grid;
    align-items: start;
    gap: 90px;
    grid-template-columns: .9fr 1.1fr;
}

.contact-information > p {
    max-width: 530px;
    color: var(--text-light);
}

.contact-list {
    display: grid;
    margin-top: 40px;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    display: flex;
    width: 45px;
    min-width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: rgba(195, 166, 88, .13);
}

.contact-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--gold-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

.contact-item span {
    display: block;
    margin-bottom: 3px;
    color: var(--text-light);
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-item a,
.contact-item p {
    margin: 0;
    color: var(--navy);
    font-weight: 600;
}

.contact-form-wrapper {
    padding: 45px;
    background: var(--off-white);
}

.form-heading {
    margin-bottom: 28px;
}

.form-heading h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
}

.form-heading p {
    margin: 0;
    color: var(--text-light);
}

.form-row {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
}

.field {
    display: flex;
    margin-bottom: 18px;
    flex-direction: column;
}

.field label {
    margin-bottom: 7px;
    color: var(--navy);
    font-size: .79rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--white);
    border: 1px solid #d9dde1;
    border-radius: 3px;
    color: var(--text);
    outline: 0;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--gold);
    box-shadow:
        0 0 0 3px rgba(195,166,88,.12);
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: #c75252;
}

.field-error {
    min-height: 17px;
    margin-top: 4px;
    color: #b33d3d;
    font-size: .72rem;
}

.submit-button {
    width: 100%;
}

.form-message {
    display: none;
    margin: 15px 0 0;
    padding: 12px 14px;
    font-size: .86rem;
}

.form-message.success {
    display: block;
    background: #e9f6ed;
    color: #27633a;
}

.form-message.error {
    display: block;
    background: #fbeaea;
    color: #a63333;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 75px 0 25px;
    background: var(--navy-dark);
    color: rgba(255,255,255,.65);
}

.footer-grid {
    display: grid;
    gap: 60px;
    grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
}

.footer-brand img {
    width: 230px;
    margin-bottom: 25px;
    padding: 10px;
    background: white;
}

.footer-brand p {
    max-width: 360px;
    color: rgba(255,255,255,.52);
    font-size: .88rem;
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: .87rem;
}

.footer-column a,
.footer-column p {
    display: block;
    margin: 0 0 12px;
    color: rgba(255,255,255,.55);
    font-size: .84rem;
    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 65px;
    padding-top: 23px;
    border-top: 1px solid rgba(255,255,255,.1);
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
    font-size: .75rem;
}

.footer-bottom > div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    font-size: .75rem;
}


/* ========================================
   BACK TO TOP
======================================== */

.back-to-top {
    position: fixed;
    z-index: 800;
    right: 25px;
    bottom: 25px;
    display: flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    border: 0;
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* ========================================
   SCROLL REVEAL
======================================== */

.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-menu {
        position: fixed;
        z-index: 999;
        top: 92px;
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        flex-direction: column;
        padding: 0 25px;
        background: var(--white);
        box-shadow: 0 20px 30px rgba(7,28,53,.1);
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition:
            max-height .35s ease,
            opacity .2s ease,
            padding .35s ease;
    }

    .mobile-menu.active {
        max-height: 600px;
        padding-top: 15px;
        padding-bottom: 30px;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu > a:not(.btn) {
        padding: 13px 0;
        border-bottom: 1px solid var(--border);
        color: var(--navy);
        font-weight: 600;
    }

    .mobile-menu-cta {
        margin-top: 20px;
    }

    .hero-grid {
        gap: 45px;
        grid-template-columns: 1fr 380px;
    }

    .hero h1 {
        font-size: clamp(3rem, 6vw, 4.7rem);
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefit-bar {
        grid-template-columns: 1fr 1fr;
    }

    .benefit:nth-child(2) {
        border-right: 0;
    }

    .benefit:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .split-layout,
    .tenant-grid,
    .about-grid,
    .contact-grid,
    .faq-layout {
        gap: 55px;
    }

    .faq-layout {
        grid-template-columns: .9fr 1.1fr;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }
}


/* ========================================
   MOBILE / SMALL TABLET
======================================== */

@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 145px;
        padding-bottom: 100px;
    }

    .hero-grid,
    .intro-grid,
    .split-layout,
    .tenant-grid,
    .about-grid,
    .contact-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-card {
        max-width: 540px;
    }

    .intro-grid {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .visual-panel {
        min-height: 500px;
    }

    .split-layout {
        gap: 50px;
    }

    .process-grid {
        gap: 25px;
        grid-template-columns: 1fr 1fr;
    }

    .process-grid::before {
        display: none;
    }

    .tenant-grid {
        gap: 50px;
    }

    .maintenance-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-grid {
        gap: 45px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .faq-heading {
        position: static;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 560px) {

    .container {
        width: min(
            calc(100% - 30px),
            var(--container)
        );
    }

    .nav-wrapper {
        min-height: 78px;
    }


    .brand-logo {
        width: 150px;
        height: 60px;
    }

    .mobile-menu {
        top: 78px;
    }

    .hero {
        padding-top: 125px;
        padding-bottom: 90px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        display: grid;
        margin-top: 40px;
        gap: 15px;
        grid-template-columns: 1fr 1fr;
    }

    .hero-card {
        padding: 28px 23px;
    }

    .benefit-bar {
        grid-template-columns: 1fr;
    }

    .benefit {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .benefit:last-child {
        border-bottom: 0;
    }

    .service-card {
        min-height: auto;
    }

    .visual-panel {
        min-height: 430px;
    }

    .visual-panel::before {
        top: 70px;
        left: 35px;
        width: 230px;
        height: 230px;
        border-width: 50px;
    }

    .visual-label {
        top: 35px;
        left: 30px;
    }

    .floating-card {
        right: 20px;
        bottom: 25px;
        width: calc(100% - 40px);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .tenant-services {
        grid-template-columns: 1fr;
    }

    .tenant-services > div {
        min-height: auto;
    }

    .maintenance-card {
        padding: 35px 25px;
    }

    .about-brand-card {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .scroll-down {
        display: none;
    }
}


/* ========================================
   ACCESSIBILITY
======================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}