@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&f[]=cabinet-grotesk@400,500,700,800&f[]=neue-montreal@300,400,500&display=swap');
@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@300;400;500&display=swap');

:root {
  --c-primary: #4D6B5B;
  --c-secondary: #8EA591;
  --c-accent: #B99758;
  --c-accent2: #8A7866;
  --c-bg: #F4F6F2;
  --c-bg-alt: #E8ECE6;
  --c-bg-contrast: #5E6B63;
  --c-text: #29302D;
  --c-text-muted: rgba(41, 48, 45, 0.56);
  --c-white: #ffffff;
  --c-border: rgba(77, 107, 91, 0.13);
  --c-border-mid: rgba(77, 107, 91, 0.22);
  --c-border-accent: rgba(185, 151, 88, 0.22);
  --grad-hero: linear-gradient(145deg, #4D6B5B 0%, #8EA591 60%, #DCE3DD 100%);
  --grad-btn: linear-gradient(135deg, #B99758 0%, #D1B680 100%);
  --grad-bg: linear-gradient(160deg, #F4F6F2 0%, #E8ECE6 100%);
  --grad-nature: linear-gradient(135deg, #4D6B5B 0%, #72897A 100%);
  --overlay: rgba(77, 107, 91, 0.28);
  --overlay-dark: rgba(29, 40, 34, 0.60);
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-heading: 'Cabinet Grotesk', system-ui, sans-serif;
  --f-body: 'Neue Montreal', 'Inter', system-ui, sans-serif;
  --f-ui: 'Satoshi', system-ui, sans-serif;
  --f-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --radius-xs: 3px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-round: 100px;
  --shadow-xs: 0 1px 6px rgba(41, 48, 45, 0.05);
  --shadow-sm: 0 2px 14px rgba(41, 48, 45, 0.07);
  --shadow-md: 0 8px 36px rgba(41, 48, 45, 0.10);
  --shadow-lg: 0 24px 64px rgba(41, 48, 45, 0.14);
  --shadow-xl: 0 40px 100px rgba(41, 48, 45, 0.18);
  --shadow-accent: 0 8px 32px rgba(185, 151, 88, 0.28);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-out);
  --transition-fast: 0.18s var(--ease-out);
  --transition-slow: 0.65s var(--ease-out);
  --container: 1240px;
  --container-narrow: 880px;
  --section-py: clamp(72px, 9vw, 130px);
  --header-h: 74px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
  position: relative;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  padding: 0;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
  font-weight: 400;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 500; }
h4 { font-size: clamp(1.1rem, 1.7vw, 1.4rem); font-weight: 500; }

p {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.72;
}

.label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

.label--light {
  color: rgba(185, 151, 88, 0.85);
}

.label--white {
  color: rgba(255, 255, 255, 0.7);
}

.label--white::before {
  background: rgba(255, 255, 255, 0.7);
}

.subheading {
  font-family: var(--f-heading);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.55;
}

.display-xl {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.display-lg {
  font-family: var(--f-display);
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.025em;
}

.text-primary { color: var(--c-primary); }
.text-accent { color: var(--c-accent); }
.text-muted { color: var(--c-text-muted); }
.text-white { color: var(--c-white); }
.italic { font-style: italic; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
