@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=IBM+Plex+Mono:wght@400;500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --c-primary: #35584C;
  --c-primary-dark: #2A4A3E;
  --c-primary-deep: #1E3830;
  --c-secondary: #8FA392;
  --c-secondary-light: #B2C4BC;
  --c-accent: #B9985B;
  --c-accent-light: #D1B27C;
  --c-accent2: #6F584B;
  --c-bg: #F3F6F1;
  --c-bg2: #E7ECE6;
  --c-bg3: #D9E1DA;
  --c-text: #262D2B;
  --c-text-muted: #6B7B76;
  --c-text-light: #9AABA5;
  --c-border: rgba(53, 88, 76, 0.12);
  --c-border-hover: rgba(53, 88, 76, 0.28);
  --c-white: #FFFFFF;
  --c-dark: #1A2220;

  --g-hero: linear-gradient(135deg, #35584C 0%, #8FA392 60%, #D9E1DA 100%);
  --g-btn: linear-gradient(135deg, #B9985B 0%, #D1B27C 100%);
  --g-bg: linear-gradient(180deg, #F3F6F1 0%, #E7ECE6 100%);
  --g-nature: linear-gradient(135deg, #35584C 0%, #61796D 100%);
  --g-overlay: rgba(53, 88, 76, 0.34);
  --g-text-fade: linear-gradient(to top, rgba(26, 34, 32, 0.80) 0%, rgba(26, 34, 32, 0.20) 50%, transparent 100%);

  --f-head: 'Cabinet Grotesk', 'DM Sans', system-ui, sans-serif;
  --f-body: 'Neue Montreal', 'Inter', system-ui, sans-serif;
  --f-accent: 'Cormorant Garamond', Georgia, serif;
  --f-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-2xl: 48px;
  --r-full: 9999px;

  --sh-soft: 0 2px 16px rgba(53, 88, 76, 0.07);
  --sh-card: 0 6px 32px rgba(53, 88, 76, 0.10);
  --sh-hover: 0 16px 56px rgba(53, 88, 76, 0.16);
  --sh-deep: 0 24px 80px rgba(53, 88, 76, 0.22);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slower: 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1280px;
  --container-narrow: 880px;
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(72px, 10vw, 136px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--c-text);
  background-color: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

h1 { font-size: clamp(42px, 6vw, 88px); }
h2 { font-size: clamp(32px, 4.5vw, 64px); }
h3 { font-size: clamp(22px, 3vw, 40px); }
h4 { font-size: clamp(18px, 2vw, 26px); }

p {
  font-family: var(--f-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--c-text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--t-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--f-head);
  background: none;
}

input, textarea, select {
  font-family: var(--f-body);
}

.label {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.accent-text {
  font-family: var(--f-accent);
  font-style: italic;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
