@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700;800&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
    --c-primary: #4A6B64;
    --c-secondary: #8FA78E;
    --c-accent: #D7B46E;
    --c-accent2: #8A705F;
    --c-bg: #F3F7F3;
    --c-bg2: #E7EEE8;
    --c-surface: #EAEFEA;
    --c-border: rgba(74, 107, 100, 0.15);
    --c-text: #2C3432;
    --c-text-muted: #6B7A77;
    --c-text-light: #9AABA7;
    --c-white: #FFFFFF;
    --c-dark: #1A2422;

    --g-hero: linear-gradient(150deg, #4A6B64 0%, #8FA78E 60%, #D9E2DB 100%);
    --g-btn: linear-gradient(135deg, #D7B46E 0%, #E5CB95 100%);
    --g-bg: linear-gradient(160deg, #F3F7F3 0%, #E7EEE8 100%);
    --g-natural: linear-gradient(135deg, #4A6B64 0%, #6F8A82 100%);
    --g-dark: linear-gradient(150deg, #1A2422 0%, #2C3432 100%);
    --g-overlay: linear-gradient(150deg, rgba(74,107,100,0.88) 0%, rgba(143,167,142,0.55) 60%, rgba(217,226,219,0.20) 100%);

    --f-display: 'Manrope', sans-serif;
    --f-body: 'Inter', sans-serif;
    --f-mono: 'IBM Plex Sans', sans-serif;

    --w-container: 1200px;
    --w-wide: 1400px;
    --w-narrow: 780px;

    --r-sm: 4px;
    --r-md: 10px;
    --r-lg: 18px;
    --r-xl: 28px;
    --r-2xl: 48px;
    --r-full: 9999px;

    --sh-sm: 0 2px 10px rgba(44,52,50,0.06);
    --sh-md: 0 8px 32px rgba(44,52,50,0.10);
    --sh-lg: 0 20px 60px rgba(44,52,50,0.13);
    --sh-xl: 0 40px 100px rgba(44,52,50,0.17);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast: 0.2s cubic-bezier(0.25,0.46,0.45,0.94);
    --t-base: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
    --t-slow: 0.6s cubic-bezier(0.16,1,0.3,1);
    --t-xslow: 1s cubic-bezier(0.16,1,0.3,1);
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--f-body);
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t-fast);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: var(--w-container);
    margin: 0 auto;
    padding: 0 2rem;
}

.container--wide {
    max-width: var(--w-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: var(--w-narrow);
    margin: 0 auto;
    padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--f-display);
    color: var(--c-text);
    line-height: 1.15;
    font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: -0.015em; }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.75;
    color: var(--c-text-muted);
}

.label {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-text-light);
}

.label--accent {
    color: var(--c-accent);
}

.label--primary {
    color: var(--c-primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--r-full);
    font-family: var(--f-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all var(--t-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--g-btn);
    color: var(--c-dark);
    box-shadow: 0 4px 20px rgba(215,180,110,0.35);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(215,180,110,0.5);
}

.btn--outline {
    border: 1.5px solid rgba(74,107,100,0.3);
    color: var(--c-primary);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--c-primary);
    background: rgba(74,107,100,0.06);
    transform: translateY(-2px);
}

.btn--outline-light {
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--c-white);
    background: transparent;
}

.btn--outline-light:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--c-white);
    color: var(--c-primary);
    box-shadow: var(--sh-md);
}

.btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--sh-lg);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--r-full);
    border: 1px solid var(--c-border);
    background: rgba(74,107,100,0.04);
    font-family: var(--f-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 1.5rem;
}

.section-tag::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
    flex-shrink: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
