:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --accent: #2e7bdc;
    --cream: #f7f7f4;
    --ink: #1b1f2a;
    --muted: #5c6778;
    --line: #d9dde5;
    --shadow: 0 20px 50px rgba(15, 35, 70, 0.12);
    --radius: 16px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--cream);
}

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

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

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -200px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 20px;
}

.top-bar {
    background: var(--primary-dark);
    color: #fff;
    font-size: 0.9rem;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.top-bar a {
    color: #fff;
    font-weight: 500;
}

.top-bar-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.divider {
    opacity: 0.5;
}

.site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 18px rgba(15, 35, 70, 0.08);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 18px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 12px;
    object-fit: cover;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--muted);
}

.site-nav ul {
    display: flex;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.site-nav a {
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 20px rgba(27, 78, 155, 0.25);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(27, 78, 155, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}

.btn-ghost {
    background: rgba(27, 78, 155, 0.08);
    color: var(--primary);
    box-shadow: none;
}

.hero {
    background: linear-gradient(135deg, #eef2fb 0%, #f7f7f4 55%, #f1f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: rgba(46, 123, 220, 0.15);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 50px;
    padding: 80px 0 60px;
}

.hero-copy h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: 26px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

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

.stat {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
}

.hero-media {
    position: relative;
}

.hero-media img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    height: 520px;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    left: -40px;
    bottom: 30px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    width: min(300px, 80%);
}

.hero-card h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
}

.text-link {
    color: var(--primary);
    font-weight: 600;
}

.hero-bottom {
    background: #fff;
    border-top: 1px solid var(--line);
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px 0;
    text-align: center;
    font-weight: 600;
    color: var(--primary-dark);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: #f0f3f8;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.split-text h2,
.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px;
}

.image-stack {
    display: grid;
    gap: 20px;
    position: relative;
}

.image-stack img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.image-stack .stacked {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 65%;
    border: 6px solid #fff;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.highlight {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.highlight-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.highlight-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 6px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card img {
    border-radius: 14px;
    height: 180px;
    object-fit: cover;
}

.card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.list {
    padding-left: 20px;
    margin: 0;
    color: var(--muted);
}

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

.step-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.step-number {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.property-card img {
    height: 220px;
    object-fit: cover;
}

.property-card figcaption {
    padding: 20px;
}

.image-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.image-collage img {
    border-radius: 16px;
    height: 180px;
    object-fit: cover;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.contact-card {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-details {
    display: grid;
    gap: 18px;
    margin: 24px 0;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--muted);
}

.note {
    background: rgba(27, 78, 155, 0.08);
    color: var(--primary-dark);
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.contact-form {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 18px;
}

.contact-form label {
    font-weight: 600;
    color: var(--primary-dark);
    display: grid;
    gap: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    font-family: inherit;
    font-size: 1rem;
}

.site-footer {
    background: var(--primary-dark);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    padding: 50px 0;
}

.footer-brand img {
    width: 70px;
    border-radius: 12px;
    margin-bottom: 16px;
}

.footer-column {
    display: grid;
    gap: 8px;
}

.footer-column h4 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.footer-column a,
.footer-column p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-links a {
    color: #fff;
    margin-left: 16px;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .header-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .site-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-grid,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        height: 420px;
    }

    .hero-card {
        position: static;
        margin-top: -40px;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .top-bar-inner {
        flex-direction: column;
    }

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

    .image-stack .stacked {
        position: static;
        width: 100%;
    }

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

    .image-collage {
        grid-template-columns: 1fr;
    }
}
