:root {
    --background: #1b1b1a;
    --text: #f5f4ef;
    --muted: #bebbb1;
    --footer: #7f7c74;
    --gold: #cdae55;
    --gold-bright: #dcc171;
    --content-width: 44rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { min-width: 320px; background: var(--background); color-scheme: dark; }
body {
    margin: 0;
    min-height: 100vh;
    background: var(--background);
    color: var(--text);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.landing-page { min-height: 100vh; display: grid; place-items: center; }
.hero {
    width: min(100%, 84rem);
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(22rem, 35rem) minmax(0, var(--content-width));
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(3rem, 7vw, 6.5rem);
}
.brand-logo {
    display: block;
    width: 115%;
    max-width: 42rem;
    height: auto;
    transform: translateY(-35px);
}
.content { max-width: var(--content-width); }
.statement {
    margin: 0;
    max-width: 41rem;
    color: var(--text);
    font-size: clamp(1.25rem, 2vw, 1.8rem);
    line-height: 1.65;
    font-weight: 400;
}
.divider {
    width: 7.5rem;
    height: 1px;
    margin: clamp(2rem, 5vw, 3.25rem) 0;
    background: var(--gold);
}
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin: 0;
    font-style: normal;
}
.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 180ms ease, transform 180ms ease;
}
.contact-links a:hover,
.contact-links a:focus-visible {
    color: var(--gold-bright);
    transform: translateX(3px);
}
.icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--gold);
}
.icon-mail svg {
    width: 100%; height: 100%; fill: none; stroke: currentColor;
    stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round;
}
.icon-linkedin {
    background: var(--gold);
    color: var(--background);
    border-radius: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: Arial, sans-serif;
    line-height: 1;
}
.site-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(205,174,85,.15);
}
.site-footer p {
    margin: 0;
    color: var(--footer);
    font-size: .8rem;
    line-height: 1.6;
}
@media (max-width: 850px) {
    .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 2rem; }
    .brand-logo { width: min(100%, 22rem); max-width: none; transform: none; }
}
@media (max-width: 520px) {
    .hero { padding: 2rem 1.35rem 2.5rem; }
    .brand-logo { width: min(85vw, 19rem); }
    .statement { font-size: 1.08rem; }
    .contact-links a { font-size: .92rem; overflow-wrap: anywhere; }
    .site-footer { margin-top: 3rem; }
}
@media (prefers-reduced-motion: reduce) {
    .contact-links a { transition: none; }
}
