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

:root {
  --c-primary: #2C5A52;
  --c-secondary: #6F927F;
  --c-accent: #D6C87A;
  --c-accent2: #8A6B5A;
  --c-bg: #F1F7F6;
  --c-bg-alt: #E4F0EE;
  --c-bg-contrast: #C4D2CE;
  --c-text: #273130;
  --c-text-muted: #5a6e6c;
  --c-white: #ffffff;

  --c-primary-10: rgba(44,90,82,0.10);
  --c-primary-20: rgba(44,90,82,0.20);
  --c-primary-30: rgba(44,90,82,0.30);
  --c-primary-60: rgba(44,90,82,0.60);
  --c-accent-20: rgba(214,200,122,0.20);

  --grad-hero: linear-gradient(135deg,#2C5A52 0%,#6F927F 55%,#C4D2CE 100%);
  --grad-light: linear-gradient(180deg,#F1F7F6 0%,#E4F0EE 100%);
  --grad-accent: linear-gradient(135deg,#D6C87A 0%,#E7DFA3 100%);
  --grad-nature: linear-gradient(135deg,#6F927F 0%,#A6BDB1 100%);
  --grad-warm: linear-gradient(135deg,#8A6B5A 0%,#A38775 100%);
  --grad-overlay: linear-gradient(to bottom,rgba(44,90,82,0.6) 0%,rgba(44,90,82,0.15) 45%,rgba(44,90,82,0.7) 100%);

  --ff-body: 'Inter', sans-serif;
  --ff-display: 'Manrope', sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;

  --container: 1280px;
  --container-narrow: 960px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(44,90,82,0.08);
  --shadow-md: 0 8px 32px rgba(44,90,82,0.12);
  --shadow-lg: 0 20px 60px rgba(44,90,82,0.16);
  --shadow-xl: 0 40px 100px rgba(44,90,82,0.20);

  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
  --ease-out: cubic-bezier(0,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);

  --dur-fast: 180ms;
  --dur-base: 380ms;
  --dur-slow: 680ms;
  --dur-slower: 1000ms;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-display);
  color: var(--c-text);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.6rem, 6.5vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

p {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
}

.label {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-secondary);
  display: block;
  margin-bottom: 1.25rem;
}

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

.label--white {
  color: rgba(255,255,255,0.65);
}

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

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

.text-white {
  color: var(--c-white);
}

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

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