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

:root {
  /* Palette */
  --hue-indigo: 240;
  --c-bg: #FAFAF8; /* Creamy White */
  --c-surface: #FFFFFF;
  --c-indigo-deep: #1B2150;
  --c-indigo-mid: #2E3876;
  --c-indigo-light: #E8EAF2;
  --c-graphite: #45484F;
  --c-graphite-light: #71757F;
  --c-bronze: #D4A373;
  --c-bronze-dark: #B08050;
  --c-text-main: #1F2024;
  --c-text-muted: #585A60;
  
  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 8rem;

  /* Radius & Depth */
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-hover: 0 10px 15px -3px rgba(27, 33, 80, 0.1), 0 4px 6px -2px rgba(27, 33, 80, 0.05);

  /* Layout */
  --container-width: 1240px;
  --header-height: 80px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--c-bg);
  color: var(--c-text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--c-indigo-deep);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p { margin-bottom: var(--space-sm); color: var(--c-text-muted); }
.text-lead { font-size: 1.125rem; line-height: 1.7; color: var(--c-graphite); max-width: 65ch; }
.text-center { text-align: center; }
.text-bronze { color: var(--c-bronze); }

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

/* Sections */
.vrs__section {
  padding: var(--space-xl) 0;
  position: relative;
}
.vrs__section--alt { background-color: var(--c-surface); }
.vrs__section--dark { background-color: var(--c-indigo-deep); color: var(--c-bg); }
.vrs__section--dark h2, .vrs__section--dark h3 { color: var(--c-bg); }
.vrs__section--dark p { color: rgba(255,255,255,0.8); }

/* Header & Nav */
.vrs__header {
  height: var(--header-height);
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
}
.vrs__nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.vrs__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--c-indigo-deep);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.vrs__brand span { color: var(--c-bronze); }
.vrs__nav-list { display: flex; gap: var(--space-md); }
.vrs__nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-graphite);
  position: relative;
}
.vrs__nav-link:hover { color: var(--c-bronze); }
.vrs__nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--c-bronze); transition: width 0.3s ease;
}
.vrs__nav-link:hover::after { width: 100%; }

/* Mobile Menu Toggle */
.vrs__menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* Buttons */
.vrs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.vrs__btn--primary {
  background-color: var(--c-indigo-deep);
  color: white;
}
.vrs__btn--primary:hover {
  background-color: var(--c-indigo-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.vrs__btn--outline {
  background-color: transparent;
  border-color: var(--c-indigo-deep);
  color: var(--c-indigo-deep);
}
.vrs__btn--outline:hover {
  background-color: var(--c-indigo-light);
}
.vrs__btn--white {
  background-color: white;
  color: var(--c-indigo-deep);
}
.vrs__btn--white:hover { background-color: #f0f0f0; }

/* Hero Component */
.vrs__hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  min-height: 80vh;
}
.vrs__hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: var(--space-md);
}
.vrs__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-bronze);
  margin-bottom: var(--space-sm);
  display: block;
}
.vrs__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
}

/* Cards */
.vrs__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.vrs__card {
  background: var(--c-surface);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vrs__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.vrs__card-icon {
  font-size: 2rem;
  color: var(--c-indigo-deep);
  margin-bottom: var(--space-sm);
  display: block;
}
.vrs__card h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }

/* Stats */
.vrs__stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  text-align: center;
}
.vrs__stat-item h3 {
  font-size: 3.5rem;
  color: var(--c-bronze);
  margin-bottom: 0;
  font-family: var(--font-serif);
}
.vrs__stat-item p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* FAQ */
.vrs__faq-list { max-width: 800px; margin: 0 auto; }
.vrs__faq-item {
  border-bottom: 1px solid #E5E5E5;
  padding: var(--space-sm) 0;
}
.vrs__faq-q {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: var(--c-indigo-deep);
}
.vrs__faq-a {
  margin-top: 0.5rem;
  color: var(--c-text-muted);
  font-size: 0.95rem;
}

/* Footer */
.vrs__footer {
  background-color: var(--c-indigo-deep);
  color: rgba(255,255,255,0.7);
  padding: var(--space-xl) 0 var(--space-lg);
}
.vrs__footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.vrs__footer-brand { font-size: 1.5rem; color: white; margin-bottom: 1rem; display: block; font-family: var(--font-serif); }
.vrs__footer h4 { color: white; font-family: var(--font-sans); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.vrs__footer-links li { margin-bottom: 0.75rem; }
.vrs__footer-links a:hover { color: var(--c-bronze); }
.vrs__footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 960px) {
  .vrs__hero-grid { grid-template-columns: 1fr; min-height: auto; padding-top: var(--space-md); }
  .vrs__hero-content { padding-right: 0; text-align: center; align-items: center; margin-bottom: var(--space-md); }
  .vrs__footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .vrs__nav-list { display: none; } /* Simplified mobile nav for snippet */
  .vrs__menu-btn { display: block; }
  .vrs__footer-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .vrs__footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  h1 { font-size: 2.5rem; }
} body{margin:0} *{box-sizing:border-box} html{-webkit-text-size-adjust:100%} img,svg,video{max-width:100%;height:auto} 