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

:root {
  /* Palette: Organic Pastels & Warm Neutrals */
  --hue-pink: #F4E1E3;
  --hue-pink-deep: #E8CFC2;
  --hue-sage: #E1EBDD;
  --hue-sage-deep: #C2D4B8;
  --hue-lavender: #E2E2F0;
  --hue-terracotta: #E5C7BA;
  --hue-cream: #FDFBF7;
  
  /* UI Colors */
  --bg-body: var(--hue-cream);
  --bg-surface: #FFFFFF;
  --text-main: #2D312F;
  --text-muted: #6B706D;
  --text-inverse: #FFFFFF;
  --border-light: #EBEBEB;
  
  /* Spacing Scale */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 8rem;
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Manrope', sans-serif;
  
  /* Radius & Shadows */
  --radius-sm: 8px;
  --radius-md: 24px;
  --radius-lg: 48px;
  --shadow-soft: 0 12px 40px -10px rgba(45, 49, 47, 0.08);
  --shadow-hover: 0 20px 50px -12px rgba(45, 49, 47, 0.15);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Typography Utilities */
.h1-hero {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.h2-section {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: var(--sp-md);
}

.h3-card {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--sp-xs);
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: var(--sp-sm);
  display: block;
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.6;
}

/* Layout System */
.vx-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 4rem);
}

.vx-grid {
  display: grid;
  gap: var(--sp-md);
}

/* Header / Nav */
.vx-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-block: var(--sp-md);
}

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

.vx-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.vx-menu {
  display: flex;
  gap: var(--sp-md);
  align-items: center;
}

.vx-menu__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-main);
}

.vx-menu__link:hover {
  color: #A68A83; /* Deepened pastel for contrast */
}

/* Buttons */
.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
}

.vx-btn--primary {
  background-color: var(--text-main);
  color: var(--text-inverse);
}

.vx-btn--primary:hover {
  background-color: #4a4f4d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.vx-btn--secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.vx-btn--secondary:hover {
  border-color: var(--text-main);
  background-color: var(--bg-surface);
}

/* Hero Section */
.vx-hero {
  padding-block: clamp(8rem, 15vw, 12rem) var(--sp-xl);
  position: relative;
  overflow: hidden;
}

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

.vx-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 2;
}

.vx-hero__actions {
  display: flex;
  gap: var(--sp-sm);
  margin-top: var(--sp-md);
}

.vx-hero__visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.vx-hero__img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}

/* Background Blobs */
.vx-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}

.vx-blob--1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--hue-pink); }
.vx-blob--2 { bottom: 10%; right: -5%; width: 400px; height: 400px; background: var(--hue-sage); }

/* Features / Cards */
.vx-section {
  padding-block: var(--sp-xl);
}

.vx-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.vx-card {
  background: var(--bg-surface);
  padding: var(--sp-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vx-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Stats */
.vx-stats {
  background-color: var(--hue-sage);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
}

.vx-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  gap: var(--sp-md);
}

.vx-stat__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  color: var(--text-main);
}

.vx-stat__label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

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

.vx-faq-item {
  border-bottom: 1px solid var(--border-light);
  padding-block: var(--sp-md);
}

.vx-faq__question {
  font-weight: 600;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.vx-faq__answer {
  margin-top: var(--sp-sm);
  color: var(--text-muted);
  font-size: 1rem;
}

/* CTA */
.vx-cta {
  text-align: center;
  background-color: var(--hue-pink);
  border-radius: var(--radius-md);
  padding: var(--sp-xl) var(--sp-md);
}

/* Footer */
.vx-footer {
  padding-block: var(--sp-xl);
  border-top: 1px solid var(--border-light);
  margin-top: var(--sp-xl);
}

.vx-footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-lg);
}

.vx-footer__links {
  display: flex;
  gap: var(--sp-md);
}

.vx-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--sp-sm);
}

@media (max-width: 768px) {
  .vx-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .vx-hero__content {
    align-items: center;
  }
  
  .vx-hero__actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
  }
  
  .vx-menu {
    display: none; /* Mobile menu toggle would go here */
  }
  
  .vx-stats__grid {
    grid-template-columns: 1fr;
  }
  
  .vx-footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .vx-footer__links {
    flex-direction: column;
    align-items: center;
  }
}
*{box-sizing:border-box}
img,svg,video{max-width:100%;height:auto}
body{margin:0}
