body.site {
    font-family: var(--font-body);
    color: var(--ink);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

h1 {
    font-size: clamp(2.6rem, 7vw, 4.6rem);
    font-weight: 700;
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
}

h3 {
    font-size: 1.45rem;
    font-weight: 600;
}

p {
    line-height: 1.55;
    font-size: clamp(1.05rem, 2.2vw, 1.15rem) !important;
}

a {
    color: inherit;
}
li{
    font-size: clamp(1.05rem, 2.2vw, 1.15rem) !important;
}
/* —— Buttons —— */
.custom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 10px;
    background: var(--primary);
    color: var(--white);
    font: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.custom-btn:hover {
    background: var(--accent-deep);
    transform: translateY(-1px);
}

.custom-btn-alt {
    background: var(--white);
    color: var(--primary);
    border-color: var(--line);
}

.custom-btn-alt:hover {
    background: var(--light);
}
