/*
Theme Name: Visionary Group
Theme URI: https://visionary.group
Author: Visionary Group
Author URI: https://visionary.group
Description: Custom theme for Visionary Group — a diversified holding company that builds, funds, and scales transformational businesses, beginning in the Caribbean. Bold, modern, dark-mode design with the brand emerald palette.
Version: 1.8.0
Requires at least: 6.0
Requires PHP: 7.4
License: All Rights Reserved
License URI: https://visionary.group
Text Domain: visionary-group
Tags: business, holding-company, dark-mode, custom-theme
*/

/* =========================================================
   Visionary Group — Design System
   ========================================================= */

:root {
  /* Brand colors — Visionary Group official palette (per 2024 brand guide) */
  --vg-bg:        #0f1a1e;   /* Midnight Emerald — primary dark background */
  --vg-bg-2:      #003337;   /* Dark Emerald — panels, lifted surfaces */
  --vg-bg-3:      #00474c;   /* slightly lifted Dark Emerald variation */
  --vg-bg-4:      #0a2629;   /* card surface variation */
  --vg-line:      rgba(255,255,255,0.08);
  --vg-line-2:    rgba(255,255,255,0.14);

  --vg-green:     #01ce7d;   /* Bright Emerald — primary brand accent */
  --vg-green-2:   #019c5e;   /* deeper variation for hovers */
  --vg-green-3:   #2ddc94;   /* lighter highlight variation */
  --vg-mint:      #6df0b6;

  --vg-text:      #ffffff;   /* White */
  --vg-text-2:    rgba(255,255,255,0.78);
  --vg-text-3:    rgba(255,255,255,0.55);
  --vg-ash:       #efefef;   /* Ash Gray — light-mode neutral */

  /* Type — Neue Haas Grotesk (brand font). Falls back gracefully if the
     user hasn't licensed it locally; Helvetica Neue is the closest system
     match, Inter the closest free Google Fonts equivalent. */
  --font-sans:    "Neue Haas Grotesk Text Pro", "Neue Haas Grotesk Text", "Helvetica Neue", "Helvetica", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Neue Haas Grotesk Display Pro", "Neue Haas Grotesk Display", "Helvetica Neue", "Helvetica", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --gutter: 28px;
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow:    0 30px 60px -25px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--vg-bg);
  color: var(--vg-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: var(--vg-green-3);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--vg-mint); }

/* Background ambience — diagonal green geometry inspired by deck */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 600px at 85% -10%, rgba(1,206,125,0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 80%, rgba(1,206,125,0.10), transparent 65%),
    linear-gradient(180deg, var(--vg-bg) 0%, #050d10 100%);
  pointer-events: none;
}

/* =========================================================
   Typography — Neue Haas Grotesk
   Brand guide: headlines use Display / Light (300).
                body uses Text / Roman (400).
   ========================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;            /* brand: Light */
  letter-spacing: -0.02em;
  margin: 0 0 0.4em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.01em; font-weight: 400; }
h4 { font-size: 1.1rem; letter-spacing: 0; font-weight: 500; }

p { margin: 0 0 1em; color: var(--vg-text-2); }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--vg-text-2); max-width: 56ch; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vg-green-3);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--vg-green);
}

.italic { font-style: italic; font-weight: 400; }

/* =========================================================
   Layout
   ========================================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: clamp(70px, 9vw, 130px) 0;
  position: relative;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 56px;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

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

/* =========================================================
   Navbar
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15,26,30,0.75);
  border-bottom: 1px solid var(--vg-line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--vg-text);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand .logo {
  width: 32px; height: 32px;
  display: inline-block;
}
/* Brand lockup image: bigger, and aggressively transparent so nothing in
   the cascade can paint a white box behind it. */
.brand,
.brand-lockup,
.custom-logo-link,
.custom-logo {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
/* Force the logo size with !important to defend against Elementor /
   plugin CSS that might cap image width to icon-size dimensions. */
.brand-lockup,
.nav .brand-lockup,
.footer .brand-lockup {
  /* SVG viewBox is tightly cropped (320 x 52). Setting height alone gives
     the correct proportions and ~270px width on desktop. */
  height: 44px !important;
  width: auto !important;
  max-width: 320px !important;
  min-height: 44px;
  display: block;
  object-fit: contain;
}
@media (max-width: 900px) {
  .brand-lockup,
  .nav .brand-lockup { height: 38px !important; min-height: 38px; }
}
@media (max-width: 600px) {
  .brand-lockup,
  .nav .brand-lockup { height: 32px !important; min-height: 32px; }
}
.footer .brand-lockup { height: 36px !important; min-height: 36px; }

/* If WordPress's built-in Custom Logo is rendered anywhere (we no longer
   call it, but legacy themes / plugins might), give it the same sizing. */
.custom-logo {
  max-height: 52px;
  width: auto;
  display: block;
}
.brand-name .accent { font-style: italic; font-weight: 400; color: var(--vg-text); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--vg-text-2);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--vg-text); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--vg-green);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--vg-text);
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 800px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--vg-bg-2);
    border-bottom: 1px solid var(--vg-line);
    padding: 12px var(--gutter) 22px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--vg-line); width: 100%; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: inline-flex; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--vg-green);
  color: #0f1a1e;
}
.btn-primary:hover { background: var(--vg-green-3); color: #0f1a1e; }

.btn-ghost {
  background: transparent;
  color: var(--vg-text);
  border-color: var(--vg-line-2);
}
.btn-ghost:hover { border-color: var(--vg-green); color: var(--vg-green-3); }

.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* =========================================================
   Hero — fills the viewport on first scroll
   --vg-nav-h is the approximate height of the sticky nav. Hero uses
   min-height so it always reaches the fold but can grow if content is taller.
   ========================================================= */
:root { --vg-nav-h: 96px; }
@media (max-width: 600px) { :root { --vg-nav-h: 80px; } }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--vg-nav-h));
  min-height: calc(100dvh - var(--vg-nav-h)); /* better mobile / iOS */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(48px, 8vh, 120px);
  padding-bottom: clamp(40px, 6vh, 100px);
}

/* On the home page, sit content visually upper-middle and let the stats
   bar pin to the bottom so the V backdrop has presence between them. */
.hero.front-page {
  justify-content: flex-start;
  padding-top: clamp(80px, 12vh, 160px);
  padding-bottom: clamp(40px, 6vh, 80px);
}
/* On the home page, push the stats bar to the bottom of the hero so the
   blurred V sits between the headline and the stats. Robust selector (no :has). */
.hero.front-page .hero-stats-wrap { margin-top: auto; }
.hero.front-page .hero-stats { margin-top: 0; }
.hero-geometry {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* =========================================================
   Hero brand backdrop — blurred V silhouettes
   Echoes the brand cover treatment from the style guide.
   ========================================================= */
.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-v {
  position: absolute;
  background-image: url('assets/logos/vg-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  will-change: transform;
}
/* Big V cropping in from bottom-left — primary motif */
.hero-v--bl {
  left: -10%;
  bottom: -45%;
  width: 70%;
  aspect-ratio: 1 / 1;
  filter: blur(28px);
  opacity: 0.55;
}
/* Smaller, very soft V at top-right — secondary depth */
.hero-v--tr {
  right: -8%;
  top: -15%;
  width: 40%;
  aspect-ratio: 1 / 1;
  filter: blur(60px);
  opacity: 0.28;
}
/* On the home page only, make the bottom-left V even more prominent */
.home .hero-v--bl,
.front-page .hero-v--bl {
  filter: blur(22px);
  opacity: 0.65;
}
@media (max-width: 800px) {
  .hero-v--bl { width: 90%; bottom: -55%; filter: blur(36px); opacity: 0.45; }
  .hero-v--tr { width: 60%; opacity: 0.18; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
}
.hero h1 .em { color: var(--vg-green-3); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

/* Hero stats strip */
.hero-stats {
  position: relative;
  z-index: 1;
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--vg-line);
  border-bottom: 1px solid var(--vg-line);
}
.hero-stat {
  padding: 28px 22px;
  border-right: 1px solid var(--vg-line);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--vg-green-3);
  line-height: 1;
}
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--vg-text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat { border-bottom: 1px solid var(--vg-line); }
  .hero-stat:nth-child(2n) { border-right: 0; }
}

/* =========================================================
   Cards
   ========================================================= */
.card {
  background: linear-gradient(180deg, rgba(10,38,41,0.5) 0%, rgba(0,51,55,0.3) 100%);
  border: 1px solid var(--vg-line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(1,206,125,0.4);
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(1,206,125,0.12);
  border: 1px solid rgba(1,206,125,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--vg-green-3);
}
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; color: var(--vg-text-2); }

/* =========================================================
   Focus area grid (with imagery side) — Home & Services
   ========================================================= */
.focus-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.focus-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--vg-line);
}
.focus-item:last-child { border-bottom: 1px solid var(--vg-line); }
.focus-item .ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(1,206,125,0.1);
  border: 1px solid rgba(1,206,125,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vg-green-3);
}
.focus-item h4 { margin: 0 0 4px; font-size: 1.25rem; font-weight: 600; }
.focus-item p { margin: 0; color: var(--vg-text-3); font-size: 0.95rem; }
.focus-item .pill {
  font-size: 0.78rem;
  color: var(--vg-green-3);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(1,206,125,0.08);
  border: 1px solid rgba(1,206,125,0.25);
}

/* =========================================================
   Playbook (3-step) — Services page
   ========================================================= */
.playbook {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.play-step {
  background: linear-gradient(180deg, rgba(1,156,94,0.16), rgba(0,51,55,0.25));
  border: 1px solid rgba(1,206,125,0.3);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
}
.play-step .step-n {
  font-size: 0.8rem;
  color: var(--vg-green-3);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.play-step h3 { margin: 10px 0 16px; }
.play-step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.play-step li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--vg-text-2);
  font-size: 0.95rem;
}
.play-step li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--vg-green);
  margin-top: 9px;
  flex-shrink: 0;
}
@media (max-width: 900px) { .playbook { grid-template-columns: 1fr; } }

/* =========================================================
   Case study (DuraVilla)
   ========================================================= */
.case {
  background:
    linear-gradient(135deg, rgba(1,206,125,0.14), rgba(0,51,55,0.55)),
    var(--vg-bg-2);
  border: 1px solid rgba(1,206,125,0.25);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}
.case::after {
  content: "";
  position: absolute;
  right: -120px; top: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(1,206,125,0.25), transparent 65%);
  pointer-events: none;
}
.case-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.case-stat {
  background: rgba(15,26,30,0.55);
  border: 1px solid var(--vg-line-2);
  border-radius: var(--radius);
  padding: 22px;
}
.case-stat .big {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--vg-green-3);
  line-height: 1;
  letter-spacing: -0.02em;
}
.case-stat .lbl {
  margin-top: 10px;
  color: var(--vg-text-3);
  font-size: 0.88rem;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Founder cards — About page
   ========================================================= */
.founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.founder {
  background: linear-gradient(180deg, rgba(10,38,41,0.55), rgba(0,51,55,0.3));
  border: 1px solid var(--vg-line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.founder-head {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}
.founder-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vg-green), var(--vg-green-2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  color: #0f1a1e;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
/* Real founder headshots — circular photo avatars */
.founder-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(1, 206, 125, 0.4);
  background: #efefef;
  box-shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 600px) {
  .founder-photo { width: 80px; height: 80px; }
}
.founder-name { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.01em; margin: 0; }
.founder-role { color: var(--vg-green-3); font-size: 0.92rem; font-weight: 500; margin-top: 4px; }
.founder ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder li {
  color: var(--vg-text-2);
  font-size: 0.95rem;
  padding-left: 22px;
  position: relative;
}
.founder li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--vg-green);
}
@media (max-width: 900px) { .founders { grid-template-columns: 1fr; } }

/* =========================================================
   Principles (About)
   ========================================================= */
.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.principle {
  padding: 28px 0 0;
  border-top: 2px solid var(--vg-green);
}
.principle h4 { margin: 0 0 10px; font-size: 1.1rem; }
.principle p { margin: 0; font-size: 0.95rem; }
@media (max-width: 1100px) { .principles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .principles { grid-template-columns: 1fr; } }

/* =========================================================
   Why-region split (Home)
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.split-points li {
  display: flex;
  gap: 14px;
  align-items: start;
  color: var(--vg-text-2);
}
.split-points li svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--vg-green-3);
  margin-top: 2px;
}
.region-figure {
  background:
    linear-gradient(135deg, rgba(1,206,125,0.18), rgba(0,51,55,0.4)),
    var(--vg-bg-2);
  border: 1px solid var(--vg-line-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.region-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--vg-line);
}
.region-row:last-child { border-bottom: 0; padding-bottom: 0; }
.region-row .place { font-weight: 600; }
.region-row .val { color: var(--vg-green-3); font-weight: 600; font-size: 1.1rem; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* =========================================================
   Contact form
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-info .row {
  display: flex;
  gap: 18px;
  align-items: start;
}
.contact-info .icon-box {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(1,206,125,0.12);
  border: 1px solid rgba(1,206,125,0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--vg-green-3);
  flex-shrink: 0;
}
.contact-info h4 { margin: 0 0 4px; font-size: 1.05rem; }
.contact-info p { margin: 0; color: var(--vg-text-2); }
.contact-info a { color: var(--vg-text); }
.contact-info a:hover { color: var(--vg-green-3); }

.form {
  background: linear-gradient(180deg, rgba(10,38,41,0.4), rgba(0,51,55,0.2));
  border: 1px solid var(--vg-line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { margin-bottom: 18px; }
.form-row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--vg-text-2);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  background: rgba(15,26,30,0.6);
  border: 1px solid var(--vg-line-2);
  color: var(--vg-text);
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--vg-green);
  background: rgba(15,26,30,0.85);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row.two { grid-template-columns: 1fr; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--vg-line);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--vg-line); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--vg-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--vg-green-3);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 14px 0 0; color: var(--vg-text-2); max-width: 80ch; }

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  background: linear-gradient(135deg, rgba(1,206,125,0.22), rgba(0,71,76,0.6));
  border: 1px solid rgba(1,206,125,0.3);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 { margin: 0; max-width: 22ch; }

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--vg-line);
  padding: 60px 0 30px;
  margin-top: 60px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--vg-text-3);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--vg-text-2); }
.footer ul a:hover { color: var(--vg-text); }
.footer-blurb { color: var(--vg-text-3); max-width: 36ch; font-size: 0.95rem; }
.footer-bottom {
  border-top: 1px solid var(--vg-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--vg-text-3);
  font-size: 0.88rem;
}
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =========================================================
   Reveal-on-scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* =========================================================
   Misc
   ========================================================= */
.muted { color: var(--vg-text-3); }
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: 40px; }
