/*--------------------------------------------------------------
  Verdant Redesign — Design System
  Scoped utility tokens + component styles for the rebuilt
  ACF blocks (Hero, Stats, Partnerships, Posts Loop, ...).
  Namespaced with "vrd-" to avoid clashing with the legacy
  theme styles in style.css.
----------------------------------------------------------------*/

:root {
  /* Greens */
  --vrd-forest-900: #06281a;
  --vrd-forest-800: #0b4827; /* = --primary-color */
  --vrd-forest-700: #115c34;
  --vrd-emerald-500: #16835a;
  --vrd-leaf-400: #add037;   /* = --secondary-color */
  --vrd-leaf-500: #97ba2b;

  /* Neutrals */
  --vrd-white: #ffffff;
  --vrd-slate-50: #f3f7f4;
  --vrd-slate-100: #e8efe9;
  --vrd-slate-200: #dbe5dd;
  --vrd-ink-900: #102a1c;
  --vrd-body-600: #51635b;

  /* Surfaces / shadows */
  --vrd-border: #e1e9e4;
  --vrd-radius-lg: 24px;
  --vrd-radius-md: 16px;
  --vrd-radius-sm: 10px;
  --vrd-radius-pill: 999px;
  --vrd-shadow-sm: 0 2px 10px rgba(11, 40, 26, 0.06);
  --vrd-shadow-md: 0 12px 32px -8px rgba(11, 40, 26, 0.18);
  --vrd-shadow-lg: 0 30px 70px -20px rgba(6, 40, 26, 0.35);

  /* Type */
  --vrd-heading-font: "Josefin Sans", sans-serif;
  --vrd-body-font: "Josefin Sans", sans-serif;

  --vrd-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/*--------------------------------------------------------------
  Shared helpers
----------------------------------------------------------------*/
.vrd-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 64px);
}

/* Make full-width aligned blocks break out of a constrained content column */
.vrd-bleed.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.vrd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--vrd-radius-pill);
  font-family: var(--vrd-body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(11, 72, 39, 0.06);
  color: var(--vrd-forest-800);
  border: 1px solid rgba(11, 72, 39, 0.12);
  margin-bottom: 20px;
}

.vrd-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vrd-leaf-400);
  flex-shrink: 0;
}

/* Section heading -------------------------------------------------*/
.vrd-section-head {
  max-width: 720px;
  margin: 0 0 56px;
}

.vrd-center {
  text-align: center;
}

.vrd-section-head.vrd-center {
  margin-inline: auto;
  text-align: center;
}

.vrd-section-head__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--vrd-ink-900);
  margin: 0 0 16px;
}

.vrd-section-head__desc {
  font-family: var(--vrd-body-font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--vrd-body-600);
  margin: 0;
}

/* Section surface tones --------------------------------------------*/
.vrd-surface-slate {
  background: var(--vrd-slate-50);
}

.vrd-surface-white {
  background: var(--vrd-white);
}

.vrd-section {
  padding-block: clamp(64px, 9vw, 112px);
}

/* Buttons -------------------------------------------------------*/
.vrd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--vrd-radius-pill);
  font-family: var(--vrd-body-font);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--vrd-ease), box-shadow 0.25s var(--vrd-ease),
    background-color 0.25s var(--vrd-ease), color 0.25s var(--vrd-ease),
    border-color 0.25s var(--vrd-ease);
}

.vrd-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.25s var(--vrd-ease);
}

.vrd-btn:hover svg {
  transform: translateX(3px);
}

.vrd-btn--primary {
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
}

.vrd-btn--primary:hover {
  background: var(--vrd-white);
  color: var(--vrd-forest-900);
  transform: translateY(-2px);
  box-shadow: var(--vrd-shadow-md);
}

.vrd-btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--vrd-white);
}

.vrd-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* Ghost button — for use on light backgrounds */
.vrd-btn--ghost {
  background: transparent;
  border-color: var(--vrd-border);
  color: var(--vrd-forest-800);
}

.vrd-btn--ghost:hover {
  background: var(--vrd-forest-800);
  border-color: var(--vrd-forest-800);
  color: var(--vrd-white);
  transform: translateY(-2px);
  box-shadow: var(--vrd-shadow-md);
}

/*--------------------------------------------------------------
  Hero Block — .vrd-hero
----------------------------------------------------------------*/
.vrd-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vrd-forest-900) 0%, var(--vrd-forest-800) 48%, var(--vrd-forest-700) 100%);
  color: var(--vrd-white);
  padding-block: clamp(64px, 10vw, 128px);
}

/* Decorative glows */
.vrd-hero::before,
.vrd-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.vrd-hero::before {
  width: 480px;
  height: 480px;
  top: -180px;
  right: -120px;
  background: rgba(173, 208, 55, 0.18);
}

.vrd-hero::after {
  width: 360px;
  height: 360px;
  bottom: -160px;
  left: -100px;
  background: rgba(22, 131, 90, 0.35);
}

.vrd-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}

/* Content column */
.vrd-hero__content {
  max-width: 620px;
}

.vrd-hero .vrd-eyebrow {
  background: rgba(173, 208, 55, 0.12);
  color: var(--vrd-leaf-400);
  border: 1px solid rgba(173, 208, 55, 0.3);
  margin-bottom: 24px;
}

.vrd-hero__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--vrd-white);
  margin: 0 0 24px;
}

.vrd-hero__title .vrd-accent {
  color: var(--vrd-leaf-400);
}

.vrd-hero__subtitle {
  font-family: var(--vrd-body-font);
  font-size: clamp(1rem, 1.1vw, 1.1875rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 40px;
  max-width: 540px;
}

.vrd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust point strip */
.vrd-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.vrd-hero__trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.vrd-hero__trust li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(173, 208, 55, 0.16);
  border: 1px solid rgba(173, 208, 55, 0.4);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ADD037' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5 6.5 12 13 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}

/* Media column */
.vrd-hero__media {
  position: relative;
}

.vrd-hero__media-frame {
  position: relative;
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--vrd-shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vrd-hero__media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vrd-hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 26, 0) 55%, rgba(6, 40, 26, 0.55) 100%);
}

/* Floating stat badge */
.vrd-hero__badge {
  position: absolute;
  left: -28px;
  bottom: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--vrd-white);
  color: var(--vrd-ink-900);
  border-radius: var(--vrd-radius-md);
  box-shadow: var(--vrd-shadow-md);
  padding: 18px 24px;
  max-width: 280px;
}

.vrd-hero__badge-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--vrd-radius-sm);
  background: var(--vrd-forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrd-hero__badge-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--vrd-leaf-400);
}

.vrd-hero__badge-number {
  display: block;
  font-family: var(--vrd-heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--vrd-forest-800);
}

.vrd-hero__badge-label {
  display: block;
  font-family: var(--vrd-body-font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--vrd-body-600);
}

/* Responsive ------------------------------------------------------*/
@media (max-width: 991px) {
  .vrd-hero__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .vrd-hero__content {
    max-width: 100%;
  }

  .vrd-hero__media-frame {
    aspect-ratio: 16 / 11;
    max-width: 560px;
    margin-inline: auto;
  }

  .vrd-hero__badge {
    left: 16px;
    bottom: -28px;
  }
}

@media (max-width: 575px) {
  .vrd-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vrd-btn {
    width: 100%;
  }

  .vrd-hero__badge {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
  Stats / Impact Dashboard Block — .vrd-stats
----------------------------------------------------------------*/
.vrd-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vrd-stat-card {
  position: relative;
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-md);
  padding: 32px 28px;
  box-shadow: var(--vrd-shadow-sm);
  transition: transform 0.3s var(--vrd-ease), box-shadow 0.3s var(--vrd-ease), border-color 0.3s var(--vrd-ease);
}

.vrd-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--vrd-shadow-md);
  border-color: rgba(11, 72, 39, 0.14);
}

.vrd-stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--vrd-radius-sm);
  background: var(--vrd-slate-50);
  margin-bottom: 24px;
}

.vrd-stat-card__icon img,
.vrd-stat-card__icon svg {
  width: 26px;
  height: 26px;
}

.vrd-stat-card__icon svg {
  stroke: var(--vrd-forest-800);
}

.vrd-stat-card__number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.1;
  color: var(--vrd-forest-800);
  margin: 0 0 12px;
}

.vrd-stat-card__number .vrd-stat-card__suffix {
  font-size: 0.6em;
  color: var(--vrd-leaf-500);
}

.vrd-stat-card__title {
  font-family: var(--vrd-body-font);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--vrd-ink-900);
  margin: 0 0 8px;
}

.vrd-stat-card__desc {
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--vrd-body-600);
  margin: 0;
}

@media (max-width: 991px) {
  .vrd-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .vrd-stats__grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  Shared checklist component
----------------------------------------------------------------*/
.vrd-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}

.vrd-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--vrd-body-600);
}

.vrd-checklist li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--vrd-slate-100);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230B4827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5 6.5 12 13 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px 9px;
}

@media (max-width: 575px) {
  .vrd-checklist {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  Partnership / Services Tabs Block — .vrd-partners
----------------------------------------------------------------*/
.vrd-tabs__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.vrd-tabs__card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-lg);
  box-shadow: var(--vrd-shadow-sm);
  overflow: hidden;
}

.vrd-tabs__nav {
  display: flex;
  flex-direction: column;
  background: var(--vrd-slate-50);
  border-right: 1px solid var(--vrd-border);
  padding: 16px;
  gap: 6px;
}

.vrd-tabs__nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--vrd-radius-sm);
  cursor: pointer;
  font-family: var(--vrd-body-font);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--vrd-body-600);
  transition: background-color 0.25s var(--vrd-ease), color 0.25s var(--vrd-ease);
}

.vrd-tabs__nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--vrd-radius-sm);
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  transition: background-color 0.25s var(--vrd-ease), border-color 0.25s var(--vrd-ease);
}

.vrd-tabs__nav-icon img,
.vrd-tabs__nav-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--vrd-forest-800);
}

.vrd-tabs__nav-item:hover {
  background: var(--vrd-white);
  color: var(--vrd-ink-900);
}

.vrd-tabs__panel {
  display: none;
  padding: clamp(32px, 5vw, 56px);
}

.vrd-tabs__panel-title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  color: var(--vrd-ink-900);
  margin: 0 0 16px;
}

.vrd-tabs__panel-desc {
  font-family: var(--vrd-body-font);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--vrd-body-600);
  margin: 0 0 28px;
}

.vrd-tabs__panel .vrd-checklist {
  margin-bottom: 28px;
}

.vrd-tabs__panel .vrd-btn--primary {
  background: var(--vrd-forest-800);
  color: var(--vrd-white);
}

.vrd-tabs__panel .vrd-btn--primary:hover {
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
}

/* Active state pairing — generated for up to 6 tabs */
.vrd-tabs__input:nth-of-type(1):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(1),
.vrd-tabs__input:nth-of-type(2):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(2),
.vrd-tabs__input:nth-of-type(3):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(3),
.vrd-tabs__input:nth-of-type(4):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(4),
.vrd-tabs__input:nth-of-type(5):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(5),
.vrd-tabs__input:nth-of-type(6):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(6) {
  background: var(--vrd-forest-800);
  color: var(--vrd-white);
}

.vrd-tabs__input:nth-of-type(1):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(1) .vrd-tabs__nav-icon,
.vrd-tabs__input:nth-of-type(2):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(2) .vrd-tabs__nav-icon,
.vrd-tabs__input:nth-of-type(3):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(3) .vrd-tabs__nav-icon,
.vrd-tabs__input:nth-of-type(4):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(4) .vrd-tabs__nav-icon,
.vrd-tabs__input:nth-of-type(5):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(5) .vrd-tabs__nav-icon,
.vrd-tabs__input:nth-of-type(6):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(6) .vrd-tabs__nav-icon {
  background: var(--vrd-leaf-400);
  border-color: var(--vrd-leaf-400);
}

.vrd-tabs__input:nth-of-type(1):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(1) .vrd-tabs__nav-icon svg,
.vrd-tabs__input:nth-of-type(2):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(2) .vrd-tabs__nav-icon svg,
.vrd-tabs__input:nth-of-type(3):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(3) .vrd-tabs__nav-icon svg,
.vrd-tabs__input:nth-of-type(4):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(4) .vrd-tabs__nav-icon svg,
.vrd-tabs__input:nth-of-type(5):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(5) .vrd-tabs__nav-icon svg,
.vrd-tabs__input:nth-of-type(6):checked ~ .vrd-tabs__card .vrd-tabs__nav-item:nth-of-type(6) .vrd-tabs__nav-icon svg {
  stroke: var(--vrd-forest-900);
}

.vrd-tabs__input:nth-of-type(1):checked ~ .vrd-tabs__card .vrd-tabs__panel:nth-of-type(1),
.vrd-tabs__input:nth-of-type(2):checked ~ .vrd-tabs__card .vrd-tabs__panel:nth-of-type(2),
.vrd-tabs__input:nth-of-type(3):checked ~ .vrd-tabs__card .vrd-tabs__panel:nth-of-type(3),
.vrd-tabs__input:nth-of-type(4):checked ~ .vrd-tabs__card .vrd-tabs__panel:nth-of-type(4),
.vrd-tabs__input:nth-of-type(5):checked ~ .vrd-tabs__card .vrd-tabs__panel:nth-of-type(5),
.vrd-tabs__input:nth-of-type(6):checked ~ .vrd-tabs__card .vrd-tabs__panel:nth-of-type(6) {
  display: block;
}

@media (max-width: 767px) {
  .vrd-tabs__card {
    grid-template-columns: 1fr;
  }

  .vrd-tabs__nav {
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--vrd-border);
  }

  .vrd-tabs__nav-item {
    flex-shrink: 0;
  }

  .vrd-tabs__nav-item span:not(.vrd-tabs__nav-icon) {
    white-space: nowrap;
  }
}

/*--------------------------------------------------------------
  Blog / Posts Loop Block — .vrd-posts
----------------------------------------------------------------*/
.vrd-posts__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.vrd-posts__head .vrd-section-head {
  margin-bottom: 0;
}

.vrd-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.vrd-post-card {
  display: flex;
  flex-direction: column;
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--vrd-shadow-sm);
  transition: transform 0.35s var(--vrd-ease), box-shadow 0.35s var(--vrd-ease), border-color 0.35s var(--vrd-ease);
}

.vrd-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vrd-shadow-md);
  border-color: rgba(11, 72, 39, 0.14);
}

.vrd-post-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--vrd-slate-100);
}

.vrd-post-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vrd-ease);
}

.vrd-post-card:hover .vrd-post-card__media img {
  transform: scale(1.07);
}

.vrd-post-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--vrd-radius-pill);
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
  font-family: var(--vrd-body-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vrd-post-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 28px;
}

.vrd-post-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vrd-body-font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--vrd-body-600);
  margin-bottom: 14px;
}

.vrd-post-card__meta svg {
  width: 14px;
  height: 14px;
  stroke: var(--vrd-leaf-500);
}

.vrd-post-card__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--vrd-ink-900);
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s var(--vrd-ease);
}

.vrd-post-card:hover .vrd-post-card__title {
  color: var(--vrd-forest-800);
}

.vrd-post-card__excerpt {
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vrd-body-600);
  margin: 0 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.vrd-post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: var(--vrd-body-font);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--vrd-forest-800);
}

.vrd-post-card__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--vrd-ease);
}

.vrd-post-card:hover .vrd-post-card__link svg {
  transform: translateX(4px);
}

.vrd-posts__footer {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

@media (max-width: 991px) {
  .vrd-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .vrd-posts__grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  Split Section — .vrd-split (image/text layouts)
----------------------------------------------------------------*/
.vrd-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.vrd-split__media {
  order: 1;
  position: relative;
}

.vrd-split__content {
  order: 2;
}

.vrd-split--reverse .vrd-split__media {
  order: 2;
}

.vrd-split--reverse .vrd-split__content {
  order: 1;
}

.vrd-split__media-frame {
  position: relative;
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vrd-shadow-md);
  aspect-ratio: 6 / 5;
}

.vrd-split__media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vrd-split__media--duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.vrd-split__media--duo .vrd-split__media-frame {
  aspect-ratio: 4 / 5;
}

.vrd-split__media--duo .vrd-split__media-frame:first-child {
  margin-top: 44px;
}

.vrd-split__media--duo .vrd-split__media-frame:last-child {
  margin-bottom: 44px;
}

.vrd-split__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--vrd-ink-900);
  margin: 0 0 20px;
}

.vrd-split__text {
  font-family: var(--vrd-body-font);
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--vrd-body-600);
  margin: 0 0 28px;
}

.vrd-split__text p:last-child {
  margin-bottom: 0;
}

.vrd-split .vrd-checklist,
.vrd-split .vrd-list-items {
  margin-bottom: 32px;
}

@media (max-width: 991px) {
  .vrd-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vrd-split__media,
  .vrd-split--reverse .vrd-split__media {
    order: 1;
  }
  .vrd-split__content,
  .vrd-split--reverse .vrd-split__content {
    order: 2;
  }
}

/*--------------------------------------------------------------
  Feature List Items — .vrd-list-items (title + description)
----------------------------------------------------------------*/
.vrd-list-items {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  gap: 24px;
}

.vrd-list-item {
  display: flex;
  gap: 16px;
}

.vrd-list-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--vrd-slate-100);
  color: var(--vrd-forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrd-list-item__icon svg {
  width: 16px;
  height: 16px;
}

.vrd-list-item__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--vrd-ink-900);
  margin: 0 0 4px;
}

.vrd-list-item__desc {
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vrd-body-600);
  margin: 0;
}

/*--------------------------------------------------------------
  Video Thumb — .vrd-video-thumb (lightbox trigger)
----------------------------------------------------------------*/
.vrd-video-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  aspect-ratio: 6 / 5;
  background-size: cover;
  background-position: center;
  box-shadow: var(--vrd-shadow-md);
}

.vrd-video-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 40, 26, 0.1), rgba(6, 40, 26, 0.45));
}

.vrd-video-thumb__play {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--vrd-ease), background-color 0.3s var(--vrd-ease);
}

.vrd-video-thumb__play svg {
  width: 28px;
  height: 28px;
}

.vrd-video-thumb:hover .vrd-video-thumb__play {
  transform: scale(1.1);
  background: var(--vrd-white);
}

.vrd-video-thumb--full {
  aspect-ratio: 21 / 9;
}

@media (max-width: 575px) {
  .vrd-video-thumb--full {
    aspect-ratio: 4 / 3;
  }
}

/*--------------------------------------------------------------
  Feature Cards — .vrd-feature-grid / .vrd-feature-card
----------------------------------------------------------------*/
.vrd-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.vrd-feature-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.vrd-feature-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.vrd-feature-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 32px;
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-lg);
  height: 100%;
  transition: transform 0.3s var(--vrd-ease), box-shadow 0.3s var(--vrd-ease), border-color 0.3s var(--vrd-ease);
}

.vrd-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vrd-shadow-md);
  border-color: transparent;
}

.vrd-feature-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--vrd-radius-md);
  background: var(--vrd-slate-100);
  color: var(--vrd-forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: background-color 0.3s var(--vrd-ease), color 0.3s var(--vrd-ease);
}

.vrd-feature-card__icon img,
.vrd-feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.vrd-feature-card:hover .vrd-feature-card__icon {
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
}

.vrd-feature-card__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vrd-ink-900);
  margin: 0;
}

.vrd-feature-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--vrd-ease);
}

.vrd-feature-card__title a:hover {
  color: var(--vrd-emerald-500);
}

.vrd-feature-card__desc {
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vrd-body-600);
  margin: 0;
  flex-grow: 1;
}

.vrd-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--vrd-body-font);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--vrd-forest-800);
  text-decoration: none;
}

.vrd-feature-card__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s var(--vrd-ease);
}

.vrd-feature-card:hover .vrd-feature-card__link svg {
  transform: translateX(3px);
}

/* Dark variant for use on forest/accent backgrounds */
.vrd-feature-card--dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.vrd-feature-card--dark .vrd-feature-card__title {
  color: var(--vrd-white);
}

.vrd-feature-card--dark .vrd-feature-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.vrd-feature-card--dark .vrd-feature-card__icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--vrd-leaf-400);
}

.vrd-feature-card--dark:hover {
  border-color: var(--vrd-leaf-400);
}

.vrd-feature-card--dark .vrd-feature-card__link {
  color: var(--vrd-leaf-400);
}

@media (max-width: 991px) {
  .vrd-feature-grid--3,
  .vrd-feature-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .vrd-feature-grid--3,
  .vrd-feature-grid--4 {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  Media Cards — .vrd-media-card (image bg + overlay + title/link)
----------------------------------------------------------------*/
.vrd-media-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--vrd-forest-800);
}

.vrd-media-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s var(--vrd-ease);
}

.vrd-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(6, 40, 26, 0) 35%, rgba(6, 40, 26, 0.92) 100%);
}

.vrd-media-card:hover img {
  transform: scale(1.08);
}

.vrd-media-card__info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px;
}

.vrd-media-card__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--vrd-white);
  margin: 0 0 16px;
}

.vrd-media-card__title a {
  color: inherit;
  text-decoration: none;
}

/*--------------------------------------------------------------
  Scroll Row — .vrd-scroll-row (snap-scroll card track)
----------------------------------------------------------------*/
.vrd-scroll-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--vrd-leaf-400) var(--vrd-slate-100);
}

.vrd-scroll-row::-webkit-scrollbar {
  height: 6px;
}

.vrd-scroll-row::-webkit-scrollbar-track {
  background: var(--vrd-slate-100);
  border-radius: var(--vrd-radius-pill);
}

.vrd-scroll-row::-webkit-scrollbar-thumb {
  background: var(--vrd-leaf-400);
  border-radius: var(--vrd-radius-pill);
}

.vrd-scroll-row > * {
  scroll-snap-align: start;
  flex: 0 0 clamp(260px, 32vw, 340px);
}

/*--------------------------------------------------------------
  CTA Strip — .vrd-cta-strip (full-bleed banner)
----------------------------------------------------------------*/
.vrd-cta-strip {
  position: relative;
  background-color: var(--vrd-forest-900);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.vrd-cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, rgba(6, 40, 26, 0.92) 0%, rgba(11, 72, 39, 0.8) 55%, rgba(11, 72, 39, 0.55) 100%);
}

.vrd-cta-strip__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(56px, 8vw, 96px);
}

.vrd-cta-strip__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--vrd-white);
  max-width: 640px;
  margin: 0;
}

@media (max-width: 575px) {
  .vrd-cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/*--------------------------------------------------------------
  FAQ Accordion — .vrd-faq (works with .cs_accordian JS)
----------------------------------------------------------------*/
.vrd-faq__item {
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-md);
  background: var(--vrd-white);
  margin-bottom: 16px;
  overflow: hidden;
  transition: border-color 0.3s var(--vrd-ease), box-shadow 0.3s var(--vrd-ease);
}

.vrd-faq__item:last-child {
  margin-bottom: 0;
}

.vrd-faq__item.active {
  border-color: var(--vrd-leaf-400);
  box-shadow: var(--vrd-shadow-sm);
}

.vrd-faq__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
}

.vrd-faq__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--vrd-ink-900);
  margin: 0;
}

.vrd-faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--vrd-slate-100);
  color: var(--vrd-forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s var(--vrd-ease), background-color 0.3s var(--vrd-ease), color 0.3s var(--vrd-ease);
}

.vrd-faq__item.active .vrd-faq__icon {
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
  transform: rotate(45deg);
}

.vrd-faq__body {
  padding: 0 28px 24px;
}

.vrd-faq__desc {
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--vrd-body-600);
}

.vrd-faq__desc p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  Gallery Grid — .vrd-gallery (works with lightGallery JS)
----------------------------------------------------------------*/
.vrd-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.vrd-gallery__item {
  position: relative;
  display: block;
  border-radius: var(--vrd-radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.vrd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--vrd-ease);
}

.vrd-gallery__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 40, 26, 0.55);
  opacity: 0;
  transition: opacity 0.3s var(--vrd-ease);
}

.vrd-gallery__overlay svg {
  width: 28px;
  height: 28px;
  color: var(--vrd-white);
}

.vrd-gallery__item:hover img {
  transform: scale(1.08);
}

.vrd-gallery__item:hover .vrd-gallery__overlay {
  opacity: 1;
}

/*--------------------------------------------------------------
  Logo Bar — .vrd-logos
----------------------------------------------------------------*/
.vrd-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
}

.vrd-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vrd-logos__item img {
  max-height: 42px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s var(--vrd-ease), transform 0.3s var(--vrd-ease);
}

.vrd-logos__item:hover img {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
  Page Header — .vrd-page-header
----------------------------------------------------------------*/
.vrd-page-header {
  position: relative;
  background-color: var(--vrd-forest-900);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.vrd-page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(6, 40, 26, 0.85), rgba(11, 72, 39, 0.7));
}

.vrd-page-header__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(64px, 10vw, 120px);
  text-align: center;
}

.vrd-page-header__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  color: var(--vrd-white);
  margin: 0 0 16px;
}

.vrd-page-header__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

.vrd-page-header__breadcrumb a {
  color: var(--vrd-leaf-400);
  text-decoration: none;
}

.vrd-page-header__breadcrumb a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
  Team Cards — .vrd-team
----------------------------------------------------------------*/
.vrd-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.vrd-team-card {
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--vrd-ease), box-shadow 0.3s var(--vrd-ease);
}

.vrd-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vrd-shadow-md);
}

.vrd-team-card__media {
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  background: var(--vrd-slate-100);
}

.vrd-team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vrd-team-card__body {
  padding: 24px 28px 28px;
}

.vrd-team-card__name {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--vrd-ink-900);
  margin: 0 0 4px;
}

.vrd-team-card__role {
  font-family: var(--vrd-body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vrd-emerald-500);
  margin: 0 0 12px;
}

.vrd-team-card__desc {
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--vrd-body-600);
  margin: 0 0 18px;
}

.vrd-team-card__socials {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.vrd-team-card__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--vrd-slate-100);
  color: var(--vrd-forest-800);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s var(--vrd-ease), color 0.3s var(--vrd-ease);
}

.vrd-team-card__socials a:hover {
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
}

@media (max-width: 575px) {
  .vrd-team__grid {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
  Testimonial Cards — .vrd-testimonial-card
----------------------------------------------------------------*/
.vrd-testimonial-card {
  flex: 0 0 clamp(320px, 38vw, 440px);
  display: flex;
  flex-direction: column;
  background: var(--vrd-white);
  border: 1px solid var(--vrd-border);
  border-radius: var(--vrd-radius-lg);
  padding: 32px;
}

.vrd-testimonial-card__quote {
  width: 44px;
  height: 44px;
  color: var(--vrd-leaf-400);
  margin-bottom: 16px;
}

.vrd-testimonial-card__text {
  font-family: var(--vrd-body-font);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--vrd-body-600);
  margin: 0 0 24px;
}

.vrd-testimonial-card__text p:last-child {
  margin-bottom: 0;
}

.vrd-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.vrd-testimonial-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.vrd-testimonial-card__avatar--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vrd-slate-100);
  color: var(--vrd-forest-800);
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.25rem;
}

.vrd-testimonial-card__name {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--vrd-ink-900);
  margin: 0;
}

.vrd-testimonial-card__role {
  font-family: var(--vrd-body-font);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vrd-emerald-500);
  margin: 2px 0 0;
}

/*--------------------------------------------------------------
  Contact Form — .vrd-contact-form (generic shortcode skin)
----------------------------------------------------------------*/
.vrd-contact-form input[type="text"],
.vrd-contact-form input[type="email"],
.vrd-contact-form input[type="tel"],
.vrd-contact-form input[type="number"],
.vrd-contact-form input[type="url"],
.vrd-contact-form textarea,
.vrd-contact-form select {
  display: block;
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--vrd-border);
  border-radius: var(--vrd-radius-sm);
  background: var(--vrd-white);
  font-family: var(--vrd-body-font);
  font-size: 0.9375rem;
  color: var(--vrd-ink-900);
  margin-bottom: 18px;
  transition: border-color 0.25s var(--vrd-ease), box-shadow 0.25s var(--vrd-ease);
}

.vrd-contact-form input:focus,
.vrd-contact-form textarea:focus,
.vrd-contact-form select:focus {
  outline: none;
  border-color: var(--vrd-leaf-500);
  box-shadow: 0 0 0 3px rgba(173, 208, 55, 0.25);
}

.vrd-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.vrd-contact-form label {
  display: block;
  font-family: var(--vrd-body-font);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--vrd-ink-900);
  margin-bottom: 8px;
}

.vrd-contact-form input[type="submit"],
.vrd-contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--vrd-radius-pill);
  border: none;
  background: var(--vrd-leaf-400);
  color: var(--vrd-forest-900);
  font-family: var(--vrd-body-font);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.25s var(--vrd-ease), color 0.25s var(--vrd-ease),
    transform 0.25s var(--vrd-ease), box-shadow 0.25s var(--vrd-ease);
}

.vrd-contact-form input[type="submit"]:hover,
.vrd-contact-form button[type="submit"]:hover {
  background: var(--vrd-forest-800);
  color: var(--vrd-white);
  transform: translateY(-2px);
  box-shadow: var(--vrd-shadow-md);
}

/*--------------------------------------------------------------
  Map Frame — .vrd-map-frame
----------------------------------------------------------------*/
.vrd-map-frame {
  border-radius: var(--vrd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vrd-shadow-md);
  margin-top: 56px;
}

.vrd-map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 575px) {
  .vrd-map-frame iframe {
    height: 320px;
  }
}

/*--------------------------------------------------------------
  Hero Banner Two — .vrd-hero-two (slick fade slider)
----------------------------------------------------------------*/
.vrd-hero-two {
  position: relative;
}

.vrd-hero-two .cs_slider_container {
  position: relative;
}

.vrd-hero-two__slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(420px, 70vh, 720px);
  background-color: var(--vrd-forest-900);
  isolation: isolate;
  overflow: hidden;
}

.vrd-hero-two__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vrd-hero-two__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(6, 40, 26, 0.8), rgba(11, 72, 39, 0.55));
}

.vrd-hero-two__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-block: clamp(60px, 10vw, 120px);
}

.vrd-hero-two__title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--vrd-white);
  margin: 0 0 32px;
}

.vrd-hero-two__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.vrd-hero-two__actions .vrd-btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--vrd-white);
}

.vrd-hero-two__actions .vrd-btn--outline:hover {
  background: var(--vrd-white);
  color: var(--vrd-forest-900);
  border-color: var(--vrd-white);
}

.vrd-hero-two__pagination {
  right: clamp(20px, 4vw, 64px);
  z-index: 2;
}

.vrd-hero-two__features {
  position: relative;
  z-index: 2;
  margin-top: clamp(-64px, -6vw, -40px);
  background: var(--vrd-white);
  border-radius: var(--vrd-radius-lg);
  box-shadow: var(--vrd-shadow-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.vrd-hero-two__feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 32px;
  border-right: 1px solid var(--vrd-border);
}

.vrd-hero-two__feature:last-child {
  border-right: none;
}

.vrd-hero-two__feature-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.vrd-hero-two__feature-title {
  font-family: var(--vrd-heading-font);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.4;
  color: var(--vrd-ink-900);
  margin: 0;
}

@media (max-width: 1024px) {
  .vrd-hero-two__slide {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .vrd-hero-two__features {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .vrd-hero-two__feature {
    border-right: none;
    border-bottom: 1px solid var(--vrd-border);
  }

  .vrd-hero-two__feature:last-child {
    border-bottom: none;
  }
}

/*--------------------------------------------------------------
  Wave bottom — .vrd-wave-bottom
  Add this div as the last child of any section to get a
  smooth arch transition into the next (white) section.
  Override --vrd-wave-fill on the section to match a different
  background colour below.
----------------------------------------------------------------*/
.vrd-wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 10;
}

.vrd-wave-bottom svg {
  display: block;
  width: 100%;
  height: clamp(40px, 5vw, 70px);
  color: var(--vrd-wave-fill, #ffffff);
}
