:root {
    --bg: #faf7f2;
    --surface: #ffffff;
    --text: #1f2933;
    --muted: #6b7280;
    --accent: #b08968;
    --accent-dark: #8c6a4f;
    --border: #e5e0d8;
    --shadow: 0 8px 32px rgba(31, 41, 51, 0.08);
    --radius: 14px;
    --radius-sm: 8px;
    --max-width: 1100px;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); }

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Topbar */
.topbar {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(8px);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.brand-name {
    font-size: 16px;
}

.topnav {
    display: flex;
    gap: 28px;
}

.topnav a {
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 640px) {
    .topnav { display: none; }
    .brand-name { font-size: 14px; }
}

/* Hero */
.hero {
    padding: 64px 0 48px;
    background: linear-gradient(180deg, #faf7f2 0%, #f1ece3 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

.hero-copy h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}

.lead {
    font-size: 19px;
    color: var(--muted);
    margin: 0 0 28px;
    max-width: 560px;
}

.cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.1s ease, background 0.15s ease;
    font-size: 15px;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover { background: var(--surface); }

.muted {
    color: var(--muted);
    font-size: 14px;
}

.hero-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.hero-card-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.kpi {
    padding: 16px 18px;
    background: #faf7f2;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kpi-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-dark);
}

.kpi-label {
    color: var(--muted);
    font-size: 14px;
}

/* Sections */
.section {
    padding: 72px 0;
}

.section-alt {
    background: #f5efe6;
}

.section h2 {
    font-size: 32px;
    margin: 0 0 12px;
    letter-spacing: -0.3px;
}

.section-lead {
    color: var(--muted);
    margin: 0 0 36px;
    font-size: 17px;
}

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

@media (max-width: 860px) {
    .grid-3 { grid-template-columns: 1fr; }
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.card h3 {
    margin: 12px 0 8px;
    font-size: 19px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.card-icon {
    font-size: 32px;
    line-height: 1;
}

/* Two-column */
.two-col {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 860px) {
    .two-col { grid-template-columns: 1fr; gap: 28px; }
}

.info-box {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
}

.info-box h3 { margin: 0 0 12px; }

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

.info-box li { margin-bottom: 6px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    transition: transform 0.15s ease, border-color 0.15s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    color: var(--text);
}

.contact-card strong {
    display: block;
    margin-bottom: 2px;
}

.contact-card span {
    color: var(--muted);
    font-size: 14px;
}

.contact-icon {
    font-size: 28px;
    line-height: 1;
}

/* Footer */
.footer {
    background: #1f2933;
    color: #d2d6dc;
    padding: 36px 0;
}

.footer .brand-name { color: #fff; }
.footer .muted { color: #9aa5b1; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 24px;
    align-items: center;
}

@media (max-width: 860px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 18px;
    }
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    color: #9aa5b1;
}

.footer a { color: #d2d6dc; }
.footer a:hover { color: #fff; }
