:root {
    color-scheme: dark;
    --bg: #11100f;
    --panel: rgba(255,255,255,.055);
    --panel-border: rgba(255,255,255,.11);
    --text: #f4efe8;
    --muted: #b9afa5;
    --accent: #c49a6c;
    --accent-hover: #d8af80;
    --max-width: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 10%, rgba(126,83,53,.2), transparent 35%),
        linear-gradient(135deg, #181513, var(--bg) 58%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}
a { color: var(--accent); text-underline-offset: .18em; }
a:hover { color: var(--accent-hover); }
main, footer { width: min(calc(100% - 40px), var(--max-width)); margin-inline: auto; }
.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
    gap: clamp(36px, 7vw, 92px);
    align-items: center;
    min-height: 72vh;
    padding: 70px 0 56px;
}
.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
h1, h2 { margin-top: 0; line-height: 1.1; }
h1 { margin-bottom: 20px; font-size: clamp(3rem, 8vw, 6.8rem); letter-spacing: -.055em; }
h2 { margin-bottom: 18px; font-size: 1.35rem; }
.lead { max-width: 660px; margin: 0; color: var(--muted); font-size: clamp(1.15rem, 2.4vw, 1.65rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 20px;
    border: 1px solid var(--panel-border);
    border-radius: 999px;
    color: var(--text);
    text-decoration: none;
    background: var(--panel);
}
.button:hover { color: var(--text); border-color: rgba(255,255,255,.3); }
.button.primary { border-color: var(--accent); background: var(--accent); color: #17120e; font-weight: 700; }
.button.primary:hover { background: var(--accent-hover); }
.portrait-wrap { margin: 0; }
.portrait {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: 62% center;
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 0 56px;
}
.card, .legal-note {
    border: 1px solid var(--panel-border);
    border-radius: 22px;
    background: var(--panel);
    backdrop-filter: blur(12px);
}
.card { padding: clamp(24px, 4vw, 38px); }
.card p:last-child { margin-bottom: 0; }
address { margin: 22px 0; font-style: normal; }
.legal-note { margin-bottom: 60px; padding: clamp(24px, 4vw, 38px); }
.legal-note p { margin-bottom: 0; color: var(--muted); }
footer { padding: 0 0 38px; color: var(--muted); font-size: .9rem; }
@media (max-width: 820px) {
    .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 46px; }
    .portrait-wrap { order: -1; }
    .portrait { max-height: 520px; aspect-ratio: 16 / 11; object-position: 60% 35%; }
    .grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
