@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=cabinet-grotesk@400,500,600,700,800&f[]=satoshi@400,500,600,700&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --clr-primary: #4D6B5B;
  --clr-secondary: #8EA591;
  --clr-accent: #B99758;
  --clr-accent2: #8A7866;
  --clr-bg: #F4F6F2;
  --clr-bg2: #E8ECE6;
  --clr-bg-contrast: #5E6B63;
  --clr-text: #29302D;
  --clr-text-muted: rgba(41,48,45,0.52);
  --clr-white: #ffffff;
  --clr-border: rgba(41,48,45,0.10);
  --clr-border-light: rgba(41,48,45,0.055);

  --grad-hero: linear-gradient(135deg, #4D6B5B 0%, #8EA591 55%, #DCE3DD 100%);
  --grad-btn: linear-gradient(135deg, #B99758 0%, #D1B680 100%);
  --grad-bg: linear-gradient(180deg, #F4F6F2 0%, #E8ECE6 100%);
  --grad-nature: linear-gradient(135deg, #4D6B5B 0%, #72897A 100%);
  --grad-dark: linear-gradient(160deg, #29302D 0%, #4D6B5B 100%);
  --overlay: rgba(41,48,45,0.52);
  --overlay-green: rgba(77,107,91,0.28);

  --font-display: 'Cormorant', serif;
  --font-sub: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-ui: 'Satoshi', sans-serif;

  --radius-xs: 4px;
  --radius: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 8px rgba(41,48,45,0.05);
  --shadow-sm: 0 2px 20px rgba(41,48,45,0.07);
  --shadow: 0 6px 36px rgba(41,48,45,0.10);
  --shadow-lg: 0 16px 56px rgba(41,48,45,0.13);
  --shadow-xl: 0 28px 80px rgba(41,48,45,0.17);
  --shadow-accent: 0 8px 40px rgba(185,151,88,0.30);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --dur-fast: 0.22s;
  --dur: 0.42s;
  --dur-slow: 0.72s;

  --container: 1320px;
  --container-md: 1060px;
  --container-sm: 820px;
  --gap-sm: 20px;
  --gap: 32px;
  --gap-lg: 56px;
  --section-py: clamp(80px, 10vw, 140px);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.74;
  color: var(--clr-text);
  background-color: var(--clr-bg);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--clr-secondary);
  color: var(--clr-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast) var(--ease);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  color: var(--clr-text);
  letter-spacing: -0.01em;
}

p {
  font-family: var(--font-body);
  line-height: 1.74;
}

.label {
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  display: block;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  padding: 7px 16px 7px 12px;
  border: 1px solid rgba(185,151,88,0.28);
  border-radius: var(--radius-full);
  background: rgba(185,151,88,0.05);
}

.tag::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-accent);
  flex-shrink: 0;
}

.tag-light {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.tag-light::before {
  background: rgba(255,255,255,0.75);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: var(--radius-full);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-btn);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 4px 28px rgba(185,151,88,0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 44px rgba(185,151,88,0.44);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: rgba(77,107,91,0.45);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  background: var(--clr-bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 11px;
}

.btn-lg {
  padding: 20px 52px;
  font-size: 13px;
}

.divider-line {
  width: 48px;
  height: 2px;
  background: var(--grad-btn);
  border-radius: 1px;
  display: block;
}

.text-accent {
  color: var(--clr-accent);
}

.text-primary {
  color: var(--clr-primary);
}

.text-muted {
  color: var(--clr-text-muted);
}

.text-white {
  color: var(--clr-white);
}

.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;
}
