:root {
    --brand-background: #f4f1eb;
    --brand-surface: #ffffff;
    --brand-surface-alt: #ebe5dc;
    --brand-surface-dark: #1b1f24;
    --brand-text: #20242a;
    --brand-text-light: #6f7782;
    --brand-text-inverse: #ffffff;
    --brand-border: rgba(32, 36, 42, 0.08);
    --brand-border-strong: rgba(32, 36, 42, 0.16);
    --brand-accent: #8f7553;
    --brand-accent-dark: #6e5a41;
    --brand-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.06);
    --brand-shadow-md: 0 20px 50px rgba(0, 0, 0, 0.10);
    --brand-shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.16);
    --brand-radius-sm: 8px;
    --brand-radius-md: 16px;
    --brand-radius-lg: 28px;
    --brand-font-heading: "Inter", "Segoe UI", sans-serif;
    --brand-font-body: "Inter", "Segoe UI", sans-serif;
}

body {
    background: var(--brand-background);
    color: var(--brand-text);
    font-family: var(--brand-font-body);
    font-size: 16px;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--brand-font-heading);
    font-weight: 600;
    line-height: 1.1;
    color: var(--brand-text);
}

h1 {
    font-size: 72px;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 48px;
    letter-spacing: -0.03em;
}

h3 {
    font-size: 32px;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
    color: var(--brand-text-light);
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    background: rgba(244, 241, 235, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--brand-border);
}

.site-header-transparent {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
    border-bottom: none;
}

.site-header-transparent .site-logo a,
.site-header-transparent .site-navigation a,
.site-header-transparent .site-header-actions a {
    color: var(--brand-text-inverse);
}

.site-logo a {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-navigation {
    gap: 32px;
}

.site-navigation a {
    color: var(--brand-text);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header-actions {
    gap: 16px;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 999px;
    background: var(--brand-accent);
    color: var(--brand-text-inverse);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--brand-shadow-sm);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
button:hover {
    background: var(--brand-accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--brand-shadow-md);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--brand-text-inverse);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero-background {
    background: linear-gradient(rgba(18, 20, 24, 0.40), rgba(18, 20, 24, 0.60)), url('/images/hero.jpg') center center / cover no-repeat;
}

.home-hero-title,
.home-hero-description,
.home-hero-eyebrow {
    color: var(--brand-text-inverse);
}

.home-hero-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.8;
}

.home-proof-bar {
    background: var(--brand-surface);
    border-top: 1px solid var(--brand-border);
    border-bottom: 1px solid var(--brand-border);
    box-shadow: var(--brand-shadow-sm);
}

.section-card,
.metric-card,
.property-card,
.team-card,
.cta-card {
    background: var(--brand-surface);
    border: 1px solid var(--brand-border);
    border-radius: var(--brand-radius-md);
    box-shadow: var(--brand-shadow-sm);
}

.section-card,
.cta-card {
    padding: 40px;
}

.metric-card,
.property-card,
.team-card {
    padding: 32px;
}

.home-cta-band {
    background: var(--brand-surface-dark);
    color: var(--brand-text-inverse);
}

.home-cta-band h2,
.home-cta-band h3,
.home-cta-band p {
    color: var(--brand-text-inverse);
}

.site-footer {
    background: #181c20;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer-title {
    color: var(--brand-text-inverse);
    font-size: 20px;
    font-weight: 700;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.site-footer a:hover {
    color: var(--brand-text-inverse);
}

@media (max-width: 900px) {
    h1 {
        font-size: 56px;
    }

    h2 {
        font-size: 40px;
    }
}

@media (max-width: 700px) {
    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 24px;
    }
}
