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

:root {
  /* Palette: Warm Earth & Soft Clay */
  --hue: 25; /* Warm beige base */
  --bg-page: #FDFCF8;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F4EFEA;
  --primary: #D85A48; /* Terracotta */
  --primary-hover: #C04A39;
  --text-main: #2E231E; /* Deep Brown */
  --text-muted: #6B5E56;
  --text-light: #FFFFFF;
  --border: #E6DED5;
  
  /* Spacing Scale */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 3rem;
  --s-xl: 5rem;
  --s-xxl: 8rem;

  /* Typography */
  --font-body: 'Manrope', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  /* Layout */
  --w-max: 1200px;
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(46, 35, 30, 0.04);
  --shadow-md: 0 8px 24px rgba(46, 35, 30, 0.06);
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

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

img, picture, video, svg {
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: var(--s-sm);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-family: var(--font-body); font-weight: 700; }
p { margin-bottom: var(--s-md); max-width: 65ch; }

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

ul { list-style: none; }

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

.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.text-primary { color: var(--primary); }

/* HEADER */
.volt-header {
  padding-block: var(--s-sm);
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.volt-nav__inner {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.volt-nav__brand {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.volt-nav__logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
}

.volt-nav__logo span { color: var(--primary); }

.volt-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  font-weight: 500;
  font-size: 0.95rem;
}

.volt-nav__links a {
  color: var(--text-muted);
  padding: var(--s-xs);
  border-radius: var(--r-sm);
}

.volt-nav__links a:hover {
  color: var(--primary);
  background-color: var(--bg-surface-alt);
}

.volt-nav__cta-mobile {
  display: none;
}

@media (min-width: 768px) {
  .volt-nav__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn--primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(216, 90, 72, 0.3);
}

.btn--primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn--outline {
  background-color: transparent;
  border: 2px solid var(--border);
  color: var(--text-main);
}

.btn--outline:hover {
  border-color: var(--text-main);
  background-color: var(--text-main);
  color: var(--bg-page);
}

/* SECTIONS */
.volt-section {
  padding-block: clamp(4rem, 8vw, 8rem);
}

.volt-section--alt {
  background-color: var(--bg-surface-alt);
}

/* HERO */
.volt-hero {
  display: grid;
  gap: var(--s-lg);
  align-items: center;
  padding-top: var(--s-xl);
  padding-bottom: var(--s-xl);
}

@media (min-width: 900px) {
  .volt-hero {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
  }
}

.volt-hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: var(--s-sm);
}

.volt-hero__desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: var(--s-lg);
}

.volt-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-sm);
}

.volt-hero__img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 400px;
  width: 100%;
  background-color: #E6DED5; /* Placeholder color */
}

/* CARDS */
.volt-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.volt-card {
  background: var(--bg-surface);
  padding: var(--s-lg);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.volt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.volt-card__icon {
  width: 48px;
  height: 48px;
  background-color: var(--bg-surface-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-sm);
  color: var(--primary);
}

/* STATS */
.volt-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-lg);
  text-align: center;
}

.volt-stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary);
  line-height: 1;
  margin-bottom: var(--s-xs);
}

.volt-stats__label {
  font-weight: 600;
  color: var(--text-muted);
}

/* FAQ */
.volt-faq {
  max-width: 800px;
  margin: var(--s-lg) auto 0;
}

.volt-faq__item {
  border-bottom: 1px solid var(--border);
  padding: var(--s-md) 0;
}

.volt-faq__q {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: var(--s-xs);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.volt-faq__a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA BAND */
.volt-cta {
  background-color: var(--text-main);
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-lg);
  color: var(--bg-page);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.volt-cta h2 { color: var(--bg-page); }
.volt-cta p { color: rgba(255,255,255,0.8); }

/* FOOTER */
.volt-footer {
  background-color: var(--text-main);
  color: #AFA59E;
  padding-top: var(--s-xl);
  padding-bottom: var(--s-lg);
}

.volt-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-lg);
  margin-bottom: var(--s-xl);
}

.volt-footer__col h4 {
  color: var(--bg-page);
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: var(--s-md);
}

.volt-footer__links li { margin-bottom: var(--s-xs); }

.volt-footer__links a {
  color: inherit;
  font-size: 0.9rem;
}

.volt-footer__links a:hover { color: var(--primary); }

.volt-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--s-md);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-sm);
  font-size: 0.85rem;
} body{margin:0} *{box-sizing:border-box} img,svg,video{max-width:100%;height:auto} 