:root {
    --bg: #ffffff;
    --text: #1b1b1b;
    --muted: #6b6b6b;
    --brand: #7c4a2d; /* café */
    --brand-dark: #5e361f;
    --card: #f6f3f1;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.site-header {
    border-bottom: 1px solid #eee;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.brand .logo { height: clamp(48px, 6vw, 96px); max-height: clamp(48px, 6vw, 96px); width: auto; display: block; filter: brightness(0); }
.nav a {
    color: var(--text);
    text-decoration: none;
    margin-left: 18px;
}
.nav a.active { color: var(--brand); }

.hero {
    padding: 56px 0 32px;
    background: linear-gradient(180deg, #fff 0%, #fff 70%, #faf7f5 100%);
}
.hero h1 {
    font-family: "Source Serif 4", Georgia, serif;
    font-weight: 600;
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 12px;
}
.hero p { color: var(--muted); font-size: 1.05rem; }
.hero .container p + p { margin-top: 8px; }

.team { padding: 28px 0 64px; }
.team h2 {
    font-family: "Source Serif 4", Georgia, serif;
    font-weight: 600;
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.card {
    grid-column: span 12;
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e9e4e1;
    display: flex;
    flex-direction: column;
}

.card .photo {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 220px;
}
.card-body { padding: 18px; }
.card h3 { margin: 0 0 8px; font-size: 1.25rem; }
.card p { margin: 10px 0 0; color: #3d3d3d; }

@media (min-width: 720px) {
    .card { grid-column: span 6; }
    .card .photo { height: 280px; }
}
@media (min-width: 1024px) {
    .card { grid-column: span 4; }
    .card .photo { height: 340px; }
}

.site-footer {
    background: #14110f;
    color: #ddd8d3;
    padding: 28px 0;
}
.site-footer p { margin: 0; font-size: 0.95rem; }


