/* Explain: Base reset and typography defaults for the law firm site */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    scroll-padding-top: 88px;
}

body {
    min-width: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 16% 12%, rgba(168, 139, 92, 0.12), transparent 32rem),
        radial-gradient(circle at 84% 4%, rgba(74, 14, 46, 0.08), transparent 30rem),
        var(--background-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.65;
}

h1,
h2,
h3,
.brand-serif {
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
}

img {
    display: block;
    max-width: 100%;
}

button,
a,
select {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(168, 139, 92, 0.55);
    outline-offset: 3px;
}

::selection {
    background: rgba(74, 14, 46, 0.16);
}

