@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700&f[]=cabinet-grotesk@400,500,700,800&display=swap');

:root {
  --c-emerald: #45695A;
  --c-sage: #9AAE9A;
  --c-gold: #B99657;
  --c-stone: #7C7065;
  --c-mist: #F5F4EE;
  --c-mist-2: #ECE9E0;
  --c-ink: #29302D;
  --c-white: #FFFFFF;
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-sub: 'Cabinet Grotesk', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-ui: 'Satoshi', system-ui, sans-serif;
  --grad-btn: linear-gradient(135deg, #B99657 0%, #D3B77D 100%);
  --grad-bg: linear-gradient(180deg, #F5F4EE 0%, #ECE9E0 100%);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;
  --shadow-soft: 0 2px 20px rgba(41,48,45,0.06);
  --shadow-card: 0 8px 40px rgba(41,48,45,0.10);
  --shadow-deep: 0 20px 60px rgba(41,48,45,0.16);
  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.4s;
  --dur-slow: 0.7s;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background-color: var(--c-mist);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font: inherit;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}

h4, h5, h6 {
  font-family: var(--f-sub);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-ink);
}

.text-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.65;
  font-weight: 300;
}

.eyebrow {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-emerald);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.eyebrow--gold { color: var(--c-gold); }
.eyebrow--sage { color: var(--c-sage); }
.eyebrow--light { color: rgba(245,244,238,0.6); }

em { font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-full);
  font-family: var(--f-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all var(--dur-med) var(--ease-out);
  white-space: nowrap;
  position: relative;
}

.btn--primary {
  background: var(--grad-btn);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(185,150,87,0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(185,150,87,0.45);
}

.btn--emerald {
  background: var(--c-emerald);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(69,105,90,0.3);
}

.btn--emerald:hover {
  transform: translateY(-2px);
  background: #3a5b4e;
}

.btn--outline {
  background: transparent;
  color: var(--c-emerald);
  border: 1.5px solid var(--c-emerald);
}

.btn--outline:hover {
  background: var(--c-emerald);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.55);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.8rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  font-family: var(--f-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--gold {
  background: rgba(185,150,87,0.12);
  color: var(--c-gold);
  border: 1px solid rgba(185,150,87,0.25);
}

.badge--emerald {
  background: rgba(69,105,90,0.1);
  color: var(--c-emerald);
  border: 1px solid rgba(69,105,90,0.2);
}

.divider {
  width: 60px;
  height: 1.5px;
  background: var(--c-gold);
  margin: 1.5rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1.5px solid rgba(41,48,45,0.15);
  border-radius: var(--radius-md);
  background: var(--c-white);
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
  box-sizing: border-box;
  -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--c-emerald);
  box-shadow: 0 0 0 3px rgba(69,105,90,0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(41,48,45,0.38);
}

.stat-number {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  color: var(--c-emerald);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--f-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin-top: 0.5rem;
  display: block;
}

.section-header { margin-bottom: 4rem; }
.section-header--center { text-align: center; }
.section-header--center .divider { margin-left: auto; margin-right: auto; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

.glass {
  background: rgba(245,244,238,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
}

.trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: rgba(69,105,90,0.07);
  border: 1px solid rgba(69,105,90,0.18);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--c-emerald);
}

.trust-badge__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-badge__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-emerald);
  stroke-width: 1.75;
  fill: none;
}

.trust-badge__text {
  font-family: var(--f-sub);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.3;
}

.trust-badge__sub {
  font-size: 0.78rem;
  color: var(--c-stone);
  font-weight: 400;
  display: block;
  margin-top: 0.25rem;
  line-height: 1.5;
}

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width var(--dur-med) var(--ease-out);
}

.link-underline:hover::after { width: 100%; }

::selection {
  background: rgba(69,105,90,0.18);
  color: var(--c-ink);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--c-mist); }
::-webkit-scrollbar-thumb { background: var(--c-sage); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-emerald); }

.text-center { text-align: center; }
.text-white { color: var(--c-white) !important; }
.text-gold { color: var(--c-gold) !important; }
.text-emerald { color: var(--c-emerald) !important; }
.text-stone { color: var(--c-stone) !important; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mt-6 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mb-6 { margin-bottom: 4rem; }
