:root {
    --bg: #f7f3ed;
    --card: #ffffff;
    --line: #e8dccd;
    --text: #2f241b;
    --muted: #73675d;
    --accent: #9f6a3b;
    --dark: #241b15;
    --soft: #faf6f0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.brand-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.brand-title span {
    color: var(--accent);
}

.brand-subtitle {
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
}

.managers {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.manager-card {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    min-width: 220px;
}

.manager-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
}

.manager-card div {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.intro-box {
    margin: 28px 0;
    padding: 28px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 24px;
}

.intro-box h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 34px;
}

.intro-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #5f544a;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 14px;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .managers {
        justify-content: flex-start;
    }
}