:root {
  --terra-primary: #c85a44;
  --terra-light: #e2725b;
  --earth-dark: #3e2723;
  --bg-light: #f9f6f0;
  --sage-accent: #8a9a5b;
  --text-main: #4a4a4a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--earth-dark);
  margin-bottom: 1rem;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Header */
.vcy-header-bar {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.vcy-logo-mark {
  font-family: 'Merriweather', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terra-primary);
}

.vcy-logo-mark span {
  color: var(--sage-accent);
}

.vcy-site-nav a {
  text-decoration: none;
  color: var(--earth-dark);
  margin-left: 1.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.vcy-site-nav a:hover {
  color: var(--terra-primary);
}

/* Hero */
.vcy-hero-stage {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 5%;
  overflow: hidden;
}

.vcy-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  z-index: -1;
  filter: brightness(0.4);
}

.vcy-hero-content {
  max-width: 800px;
  color: #ffffff;
}

.vcy-headline-primary {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.vcy-subhead {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.vcy-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.vcy-btn-primary, .vcy-btn-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.vcy-btn-primary {
  background-color: var(--terra-primary);
  color: #ffffff;
  border: 2px solid var(--terra-primary);
}

.vcy-btn-primary:hover {
  background-color: transparent;
  color: var(--terra-primary);
}

.vcy-btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.vcy-btn-secondary:hover {
  background-color: #ffffff;
  color: var(--earth-dark);
}

.vcy-hero-micro {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* About / Story Module */
.vcy-story-module {
  padding: 6rem 5%;
  background-color: #ffffff;
}

.vcy-story-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.vcy-story-text {
  flex: 1 1 500px;
}

.vcy-story-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.vcy-inline-link {
  color: var(--terra-primary);
  text-decoration: underline;
  font-weight: 700;
}

.vcy-stats-row {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

.vcy-stat-block {
  display: flex;
  flex-direction: column;
}

.vcy-stat-num {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terra-primary);
  line-height: 1;
}

.vcy-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--sage-accent);
  margin-top: 0.5rem;
  font-weight: 700;
}

.vcy-cert-badge {
  display: inline-block;
  background-color: var(--bg-light);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--earth-dark);
  border: 1px solid #ddd;
}

.vcy-story-visuals {
  flex: 1 1 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.vcy-story-visuals img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vcy-story-visuals img:nth-child(2) {
  transform: translateY(2rem);
}

/* Services */
.vcy-solutions-matrix {
  padding: 6rem 5%;
  background-color: var(--bg-light);
}

.vcy-solutions-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vcy-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vcy-solution-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vcy-solution-card:hover {
  transform: translateY(-5px);
}

.vcy-solution-card img {
  height: 220px !important;
}

.vcy-solution-card h3 {
  padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  font-size: 1.25rem;
}

.vcy-solution-card p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials */
.vcy-feedback-zone {
  padding: 6rem 5%;
  background-color: var(--earth-dark);
  color: #ffffff;
  text-align: center;
}

.vcy-feedback-zone .vcy-section-title {
  color: #ffffff;
  margin-bottom: 4rem;
}

.vcy-feedback-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.vcy-feedback-item {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: 8px;
  flex: 1 1 250px;
  max-width: 350px;
  text-align: left;
}

.vcy-feedback-item img {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 2px solid var(--terra-primary);
}

.vcy-feedback-item blockquote {
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.vcy-feedback-item cite {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--terra-light);
  text-transform: uppercase;
}

/* Contact */
.vcy-inquiry-panel {
  padding: 6rem 5%;
  background-color: #ffffff;
}

.vcy-inquiry-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.vcy-inquiry-info {
  flex: 1 1 350px;
}

.vcy-fine-print {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2rem;
}

.vcy-contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.vcy-form-group {
  display: flex;
  flex-direction: column;
}

.vcy-form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--earth-dark);
}

.vcy-form-group input, .vcy-form-group textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

.vcy-contact-form button {
  cursor: pointer;
  align-self: flex-start;
}

/* Footer */
.vcy-site-footer {
  background-color: #2a1a17;
  color: #ccc;
  padding: 4rem 5% 2rem 5%;
}

.vcy-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  border-bottom: 1px solid #3e2723;
  padding-bottom: 3rem;
}

.vcy-footer-brand h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.vcy-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vcy-footer-links h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.vcy-footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.vcy-footer-links a:hover {
  color: var(--terra-primary);
}

.vcy-unsubscribe {
  font-size: 0.8rem !important;
  opacity: 0.7;
  margin-top: 1rem;
}

.vcy-footer-bottom {
  text-align: center;
  font-size: 0.85rem;
}

.vcy-tiny-disclaimer {
  font-size: 0.7rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .vcy-header-bar {
    flex-direction: column;
    gap: 1rem;
  }
  .vcy-site-nav a {
    margin: 0 0.5rem;
  }
  .vcy-headline-primary {
    font-size: 2.5rem;
  }
  .vcy-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}
