@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Manrope:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=DM+Mono:ital,wght@0,400;0,500;1,400&display=swap');

:root {
    --c-primary: #426556;
    --c-secondary: #8FA88E;
    --c-accent: #BFA56A;
    --c-accent2: #7A6858;
    --c-bg: #F1F5F0;
    --c-bg-alt: #E5ECE5;
    --c-contrast: #5D7266;
    --c-text: #29312D;
    --c-text-muted: #5a6b61;
    --c-text-light: #8a9e92;
    --c-white: #FAFCF9;
    --c-overlay: rgba(66, 101, 86, 0.30);
    --c-border: rgba(66, 101, 86, 0.15);
    --c-border-strong: rgba(66, 101, 86, 0.30);

    --grad-hero: linear-gradient(160deg, rgba(66,101,86,0.90) 0%, rgba(66,101,86,0.50) 55%, rgba(220,229,221,0.15) 100%);
    --grad-btn: linear-gradient(135deg, #BFA56A 0%, #D4C08E 100%);
    --grad-btn-hover: linear-gradient(135deg, #D4C08E 0%, #BFA56A 100%);
    --grad-bg: linear-gradient(180deg, #F1F5F0 0%, #E5ECE5 100%);
    --grad-depth: linear-gradient(160deg, #426556 0%, #6F887B 100%);
    --grad-dark: linear-gradient(160deg, #29312D 0%, #3d4f45 100%);

    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Manrope', -apple-system, system-ui, sans-serif;
    --font-ui: 'Outfit', system-ui, sans-serif;
    --font-mono: 'DM Mono', 'Courier New', monospace;

    --size-xs: clamp(0.75rem, 1.5vw, 0.875rem);
    --size-sm: clamp(0.875rem, 1.8vw, 1rem);
    --size-base: clamp(0.9375rem, 2vw, 1.0625rem);
    --size-md: clamp(1.0625rem, 2.2vw, 1.25rem);
    --size-lg: clamp(1.25rem, 2.5vw, 1.5rem);
    --size-xl: clamp(1.5rem, 3vw, 2rem);
    --size-2xl: clamp(2rem, 4vw, 2.75rem);
    --size-3xl: clamp(2.5rem, 5vw, 3.75rem);
    --size-4xl: clamp(3rem, 7vw, 5.5rem);
    --size-hero: clamp(3.25rem, 8.5vw, 7.5rem);

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    --container: 1320px;
    --container-sm: 980px;
    --container-xs: 720px;

    --radius-sm: 6px;
    --radius-md: 14px;
    --radius-lg: 28px;
    --radius-xl: 48px;
    --radius-full: 999px;

    --shadow-sm: 0 2px 14px rgba(66, 101, 86, 0.07);
    --shadow-md: 0 6px 32px rgba(66, 101, 86, 0.11);
    --shadow-lg: 0 14px 50px rgba(66, 101, 86, 0.16);
    --shadow-xl: 0 30px 80px rgba(41, 49, 45, 0.18);
    --shadow-hover: 0 22px 64px rgba(66, 101, 86, 0.22);

    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

    --t-fast: 0.2s;
    --t-base: 0.38s;
    --t-slow: 0.65s;
    --t-xslow: 1s;

    --header-h: 82px;
    --section-py: clamp(4rem, 8vw, 8rem);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-body);
    font-size: var(--size-base);
    line-height: 1.75;
    color: var(--c-text);
    background-color: var(--c-bg);
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast) var(--ease-out);
}

ul, ol { list-style: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    font-weight: 600;
    color: var(--c-text);
}

.f-display { font-family: var(--font-display); }
.f-body    { font-family: var(--font-body); }
.f-ui      { font-family: var(--font-ui); }
.f-mono    { font-family: var(--font-mono); }

.c-primary  { color: var(--c-primary); }
.c-accent   { color: var(--c-accent); }
.c-muted    { color: var(--c-text-muted); }
.c-white    { color: var(--c-white); }

.bg-primary  { background-color: var(--c-primary); }
.bg-contrast { background-color: var(--c-contrast); }
.bg-dark     { background-color: #29312D; }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
