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

:root {
  --c-primary: #2F5A46;
  --c-secondary: #6E8F76;
  --c-accent: #D9C97A;
  --c-accent-hover: #E0D48B;
  --c-accent-2: #8C6B58;
  --c-bg: #F3F7F4;
  --c-bg-contrast: #C3D1C8;
  --c-text: #26302C;
  --c-text-muted: #6E8F76;
  --c-white: #FFFFFF;
  --c-overlay: rgba(47, 90, 70, 0.32);

  --grad-hero: linear-gradient(135deg, #2F5A46 0%, #6E8F76 55%, #C3D1C8 100%);
  --grad-light: linear-gradient(180deg, #F3F7F4 0%, #E6EFE9 100%);
  --grad-accent: linear-gradient(90deg, #D9C97A 0%, #E8DFA3 100%);
  --grad-nature: linear-gradient(135deg, #6E8F76 0%, #A5B9AA 100%);
  --grad-warm: linear-gradient(135deg, #8C6B58 0%, #A8846F 100%);

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

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 4px rgba(47, 90, 70, 0.06);
  --shadow-sm: 0 2px 12px rgba(47, 90, 70, 0.08);
  --shadow-md: 0 8px 32px rgba(47, 90, 70, 0.12);
  --shadow-lg: 0 20px 60px rgba(47, 90, 70, 0.16);
  --shadow-xl: 0 32px 80px rgba(47, 90, 70, 0.22);

  --container: 1200px;
  --container-sm: 760px;
  --container-md: 960px;
  --gap: 32px;
  --section-py: 100px;
  --section-py-sm: 64px;

  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.18;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); font-weight: 600; }
h4 { font-size: clamp(1.05rem, 1.5vw, 1.3rem); font-weight: 600; }

p { line-height: 1.8; }

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

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

ul, ol { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.container--sm { max-width: var(--container-sm); }
.container--md { max-width: var(--container-md); }

.section {
  padding: var(--section-py) 0;
  overflow-x: clip;
  max-width: 100%;
}

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

.section--forest {
  background: var(--grad-hero);
  color: var(--c-white);
}

.section--contrast {
  background: var(--c-bg-contrast);
}

.section--light {
  background: var(--grad-light);
}

.section--nature {
  background: var(--grad-nature);
  color: var(--c-white);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--c-accent-2);
  flex-shrink: 0;
}

.label--light {
  color: rgba(217, 201, 122, 0.9);
}

.label--light::before {
  background: rgba(217, 201, 122, 0.7);
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.btn--primary {
  background: var(--grad-accent);
  color: var(--c-primary);
  box-shadow: 0 4px 20px rgba(217, 201, 122, 0.4);
}

.btn--primary:hover {
  background: var(--c-accent-hover);
  box-shadow: 0 8px 32px rgba(217, 201, 122, 0.5);
  transform: translateY(-2px);
}

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

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

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

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  padding: 4px 0;
  position: relative;
  border-radius: 0;
  letter-spacing: 0;
}

.btn--ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent-2);
  transition: width var(--transition);
}

.btn--ghost:hover::after {
  width: 100%;
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 4px 0;
  position: relative;
  border-radius: 0;
  letter-spacing: 0;
}

.btn--ghost-light::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--transition);
}

.btn--ghost-light:hover {
  color: var(--c-accent);
}

.btn--ghost-light:hover::after {
  width: 100%;
}

.tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(140, 107, 88, 0.12);
  color: var(--c-accent-2);
}

.tag--accent {
  background: rgba(217, 201, 122, 0.22);
  color: #6A5A10;
}

.tag--primary {
  background: rgba(47, 90, 70, 0.12);
  color: var(--c-primary);
}

.tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
}

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

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.divider--light {
  background: rgba(217, 201, 122, 0.5);
}

.text-accent { color: var(--c-accent-2); }
.text-primary { color: var(--c-primary); }
.text-muted { color: var(--c-text-muted); }
.text-center { text-align: center; }
.text-white { color: var(--c-white); }
.text-accent-gold { color: var(--c-accent); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: none; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marqueeForward {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes lineGrow {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
