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

:root {
  /* Palette: Deep Sage, Sand, Taupe, Broken White */
  --clr-bg: #F5F3F0; /* Broken White/Sand */
  --clr-surface: #FFFFFF;
  --clr-primary: #5F7A6D; /* Deep Sage */
  --clr-primary-dark: #4A6356;
  --clr-accent: #8C6A6B; /* Muted Rose/Taupe */
  --clr-text-main: #2C3330; /* Dark Charcoal/Green */
  --clr-text-muted: #6B7270;
  
  /* Typography */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;

  /* Spacing & Layout */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-subtle: 0 4px 20px rgba(95, 122, 109, 0.08);
  --shadow-hover: 0 12px 30px rgba(95, 122, 109, 0.15);
}

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

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--clr-primary-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--clr-text-main);
}

/* Utility Classes */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-accent { color: var(--clr-accent); }

/* --- Layout Components --- */

/* The Mandatory Container */
.vx-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* Sections */
section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  width: 100%;
}

/* --- Header / Nav --- */
.vx-header {
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  background: rgba(245, 243, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(95, 122, 109, 0.1);
}

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

.vx-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--clr-primary-dark);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vx-logo span {
  color: var(--clr-accent);
}

.vx-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.vx-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-text-main);
  position: relative;
}

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

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

/* Mobile Nav Toggle (Simplified) */
.vx-menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Component --- */
.vx-hero {
  background: linear-gradient(135deg, #E8E6E1 0%, #F5F3F0 100%);
  padding-top: clamp(3rem, 6vw, 6rem);
}

.vx-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  min-height: 60vh;
}

.vx-hero-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-accent);
  margin-bottom: 1rem;
  display: block;
}

.vx-hero-title {
  margin-bottom: 1.5rem;
  color: var(--clr-primary-dark);
}

.vx-hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--clr-text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.vx-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.vx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.vx-btn--primary {
  background-color: var(--clr-primary);
  color: #fff;
}

.vx-btn--primary:hover {
  background-color: var(--clr-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.vx-btn--secondary {
  background-color: transparent;
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.vx-btn--secondary:hover {
  background-color: rgba(95, 122, 109, 0.05);
}

.vx-hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
}

.vx-hero-img:hover {
  transform: rotate(0deg);
}

/* --- Cards Grid --- */
.vx-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

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

.vx-card {
  background: var(--clr-surface);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
}

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

.vx-card-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--clr-accent);
}

/* --- Stats --- */
.vx-stats {
  background-color: var(--clr-primary);
  color: #fff;
}

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

.vx-stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #E8E6E1;
}

.vx-stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- CTA Band --- */
.vx-cta {
  background-color: var(--clr-accent);
  color: #fff;
  text-align: center;
}

.vx-cta h2 {
  color: #fff;
}

.vx-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.vx-btn--white {
  background-color: #fff;
  color: var(--clr-accent);
}

.vx-btn--white:hover {
  background-color: #f0f0f0;
}

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

.vx-faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 1.5rem 0;
}

.vx-faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--clr-primary-dark);
}

.vx-faq-answer {
  color: var(--clr-text-muted);
  font-size: 1rem;
}

/* --- Footer --- */
.vx-footer {
  background-color: #262E2B;
  color: #AAB5B1;
  padding: 5rem 0 2rem;
}

.vx-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.vx-footer-brand h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vx-footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.vx-footer-col h5 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.vx-footer-col ul li {
  margin-bottom: 0.75rem;
}

.vx-footer-col a:hover {
  color: #fff;
}

.vx-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
  .vx-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .vx-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .vx-btn-group {
    justify-content: center;
  }
  
  .vx-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .vx-menu {
    display: none; /* Mobile menu would need JS to toggle, hidden for static */
  }
  
  .vx-menu-toggle {
    display: block;
  }
  
  .vx-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vx-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}*{box-sizing:border-box}html{-webkit-text-size-adjust:100%}img,svg,video{max-width:100%;height:auto}