@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@800,700,500,400&f[]=satoshi@700,500,400&display=swap');

:root {
  --c-primary: #4A6F63;
  --c-primary-dark: #3A5A50;
  --c-primary-light: #7F998E;
  --c-secondary: #A4B3A2;
  --c-accent: #B88D4D;
  --c-accent-light: #D0AF78;
  --c-accent-2: #786A5E;
  --c-bg: #F6F5F0;
  --c-bg-2: #ECE9E2;
  --c-bg-dark: #2A302E;
  --c-surface: #FFFFFF;
  --c-surface-2: #F0EFEA;
  --c-text: #2A302E;
  --c-text-muted: #6B7775;
  --c-text-light: #9BA8A5;
  --c-border: rgba(74, 111, 99, 0.12);
  --c-border-strong: rgba(74, 111, 99, 0.22);

  --grad-hero: linear-gradient(160deg, #4A6F63 0%, #7F998E 50%, #DDE5E0 100%);
  --grad-btn: linear-gradient(135deg, #B88D4D 0%, #D0AF78 100%);
  --grad-bg: linear-gradient(180deg, #F6F5F0 0%, #ECE9E2 100%);
  --grad-nature: linear-gradient(135deg, #4A6F63 0%, #657F74 100%);
  --grad-dark: linear-gradient(160deg, #2A302E 0%, #3D4A46 100%);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-heading: 'Cabinet Grotesk', 'DM Sans', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-ui: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  --shadow-xs: 0 1px 4px rgba(42, 48, 46, 0.06);
  --shadow-sm: 0 4px 16px rgba(42, 48, 46, 0.08);
  --shadow-md: 0 8px 32px rgba(42, 48, 46, 0.10);
  --shadow-lg: 0 20px 60px rgba(42, 48, 46, 0.14);
  --shadow-xl: 0 40px 100px rgba(42, 48, 46, 0.18);

  --container: 1240px;
  --container-wide: 1440px;
  --container-narrow: 840px;

  --section-py: clamp(80px, 10vw, 140px);
  --section-py-sm: clamp(60px, 7vw, 100px);

  --easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easing-out: cubic-bezier(0, 0.55, 0.45, 1);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

section, header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  font-family: var(--font-ui);
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--c-text);
}

h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--c-text);
}

h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.5rem); font-weight: 600; }
h4 { font-size: clamp(1.125rem, 1.8vw, 1.5rem); font-weight: 700; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; }

p {
  line-height: 1.65;
  color: var(--c-text);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-block;
}

.label-green {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-primary);
  display: inline-block;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(74, 111, 99, 0.08);
  color: var(--c-primary);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(74, 111, 99, 0.15);
}

.tag-amber {
  background: rgba(184, 141, 77, 0.10);
  color: var(--c-accent);
  border-color: rgba(184, 141, 77, 0.20);
}

.text-muted { color: var(--c-text-muted); }
.text-primary { color: var(--c-primary); }
.text-accent { color: var(--c-accent); }
.text-white { color: #fff; }
.text-center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
}

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 24px rgba(184, 141, 77, 0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(184, 141, 77, 0.44);
}

.btn-primary:active { transform: translateY(0); }

.btn-dark {
  background: var(--c-text);
  color: #fff;
}

.btn-dark:hover {
  background: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-border-strong);
}

.btn-outline:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost {
  background: transparent;
  color: var(--c-text);
  padding: 15px 2px;
  position: relative;
  border: none;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-accent);
  transition: width var(--transition);
}

.btn-ghost:hover::after { width: 100%; }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  padding: 15px 2px;
  position: relative;
  border: none;
}

.btn-ghost-white::after {
  content: '';
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  transition: width var(--transition);
}

.btn-ghost-white:hover::after { width: 100%; }

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 44px; font-size: 1.0625rem; }

input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-text);
  background: var(--c-surface);
  border: 1.5px solid var(--c-border-strong);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  width: 100%;
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(74, 111, 99, 0.12);
}

input::placeholder, textarea::placeholder {
  color: var(--c-text-light);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: -0.01em;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
}

.divider-v {
  width: 1px;
  background: var(--c-border);
}

.num-large {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}

.num-accent {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 700;
  color: var(--c-accent);
  line-height: 1;
}
