@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=neue-montreal@300,400,500,600,700&f[]=satoshi@300,400,500,700&display=swap');

:root {
  --c-primary: #44675F;
  --c-secondary: #97AB95;
  --c-accent: #C8AA6E;
  --c-accent2: #7B6557;
  --c-bg: #F2F5F0;
  --c-text: #28302D;
  --c-white: #FFFFFF;
  --c-mist: #DCE4DD;
  --c-dark: #1A211E;
  --c-surface: #E7ECE6;

  --grad-hero: linear-gradient(135deg, #44675F 0%, #97AB95 60%, #DCE4DD 100%);
  --grad-btn: linear-gradient(135deg, #C8AA6E 0%, #DCC392 100%);
  --grad-bg: linear-gradient(180deg, #F2F5F0 0%, #E7ECE6 100%);
  --grad-nature: linear-gradient(135deg, #44675F 0%, #6E887F 100%);
  --overlay: rgba(68, 103, 95, 0.30);
  --overlay-dark: rgba(26, 33, 30, 0.55);

  --f-display: 'Fraunces', 'Georgia', serif;
  --f-body: 'Neue Montreal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-ui: 'Satoshi', 'DM Sans', -apple-system, sans-serif;
  --f-location: 'Cormorant Garamond', 'Georgia', serif;

  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-md: 1.125rem;
  --size-lg: 1.25rem;
  --size-xl: 1.5rem;
  --size-2xl: 2rem;
  --size-3xl: clamp(1.75rem, 3vw, 2.5rem);
  --size-4xl: clamp(2rem, 4vw, 3rem);
  --size-5xl: clamp(2.5rem, 5vw, 4rem);
  --size-hero: clamp(3rem, 7vw, 6.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(40, 48, 45, 0.07);
  --shadow-md: 0 4px 20px rgba(40, 48, 45, 0.10);
  --shadow-lg: 0 8px 36px rgba(40, 48, 45, 0.12);
  --shadow-xl: 0 20px 60px rgba(40, 48, 45, 0.15);

  --transition-fast: 180ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 420ms cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1280px;
  --container-narrow: 860px;
  --container-wide: 1440px;
  --gutter: clamp(1rem, 4vw, 2rem);

  --header-h: 80px;
}

*, *::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(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

p {
  line-height: 1.72;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--f-ui);
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--f-body);
  font-size: var(--size-base);
}

ul, ol {
  list-style: none;
}

svg {
  display: block;
}
