/* ========================================
   DORADO WIREFRAME DESIGN SYSTEM
   ======================================== */

/* — Reset & Base — */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wf-bg: #212736;
  --wf-surface: rgba(255, 255, 255, 0.04);
  --wf-block: rgba(255, 255, 255, 0.06);
  --wf-block-dark: rgba(255, 255, 255, 0.1);
  --wf-text: #ffffff;
  --wf-text-muted: rgba(255, 255, 255, 0.55);
  --wf-text-light: #f0ece4;
  --wf-accent: #CFC09C;
  --wf-accent-hover: #b8963f;
  --wf-accent-light: #E8C97A;
  --wf-navy: #212736;
  --wf-navy-light: #1a2030;
  --wf-border: rgba(207, 192, 156, 0.15);
  --wf-nav-bg: #212736;
  --wf-radius: 6px;
  --wf-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --wf-max-width: 1120px;
  --wf-gutter: 24px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--wf-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--wf-text);
  background: var(--wf-bg);
  -webkit-font-smoothing: antialiased;
}

/* — Utility — */
.container {
  max-width: var(--wf-max-width);
  margin-inline: auto;
  padding-inline: var(--wf-gutter);
}

/* — Navigation — */
.wf-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--wf-navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0 var(--wf-gutter);
}

.wf-nav__inner {
  max-width: var(--wf-max-width);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wf-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--wf-text-light);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.wf-nav__logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.wf-nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wf-nav__logo-text .brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wf-text-light);
}

.wf-nav__logo-text .brand-tagline {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wf-accent);
  opacity: 0.9;
}

.wf-nav__logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.wf-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.wf-nav__links a {
  text-decoration: none;
  color: rgba(240, 236, 228, 0.7);
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.wf-nav__links a:hover {
  color: var(--wf-text-light);
  background: rgba(255,255,255,0.08);
}

.wf-nav__links a.active {
  color: var(--wf-accent);
  background: rgba(207, 192, 156, 0.1);
}

.wf-nav__cta {
  background: var(--wf-accent) !important;
  color: var(--wf-navy) !important;
  padding: 7px 16px !important;
  border-radius: 4px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.wf-nav__cta:hover {
  background: var(--wf-accent-light) !important;
}

/* Mobile nav toggle */
.wf-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.wf-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--wf-text-light);
  margin: 4px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .wf-nav__toggle { display: block; }
  .wf-nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--wf-navy);
    flex-direction: column;
    padding: 12px var(--wf-gutter);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 2px;
  }
  .wf-nav__links.open { display: flex; }
  .wf-nav__links a { width: 100%; padding: 10px 12px; }
}

/* — Page Header / Hero — */
.wf-hero {
  padding: 0;
}

.wf-hero--navy {
  background: var(--wf-navy);
  color: var(--wf-text-light);
  padding: 64px 0 48px;
}

.wf-hero--navy .wf-hero__headline {
  color: var(--wf-text-light);
}

.wf-hero--navy .wf-hero__subline {
  color: rgba(240, 236, 228, 0.7);
}

.wf-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.wf-hero__headline {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--wf-text);
}

.wf-hero__accent {
  color: var(--wf-accent);
}

.wf-hero__subline {
  margin-top: 12px;
  color: var(--wf-text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 440px;
}

.wf-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.wf-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  cursor: pointer;
  border: none;
}

.wf-btn--primary {
  background: var(--wf-accent);
  color: var(--wf-navy);
}
.wf-btn--primary:hover {
  background: var(--wf-accent-light);
}

.wf-btn--secondary {
  background: transparent;
  color: var(--wf-text-light);
  border: 1px solid rgba(255,255,255,0.3);
}
.wf-btn--secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}

.wf-btn--outline {
  background: transparent;
  color: var(--wf-text);
  border: 1px solid var(--wf-border);
}
.wf-btn--outline:hover {
  background: rgba(0,0,0,0.03);
}

.wf-hero__visual {
  height: 420px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--wf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240,236,228,0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.wf-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.03) 10px,
    rgba(255,255,255,0.03) 20px
  );
}

.wf-hero__visual span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .wf-hero--navy { padding: 40px 0 32px; }
  .wf-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wf-hero__headline { font-size: 28px; }
  .wf-hero__visual { height: 200px; }
}

/* — Wireframe Blocks — */
.wf-block {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--wf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.wf-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.04) 8px,
    rgba(0,0,0,0.04) 16px
  );
}

.wf-block--dark {
  background: var(--wf-block-dark);
}

.wf-block--accent {
  background: var(--wf-accent);
  color: var(--wf-navy);
}

.wf-block span {
  position: relative;
  z-index: 1;
}

/* — Section — */
.wf-section {
  padding: 48px 0;
  background: var(--wf-navy);
}

.wf-section + .wf-section {
  border-top: 1px solid rgba(207, 192, 156, 0.1);
}

.wf-section__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--wf-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  padding-left: 2px;
}

.wf-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.wf-section__subtitle {
  font-size: 14px;
  color: var(--wf-accent);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* — Cards — */
.wf-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: var(--wf-radius);
  padding: 24px;
  transition: background 0.3s, border-color 0.3s;
}

.wf-card:hover {
  background: rgba(207, 192, 156, 0.08);
  border-color: rgba(207, 192, 156, 0.3);
}

.wf-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(207, 192, 156, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--wf-accent);
  font-size: 20px;
  font-weight: 700;
}

.wf-card__image {
  height: 140px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.wf-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.04) 8px,
    rgba(0,0,0,0.04) 16px
  );
}

.wf-card__image span {
  position: relative;
  z-index: 1;
}

.wf-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.wf-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.wf-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--wf-accent);
  text-decoration: none;
  margin-top: 12px;
}

.wf-card__link:hover {
  text-decoration: underline;
}

.wf-card__title {
  height: 14px;
  width: 70%;
  background: var(--wf-block-dark);
  border-radius: 3px;
  margin-bottom: 8px;
}

.wf-card__text {
  height: 10px;
  background: var(--wf-block);
  border-radius: 3px;
  margin-bottom: 6px;
}
.wf-card__text:last-child { width: 60%; margin-bottom: 0; }

/* — Grid Layouts — */
.wf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.wf-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wf-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .wf-grid-2,
  .wf-grid-3,
  .wf-grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wf-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .wf-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* — Stats Bar — */
.wf-stats-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: var(--wf-radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.wf-stats-bar .wf-stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(207, 192, 156, 0.15);
}

.wf-stats-bar .wf-stat-item:last-child {
  border-right: none;
}

.wf-stat-item__number {
  font-size: 28px;
  font-weight: 700;
  color: var(--wf-accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wf-stat-item__label {
  font-size: 12px;
  color: var(--wf-text-muted);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .wf-stats-bar {
    grid-template-columns: 1fr 1fr;
  }
  .wf-stats-bar .wf-stat-item:nth-child(2) {
    border-right: none;
  }
  .wf-stats-bar .wf-stat-item:nth-child(1),
  .wf-stats-bar .wf-stat-item:nth-child(2) {
    border-bottom: 1px solid var(--wf-border);
  }
}

/* — Stats Row (legacy) — */
.wf-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wf-stat {
  text-align: center;
  padding: 24px 12px;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius);
}
.wf-stat__number {
  font-size: 28px;
  font-weight: 700;
  color: var(--wf-accent);
  letter-spacing: -0.02em;
}
.wf-stat__label {
  font-size: 12px;
  color: var(--wf-text-muted);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .wf-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* — Text Blocks — */
.wf-text-line {
  height: 12px;
  background: var(--wf-block);
  border-radius: 3px;
  margin-bottom: 8px;
}
.wf-text-line--heading {
  height: 16px;
  width: 50%;
  background: var(--wf-block-dark);
  margin-bottom: 12px;
}
.wf-text-line:last-child { width: 75%; margin-bottom: 0; }

/* — Feature Row — */
.wf-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
}
.wf-feature-row:nth-child(even) .wf-feature-row__visual {
  order: -1;
}
.wf-feature-row__visual {
  height: 240px;
  background: var(--wf-block);
  border-radius: var(--wf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.wf-feature-row__visual::before {
  display: none;
}

.wf-feature-row__visual span {
  position: relative;
  z-index: 1;
}

.wf-feature-row__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}
.wf-feature-row__content p {
  color: var(--wf-text-muted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 400px;
}

@media (max-width: 768px) {
  .wf-feature-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wf-feature-row:nth-child(even) .wf-feature-row__visual {
    order: 0;
  }
  .wf-feature-row__visual { height: 180px; }
}

/* — Form Wireframe — */
.wf-form-field {
  margin-bottom: 16px;
}
.wf-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--wf-text);
  margin-bottom: 6px;
}
.wf-form-input {
  width: 100%;
  height: 40px;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 4px;
  padding: 0 12px;
  font-family: var(--wf-font);
  font-size: 13px;
}
.wf-form-textarea {
  width: 100%;
  height: 120px;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 4px;
  padding: 10px 12px;
  font-family: var(--wf-font);
  font-size: 13px;
  resize: vertical;
}

.wf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .wf-form-row {
    grid-template-columns: 1fr;
  }
}

/* — Footer — */
.wf-footer {
  background: var(--wf-navy);
  padding: 48px 0 0;
  margin-top: 0;
  color: var(--wf-text-light);
}

.wf-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.wf-footer__brand {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--wf-text-light);
  letter-spacing: 0.04em;
}

.wf-footer__desc {
  color: rgba(240, 236, 228, 0.6);
  font-size: 13px;
  max-width: 260px;
  line-height: 1.5;
}

.wf-footer__col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wf-accent);
  margin-bottom: 14px;
}

.wf-footer__col ul {
  list-style: none;
}

.wf-footer__col li {
  margin-bottom: 8px;
}

.wf-footer__col a {
  color: rgba(240, 236, 228, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s ease;
}

.wf-footer__col a:hover {
  color: var(--wf-text-light);
}

.wf-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(240, 236, 228, 0.4);
  font-size: 12px;
}

.wf-footer__bottom a {
  color: rgba(240, 236, 228, 0.4);
  text-decoration: none;
}

.wf-footer__bottom a:hover {
  color: var(--wf-accent);
}

@media (max-width: 768px) {
  .wf-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wf-footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* — Annotation Labels — */
.wf-annotation {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--wf-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: rgba(207, 192, 156, 0.1);
  border-radius: 4px;
  margin-bottom: 8px;
}

/* — Page indicator — */
.wf-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--wf-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}
.wf-page-badge__dot {
  width: 6px;
  height: 6px;
  background: var(--wf-accent);
  border-radius: 50%;
}

/* — Team Grid — */
.wf-team-member {
  background: transparent;
  border: none;
  padding: 24px 16px;
  text-align: center;
}

.wf-team-member__photo {
  width: 170px;
  height: 170px;
  background: var(--wf-navy);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-text-muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 3px var(--wf-accent), 0 4px 20px rgba(33, 39, 54, 0.15);
}

.wf-team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.wf-team-member__photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    rgba(0,0,0,0.04) 6px,
    rgba(0,0,0,0.04) 12px
  );
}

.wf-team-member__photo span {
  position: relative;
  z-index: 1;
}

.wf-team-member__name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.wf-team-member__role {
  font-size: 12px;
  color: var(--wf-accent-hover);
  font-weight: 500;
}

.wf-team-member__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(207, 192, 156, 0.3);
}

.wf-team-member__contact a {
  font-size: 11px;
  color: var(--wf-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.wf-team-member__contact a:hover {
  color: var(--wf-accent);
}

/* — Table — */
.wf-table-wrapper {
  overflow-x: auto;
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: var(--wf-radius);
  background: var(--wf-surface);
}

.wf-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.wf-table thead {
  background: rgba(207, 192, 156, 0.12);
  color: var(--wf-text-light);
}

.wf-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.wf-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--wf-border);
  color: var(--wf-text);
}

.wf-table tbody tr:last-child td {
  border-bottom: none;
}

.wf-table tbody tr:hover {
  background: rgba(207, 192, 156, 0.06);
}

/* — Expandable / Accordion — */
.wf-details {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: var(--wf-radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.wf-details summary {
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--wf-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  transition: background 0.15s ease;
}

.wf-details summary::-webkit-details-marker {
  display: none;
}

.wf-details summary::before {
  content: '▸';
  font-size: 14px;
  color: var(--wf-accent);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.wf-details[open] summary::before {
  transform: rotate(90deg);
}

.wf-details summary:hover {
  background: rgba(0,0,0,0.02);
}

.wf-details__content {
  padding: 0 20px 20px 48px;
}

.wf-details__content p {
  font-size: 13px;
  color: var(--wf-text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.wf-details__sub {
  margin-left: 0;
  margin-top: 8px;
}

.wf-details__sub .wf-pill {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(207, 192, 156, 0.08);
  color: var(--wf-text);
  font-size: 12px;
  border-radius: 99px;
  margin: 3px 4px 3px 0;
  border: 1px solid rgba(207, 192, 156, 0.2);
}

/* — CTA Section — */
.wf-cta-section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--wf-radius);
  padding: 48px;
  text-align: center;
  color: var(--wf-text-light);
  margin: 40px 0;
}

.wf-cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.wf-cta-section p {
  color: rgba(240, 236, 228, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .wf-cta-section {
    padding: 32px 20px;
  }
  .wf-cta-section h2 {
    font-size: 22px;
  }
}

/* — Crosslink — */
.wf-crosslink {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: var(--wf-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.wf-crosslink p {
  font-size: 14px;
  color: var(--wf-text-muted);
}

.wf-crosslink strong {
  color: #ffffff;
}

/* — Process Steps — */
.wf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.wf-step {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius);
  padding: 24px 20px;
  counter-increment: step;
  position: relative;
}

.wf-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--wf-accent);
  color: var(--wf-navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 12px;
}

.wf-step h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--wf-text);
  margin-bottom: 6px;
}

.wf-step p {
  font-size: 12px;
  color: var(--wf-text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wf-steps {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .wf-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* — Pillar Cards — */
/* — Verticals Band — */
.wf-verticals-band {
  background: var(--wf-navy);
  padding: 64px 0;
}

.wf-verticals-band__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.wf-verticals-band__subtitle {
  font-size: 15px;
  color: var(--wf-accent);
  margin-bottom: 40px;
  max-width: 640px;
}

.wf-verticals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.wf-vertical-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: 8px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background 0.3s, border-color 0.3s;
}

.wf-vertical-card:hover {
  background: rgba(207, 192, 156, 0.08);
  border-color: rgba(207, 192, 156, 0.35);
}

.wf-vertical-card__code {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--wf-accent);
  opacity: 0.5;
  margin-bottom: 12px;
}

.wf-vertical-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.wf-vertical-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  flex: 1;
}

.wf-vertical-card__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--wf-accent);
  margin-top: 16px;
  transition: opacity 0.2s;
}

.wf-vertical-card:hover .wf-vertical-card__link {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .wf-verticals-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .wf-verticals-grid {
    grid-template-columns: 1fr;
  }
}

/* — About Band (Home page) — */
.wf-about-band {
  background: var(--wf-navy);
  padding: 64px 0;
}

.wf-about-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.wf-about-band__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.wf-about-band__content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.wf-about-band__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--wf-accent);
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--wf-accent);
  border-radius: 6px;
  transition: background 0.3s, color 0.3s;
}

.wf-about-band__link:hover {
  background: var(--wf-accent);
  color: var(--wf-navy);
}

.wf-about-band__visual {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: 8px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .wf-about-band__inner {
    grid-template-columns: 1fr;
  }
}

/* — Pillars Band — */
.wf-pillars-band {
  background: var(--wf-navy);
  padding: 64px 0;
  margin: 0;
}

.wf-pillars-band__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.wf-pillars-band__subtitle {
  font-size: 15px;
  color: var(--wf-accent);
  margin-bottom: 40px;
}

.wf-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.wf-pillars-card {
  padding: 24px;
  border-right: 1px solid rgba(207, 192, 156, 0.15);
  position: relative;
}

.wf-pillars-card:last-child {
  border-right: none;
}

.wf-pillars-card__num {
  font-size: 36px;
  font-weight: 700;
  color: var(--wf-accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

.wf-pillars-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
  min-height: 44px;
  display: flex;
  align-items: flex-end;
}

.wf-pillars-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(207, 192, 156, 0.25);
  padding-top: 16px;
}

.wf-pillars-card li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.4;
}

.wf-pillars-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--wf-accent);
}

@media (max-width: 768px) {
  .wf-pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wf-pillars-card:nth-child(2) {
    border-right: none;
  }
  .wf-pillars-card:nth-child(1),
  .wf-pillars-card:nth-child(2) {
    border-bottom: 1px solid rgba(207, 192, 156, 0.15);
    margin-bottom: 0;
    padding-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .wf-pillars-grid {
    grid-template-columns: 1fr;
  }
  .wf-pillars-card {
    border-right: none;
    border-bottom: 1px solid rgba(207, 192, 156, 0.15);
    padding-bottom: 24px;
  }
  .wf-pillars-card:last-child {
    border-bottom: none;
  }
}

/* — Map Placeholder — */
.wf-map-placeholder {
  height: 280px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--wf-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}

.wf-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(0,0,0,0.04) 10px,
    rgba(0,0,0,0.04) 20px
  );
}

.wf-map-placeholder span {
  position: relative;
  z-index: 1;
}

/* — Contact Info — */
.wf-contact-info {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(207, 192, 156, 0.15);
  border-radius: var(--wf-radius);
  padding: 24px;
}

.wf-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--wf-border);
}

.wf-contact-info__item:last-child {
  border-bottom: none;
}

.wf-contact-info__icon {
  width: 36px;
  height: 36px;
  background: rgba(207, 192, 156, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--wf-accent);
  font-size: 14px;
}

.wf-contact-info__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wf-text-muted);
  margin-bottom: 2px;
}

.wf-contact-info__value {
  font-size: 14px;
  color: #ffffff;
}

/* — Asset Class Grid — */
.wf-asset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.wf-asset-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius);
  padding: 20px;
  cursor: pointer;
  transition: all 0.15s ease;
  border-left: 3px solid var(--wf-accent);
}

.wf-asset-card:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left-color: var(--wf-accent-light);
}

.wf-asset-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--wf-text);
  margin-bottom: 4px;
}

.wf-asset-card p {
  font-size: 12px;
  color: var(--wf-text-muted);
}

/* — Value Card (for About page values) — */
/* — Values Band (navy full-width) — */
.wf-values-band {
  background: var(--wf-navy);
  padding: 64px 0;
  margin: 48px 0;
}

.wf-values-band__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.wf-values-band__subtitle {
  font-size: 15px;
  color: var(--wf-accent);
  margin-bottom: 40px;
}

.wf-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.wf-values-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(207, 192, 156, 0.15);
  border-right: 1px solid rgba(207, 192, 156, 0.15);
}

.wf-values-item:nth-child(2n) {
  border-right: none;
}

.wf-values-item:nth-child(n+3) {
  border-bottom: none;
}

.wf-values-item__number {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-accent);
  line-height: 1;
  min-width: 48px;
  opacity: 0.6;
}

.wf-values-item__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.wf-values-item__content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wf-values-grid {
    grid-template-columns: 1fr;
  }
  .wf-values-item {
    border-right: none;
    border-bottom: 1px solid rgba(207, 192, 156, 0.15);
  }
  .wf-values-item:last-child {
    border-bottom: none;
  }
}

/* — Search Funds — */
.wf-highlight-box {
  background: rgba(207, 192, 156, 0.06);
  border: 1px solid rgba(207, 192, 156, 0.2);
  border-radius: var(--wf-radius);
  padding: 32px;
}

.wf-highlight-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--wf-text);
  margin-bottom: 8px;
}

.wf-highlight-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 640px;
}

/* — Loan Type Pills — */
/* — Finance Types (Development Finance page) — */
.wf-finance-types {
  background: var(--wf-navy);
  padding: 64px 0;
}

.wf-finance-types__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.wf-finance-types__subtitle {
  font-size: 15px;
  color: var(--wf-accent);
  margin-bottom: 40px;
}

.wf-finance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.wf-finance-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(207, 192, 156, 0.12);
  border-right: 1px solid rgba(207, 192, 156, 0.12);
}

.wf-finance-item:nth-child(2n) {
  border-right: none;
}

.wf-finance-item:nth-child(n+3) {
  border-bottom: none;
}

.wf-finance-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wf-accent);
  background: rgba(207, 192, 156, 0.08);
  border-radius: 10px;
  padding: 8px;
}

.wf-finance-item__icon svg {
  width: 32px;
  height: 32px;
}

.wf-finance-item__content h4 {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.wf-finance-item__content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .wf-finance-grid {
    grid-template-columns: 1fr;
  }
  .wf-finance-item {
    border-right: none;
    border-bottom: 1px solid rgba(207, 192, 156, 0.12);
  }
  .wf-finance-item:last-child {
    border-bottom: none;
  }
}

/* — Biodiversity — */
/* — Bio Band (Biodiversity page) — */
.wf-bio-band {
  background: var(--wf-navy);
  padding: 64px 0;
}

.wf-bio-band + .wf-bio-band {
  padding-top: 48px;
  border-top: 1px solid rgba(207, 192, 156, 0.1);
}

.wf-bio-band__title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.wf-bio-band__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 36px;
}

.wf-bio-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 16px;
}

.wf-bio-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid rgba(207, 192, 156, 0.12);
}

.wf-bio-benefit:last-child {
  border-right: none;
}

.wf-bio-benefit__num {
  font-size: 28px;
  font-weight: 700;
  color: var(--wf-accent);
  opacity: 0.5;
  line-height: 1;
  min-width: 36px;
}

.wf-bio-benefit__content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.wf-bio-benefit__content p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .wf-bio-benefits {
    grid-template-columns: 1fr;
  }
  .wf-bio-benefit {
    border-right: none;
    border-bottom: 1px solid rgba(207, 192, 156, 0.12);
  }
  .wf-bio-benefit:last-child {
    border-bottom: none;
  }
}

.wf-bio-card {
  background: var(--wf-surface);
  border: 1px solid var(--wf-border);
  border-radius: var(--wf-radius);
  padding: 28px;
}

.wf-bio-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wf-text);
  margin-bottom: 8px;
}

.wf-bio-card p {
  font-size: 13px;
  color: var(--wf-text-muted);
  line-height: 1.6;
}

.wf-bio-card .wf-block {
  height: 160px;
  margin-top: 16px;
}

/* — Page Header (non-hero) — */
.wf-page-header {
  padding: 48px 0 32px;
}
.wf-page-header h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--wf-text);
}
.wf-page-header p {
  margin-top: 8px;
  color: var(--wf-text-muted);
  font-size: 15px;
  max-width: 560px;
}
