@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=IBM+Plex+Mono:wght@300;400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@700,500,400&f[]=cabinet-grotesk@800,700,500,400&display=swap');

:root {
  --c-primary: #4A6F63;
  --c-secondary: #A4B3A2;
  --c-accent: #B88D4D;
  --c-stone: #786A5E;
  --c-bg: #F6F5F0;
  --c-bg-alt: #ECE9E2;
  --c-text: #2A302E;
  --c-text-muted: rgba(42, 48, 46, 0.62);
  --c-white: #FFFFFF;
  --c-border: rgba(74, 111, 99, 0.14);
  --c-border-alt: rgba(42, 48, 46, 0.1);

  --grad-hero: linear-gradient(135deg, #4A6F63 0%, #7F998E 50%, #DDE5E0 100%);
  --grad-btn: linear-gradient(135deg, #B88D4D 0%, #D0AF78 100%);
  --grad-bg: linear-gradient(180deg, #F6F5F0 0%, #ECE9E2 100%);
  --grad-nature: linear-gradient(135deg, #4A6F63 0%, #657F74 100%);
  --grad-overlay: rgba(74, 111, 99, 0.30);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sub: 'Cabinet Grotesk', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-ui: 'Satoshi', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --shadow-xs: 0 1px 6px rgba(42, 48, 46, 0.05);
  --shadow-sm: 0 2px 16px rgba(42, 48, 46, 0.07);
  --shadow-md: 0 8px 32px rgba(42, 48, 46, 0.09);
  --shadow-lg: 0 16px 56px rgba(42, 48, 46, 0.12);
  --shadow-xl: 0 24px 80px rgba(42, 48, 46, 0.16);
  --shadow-btn: 0 8px 24px rgba(184, 141, 77, 0.28);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 100px;

  --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);
}

*, *::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(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 600; }
h3 { font-size: clamp(1.375rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: clamp(1.125rem, 1.5vw, 1.5rem); font-weight: 600; }

p {
  font-family: var(--font-body);
  color: var(--c-text-muted);
  line-height: 1.7;
}

.label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.section-label {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn--primary {
  background: var(--grad-btn);
  color: var(--c-white);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184, 141, 77, 0.38);
  color: var(--c-white);
}

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--c-primary);
  color: var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--c-white);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--c-white);
}

.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  font-weight: 600;
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  color: var(--c-primary);
}

.btn--ghost {
  background: transparent;
  border: 1.5px solid var(--c-border-alt);
  color: var(--c-text);
}

.btn--ghost:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--c-border-alt);
}

.divider--accent {
  width: 40px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.text-primary { color: var(--c-primary) !important; }
.text-accent { color: var(--c-accent) !important; }
.text-muted { color: var(--c-text-muted) !important; }
.text-white { color: var(--c-white) !important; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
