@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  /* Palette */
  --clay-100: #F9F7F2; /* Background base */
  --clay-200: #EBE5D9; /* Borders / Lines */
  --clay-300: #D6CFC3; /* Soft accents */
  --sage-900: #3A4A40; /* Deep text / High contrast */
  --sage-700: #5C7062; /* Body text */
  --sage-600: #4A5C50; /* Links / Icons */
  --sage-500: #8EA597; /* Highlights */
  --indigo-800: #2B3252; /* Deep accent / Buttons */
  --indigo-900: #1D2238; /* Deepest contrast */
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  /* Layout */
  --container-width: 1140px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--clay-100);
  color: var(--sage-700);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--sage-900);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }

p { margin-bottom: var(--space-sm); font-size: clamp(1rem, 1.2vw, 1.125rem); }

a {
  color: var(--indigo-800);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: var(--sage-600); }

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

ul { list-style: none; }

/* Layout Container */
.wrap {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
}

section {
  padding-block: var(--space-lg);
}

/* Header / Nav */
.site-head {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(249, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--clay-200);
  padding-block: var(--space-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--sage-900);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo span { color: var(--sage-500); }

.nav-links {
  display: flex;
  gap: var(--space-md);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sage-900);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--indigo-800);
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }

.cta-small {
  padding: 0.6em 1.4em;
  background-color: var(--indigo-800);
  color: #fff !important;
  border-radius: 50px;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background-color 0.2s;
}

.cta-small:hover {
  background-color: var(--sage-900);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle (Hidden on Desktop) */
.nav-toggle { display: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; background: none; border: none; cursor: pointer; }
}

/* Hero Component */
.hero-section {
  padding-top: calc(var(--space-lg) * 1.5);
  padding-bottom: var(--space-xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--sage-600);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.hero-actions {
  margin-top: var(--space-md);
  display: flex;
  gap: var(--space-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--sage-900);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--indigo-800);
  color: #fff;
  box-shadow: 0 10px 20px -10px rgba(43, 50, 82, 0.4);
}

.btn-outline {
  border: 1px solid var(--sage-900);
  color: var(--sage-900);
}

.btn-outline:hover {
  background-color: var(--sage-900);
  color: #fff;
}

.hero-visual {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: 20px 20px 0px var(--clay-200);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* Features / Cards */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.card {
  background: #fff;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--clay-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -15px rgba(0,0,0,0.05);
  border-color: var(--sage-500);
}

.card-icon {
  font-size: 2rem;
  color: var(--sage-600);
  margin-bottom: var(--space-sm);
  display: block;
}

/* Stats */
.stats-band {
  background-color: var(--sage-900);
  color: var(--clay-100);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-top: var(--space-lg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  text-align: center;
}

.stat-item h3 {
  color: var(--clay-200);
  font-size: 3rem;
  margin-bottom: 0;
  font-family: var(--font-serif);
}

.stat-item p {
  color: var(--sage-500);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Text Content */
.content-block p.lead {
  font-size: 1.35rem;
  color: var(--indigo-800);
  font-weight: 300;
  margin-bottom: var(--space-md);
  line-height: 1.4;
}

/* CTA Band */
.cta-section {
  background-color: var(--clay-300);
  text-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--clay-200);
  padding: var(--space-md) 0;
}

.faq-question {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--sage-900);
  margin-bottom: var(--space-xs);
}

/* Footer */
.site-foot {
  background-color: #fff;
  border-top: 1px solid var(--clay-200);
  padding-block: var(--space-xl);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
}

.footer-brand p {
  color: var(--sage-700);
  margin-top: var(--space-sm);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--indigo-800);
  margin-bottom: var(--space-md);
}

.footer-col ul li { margin-bottom: var(--space-xs); }

.footer-bottom {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--clay-200);
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--sage-600);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { align-items: center; }
  .hero-visual { order: -1; margin-bottom: var(--space-md); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; }
  .stats-band { padding: var(--space-md); }
}img,svg,video{max-width:100%;height:auto}html{-webkit-text-size-adjust:100%}*{box-sizing:border-box}