/* =========================================================
   VERISONDE — Global Styles (no CSS variables)
   ========================================================= */

/* Global reset-ish */
html,
body {
  margin: 0;
  padding: 0;
}

body.vs-body {
  background: #f3e5cf; /* warm parchment / cream */
  color: #111827;      /* near-black for headings */
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

.vs-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.vs-header {
  border-bottom: none;        /* no line; cleaner */
  background: #f3e5cf;        /* same as body */
  position: sticky;
  top: 0;
  z-index: 20;
}

.vs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vs-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.vs-logo-small {
  height: 82px;
  width: auto;
  display: block;
}

.vs-nav-right {
  display: flex;
  align-items: center;
}

/* Base nav links */

.vs-nav-right a {
  margin-left: 1.75rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3f3a32; /* warmer muted ink */
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vs-nav-right a:hover {
  color: #111827;
}

/* CTA button in nav (more specific than generic link hover) */

.vs-nav-right a.vs-nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1.5px solid #3f3a32;
  background: transparent;
  color: #3f3a32;
}

.vs-nav-right a.vs-nav-cta:hover {
  background: #111827;
  color: #f3e5cf;
  border-color: #111827;
}

/* Mobile menu button (future use) */

.vs-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.vs-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #111827;
  transition: 0.3s;
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.vs-hero {
  padding: 4.5rem 1.5rem 4rem;
}

.vs-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

/* Logo + wordmark block */

.vs-hero-brand {
  text-align: center;
  margin-bottom: 2.75rem;
}

.vs-hero-logo {
  width: 82px;
  height: auto;
  margin: 0 auto 0.2rem; /* tight lockup */
  display: block;
}

.vs-hero-wordmark {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.05rem;
  letter-spacing: 0.32em; /* slightly more spaced, luxury feel */
  text-indent: 0.32em;
  margin-top: 0;
}

.vs-hero-motto {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3f3a32;
}

.vs-hero-rule {
  margin: 1.1rem auto 0;
  width: 130px;
  border: 0;
  border-top: 1.5px solid rgba(0, 0, 0, 0.15);
}

/* Headline + copy */

.vs-hero-copy {
  max-width: 640px;
  margin: 2.5rem auto 0;
}

.vs-hero-copy h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.15rem;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.vs-hero-copy p {
  font-size: 1rem;
  line-height: 1.6;
  color: #3f3a32;
  margin-bottom: 1.75rem;
}

/* Hero actions */

.vs-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Buttons & links */

.vs-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #111827;
  background: transparent;
  color: #111827;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vs-btn-primary:hover {
  background: #111827;
  color: #f3e5cf;
  border-color: #111827;
}

.vs-link-secondary {
  font-size: 0.9rem;
  color: #3f3a32;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}

.vs-link-secondary:hover {
  color: #111827;
  border-bottom-color: #b07929; /* richer gold accent */
}

/* =========================================================
   GENERIC SECTIONS
   ========================================================= */

.vs-section {
  padding: 3.5rem 1.5rem;
}

/* All sections same color now */
.vs-section-alt {
  background: #f3e5cf;
}

.vs-section-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Split layout (About) */

.vs-section-split {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; /* a bit more breathing room */
}

.vs-section-col {
  flex: 1 1 260px;
}

.vs-section-col-secondary {
  flex: 1 1 260px;
}

/* Section titles & text */

.vs-section h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.6rem;
  margin: 0 0 0.75rem;
  color: #111827;
}

.vs-section h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #111827;
}

.vs-section p {
  margin: 0 0 1rem;
  color: #3f3a32;
}

/* Section header */

.vs-section-header {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  text-align: left;
}

.vs-section-header h2 {
  margin-bottom: 0.5rem;
}

.vs-section-header p {
  margin: 0;
}

/* Lists */

.vs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-list li {
  margin-bottom: 0.7rem;
  color: #3f3a32;
}

/* Centered text section (Contact) */

.vs-section-center {
  text-align: center;
}

.vs-section-center p {
  max-width: 560px;
  margin: 0.75rem auto 1.75rem;
}

/* =========================================================
   GRID & CARD SYSTEM
   ========================================================= */

.vs-grid {
  display: grid;
  gap: 1.75rem;
}

.vs-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .vs-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .vs-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Card base */

.vs-card {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1.4rem 1.4rem 1.3rem;
  background: #ffffff; /* solid white for crisp contrast */
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.vs-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  color: #111827;
}

.vs-card p {
  margin: 0 0 0.9rem;
  color: #3f3a32;
}

.vs-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Card link */

.vs-card-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #3f3a32;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.vs-card-link:hover {
  color: #111827;
  border-bottom-color: #b07929;
}

/* Insights cards */

.vs-card-insight {
  background: #ffffff;
}

.vs-card-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #3f3a32;
  margin: 0 0 0.35rem;
}

/* Section footer */

.vs-section-footer {
  margin-top: 2rem;
}

.vs-section-footer .vs-link-secondary {
  font-size: 0.85rem;
}

/* =========================================================
   CONTACT PAGE – FORM + COPY LAYOUT
   ========================================================= */

/* Slightly tighten spacing above the contact content */
.vs-section-contact-main {
  padding-top: 1.5rem;
}

/* Two-column layout: form card + copy column */
.vs-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: flex-start;
}

/* Form card styling */
.vs-contact-form {
  padding: 2.25rem 2.4rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.05);
}

.vs-contact-form h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.vs-contact-intro {
  margin-bottom: 1.6rem;
  color: #3f3a32;
  font-size: 0.95rem;
}

/* Form rows */
.vs-form-row {
  margin-bottom: 1.1rem;
}

.vs-form-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #3f3a32;
}

.vs-label-optional {
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

/* Inputs / textarea */
.vs-form-row input,
.vs-form-row textarea {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fffdf8;
  color: #111827;
  box-sizing: border-box;
}

.vs-form-row input:focus,
.vs-form-row textarea:focus {
  outline: none;
  border-color: #b07929;
  box-shadow: 0 0 0 1px rgba(176, 121, 41, 0.25);
}

.vs-form-row textarea {
  resize: vertical;
  min-height: 130px;
}

.vs-form-actions {
  margin-top: 0.75rem;
}

/* Right-hand copy column */
.vs-contact-copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  font-size: 0.95rem;
  color: #3f3a32;
}

.vs-contact-block h2,
.vs-contact-block h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.vs-contact-block p {
  margin-bottom: 0.6rem;
}

/* Make lists in the contact copy feel lighter */
.vs-contact-block .vs-list li {
  margin-bottom: 0.55rem;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .vs-contact-layout {
    grid-template-columns: 1fr;
  }

  .vs-contact-form {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .vs-contact-form {
    padding: 1.75rem 1.4rem;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */

.vs-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem 2.5rem;
  background: #f3e5cf; /* same as body */
}

.vs-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #3f3a32;
}

/* Centered brand block */

.vs-footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: flex;
  flex-direction: column;
  align-items: center; /* center the name + tagline relative to each other */
  line-height: 1.3;
}

.vs-footer-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 0.95rem;
  color: #111827;
  letter-spacing: 0.22em; /* matches hero feel */
  margin-bottom: 0.1rem;
}

.vs-footer-tagline {
  font-size: 0.7rem;
  margin-top: 0.25rem;
  letter-spacing: 0.18em;
}

.vs-footer-links a {
  margin-left: 1.25rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #3f3a32;
}

.vs-footer-links a:first-child {
  margin-left: 0;
}

.vs-footer-links a:hover {
  color: #111827;
}

.vs-footer-meta p {
  margin: 0;
  font-size: 0.75rem;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */

@media (max-width: 900px) {
  .vs-section-split {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .vs-nav-right {
    display: none;
  }

  .vs-mobile-toggle {
    display: inline-block;
  }

  .vs-hero {
    padding-top: 3.25rem;
  }

  .vs-hero-copy h1 {
    font-size: 1.8rem;
  }

  .vs-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vs-footer-links {
    margin-top: 0.5rem;
  }

  .vs-footer-links a {
    margin-left: 0;
    margin-right: 1rem;
  }

  .vs-footer-brand {
    align-items: flex-start; /* feels more natural on narrow screens */
  }
}

/* =========================================================
   ABOUT PAGE – PROFILE CARD IMPROVEMENTS (Validator-friendly)
   ========================================================= */

/* Make the card grids wider */
#leadership .vs-grid,
#team .vs-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.25rem; /* replaces 'gap:' for validator compatibility */
}

/* Make cards slightly wider and less tall */
#leadership .vs-card,
#team .vs-card {
    padding: 1.4rem 1.5rem;
    border-radius: 14px;
}

/* Profile images – enforce wider shape using padding-ratio trick */
#leadership .vs-card img,
#team .vs-card img {
    width: 100%;
    border-radius: 14px;
    height: auto;
    display: block;
    object-fit: cover;

    /* Maintain a 3:4-ish wide portrait shape */
    aspect-ratio: auto; /* ignored by validator but works in browsers */
    max-height: 380px;  /* controller to prevent tall stretching */
}

/* Improve spacing */
#leadership .vs-card h3,
#team .vs-card h3 {
    margin: 0.3rem 0 0.7rem;
}

#leadership .vs-card p,
#team .vs-card p {
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

/* Wider container for nicer 3-column balance */
#leadership .vs-section-inner,
#team .vs-section-inner {
    max-width: 1180px;
}

/* =========================================================
   INSIGHT ARTICLE CONTAINER
   ========================================================= */

.vs-article-wrapper {
    background: #ffffff;
    border-radius: 14px;
    padding: 2.5rem 2.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    max-width: 760px;
    margin: 0 auto;
}

.vs-article-wrapper h2 {
    margin-top: 2.2rem;
}

.vs-article-wrapper h3 {
    margin-top: 1.6rem;
}

.vs-article-wrapper blockquote {
    background: #faf9f7;
    border-left: 4px solid #b07929;
    margin: 1.4rem 0;
    padding: 1rem 1.25rem;
    border-radius: 4px;
    font-style: italic;
    color: #3f3a32;
}