@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --color-primary: #55646B;
  --color-secondary: #617D70;
  --color-natural: #8FA38A;
  --color-accent: #B97B52;
  --color-accent-light: #D39A72;
  --color-accent-secondary: #C7B697;
  --color-bg: #F1F5F3;
  --color-bg-contrast: #DFE5E2;
  --color-bg-dark: #2D3938;
  --color-text: #2B3132;
  --color-text-light: rgba(43, 49, 50, 0.72);
  --color-text-inverse: #F1F5F3;
  --color-overlay: rgba(45, 57, 56, 0.30);
  --gradient-hero: linear-gradient(135deg, #2D3938 0%, #55646B 50%, #617D70 100%);
  --gradient-bg: linear-gradient(180deg, #F1F5F3 0%, #E5ECE8 100%);
  --gradient-nature: linear-gradient(135deg, #617D70 0%, #8FA38A 100%);
  --gradient-btn: linear-gradient(135deg, #B97B52 0%, #D39A72 100%);
  --font-hero: 'Cormorant Garamond', Georgia, serif;
  --font-section: 'DM Sans', sans-serif;
  --font-body: 'Satoshi', sans-serif;
  --font-ui: 'Satoshi', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --container-max: 1280px;
  --container-narrow: 960px;
  --spacing-section: clamp(80px, 10vw, 140px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-soft: 0 4px 24px rgba(45, 57, 56, 0.08);
  --shadow-card: 0 8px 40px rgba(45, 57, 56, 0.10);
  --shadow-lift: 0 16px 48px rgba(45, 57, 56, 0.14);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  position: relative;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-section);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
  line-height: 1.62;
  color: var(--color-text-light);
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 16px rgba(185, 123, 82, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 123, 82, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-inverse);
  border: 1.5px solid rgba(241, 245, 243, 0.5);
}

.btn-outline:hover {
  background: rgba(241, 245, 243, 0.12);
  border-color: rgba(241, 245, 243, 0.8);
}

.btn-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.btn-dark:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--color-bg);
  color: var(--color-text);
  border: 1px solid var(--color-bg-contrast);
}

.btn-light:hover {
  background: var(--color-bg-contrast);
  transform: translateY(-2px);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 24px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--color-accent-secondary);
  margin: 32px 0;
}

.divider-long {
  width: 100%;
  height: 1px;
  background: var(--color-bg-contrast);
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.link-underline:hover::after {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: translateY(0); }
