/* Base reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
    margin: 0;
}

img,
picture,
svg,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
}

@font-face {
    font-family: 'Nespresso Lucas';
    src: url('/assets/fonts/NespressoLucas-Med.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Nespresso Lucas';
    src: url('/assets/fonts/Nespresso-Lucas-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-primary: 'Nespresso Lucas', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --ink-900: #121212;
    --ink-800: #1b1b1c;
    --ink-700: #2b2a2b;
    --ink-500: #5f5a56;
    --sand-100: #f7f3ee;
    --sand-200: #ece2d6;
    --sand-300: #d8cab9;
    --accent: #b88a4a;
    --accent-strong: #c89c58;
    --partner-blue: #214a8a;
    --partner-blue-soft: #e4ecf8;
    --white: #ffffff;
    --success: #134e33;
    --success-bg: #deefe4;
    --error: #8a1f1f;
    --error-bg: #f9e4e4;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-soft: 0 10px 24px rgba(18, 18, 18, 0.12);
    --shadow-hover: 0 18px 36px rgba(18, 18, 18, 0.2);
    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s ease;
}

body {
    min-height: 100vh;
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--ink-900);
    background:
        radial-gradient(circle at 20% -10%, rgba(184, 138, 74, 0.16), transparent 45%),
        radial-gradient(circle at 95% 0%, rgba(216, 202, 185, 0.3), transparent 40%),
        var(--sand-100);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.15;
    color: var(--ink-900);
}

h1 {
    font-size: clamp(2rem, 2.1vw + 1.3rem, 4rem);
}

h2 {
    font-size: clamp(1.5rem, 1.2vw + 1.15rem, 2.7rem);
}

h3 {
    font-size: clamp(1.2rem, 0.8vw + 1rem, 1.6rem);
}

p,
li,
label,
input,
textarea,
select,
button {
    font-size: clamp(0.96rem, 0.25vw + 0.9rem, 1.05rem);
}

main {
    position: relative;
    z-index: 1;
}

.container {
    width: min(1140px, calc(100% - 2.5rem));
    margin-inline: auto;
}

.section {
    padding-block: clamp(3rem, 5vw, 6rem);
}

.section-tight {
    padding-block: clamp(2rem, 3vw, 3.5rem);
}

.section-muted {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(236, 226, 214, 0.65));
}

.lead {
    color: var(--ink-500);
    max-width: 64ch;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}
