:root {
    --color-bg: #fbfaf7;
    --color-surface: #ffffff;
    --color-surface-soft: #f3efe8;

    --color-primary: #163d34;
    --color-primary-2: #235f51;
    --color-primary-soft: #e7f1ed;

    --color-accent: #d8a23a;
    --color-accent-soft: #fff4d8;

    --color-text: #18231f;
    --color-muted: #66736e;
    --color-light-text: #f8faf9;

    --color-border: rgba(24, 35, 31, 0.12);
    --color-shadow: rgba(18, 31, 27, 0.10);

    --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --container: 1180px;

    --radius-xs: 10px;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 32px;
    --radius-pill: 999px;

    --shadow-soft: 0 18px 50px var(--color-shadow);
    --shadow-card: 0 12px 36px rgba(18, 31, 27, 0.08);

    --transition-fast: 160ms ease;
    --transition-normal: 260ms ease;
}

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

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

body {
    margin: 0;
    font-family: var(--font-main);
    background:
        radial-gradient(circle at top left, rgba(216, 162, 58, 0.14), transparent 34rem),
        radial-gradient(circle at top right, rgba(35, 95, 81, 0.12), transparent 30rem),
        var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

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

button {
    cursor: pointer;
}

::selection {
    background: var(--color-primary);
    color: var(--color-light-text);
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

h1 {
    font-size: clamp(2.7rem, 7vw, 6rem);
    max-width: 950px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    max-width: 850px;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    letter-spacing: -0.025em;
}

p {
    margin: 0 0 1.2rem;
    color: var(--color-muted);
}

ul {
    margin-top: 0;
}

main {
    min-height: 60vh;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    color: var(--color-primary-2);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 6px rgba(216, 162, 58, 0.16);
}

.text-muted {
    color: var(--color-muted);
}

.text-center {
    text-align: center;
}

.no-scroll {
    overflow: hidden;
}

html.no-scroll,
body.no-scroll {
    overflow: hidden !important;
    height: 100dvh;
}

