:root {
    --bg: #ffffff;
    --text: #111111;
    --muted: #666666;
    --border: #dddddd;
    --accent: #000000;
    --max-width: 960px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 32px 20px 48px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 32px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}

nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

nav a {
    position: relative;
    padding-bottom: 2px;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.2s ease;
}

nav a:hover::after {
    width: 100%;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 32px;
    align-items: flex-end;
    margin-bottom: 48px;
}

.hero-heading {
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.hero-subheading {
    font-size: 15px;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 20px;
}

.hero-tagline {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.hero-box {
    border: 1px solid var(--border);
    padding: 18px 18px 16px;
    font-size: 14px;
}

.label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 8px;
}

.hero-box h2 {
    font-size: 17px;
    margin-bottom: 4px;
}

.hero-box p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}

.hero-meta {
    font-size: 12px;
    color: var(--muted);
    margin-top: 6px;
}

main section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 14px;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 24px;
}

p {
    font-size: 14px;
    margin-bottom: 10px;
}

.muted {
    color: var(--muted);
}

ul {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
}

li+li {
    margin-top: 6px;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.pill {
    border: 1px solid var(--border);
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.card {
    border: 1px solid var(--border);
    padding: 16px 16px 14px;
    background: #fafafa;
}

.card h3 {
    font-size: 14px;
    margin-bottom: 6px;
}

.card p {
    font-size: 13px;
    margin-bottom: 4px;
}

.note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

.contact-box {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}

.contact-main {
    font-size: 14px;
}

.contact-details {
    font-size: 13px;
    text-align: right;
}

.contact-details a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

footer {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 24px;
    font-size: 11px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 720px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        flex-wrap: wrap;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .two-col {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-details {
        text-align: left;
    }
}