@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=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,600,700&f[]=neue-montreal@300,400,500,600&display=swap');

:root {
  --c-primary: #4B6358;
  --c-secondary: #A0B09B;
  --c-accent: #C6A86A;
  --c-accent2: #8B6E5D;
  --c-bg: #F5F4EF;
  --c-bg2: #ECEAE2;
  --c-bg3: #E1E4DD;
  --c-text: #2B302F;
  --c-text-muted: #6B7572;
  --c-text-light: #9AA5A2;
  --c-white: #FFFFFF;
  --c-border: rgba(75, 99, 88, 0.14);
  --c-border-strong: rgba(75, 99, 88, 0.28);
  --c-shadow-soft: rgba(43, 48, 47, 0.06);
  --c-shadow: rgba(43, 48, 47, 0.12);
  --c-shadow-strong: rgba(43, 48, 47, 0.22);
  --overlay: rgba(75, 99, 88, 0.28);
  --overlay-dark: rgba(43, 48, 47, 0.52);

  --grad-hero: linear-gradient(150deg, #4B6358 0%, #A0B09B 55%, #E1E4DD 100%);
  --grad-btn: linear-gradient(135deg, #C6A86A 0%, #D8C08F 100%);
  --grad-bg: linear-gradient(180deg, #F5F4EF 0%, #ECEAE2 100%);
  --grad-primary: linear-gradient(135deg, #4B6358 0%, #3a4f46 100%);

  --ff-hero: 'Canela', 'Playfair Display', 'Georgia', serif;
  --ff-body: 'Neue Montreal', 'DM Sans', 'Inter', sans-serif;
  --ff-ui: 'Satoshi', 'Inter', sans-serif;
  --ff-loc: 'Cormorant Garamond', 'Georgia', serif;
  --ff-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 2.5rem;
  --sp-6: 3rem;
  --sp-8: 4rem;
  --sp-10: 5rem;
  --sp-12: 6rem;
  --sp-16: 8rem;
  --sp-20: 10rem;
  --sp-24: 12rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-circ: cubic-bezier(0.0, 0.55, 0.45, 1);

  --t-fast: 0.18s;
  --t-base: 0.38s;
  --t-slow: 0.65s;
  --t-xslow: 0.9s;

  --cont-max: 1320px;
  --cont-narrow: 860px;
  --cont-wide: 1540px;

  --header-h: 84px;
  --z-header: 100;
  --z-menu: 200;
  --z-overlay: 300;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

h1,
h2,
h3 {
  font-family: var(--ff-hero);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--c-text);
}

h4,
h5,
h6 {
  font-family: var(--ff-ui);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-text);
}

p {
  font-family: var(--ff-body);
  line-height: 1.72;
  color: var(--c-text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--ease-out);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--ff-ui);
}

input,
textarea,
select {
  font-family: var(--ff-body);
}

.font-hero {
  font-family: var(--ff-hero);
}

.font-loc {
  font-family: var(--ff-loc);
}

.font-ui {
  font-family: var(--ff-ui);
}

.font-mono {
  font-family: var(--ff-mono);
}

.text-accent {
  color: var(--c-accent);
}

.text-primary {
  color: var(--c-primary);
}

.text-muted {
  color: var(--c-text-muted);
}
