@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&display=swap');

:root {
  --c-primary: #426556;
  --c-secondary: #8FA88E;
  --c-accent: #BFA56A;
  --c-accent2: #7A6858;
  --c-bg: #F1F5F0;
  --c-bg-alt: #E5ECE5;
  --c-bg-contrast: #5D7266;
  --c-text: #29312D;
  --c-muted: rgba(41,49,45,0.54);
  --c-white: #ffffff;

  --grad-hero: linear-gradient(160deg, #2d4a3c 0%, #426556 45%, #8FA88E 80%, #DCE5DD 100%);
  --grad-btn: linear-gradient(135deg, #BFA56A 0%, #D4C08E 100%);
  --grad-bg: linear-gradient(180deg, #F1F5F0 0%, #E5ECE5 100%);
  --grad-nature: linear-gradient(135deg, #426556 0%, #6F887B 100%);
  --overlay-dark: rgba(30,50,40,0.85);
  --overlay-forest: rgba(66,101,86,0.78);
  --overlay-light: rgba(66,101,86,0.30);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Manrope', system-ui, sans-serif;
  --ff-ui: 'Satoshi', 'DM Sans', system-ui, sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-full: 999px;

  --sh-sm: 0 2px 12px rgba(66,101,86,0.08);
  --sh-md: 0 8px 32px rgba(66,101,86,0.12);
  --sh-lg: 0 24px 64px rgba(66,101,86,0.18);
  --sh-xl: 0 40px 80px rgba(66,101,86,0.22);
  --sh-card: 0 4px 24px rgba(66,101,86,0.09), 0 1px 4px rgba(66,101,86,0.06);
  --sh-card-hover: 0 20px 60px rgba(66,101,86,0.2), 0 4px 16px rgba(66,101,86,0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: 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(--ff-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

h4, h5, h6 {
  font-family: var(--ff-ui);
  font-weight: 600;
  line-height: 1.32;
}

p { line-height: 1.72; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button { cursor: pointer; }

input, textarea, select {
  font-family: var(--ff-body);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.4s var(--ease-spring),
              box-shadow 0.3s var(--ease-smooth),
              background 0.3s var(--ease-smooth),
              color 0.3s var(--ease-smooth),
              border-color 0.3s var(--ease-smooth),
              opacity 0.3s var(--ease-smooth);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  padding: 15px 36px;
  background: var(--grad-btn);
  color: #1c1508;
  box-shadow: 0 4px 24px rgba(191,165,106,0.38);
}
.btn-gold:hover { box-shadow: 0 10px 40px rgba(191,165,106,0.56); }

.btn-ghost-light {
  padding: 14px 36px;
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.42);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.82);
  color: var(--c-white);
}

.btn-ghost-dark {
  padding: 14px 36px;
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid rgba(66,101,86,0.45);
}
.btn-ghost-dark:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.btn-solid {
  padding: 15px 36px;
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--sh-md);
}
.btn-solid:hover {
  background: #365448;
  box-shadow: var(--sh-lg);
}

.btn-white {
  padding: 15px 36px;
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.btn-white:hover {
  background: var(--c-bg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.label {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.label-light {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.label-green {
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-secondary);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(66,101,86,0.08);
  color: var(--c-primary);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1px solid rgba(66,101,86,0.15);
}

.tag-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(191,165,106,0.1);
  color: var(--c-accent);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1px solid rgba(191,165,106,0.28);
}

.tag-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-family: var(--ff-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,0.22);
}

.divider { width: 48px; height: 1px; background: var(--c-accent); display: block; }
.divider-lg { width: 72px; height: 2px; background: var(--grad-btn); display: block; border-radius: 2px; }
.divider-full { width: 100%; height: 1px; background: rgba(66,101,86,0.1); display: block; }
.divider-light { width: 100%; height: 1px; background: rgba(255,255,255,0.12); display: block; }

.text-accent { color: var(--c-accent); }
.text-primary { color: var(--c-primary); }
.text-muted { color: var(--c-muted); }
.text-white { color: var(--c-white); }
.text-display { font-family: var(--ff-display); }

.italic { font-style: italic; }

.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;
}
