@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&family=Manrope:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Geist';
  src: url('https://cdn.jsdelivr.net/npm/geist@1.3.1/dist/fonts/geist-sans/Geist-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #55646B;
  --secondary: #617D70;
  --natural: #8FA38A;
  --accent: #B97B52;
  --accent-light: #D39A72;
  --secondary-accent: #C7B697;
  --bg: #F1F5F3;
  --bg-contrast: #DFE5E2;
  --bg-dark: #2D3938;
  --text: #2B3132;
  --text-light: rgba(43, 49, 50, 0.72);
  --text-inverse: #F1F5F3;
  --overlay: rgba(45, 57, 56, 0.30);
  --shadow-sm: 0 2px 8px rgba(45, 57, 56, 0.06);
  --shadow-md: 0 8px 32px rgba(45, 57, 56, 0.10);
  --shadow-lg: 0 16px 48px rgba(45, 57, 56, 0.14);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-hero: 'Fraunces', Georgia, serif;
  --font-section: 'DM Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-ui: 'Geist', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --container: 1240px;
  --container-narrow: 880px;
  --header-h: 72px;
  --transition: 0.4s 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;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, .h1 {
  font-family: var(--font-hero);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-family: var(--font-section);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h3, .h3 {
  font-family: var(--font-section);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.62;
}

.label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(185, 123, 82, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(185, 123, 82, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(241, 245, 243, 0.4);
}

.btn-outline:hover {
  background: rgba(241, 245, 243, 0.1);
  border-color: rgba(241, 245, 243, 0.7);
}

.btn-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.btn-dark:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--bg-contrast);
}

.btn-light:hover {
  background: var(--bg-contrast);
  transform: translateY(-2px);
}
