/* Base typography + body */
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/dm-sans-variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Playfair Display';
    src: url('../fonts/playfair-display-variable.woff2') format('woff2-variations');
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}

html { font-size: 16px; }
body {
    font-family: var(--us-font-body);
    font-size: var(--us-text-base);
    color: var(--us-ink);
    background: var(--us-surface);
    font-weight: 400;
    letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--us-font-display); line-height: var(--us-leading-tight); letter-spacing: var(--us-tracking-tight); color: var(--us-ink); font-weight: 600; }
h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.2vw + 1rem, 3.25rem); }
h3 { font-size: clamp(1.5rem, 1.5vw + 1rem, 2rem); }
h4 { font-size: var(--us-text-xl); font-weight: 600; }
h5 { font-size: var(--us-text-lg); }
h6 { font-size: var(--us-text-base); text-transform: uppercase; letter-spacing: 0.08em; }

p { line-height: var(--us-leading-relaxed); color: var(--us-ink-soft); max-width: 68ch; }
p + p { margin-top: var(--us-s-4); }

.us-display { font-family: var(--us-font-display); font-weight: 700; font-size: clamp(2.75rem, 6vw + 1rem, 5.5rem); line-height: 1.05; letter-spacing: -0.03em; color: var(--us-ink); }
.us-display em { font-style: italic; color: var(--us-primary); font-family: var(--us-font-display); }
.us-eyebrow { display: inline-flex; align-items: center; gap: var(--us-s-2); font-family: var(--us-font-body); font-size: var(--us-text-sm); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--us-primary); }
.us-eyebrow::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.us-lead { font-size: clamp(1.125rem, 0.6vw + 1rem, 1.375rem); line-height: 1.55; color: var(--us-ink-soft); font-weight: 400; max-width: 62ch; }
.us-small { font-size: var(--us-text-sm); color: var(--us-muted); }

a.us-link { color: var(--us-primary); font-weight: 500; position: relative; display: inline-block; }
a.us-link::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform var(--us-dur-2) var(--us-ease); }
a.us-link:hover::after, a.us-link:focus-visible::after { transform: scaleX(1); }

.u-visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.us-skip { position: absolute; left: -9999px; top: 0; background: var(--us-ink); color: #fff; padding: var(--us-s-3) var(--us-s-5); z-index: var(--us-z-toast); border-radius: 0 0 var(--us-r-md) 0; }
.us-skip:focus { left: 0; }
