@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,400&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-contrast: #C4D2CE;
  --c-text: #273130;
  --c-text-muted: rgba(39, 49, 48, 0.58);
  --c-white: #ffffff;

  --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-green: linear-gradient(135deg, #6F927F 0%, #A6BDB1 100%);
  --grad-warm: linear-gradient(135deg, #8A6B5A 0%, #A38775 100%);
  --overlay: rgba(44, 90, 82, 0.45);

  --font: 'Inter', 'Manrope', 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 48px;

  --shadow-sm: 0 2px 16px rgba(44, 90, 82, 0.07);
  --shadow-md: 0 8px 40px rgba(44, 90, 82, 0.13);
  --shadow-lg: 0 20px 60px rgba(44, 90, 82, 0.18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.5s;
}

*, *::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(--font);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.8rem); }

p {
  line-height: 1.8;
}

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
}

.label-green {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-secondary);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-accent);
  color: var(--c-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(214, 200, 122, 0.4);
  background: linear-gradient(135deg, #DDD48B 0%, #E7DFA3 100%);
}

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

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

.btn-dark {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn-dark:hover {
  background: #1e3d37;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}

.btn-ghost:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

input, textarea, select {
  font-family: var(--font);
  font-size: 15px;
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--c-bg-contrast);
  border-radius: var(--r-md);
  background: var(--c-white);
  color: var(--c-text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  outline: none;
  appearance: none;
}

input:focus, textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(44, 90, 82, 0.09);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
  margin: 16px 0;
}

.divider-wide {
  width: 100%;
  height: 1px;
  background: var(--c-bg-contrast);
}
