/* =========================================================================
   VAAL — shared base stylesheet (vaal-base.css)
   Consolidated foundation for ALL pages. Load AFTER assets/colors_and_type.css
   (which provides the design tokens) and BEFORE any page-specific stylesheet.
   Contains: base reset, utilities, site-wide components (utility bar, header,
   nav, buttons, eyebrow, drawer, footer), reusable page-section components
   (section scaffolding, project card, FAQ, FAQ-page, CTA-p), and shared media
   queries. Page-unique styles live in their own page stylesheet.
   Tokens come from assets/colors_and_type.css. Do not edit _ds/ (source of truth).
   ========================================================================= */

/* ========================================================================= *
 *  1. BASE RESET
 * ========================================================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--vaal-white);
  color: var(--fg-1);
}
a { color: inherit; }

img { display: block; max-width: 100%; }

/* ========================================================================= *
 *  2. UTILITIES
 * ========================================================================= */
/* --- Layout ---------------------------------------------------------------- */
.v-container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.v-container--wide {
  max-width: var(--container-wide);
}

/* Screen-reader only helper */
.v-sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ========================================================================= *
 *  3. SITE-WIDE COMPONENTS
 * ========================================================================= */
/* --- Utility bar ----------------------------------------------------------- */
.v-utility {
  background: var(--vaal-black);
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.v-utility__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.v-utility__slogan { color: var(--vaal-yellow); }
.v-utility__right {
  display: flex;
  gap: 24px;
  align-items: center;
}
.v-utility__right a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dur-fast);
}
.v-utility__right a:hover { color: var(--vaal-yellow); }

/* Utility-bar override (dim secondary language) */
.v-utility__lang-dim { color: rgba(255,255,255,0.4); }

/* --- Header ---------------------------------------------------------------- */
.v-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.v-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 84px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
.v-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.v-header__brand img { width: 60px; height: auto; flex-shrink: 0; }
.v-header__brand-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.v-header__brand-text strong {
  font-weight: var(--fw-extrabold);
  font-size: 15px;
  letter-spacing: var(--ls-tight);
}
.v-header__brand-text span {
  margin-top: 4px;
  font-size: 9.5px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--fg-2);
}
.v-nav {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding: 0 var(--gutter);
}
.v-nav__item {
  position: relative;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-1);
  padding: 6px 0;
}
.v-nav__item::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 3px;
  background: var(--vaal-yellow);
  transition: right var(--dur-base) var(--ease-standard);
}
.v-nav__item:hover::after,
.v-nav__item.is-active::after { right: 0; }
.v-header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.v-header__menu-btn {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.v-header__menu-btn span,
.v-header__menu-btn span::before,
.v-header__menu-btn span::after {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: #000;
  content: "";
}
.v-header__menu-btn span { top: 21px; }
.v-header__menu-btn span::before { top: -6px; left: 0; }
.v-header__menu-btn span::after  { top: 6px; left: 0; }

/* --- Buttons --------------------------------------------------------------- */
.v-btn {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 26px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.v-btn--sm { height: 40px; padding: 0 18px; font-size: 11px; }
.v-btn--primary {
  background: var(--vaal-yellow);
  color: #000;
  border-color: var(--vaal-yellow);
}
.v-btn--primary:hover { background: #000; color: var(--vaal-yellow); border-color: #000; }
.v-btn--dark {
  background: #000;
  color: #fff;
  border-color: #000;
}
.v-btn--dark:hover { background: var(--vaal-yellow); color: #000; border-color: var(--vaal-yellow); }
.v-btn--outline {
  background: transparent;
  color: #000;
  border-color: #000;
}
.v-btn--outline:hover { background: #000; color: var(--vaal-yellow); }
.v-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.v-btn--outline-light:hover { background: var(--vaal-yellow); color: #000; border-color: var(--vaal-yellow); }
.v-btn__arrow { font-size: 14px; line-height: 1; }

/* --- Eyebrow --------------------------------------------------------------- */
.v-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-1);
}
.v-eyebrow::before {
  content: "";
  width: 24px; height: 4px;
  background: var(--vaal-yellow);
}
.v-eyebrow.is-light { color: #fff; }

/* --- Mobile menu drawer ---------------------------------------------------- */
.v-drawer {
  position: fixed;
  inset: 0;
  background: var(--vaal-black);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease-standard);
  visibility: hidden;
}
.v-drawer.is-open { transform: translateX(0); visibility: visible; }
.v-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px var(--gutter);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.v-drawer__close {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  font-family: inherit;
}
.v-drawer__nav {
  display: flex;
  flex-direction: column;
  padding: 40px var(--gutter);
  gap: 0;
  flex: 1;
  overflow-y: auto;
}
.v-drawer__nav a {
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.v-drawer__nav a:hover { color: var(--vaal-yellow); }
.v-drawer__foot {
  padding: 24px var(--gutter) 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 12px;
}

/* Drawer brand/lang helpers */
.v-drawer__brand-link { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 14px; }
.v-drawer__logo { width: 48px; height: auto; }
.v-drawer__email {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* --- Footer ---------------------------------------------------------------- */
.v-footer {
  background: var(--vaal-black);
  color: #fff;
  padding: clamp(56px, 7vw, 96px) 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.v-footer__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: end;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.v-footer__brand img {
  width: 120px; height: auto;
}
.v-footer__slogan {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.75rem, 4.2vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0;
  max-width: 800px;
}
.v-footer__slogan .y { color: var(--vaal-yellow); }
.v-footer__mid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.v-footer__col-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.v-footer__contact {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}
.v-footer__contact span {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  margin-top: 6px;
}
.v-footer__link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  width: fit-content;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}
.v-footer__link:hover {
  border-bottom-color: var(--vaal-yellow);
  color: #fff;
}
.v-footer__link .v-footer__link-meta {
  display: inline-block;
  margin-left: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.v-footer__bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.v-footer__legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.v-footer__legal-links a {
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.v-footer__legal-links a:hover { color: var(--vaal-yellow); }

/* Footer logo (brand column) */
.v-footer__logo {
  width: 84px;
  height: auto;
  display: block;
  margin-bottom: 22px;
}

/* ========================================================================= *
 *  4. PAGE-SECTION COMPONENTS (reusable across pages)
 * ========================================================================= */
/* --- Section scaffolding --------------------------------------------------- */
.v-section {
  padding: clamp(64px, 9vw, 128px) 0;
  background: #fff;
}
.v-section--soft { background: var(--vaal-black-100); }
.v-section--dark { background: var(--vaal-black); color: #fff; }
.v-section__head {
  display: flex; flex-direction: column;
  gap: 20px;
}
.v-section__heading {
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  margin: 0;
  max-width: 880px;
}
.v-section__heading .y {
  color: var(--vaal-black);
  background: var(--vaal-yellow);
  padding: 0 10px;
  display: inline-block;
}
.v-section__lede {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 640px;
  margin: 0;
}

/* --- Projects grid --------------------------------------------------------- */
.v-projects__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(36px, 5vw, 64px);
  gap: 24px;
}
.v-projects__head-link {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  display: inline-flex; align-items: center; gap: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--vaal-yellow);
}
.v-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v-project {
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-standard);
}
.v-project__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: #1A1A1A;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.v-project__photo--faceted {
  background-image: url('assets/cover-triangulated.jpg');
  background-position: 100% 50%;
}
.v-project__photo--placeholder {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.6) 100%),
    repeating-linear-gradient(45deg, #2A2A2A 0 18px, #1A1A1A 18px 36px);
}
.v-project__photo--warm {
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(135deg, #3A2F25 0 14px, #2A2218 14px 28px);
}
.v-project__photo::after {
  /* hide burned text on faceted variant */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 40%);
}
.v-project__photo--placeholder::after,
.v-project__photo--warm::after { display: none; }
.v-project__badge {
  position: absolute;
  top: 0; left: 0;
  padding: 10px 16px;
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  z-index: 2;
}
.v-project__badge--selling { background: var(--vaal-yellow); color: #000; }
.v-project__badge--construction { background: #fff; color: #000; }
.v-project__badge--delivered { background: var(--vaal-black); color: #fff; }
.v-project__photo-mark {
  position: absolute;
  bottom: 18px; left: 22px;
  z-index: 2;
  color: #fff;
}
.v-project__photo-mark strong {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.v-project__body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.v-project__row {
  display: flex; justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.v-project__title {
  font-weight: var(--fw-bold);
  font-size: 26px;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0;
  color: #000;
}
.v-project__location {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-2);
}
.v-project__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.v-project__spec-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}
.v-project__spec-value {
  font-weight: var(--fw-semibold);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: #000;
}
.v-project__foot {
  margin-top: 6px;
  display: flex; justify-content: space-between; align-items: center;
}
.v-project__link {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: #000;
  display: inline-flex; align-items: center; gap: 12px;
}
.v-project__link::after {
  content: "";
  width: 22px; height: 2px;
  background: var(--vaal-yellow);
  transition: width var(--dur-base) var(--ease-standard);
}
.v-project:hover .v-project__link::after { width: 44px; }

/* --- FAQ ------------------------------------------------------------------- */
.v-faq__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.v-faq__list {
  border-top: 1px solid #000;
}
.v-faq__item {
  border-bottom: 1px solid var(--line);
}
.v-faq__summary {
  list-style: none;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 16px;
  padding: clamp(20px, 2.5vw, 32px) 8px;
  cursor: pointer;
  align-items: center;
  transition: padding var(--dur-base) var(--ease-standard);
}
.v-faq__summary::-webkit-details-marker { display: none; }
.v-faq__num {
  font-weight: var(--fw-bold);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  letter-spacing: var(--ls-wider);
  color: var(--fg-3);
}
.v-faq__question {
  font-weight: var(--fw-semibold);
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.v-faq__toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  position: relative;
  transition: background var(--dur-base) var(--ease-standard),
              border-color var(--dur-base) var(--ease-standard);
}
.v-faq__toggle::before,
.v-faq__toggle::after {
  content: "";
  position: absolute;
  background: #000;
  transition: transform var(--dur-base) var(--ease-standard);
}
.v-faq__toggle::before { width: 12px; height: 2px; }
.v-faq__toggle::after  { width: 2px; height: 12px; }
.v-faq__item[open] .v-faq__toggle {
  background: var(--vaal-yellow);
  border-color: var(--vaal-yellow);
}
.v-faq__item[open] .v-faq__toggle::after { transform: rotate(90deg); }
.v-faq__answer {
  padding: 0 8px clamp(24px, 3vw, 36px) 80px;
  max-width: 720px;
}
.v-faq__answer p {
  font-size: clamp(0.9375rem, 1.15vw, 1rem);
  line-height: 1.7;
  color: var(--fg-2);
  margin: 0 0 12px;
}
.v-faq__answer p:last-child { margin-bottom: 0; }
.v-faq__answer a {
  color: #000;
  text-decoration: none;
  border-bottom: 2px solid var(--vaal-yellow);
  font-weight: var(--fw-semibold);
}
.v-faq__aside {
  position: sticky;
  top: 120px;
  display: flex; flex-direction: column; gap: 24px;
  padding: 32px 28px;
  background: #000;
  color: #fff;
  border-top: 4px solid var(--vaal-yellow);
}
.v-faq__aside h3 {
  font-weight: var(--fw-extrabold);
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.v-faq__aside p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.v-faq__aside-contact {
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px;
}
.v-faq__aside-contact strong {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

/* FAQ — page variant (light surface) */
.v-faq--page {
  padding: clamp(64px, 9vw, 112px) 0;
  background: #fff;
}
.v-faq--page .v-container {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.v-faq--page__head {
  position: sticky;
  top: 160px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.v-faq--page__lede {
  font-size: clamp(0.9375rem, 1.15vw, 1rem);
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}

/* CTA — yellow surface variant */
.v-cta-p {
  background: var(--vaal-yellow);
  color: #000;
  padding: clamp(56px, 7vw, 96px) 0;
}
.v-cta-p__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.v-cta-p__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: #000;
  opacity: 0.6;
  margin-bottom: 20px;
}
.v-cta-p__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #000;
  margin: 0;
}
.v-cta-p__lede {
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.6;
  color: rgba(0,0,0,0.72);
  max-width: 480px;
  margin: 22px 0 0;
}
.v-cta-p__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.v-cta-p__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #000;
  transition: background var(--dur-base, 280ms) var(--ease, cubic-bezier(0.32,0.08,0.24,1)), color var(--dur-base, 280ms) var(--ease, cubic-bezier(0.32,0.08,0.24,1));
}
.v-cta-p__btn--solid { background: #000; color: var(--vaal-yellow); }
.v-cta-p__btn--solid:hover { background: transparent; color: #000; }
.v-cta-p__btn--ghost { background: transparent; color: #000; }
.v-cta-p__btn--ghost:hover { background: #000; color: var(--vaal-yellow); }

.v-cta-p__contact {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #000;
}
.v-cta-p__channel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  text-decoration: none;
  color: #000;
}
a.v-cta-p__channel { transition: padding-left var(--dur-fast, 160ms) ease; }
a.v-cta-p__channel:hover { padding-left: 8px; }
.v-cta-p__channel-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  opacity: 0.55;
}
.v-cta-p__channel-value {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
}

/* ========================================================================= *
 *  5. RESPONSIVE (shared)
 * ========================================================================= */
@media (max-width: 1100px) {
  .v-nav { gap: 18px; padding: 0 16px; }
  .v-nav__item { font-size: 10.5px; }
}

@media (max-width: 940px) {
  .v-utility { display: none; }
  .v-header__inner { grid-template-columns: auto 1fr auto; }
  .v-nav { display: none; }
  .v-header__menu-btn { display: inline-block; }
  .v-header__actions .v-btn { display: none; }

  .v-faq__grid { grid-template-columns: 1fr; gap: 32px; }
  .v-faq__aside { position: static; }

  .v-projects__grid { grid-template-columns: 1fr; }

  .v-faq--page .v-container { grid-template-columns: 1fr; gap: 36px; }
  .v-faq--page__head { position: static; }

  .v-cta-p__inner { grid-template-columns: 1fr; gap: 40px; }

  .v-footer__top { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .v-footer__mid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .v-footer__bottom { flex-direction: column; align-items: flex-start; }
  .v-footer__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .v-utility__inner { padding: 8px var(--gutter); }
  .v-header__brand-text { display: none; }
  .v-projects__head { flex-direction: column; align-items: flex-start; }
  .v-project__specs { grid-template-columns: 1fr 1fr; }
  .v-footer__mid { grid-template-columns: 1fr; }
  .v-faq__summary { grid-template-columns: 36px 1fr 28px; gap: 12px; }
  .v-faq__answer { padding-left: 48px; }
}

/* =========================================================================== *
 *  6. EXTENDED SHARED COMPONENTS
 *  Added to support the full multi-page site (About, Approach, Investors,
 *  Markets, country pages, project detail, Insights, FAQ, Contact, Procurement,
 *  Legal). Built to the existing visual language: yellow hairline accents,
 *  tabular numerals, sharp corners, Montserrat weight hierarchy. Surface-aware:
 *  components restyle automatically inside .v-section--dark.
 * =========================================================================== */

/* --- 6.1 Typography helpers ------------------------------------------------ */
.v-h2 {
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: var(--ls-tight);
  margin: 0;
  max-width: 880px;
}
.v-h2--display {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.98;
}
.v-h3 {
  font-weight: var(--fw-bold);
  font-size: clamp(1.375rem, 2.2vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.v-h4 {
  font-weight: var(--fw-bold);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.v-lead {
  font-size: clamp(1.0625rem, 1.5vw, 1.375rem);
  line-height: 1.55;
  color: var(--fg-1);
  font-weight: var(--fw-regular);
  margin: 0;
  max-width: 720px;
}
.v-lead strong { font-weight: var(--fw-semibold); }
.v-body {
  font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
  line-height: 1.7;
  color: var(--fg-1);
  margin: 0;
}
.v-body--muted { color: var(--fg-2); }
.v-section--dark .v-h2,
.v-section--dark .v-h3,
.v-section--dark .v-h4,
.v-section--dark .v-section__heading { color: #fff; }
.v-section--dark .v-lead { color: rgba(255,255,255,0.82); }
.v-section--dark .v-body { color: rgba(255,255,255,0.72); }
.v-section--dark .v-section__lede { color: rgba(255,255,255,0.7); }

/* --- 6.2 Section inner wrappers + utilities -------------------------------- */
.v-section__inner { width: 100%; }
.v-section__inner--narrow { max-width: 760px; }
.v-section__inner--center { max-width: 820px; margin-left: auto; margin-right: auto; text-align: center; }
.v-section__head--center { align-items: center; text-align: center; }
.u-center { text-align: center; }
.u-mb-sm { margin-bottom: 16px; }
.u-mb-md { margin-bottom: 28px; }
.u-mb-lg { margin-bottom: clamp(36px, 5vw, 64px); }
.u-narrow { max-width: 760px; }
.u-narrow-center { max-width: 760px; margin-left: auto; margin-right: auto; }

/* --- 6.3 Page hero (shared; mirrors projects.css, with lede + count) ------- */
.v-page-hero {
  background: var(--vaal-black);
  color: #fff;
  padding-top: clamp(64px, 9vw, 120px);
}
.v-page-hero--sm { padding-top: clamp(48px, 6vw, 84px); }
.v-page-hero__text {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: clamp(48px, 6vw, 80px);
  max-width: 860px;
}
.v-page-hero--sm .v-page-hero__text { padding-bottom: clamp(32px, 4vw, 56px); }
.v-page-hero__title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.v-page-hero__title .y { color: var(--vaal-yellow); }
.v-page-hero__capsule,
.v-page-hero__lede {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0;
  font-weight: var(--fw-regular);
}
.v-page-hero__capsule strong { color: #fff; font-weight: var(--fw-semibold); }
.v-page-hero__lede--lg { font-size: clamp(1.0625rem, 1.5vw, 1.3125rem); color: rgba(255,255,255,0.82); }
.v-page-hero__count {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--vaal-yellow);
}
.v-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.v-page-hero__stats-band { border-top: 4px solid var(--vaal-yellow); }
.v-page-hero__stats {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.v-page-hero__stat {
  padding: clamp(20px, 3vw, 36px) clamp(12px, 2vw, 24px);
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.v-page-hero__stat:first-child { padding-left: 0; }
.v-page-hero__stat:last-child  { border-right: 0; }
.v-page-hero__stat-value {
  font-weight: var(--fw-extrabold);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.v-page-hero__stat-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* --- 6.4 Stats band (standalone; light or dark surface) -------------------- */
.v-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 4px solid var(--vaal-yellow);
}
.v-stats--3 { grid-template-columns: repeat(3, 1fr); }
.v-stat {
  padding: clamp(24px, 3.2vw, 44px) clamp(14px, 2vw, 28px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-stat:first-child { padding-left: 0; }
.v-stat:last-child { border-right: 0; padding-right: 0; }
.v-stat__value {
  font-weight: var(--fw-extrabold);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
}
.v-stat__label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--fg-3);
}
.v-section--dark .v-stat { border-color: rgba(255,255,255,0.1); }
.v-section--dark .v-stat__value { color: #fff; }
.v-section--dark .v-stat__label { color: rgba(255,255,255,0.5); }

/* --- 6.5 Pillars (numbered cards; light or dark) --------------------------- */
.v-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.v-pillars--four { grid-template-columns: repeat(4, 1fr); }
.v-pillars--two  { grid-template-columns: repeat(2, 1fr); }
.v-pillar {
  background: #fff;
  padding: clamp(26px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v-pillar__num {
  font-weight: var(--fw-extrabold);
  font-size: 13px;
  letter-spacing: var(--ls-wider);
  color: var(--fg-3);
  font-variant-numeric: tabular-nums;
}
.v-pillar__title {
  font-weight: var(--fw-bold);
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
  color: var(--fg-1);
}
.v-pillar__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}
.v-section--dark .v-pillars { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.12); }
.v-section--dark .v-pillar { background: var(--vaal-black); }
.v-section--dark .v-pillar__num { color: var(--vaal-yellow); }
.v-section--dark .v-pillar__title { color: #fff; }
.v-section--dark .v-pillar__body { color: rgba(255,255,255,0.7); }

/* --- 6.6 Split (two-column content + visual) ------------------------------- */
.v-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.v-split--top { align-items: start; }
.v-split__content { display: flex; flex-direction: column; gap: 24px; }
.v-split--reverse .v-split__visual { order: -1; }
.v-split__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: #1A1A1A;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 52%, rgba(0,0,0,0.5) 100%),
    repeating-linear-gradient(45deg, #252525 0 20px, #1A1A1A 20px 40px);
  overflow: hidden;
}
.v-split__visual--warm {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.55) 100%),
    repeating-linear-gradient(135deg, #2E2418 0 14px, #1E1812 14px 28px);
}
.v-split__visual--photo {
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 45%),
    url('assets/cover-triangulated.jpg');
  background-size: cover;
  background-position: 100% 50%;
}
.v-split__visual-mark {
  position: absolute;
  left: 22px; bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* --- 6.7 Timeline (yellow rail, dotted nodes; light or dark) --------------- */
.v-timeline {
  border-left: 2px solid var(--vaal-yellow);
  display: flex;
  flex-direction: column;
}
.v-timeline__item {
  position: relative;
  padding: 0 0 clamp(28px, 3.5vw, 48px) clamp(28px, 3vw, 44px);
}
.v-timeline__item:last-child { padding-bottom: 0; }
.v-timeline__item::before {
  content: "";
  position: absolute;
  left: -7px; top: 3px;
  width: 12px; height: 12px;
  background: var(--vaal-black);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--vaal-yellow);
}
.v-timeline__year {
  font-weight: var(--fw-extrabold);
  font-size: 13px;
  letter-spacing: var(--ls-wider);
  color: var(--vaal-black);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.v-timeline__title {
  font-weight: var(--fw-bold);
  font-size: clamp(1.0625rem, 1.5vw, 1.3125rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--fg-1);
}
.v-timeline__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
  max-width: 580px;
}
.v-section--dark .v-timeline__item::before { background: #fff; border-color: var(--vaal-black); }
.v-section--dark .v-timeline__year { color: var(--vaal-yellow); }
.v-section--dark .v-timeline__title { color: #fff; }
.v-section--dark .v-timeline__body { color: rgba(255,255,255,0.7); }

/* --- 6.8 CTA strip (dark; promoted shared component) ----------------------- */
.v-cta {
  background: var(--vaal-black);
  color: #fff;
  padding: clamp(60px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
}
.v-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.v-cta__title {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(2.25rem, 5.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 18px 0 0;
}
.v-cta__title .y { color: var(--vaal-yellow); }
.v-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: #fff;
}
.v-cta__eyebrow::before { content: ""; width: 24px; height: 4px; background: var(--vaal-yellow); }
.v-cta__lede {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 460px;
  margin: 18px 0 0;
}
.v-cta__right {
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.v-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.v-cta__contact {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 15px;
  font-weight: var(--fw-medium);
}
.v-cta__contact strong {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
}

/* --- 6.9 Forms (multi-step; light or dark surface) ------------------------- */
.v-form { width: 100%; }
.v-form__progress { display: flex; gap: 8px; margin-bottom: 12px; }
.v-form__progress-step { flex: 1; height: 4px; background: var(--line); transition: background var(--dur-base) var(--ease-standard); }
.v-form__progress-step.is-done,
.v-form__progress-step.is-active { background: var(--vaal-yellow); }
.v-form__progress-label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.v-form__step { display: none; flex-direction: column; gap: 18px; }
.v-form__step.is-active { display: flex; }
.v-form__step-title {
  font-weight: var(--fw-bold);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
  color: var(--fg-1);
}
.v-form__step-help { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }
.v-optset {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.v-optset--stack { grid-template-columns: 1fr; }
.v-optcard {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--fg-1);
  font-weight: var(--fw-semibold);
  font-size: 14.5px;
  cursor: pointer;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast);
}
.v-optcard:hover { border-color: #000; }
.v-optcard input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.v-optcard__mark {
  width: 18px; height: 18px;
  border: 1.5px solid var(--fg-3);
  flex-shrink: 0;
  position: relative;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.v-optcard:has(input:checked) { border-color: #000; background: #000; color: #fff; }
.v-optcard:has(input:checked) .v-optcard__mark { background: var(--vaal-yellow); border-color: var(--vaal-yellow); }
.v-optcard:has(input:checked) .v-optcard__mark::after {
  content: ""; position: absolute; left: 5px; top: 1px;
  width: 4px; height: 9px; border: solid #000; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.v-field { display: flex; flex-direction: column; gap: 8px; }
.v-field__label {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-3);
}
.v-input, .v-select, .v-textarea {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--fw-medium);
  transition: border-color var(--dur-fast);
}
.v-textarea { height: auto; min-height: 120px; padding: 14px 16px; resize: vertical; line-height: 1.5; }
.v-select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 5 5-5z' fill='%23808080'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; }
.v-input:focus, .v-select:focus, .v-textarea:focus { outline: none; border-color: #000; }
.v-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.v-form__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 8px; }
.v-form__footnote { font-size: 12.5px; line-height: 1.5; color: var(--fg-3); margin: 8px 0 0; }
/* dark-surface form overrides */
.v-section--dark .v-form__progress-label { color: rgba(255,255,255,0.5); }
.v-section--dark .v-form__progress-step { background: rgba(255,255,255,0.16); }
.v-section--dark .v-form__step-title { color: #fff; }
.v-section--dark .v-form__step-help { color: rgba(255,255,255,0.6); }
.v-section--dark .v-field__label { color: rgba(255,255,255,0.55); }
.v-section--dark .v-optcard { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.2); color: #fff; }
.v-section--dark .v-optcard:hover { border-color: #fff; }
.v-section--dark .v-optcard:has(input:checked) { background: var(--vaal-yellow); color: #000; border-color: var(--vaal-yellow); }
.v-section--dark .v-optcard:has(input:checked) .v-optcard__mark { background: #000; border-color: #000; }
.v-section--dark .v-optcard:has(input:checked) .v-optcard__mark::after { border-color: #fff; }
.v-section--dark .v-input, .v-section--dark .v-select, .v-section--dark .v-textarea {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); color: #fff;
}
.v-section--dark .v-input:focus, .v-section--dark .v-select:focus, .v-section--dark .v-textarea:focus { border-color: var(--vaal-yellow); }
.v-section--dark .v-form__footnote { color: rgba(255,255,255,0.5); }

/* --- 6.10 Static map facade ------------------------------------------------ */
.v-map {
  position: relative;
  aspect-ratio: 16 / 10;
  background-color: #14181E;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 44px);
  overflow: hidden;
}
.v-map__pin {
  position: absolute;
  top: 50%; left: 50%;
  width: 18px; height: 18px;
  transform: translate(-50%, -50%);
  background: var(--vaal-yellow);
  border: 3px solid #000;
}
.v-map__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--dur-fast);
}
.v-map__overlay:hover { background: rgba(0,0,0,0.3); }
.v-map__overlay strong {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}
.v-map__overlay span { font-size: 11px; color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums; }
.v-map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --- 6.11 Chips (filter) + empty state ------------------------------------- */
.v-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.v-chip {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--fg-1);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.v-chip:hover { border-color: #000; }
.v-chip.is-active { background: #000; color: #fff; border-color: #000; }
.v-empty {
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
  font-size: 15px;
  color: var(--fg-3);
}

/* Sticky filter bar (chips) */
.v-filterbar {
  position: sticky;
  top: 84px;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.v-filterbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}
.v-filterbar__group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.v-filterbar__label {
  font-size: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--fg-3);
  margin-right: 2px;
}
.v-filterbar__count { margin-left: auto; font-size: 12.5px; font-weight: var(--fw-semibold); color: var(--fg-3); font-variant-numeric: tabular-nums; }
.v-filterbar__count strong { color: var(--fg-1); }

/* Article card meta row */
.v-project__meta {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--fg-3);
  font-variant-numeric: tabular-nums;
}

/* --- 6.12 Prose (article body) --------------------------------------------- */
.v-prose { max-width: 720px; }
.v-prose > * + * { margin-top: 1.4em; }
.v-prose p { font-size: 1.0625rem; line-height: 1.8; color: var(--fg-1); margin: 0; }
.v-prose h2 {
  font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 1.8em 0 0;
}
.v-prose h3 {
  font-weight: var(--fw-bold);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 1.5em 0 0;
}
.v-prose__capsule {
  border-left: 4px solid var(--vaal-yellow);
  padding: 4px 0 4px 22px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--fg-1);
  font-weight: var(--fw-medium);
}
.v-prose a { color: #000; text-decoration: none; border-bottom: 2px solid var(--vaal-yellow); font-weight: var(--fw-semibold); }

/* --- 6.13 Tags strip ------------------------------------------------------- */
.v-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.v-tag {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--fg-2);
}
.v-section--dark .v-tag { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.75); }

/* --- 6.14 Market / country card (Markets overview) ------------------------- */
.v-mcard {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
  color: inherit;
  min-height: 300px;
  transition: background var(--dur-base) var(--ease-standard), color var(--dur-base) var(--ease-standard);
}
.v-mcard:hover { background: var(--vaal-black); color: #fff; }
.v-mcard__num {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  color: var(--fg-3);
  font-variant-numeric: tabular-nums;
}
.v-mcard:hover .v-mcard__num { color: var(--vaal-yellow); }
.v-mcard__country {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.v-mcard__meta {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--fg-2);
}
.v-mcard:hover .v-mcard__meta { color: rgba(255,255,255,0.65); }
.v-mcard__count { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.v-mcard__count-value { font-weight: var(--fw-extrabold); font-size: 2rem; line-height: 1; font-variant-numeric: tabular-nums; }
.v-mcard__count-label { font-size: 11px; font-weight: var(--fw-bold); letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--fg-3); }
.v-mcard:hover .v-mcard__count-label { color: rgba(255,255,255,0.6); }
.v-mcard__link {
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.v-mcard__link::after { content: ""; width: 22px; height: 2px; background: var(--vaal-yellow); transition: width var(--dur-base) var(--ease-standard); }
.v-mcard:hover .v-mcard__link::after { width: 44px; }
.v-mcard--emerging { border-style: dashed; }
.v-mcard--emerging .v-mcard__country { color: var(--fg-2); }
.v-mcard--emerging:hover .v-mcard__country { color: #fff; }

/* --- 6.15 Legal / TOC sidebar layout --------------------------------------- */
.v-legal { display: grid; grid-template-columns: 240px 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.v-toc { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 4px; }
.v-toc__label {
  font-size: 10px; font-weight: var(--fw-bold); letter-spacing: var(--ls-widest);
  text-transform: uppercase; color: var(--fg-3); margin-bottom: 12px;
}
.v-toc a {
  font-size: 13.5px; color: var(--fg-2); text-decoration: none; padding: 7px 0;
  border-bottom: 1px solid transparent; width: fit-content; transition: color var(--dur-fast), border-color var(--dur-fast);
}
.v-toc a:hover { color: #000; border-bottom-color: var(--vaal-yellow); }
.v-legal__body { max-width: 720px; }
.v-legal__body h2 {
  font-weight: var(--fw-bold); font-size: clamp(1.25rem, 2vw, 1.625rem);
  letter-spacing: -0.015em; margin: 2em 0 0.6em; scroll-margin-top: 120px;
}
.v-legal__body h2:first-child { margin-top: 0; }
.v-legal__body p { font-size: 15px; line-height: 1.75; color: var(--fg-1); margin: 0 0 1em; }
.v-legal__body ul { margin: 0 0 1em; padding-left: 20px; }
.v-legal__body li { font-size: 15px; line-height: 1.7; color: var(--fg-1); margin-bottom: 6px; }
.v-legal__updated { font-size: 12px; letter-spacing: var(--ls-wider); text-transform: uppercase; color: var(--fg-3); margin-top: 32px; }

/* --- 6.16 Direct contact card --------------------------------------------- */
.v-contact-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--line);
  background: #fff;
}
.v-section--dark .v-contact-card { border-color: rgba(255,255,255,0.16); background: rgba(255,255,255,0.03); }
.v-contact-card__label { font-size: 10px; font-weight: var(--fw-bold); letter-spacing: var(--ls-widest); text-transform: uppercase; color: var(--fg-3); }
.v-contact-card__value { font-size: clamp(1.125rem, 1.8vw, 1.5rem); font-weight: var(--fw-bold); letter-spacing: -0.01em; color: var(--fg-1); text-decoration: none; }
.v-section--dark .v-contact-card__value { color: #fff; }
.v-contact-card__note { font-size: 13.5px; line-height: 1.55; color: var(--fg-2); margin-top: 8px; }

/* =========================================================================== *
 *  6.R  RESPONSIVE (extended components)
 * =========================================================================== */
@media (max-width: 940px) {
  .v-page-hero__stats { grid-template-columns: 1fr 1fr; }
  .v-page-hero__stat:nth-child(2) { border-right: 0; }
  .v-page-hero__stat:nth-child(3),
  .v-page-hero__stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.1); }

  .v-stats { grid-template-columns: 1fr 1fr; }
  .v-stat:nth-child(2) { border-right: 0; }
  .v-stat:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: clamp(20px,3vw,32px); }
  .v-section--dark .v-stat:nth-child(n+3) { border-top-color: rgba(255,255,255,0.1); }
  .v-stats--3 { grid-template-columns: 1fr; }
  .v-stats--3 .v-stat { border-right: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .v-stats--3 .v-stat:first-child { border-top: 0; }

  .v-pillars, .v-pillars--four, .v-pillars--two { grid-template-columns: 1fr 1fr; }

  .v-split { grid-template-columns: 1fr; gap: 36px; }
  .v-split--reverse .v-split__visual { order: 0; }

  .v-cta__inner { grid-template-columns: 1fr; gap: 36px; align-items: start; }

  .v-legal { grid-template-columns: 1fr; gap: 32px; }
  .v-toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; }
}

@media (max-width: 560px) {
  .v-page-hero__stats { grid-template-columns: 1fr; }
  .v-page-hero__stat { border-right: 0; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; }
  .v-page-hero__stat:first-child { border-top: 0; }
  .v-stats { grid-template-columns: 1fr; }
  .v-stat { border-right: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .v-stat:first-child { border-top: 0; }
  .v-section--dark .v-stat { border-top-color: rgba(255,255,255,0.1); }
  .v-pillars, .v-pillars--four, .v-pillars--two { grid-template-columns: 1fr; }
  .v-form__row { grid-template-columns: 1fr; }
}

/* =========================================================================== *
 *  7. PROJECT-DETAIL COMPONENTS (project hero, static badges, gallery)
 * =========================================================================== */
.v-page-hero--project {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  background-color: #0E0E0E;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 62%),
    linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0) 55%),
    url('assets/cover-triangulated.jpg');
  background-size: cover;
  background-position: 100% 50%;
  padding-top: 0;
}
.v-page-hero--project .v-page-hero__text {
  padding-top: clamp(120px, 16vh, 200px);
  padding-bottom: clamp(40px, 5vw, 72px);
  gap: 20px;
}

/* Static (inline) status badges */
.v-badges { display: flex; gap: 0; }
.v-badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
}
.v-badge--selling { background: var(--vaal-yellow); color: #000; }
.v-badge--construction { background: #fff; color: #000; }
.v-badge--delivered { background: var(--vaal-black); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22); }
.v-badge--country { background: rgba(0,0,0,0.72); color: rgba(255,255,255,0.85); }

/* Responsive auto-fit card grid (country cards, etc.) */
.v-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.v-cards--wide { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* Photo gallery */
.v-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.v-gallery__tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: #1A1A1A;
  background-image: repeating-linear-gradient(45deg, #252525 0 20px, #1A1A1A 20px 40px);
}
.v-gallery__tile:nth-child(3n+2) {
  background-color: #1E1812;
  background-image: repeating-linear-gradient(135deg, #2E2418 0 14px, #1E1812 14px 28px);
}
.v-gallery__tile:nth-child(3n) {
  background-color: #0D1218;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,221,0,0.05) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(90deg, rgba(255,221,0,0.05) 0 1px, transparent 1px 44px);
}
.v-gallery__tile:first-child {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 45%), url('assets/cover-triangulated.jpg');
  background-size: cover;
  background-position: 100% 50%;
}
.v-gallery__mark {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 940px) {
  .v-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .v-gallery { grid-template-columns: 1fr; }
}
