/* ========================================
   VISION CONSTRUCTIONS — SHARED STYLES
   ======================================== */

/* RESET & BASE */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #4DB848;
  --green-dark: #3D9A3A;
  --green-light: #5CCB55;
  --charcoal: #1C1C1C;
  --dark: #111111;
  --dark-mid: #212121;
  --dark-card: #242424;
  --dark-border: #2E2E2E;
  --grey-800: #333333;
  --grey-600: #B2B0AC;
  --grey-400: #D8D6D2;
  --grey-200: #ECEAE5;
  --white: #FFFFFF;
  --off-white: #F0F0F0;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

h1, h2, h3, h4, h5, .hero h1, .section-title, .stat-number, .footer-col h5 {
  font-family: var(--font-display);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--grey-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 1px 0 rgba(77, 184, 72, 0.1);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.nav-logo { position: relative; display: inline-block; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo img.nav-logo-light { display: block; }
.nav-logo img.nav-logo-dark { display: none; }
body.light-theme .nav.scrolled .nav-logo img.nav-logo-light { display: none; }
body.light-theme .nav.scrolled .nav-logo img.nav-logo-dark { display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--grey-400);
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-arrow { width: 12px; height: 12px; transition: transform 0.3s ease; }
.nav-dropdown:hover .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: var(--charcoal); border: 1px solid var(--dark-border);
  border-radius: 12px; padding: 8px 0; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.3s ease; box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.82rem;
  text-transform: none; letter-spacing: 0; color: var(--grey-400);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.03); }

.nav-cta {
  background: var(--green); color: var(--white) !important;
  padding: 10px 24px; border-radius: 6px; font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s ease; display: block; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-size: 0.95rem;
  font-weight: 600; transition: all 0.3s ease;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(77, 184, 72, 0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--dark-border); }
.btn-outline:hover { border-color: var(--grey-600); background: rgba(255,255,255,0.03); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }

/* ========================================
   HERO (home)
   ======================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.7); }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.85) 40%, rgba(17,17,17,0.3) 100%),
              linear-gradient(to top, var(--dark) 0%, transparent 35%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; padding-top: 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 24px;
  animation: fadeUp 0.8s 0s ease both;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--green);
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-logo {
  width: clamp(320px, 55vw, 720px); height: auto; margin-bottom: 36px;
  animation: fadeUp 0.8s 0s ease both;
  filter: drop-shadow(0 6px 32px rgba(0,0,0,0.4));
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-tagline::after {
  content: ''; display: block; width: 60px; height: 2px;
  background: var(--green); margin-top: 20px;
}
.hero h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); font-weight: 900; line-height: 1.0; color: var(--white); margin-bottom: 28px; letter-spacing: -0.02em; animation: fadeUp 0.8s 0.15s ease both; }
.hero h1 .accent { color: var(--green); }
.hero p { font-size: 1.1rem; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 40px; animation: fadeUp 0.8s 0.2s ease both; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; animation: fadeUp 0.8s 0.3s ease both; margin-bottom: 48px; }
.hero-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--white); text-decoration: none; font-size: 1rem; font-weight: 600;
  transition: color 0.2s;
}
.hero-phone svg { width: 18px; height: 18px; color: var(--green); }
.hero-phone:hover { color: var(--green); }
.hero-tags {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-tags span {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 4px;
}
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }


/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark-mid);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 72, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-label { animation: fadeUp 0.6s ease both; }
.page-hero .section-title { animation: fadeUp 0.6s 0.1s ease both; }
.page-hero .section-desc { animation: fadeUp 0.6s 0.2s ease both; max-width: 640px; }
.page-hero .breadcrumb { font-size: 0.82rem; color: var(--grey-600); margin-bottom: 24px; animation: fadeUp 0.6s ease both; }
.page-hero .breadcrumb a { color: var(--grey-400); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--green); }
.page-hero .breadcrumb span { margin: 0 8px; }

/* ========================================
   SECTION STYLES
   ======================================== */
section { padding: 120px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey-400); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 32px; height: 1px; background: var(--green); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.section-desc { font-size: 1.05rem; color: var(--grey-400); max-width: 560px; line-height: 1.7; }

/* ========================================
   ABOUT SECTION
   ======================================== */
.about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text .section-desc { margin-bottom: 32px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.about-feature { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(77, 184, 72, 0.1); display: flex; align-items: center; justify-content: center;
}
.about-feature-icon svg { width: 20px; height: 20px; color: var(--green); }
.about-feature h4 { font-size: 0.9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.about-feature p { font-size: 0.82rem; color: var(--grey-600); line-height: 1.5; }

/* ========================================
   SERVICE CARDS
   ======================================== */
.services { background: var(--charcoal); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-label { justify-content: center; }
.services-header .section-desc { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--dark); border: 1px solid var(--dark-border); border-radius: 16px;
  padding: 40px 32px; transition: all 0.4s ease; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transition: transform 0.4s ease;
}
.service-card:hover { border-color: rgba(77, 184, 72, 0.2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(77, 184, 72, 0.1); display: flex; align-items: center;
  justify-content: center; margin-bottom: 28px; transition: background 0.3s ease;
}
.service-card:hover .service-icon { background: rgba(77, 184, 72, 0.18); }
.service-icon svg { width: 28px; height: 28px; color: var(--green); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.service-card p { font-size: 0.92rem; color: var(--grey-400); line-height: 1.7; margin-bottom: 24px; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--grey-400); }
.service-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--grey-600); flex-shrink: 0; }

/* ========================================
   PROJECT CARDS
   ======================================== */
.projects { background: var(--dark); }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  opacity: 0; transition: opacity 0.4s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-200); margin-bottom: 6px; }
.project-overlay h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.project-card.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

/* ========================================
   VALUES / WHY US
   ======================================== */
.why-us { background: var(--charcoal); position: relative; overflow: hidden; }
.why-us::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 72, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.why-us-header { text-align: center; margin-bottom: 64px; }
.why-us-header .section-label { justify-content: center; }
.why-us-header .section-desc { margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center; padding: 40px 24px; border-radius: 14px;
  border: 1px solid var(--dark-border); background: var(--dark); transition: all 0.3s ease;
}
.value-card:hover { border-color: rgba(77, 184, 72, 0.15); transform: translateY(-4px); }
.value-number { font-size: 3rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 20px; }
.value-card h4 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.value-card p { font-size: 0.88rem; color: var(--grey-600); line-height: 1.6; }

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section { background: var(--dark); padding: 100px 0; }
.cta-box {
  background: linear-gradient(135deg, rgba(77, 184, 72, 0.1) 0%, rgba(77, 184, 72, 0.03) 100%);
  border: 1px solid rgba(77, 184, 72, 0.15); border-radius: 24px;
  padding: 80px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(77, 184, 72, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box .section-title { position: relative; margin-bottom: 16px; }
.cta-box p { position: relative; font-size: 1.1rem; color: var(--grey-400); max-width: 500px; margin: 0 auto 40px; line-height: 1.7; }
.cta-box .hero-actions { justify-content: center; position: relative; }

/* ========================================
   CONTACT
   ======================================== */
.contact { background: var(--dark-mid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.contact-info h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 24px; margin-top: 40px; }
.contact-info h3:first-of-type { margin-top: 0; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-item-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(77, 184, 72, 0.1); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; color: var(--green); }
.contact-item-text strong { display: block; font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.contact-item-text span, .contact-item-text a { font-size: 0.92rem; color: var(--grey-400); transition: color 0.2s; }
.contact-item-text a:hover { color: var(--green); }

/* Contact form */
.contact-form {
  background: var(--charcoal); border: 1px solid var(--dark-border);
  border-radius: 20px; padding: 48px;
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 500; color: var(--grey-400);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 14px 18px; background: var(--charcoal);
  border: 1px solid var(--dark-border); border-radius: 10px;
  color: var(--white); font-family: var(--font); font-size: 0.95rem;
  transition: border-color 0.3s ease; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey-600); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--charcoal); color: var(--white); }
.form-submit {
  width: 100%; padding: 16px; background: var(--green); color: var(--white);
  border: none; border-radius: 10px; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s ease; margin-top: 8px;
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(77, 184, 72, 0.25); }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--dark); border-top: 1px solid var(--dark-border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; color: var(--grey-600); line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--dark-border);
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
}
.footer-social a:hover { border-color: var(--green); background: rgba(77, 184, 72, 0.1); }
.footer-social svg { width: 16px; height: 16px; color: var(--grey-400); }
.footer-social a:hover svg { color: var(--green); }
.footer-col h5 { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.88rem; color: var(--grey-600); transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--dark-border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.82rem; color: var(--grey-600); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--grey-600); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--grey-400); }

/* ========================================
   CONTENT BLOCKS (inner pages)
   ======================================== */
.content-section { background: var(--dark); }
.content-section.alt { background: var(--dark-mid); }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--dark-border); }
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ''; position: absolute; left: -37px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%; background: var(--green);
  border: 3px solid var(--dark);
}
.timeline-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.timeline-item .timeline-year { font-size: 0.82rem; color: var(--green); font-weight: 600; margin-bottom: 8px; }
.timeline-item p { font-size: 0.92rem; color: var(--grey-400); line-height: 1.6; }

/* Info cards grid */
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.info-card {
  background: var(--dark); border: 1px solid var(--dark-border); border-radius: 16px;
  padding: 36px; transition: all 0.3s ease;
}
.info-card:hover { border-color: rgba(77, 184, 72, 0.15); }
.info-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.info-card h4 svg { width: 24px; height: 24px; color: var(--green); flex-shrink: 0; }
.info-card p { font-size: 0.92rem; color: var(--grey-400); line-height: 1.7; }
.info-card ul { list-style: none; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.info-card ul li { font-size: 0.88rem; color: var(--grey-400); display: flex; align-items: flex-start; gap: 10px; }
.info-card ul li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--grey-600); flex-shrink: 0; margin-top: 8px; }
.info-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(77,184,72,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.info-card-icon svg { width: 24px; height: 24px; color: var(--green); }
.info-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }

/* About grid (inner page) */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 16px; }
.about-text p { margin-bottom: 0; }

/* Project detail cards */
.project-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.project-detail-card {
  background: var(--dark); border: 1px solid var(--dark-border); border-radius: 16px;
  overflow: hidden; transition: all 0.3s ease;
}
.project-detail-card:hover { border-color: rgba(77, 184, 72, 0.2); transform: translateY(-2px); }
.project-detail-card .card-image { aspect-ratio: 16/9; overflow: hidden; }
.project-detail-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-detail-card:hover .card-image img { transform: scale(1.05); }
.project-detail-card .card-body { padding: 28px; }
.project-detail-card .card-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--green);
  background: rgba(77, 184, 72, 0.1); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px;
}
.project-detail-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.project-detail-card p { font-size: 0.88rem; color: var(--grey-400); line-height: 1.6; }
.project-detail-card .card-meta { margin-top: 16px; display: flex; gap: 24px; flex-wrap: wrap; }
.project-detail-card .card-meta span { font-size: 0.78rem; color: var(--grey-600); }
.project-detail-card .card-meta strong { color: var(--grey-400); }

.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
  background: rgba(77, 184, 72, 0.1); color: var(--green); letter-spacing: 0.03em;
}
.job-tag.location { background: rgba(255,255,255,0.05); color: var(--grey-400); }

/* Vacancies grid */
.vacancies-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.job-card {
  background: var(--dark); border: 1px solid var(--dark-border); border-radius: 16px;
  padding: 32px; transition: all 0.3s ease;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.job-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transition: transform 0.3s ease;
}
.job-card:hover { border-color: rgba(77,184,72,0.25); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.2); }
.job-card:hover::before { transform: scaleX(1); }
.job-card-top { display: flex; flex-direction: column; gap: 12px; }
.job-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-top: 8px; }
.job-card p { font-size: 0.9rem; color: var(--grey-400); line-height: 1.65; }
.job-requirements {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  padding: 16px; background: rgba(77,184,72,0.04); border: 1px solid rgba(77,184,72,0.1); border-radius: 10px;
}
.job-requirements li {
  font-size: 0.85rem; color: var(--grey-400); display: flex; align-items: flex-start; gap: 10px;
}
.job-requirements li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--grey-600); flex-shrink: 0; margin-top: 7px;
}
@media (max-width: 768px) { .vacancies-grid { grid-template-columns: 1fr; } }

/* Careers roles list */
.roles-list {
  list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 8px;
}
.roles-list li {
  font-size: 0.95rem; color: var(--grey-400); padding: 14px 0;
  border-bottom: 1px solid var(--dark-border);
  display: flex; align-items: center; gap: 12px;
}
.roles-list li:first-child { border-top: 1px solid var(--dark-border); }
.roles-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey-600); flex-shrink: 0;
}
@media (max-width: 768px) { .careers-intro-grid { grid-template-columns: 1fr !important; gap: 48px !important; } }

/* Why us (careers page) */
.why-us { background: var(--charcoal); }
.why-us-header { text-align: center; margin-bottom: 64px; }
.why-us-header .section-label { justify-content: center; }
.why-us-header .section-desc { margin: 0 auto; }

/* Capabilities page extras */
.cap-nav { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.cap-nav a {
  padding: 10px 20px; border-radius: 8px; font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--dark-border); color: var(--grey-400); transition: all 0.3s ease;
}
.cap-nav a:hover { border-color: var(--green); color: var(--white); background: rgba(77,184,72,0.08); }

/* ── Capability sections ──────────────────── */
.cap-section { padding: 100px 0; }
.cap-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.cap-grid-reverse { direction: rtl; }
.cap-grid-reverse > * { direction: ltr; }
.cap-image {
  border-radius: 8px; overflow: hidden; aspect-ratio: 4/3;
}
.cap-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cap-desc {
  font-size: 1rem; color: var(--grey-400); line-height: 1.75; margin-bottom: 28px;
}
.cap-list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; padding: 0;
}
.cap-list li {
  font-size: 0.92rem; color: var(--grey-400); display: flex; align-items: center; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--dark-border);
}
.cap-list li:last-child { border-bottom: none; }
.cap-list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--grey-600); flex-shrink: 0;
}
.cap-clients {
  font-size: 0.82rem; color: var(--grey-600); line-height: 1.6;
}
.cap-clients span {
  font-weight: 700; color: var(--grey-400);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.35s; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.featured { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .project-detail-grid { grid-template-columns: 1fr; max-width: 600px; }
  .cap-grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-grid-reverse { direction: ltr; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: #111111;
    flex-direction: column; justify-content: center; align-items: center; gap: 24px;
    z-index: 1100;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { display: flex; }
  .nav-links.open a,
  body.v2 .nav.scrolled .nav-links.open a,
  body.light-theme .nav.scrolled .nav-links.open a { color: #ffffff; }
  .nav-links.open a.nav-cta { color: #ffffff !important; }
  body.nav-open { overflow: hidden; }
  .nav-links a { font-size: 1.1rem; }
  .nav-dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: none; border: none; box-shadow: none; padding: 0; min-width: 0; text-align: center; }
  .nav-dropdown-menu a { padding: 6px 0; font-size: 0.95rem; }
  .nav-dropdown-arrow { display: none; }
  .nav-toggle { display: flex; position: relative; z-index: 1101; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-features { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .project-overlay { opacity: 1; }
  .cta-box { padding: 48px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .info-grid { grid-template-columns: 1fr; }
  .project-detail-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 60px; }
}


/* ========================================
   NAV — PHONE CTA BUTTON (header)
   ======================================== */
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--green); color: var(--white) !important;
  padding: 10px 20px; border-radius: 8px; font-size: 0.88rem;
  font-weight: 700; letter-spacing: 0.01em; white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease; flex-shrink: 0;
}
.nav-phone svg { width: 15px; height: 15px; flex-shrink: 0; }
.nav-phone:hover { background: var(--green-dark) !important; transform: translateY(-1px); }
.nav-phone::after { display: none !important; }



/* ========================================
   ABOUT STRIP (compact)
   ======================================== */
.about-strip { background: var(--dark-mid); padding: 100px 0; }


/* ========================================
   RESPONSIVE — ADDITIONAL
   ======================================== */
@media (max-width: 1024px) {
  .services-photo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-home-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .services-photo-grid { grid-template-columns: 1fr; }
  .service-photo-card { aspect-ratio: 16/9; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-home-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-phone span { display: none; }
  .nav-phone { padding: 10px 12px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ========================================
   SERVICES — PHOTO CARDS (homepage)
   ======================================== */
.services-photo { padding: 0; }
.services-photo-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px;
}
.service-photo-card {
  position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer;
}
.service-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.7);
}
.service-photo-card:hover img { transform: scale(1.08); filter: brightness(0.5); }
.service-photo-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}
.service-photo-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.service-photo-overlay h3 {
  font-size: 1.3rem; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 14px;
}
.service-photo-line {
  width: 40px; height: 2px; background: var(--green);
  transition: width 0.4s ease;
}
.service-photo-card:hover .service-photo-line { width: 64px; }

/* ========================================
   STATS BAR (homepage)
   ======================================== */
.stats-bar { background: var(--dark-mid); padding: 64px 0; border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.stat-item { padding: 16px 0; }
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px;
}
.stat-number span { color: var(--green); }
.stat-label {
  font-size: 0.82rem; font-weight: 500; color: var(--grey-400);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ========================================
   ABOUT — HOMEPAGE (photo + text)
   ======================================== */
.about-home-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.about-home-image {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
}
.about-home-image img { width: 100%; height: 100%; object-fit: cover; }
.about-home-content .section-desc { margin-bottom: 28px; }
.about-home-points {
  list-style: none; display: flex; flex-direction: column; gap: 14px; padding: 0;
}
.about-home-points li {
  font-size: 0.95rem; color: var(--grey-400); display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--dark-border);
}
.about-home-points li:last-child { border-bottom: none; }
.about-home-points li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--grey-600); flex-shrink: 0;
}

/* ========================================
   CLIENTS STRIP (homepage)
   ======================================== */
.clients-strip {
  background: var(--dark); padding: 64px 0;
  border-bottom: 1px solid var(--dark-border);
}
.clients-label {
  text-align: center; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-600); margin-bottom: 36px;
}
.clients-grid {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 40px 72px;
}
.client-logo {
  height: 56px; width: auto; max-width: 180px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.92;
}
.client-logo:hover { transform: translateY(-2px); opacity: 1; }

@media (max-width: 768px) {
  .clients-grid { gap: 28px 40px; }
  .client-logo { height: 40px; max-width: 130px; }
}

/* ========================================
   CAPABILITY STATEMENT DOWNLOAD
   ======================================== */
.cap-download { background: var(--dark); padding: 100px 0; }
.cap-download-box {
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  background: linear-gradient(135deg, rgba(77, 184, 72, 0.08) 0%, rgba(77, 184, 72, 0.02) 100%);
  border: 1px solid rgba(77, 184, 72, 0.15); border-radius: 20px;
  padding: 56px 64px; position: relative; overflow: hidden;
}
.cap-download-box::before {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 184, 72, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cap-download-content { position: relative; flex: 1; }
.cap-download-content .section-desc { margin-bottom: 0; }
.cap-download-box .btn { position: relative; flex-shrink: 0; white-space: nowrap; }
.cap-download-preview {
  flex-shrink: 0; position: relative; width: 220px;
}
.cap-download-preview img {
  width: 100%; border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.4s ease;
}
.cap-download-preview img:hover { transform: translateY(-4px) scale(1.02); }

@media (max-width: 768px) {
  .cap-download-box { flex-direction: column; padding: 40px 28px; text-align: center; }
  .cap-download-content .section-label { justify-content: center; }
  .cap-download-preview { width: 180px; }
}

/* ========================================
   TEAM CARDS
   ======================================== */
.team-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 56px;
}
.team-card {
  background: var(--dark-card); border: 1px solid var(--dark-border);
  border-radius: 12px; text-align: center;
  position: relative; overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { border-color: rgba(77,184,72,0.35); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.team-photo {
  width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--grey-800);
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.team-photo-duo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.team-photo-duo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.team-initials {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: var(--green);
  background: rgba(77,184,72,0.08);
}
.team-info {
  padding: 20px 16px 22px;
  border-top: 1px solid var(--dark-border);
}
.team-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; line-height: 1.3; }
.team-card p { font-size: 0.78rem; color: var(--grey-600); line-height: 1.5; }

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

/* ── HISTORY SECTION ──────────────────────────── */
.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}
.history-photo {
  position: sticky;
  top: 100px;
}
.history-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.history-photo-caption {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--grey-600);
  font-style: italic;
}
.milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.milestone {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--dark-border);
  align-items: start;
}
.milestone:first-child { padding-top: 0; }
.milestone:last-child { border-bottom: none; }
.milestone-year {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green);
  padding-top: 3px;
  letter-spacing: 0.04em;
}
.milestone-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.milestone-body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--grey-400);
  margin: 0;
}
@media (max-width: 900px) {
  .history-grid { grid-template-columns: 1fr; gap: 40px; }
  .history-photo { position: static; }
  .history-photo img { aspect-ratio: 16/9; }
}

/* ========================================
   LIGHT THEME — scoped via body.light-theme
   Keeps hero + footer dark; flips everything in between to white/cream
   ======================================== */
body.light-theme {
  --light-bg: #F4F0E8;       /* warm cream base */
  --light-alt: #EAE4D6;      /* slightly deeper stone for alternating sections */
  --light-card: #FBF8F2;     /* lighter card bg for contrast against base */
  --light-border: #D9D3C4;
  --ink: #1A1A1A;
  --ink-muted: #4F4F4F;
  --ink-soft: #77736A;
  background: var(--light-bg);
  color: var(--ink);
}

/* Shared section typography on light */
body.light-theme .section-title { color: var(--ink); }
body.light-theme .section-desc { color: var(--ink-muted); }
body.light-theme .section-label { color: var(--ink-soft); }

/* Nav — when over hero (not scrolled), stays white. When scrolled, goes white bg with dark text */
body.light-theme .nav.scrolled { background: rgba(255, 255, 255, 0.96); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }
body.light-theme .nav.scrolled .nav-links a { color: var(--ink-muted); }
body.light-theme .nav.scrolled .nav-links a:hover,
body.light-theme .nav.scrolled .nav-links a.active { color: var(--ink); }
body.light-theme .nav.scrolled .nav-phone { color: var(--ink); }

/* Stats bar */
body.light-theme .stats-bar {
  background: var(--light-alt);
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}
body.light-theme .stat-label { color: var(--ink-muted); }

/* Clients strip */
body.light-theme .clients-strip { background: var(--light-bg); }
body.light-theme .clients-label { color: var(--ink-soft); }
body.light-theme .client-name { color: var(--ink); }

/* About strip */
body.light-theme .about-strip { background: var(--light-bg); }
body.light-theme .about-home-points li { color: var(--ink-muted); border-bottom-color: var(--light-border); }

/* Capability download CTA */
body.light-theme .cap-download { background: var(--light-alt); }
body.light-theme .cap-download-box {
  background: var(--light-card); border: 1px solid var(--light-border);
}

/* Projects */
body.light-theme .projects { background: var(--light-bg); }

/* Contact */
body.light-theme .contact { background: var(--light-alt); }
body.light-theme .contact-item-text strong { color: var(--ink); }
body.light-theme .contact-item-text a,
body.light-theme .contact-item-text span { color: var(--ink-muted); }
body.light-theme .contact-form {
  background: var(--light-card); border: 1px solid var(--light-border);
}
body.light-theme .contact-form h3 { color: var(--ink); }
body.light-theme .form-group label { color: var(--ink-muted); }
body.light-theme .form-group input,
body.light-theme .form-group textarea,
body.light-theme .form-group select {
  background: var(--light-bg); border: 1px solid var(--light-border); color: var(--ink);
}
body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder { color: var(--ink-soft); }

/* Dark punches inside a light theme — opt-in per section */
body.light-theme .dark-section { background: var(--dark); color: var(--grey-200); }
body.light-theme .dark-section .section-title { color: #fff; }
body.light-theme .dark-section .section-desc { color: var(--grey-400); }
body.light-theme .dark-section .section-label { color: var(--grey-400); }
body.light-theme .dark-section.about-strip .about-home-points li {
  color: var(--grey-400); border-bottom-color: var(--dark-border);
}

/* ========================================
   HOME V2 — full ground-up homepage rebuild
   Scoped so it only affects body.v2 (index.html)
   ======================================== */
body.v2 {
  --h-bg: #E4E2DC;       /* light warm stone — page background */
  --h-alt: #D4D2CC;      /* mid stone for alt/banded sections */
  --h-card: #F1EFEA;     /* off-white tinted card bg */
  --h-border: #B8B6B0;
  --h-dark: #15130F;
  --h-dark-soft: #1E1B16;
  --h-ink: #121013;
  --h-ink-muted: #1F1D1A;
  --h-ink-soft: #3A3834;
  --h-green: #4CB848;
  --h-green-dark: #3A9A37;
  background: var(--h-bg);
  color: var(--h-ink);
  font-family: var(--font);
}

body.v2 h1, body.v2 h2, body.v2 h3,
body.v2 h4, body.v2 h5 { font-family: var(--font-display); letter-spacing: -0.02em; }

/* ── NAV overrides for home-v2 ─────────── */
/* Nav stays dark with white text on v2 pages at all scroll positions */
body.v2 .nav.scrolled { background: rgba(17, 17, 17, 0.98); box-shadow: 0 1px 0 rgba(77, 184, 72, 0.1); }

/* ── v2 shared helpers ─────────────────── */
.v2-container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.v2-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font); font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--h-ink-soft); margin-bottom: 24px;
}
.v2-kicker::before { content: ''; width: 28px; height: 1px; background: var(--h-green); }
.v2-kicker-light { color: rgba(255,255,255,0.65); }
.v2-kicker-light::before { background: var(--h-green); }

.v2-h2 {
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  font-weight: 700; line-height: 1.04; color: var(--h-ink); margin: 0;
}
.v2-h2 em { font-style: normal; color: var(--h-green); }
.v2-lead { font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.7; color: var(--h-ink-muted); max-width: 620px; margin-top: 20px; }

.v2-heading { max-width: 780px; margin-bottom: 64px; }
.v2-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; max-width: none; }
.v2-heading-row > div { max-width: 700px; }

/* Buttons (pill style) */
.btn-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 999px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}
.btn-pill svg { width: 16px; height: 16px; }
.btn-pill-primary { background: var(--h-ink); color: #fff; }
.btn-pill-primary:hover { background: var(--h-green); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(76,184,72,0.25); }
.btn-pill-green { background: var(--h-green); color: #fff; }
.btn-pill-green:hover { background: var(--h-green-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(76,184,72,0.3); }
.btn-pill-dark { background: var(--h-ink); color: #fff; }
.btn-pill-dark:hover { background: #000; transform: translateY(-2px); }
.btn-pill-ghost { background: transparent; color: var(--h-ink); border-color: var(--h-border); }
.btn-pill-ghost:hover { background: var(--h-ink); color: #fff; border-color: var(--h-ink); transform: translateY(-2px); }
.btn-pill-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-pill-ghost-light:hover { background: #fff; color: var(--h-ink); border-color: #fff; }

/* ── HERO ──────────────────────────────── */
.v2-hero {
  position: relative; min-height: 100vh; display: flex; align-items: flex-end;
  overflow: hidden; padding: 160px 0 80px; color: #fff;
}
.v2-hero-media { position: absolute; inset: 0; z-index: 0; }
.v2-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.v2-hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,18,15,0.5) 0%, rgba(20,18,15,0.35) 45%, rgba(20,18,15,0.92) 100%),
    linear-gradient(90deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.1) 60%);
}
.v2-hero .v2-container { position: relative; z-index: 2; width: 100%; }
.v2-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 28px;
}
.v2-hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--h-green); }
.v2-hero-title {
  font-size: clamp(2.8rem, 6.8vw, 6rem);
  font-weight: 700; line-height: 0.98; letter-spacing: -0.03em; color: #fff; max-width: 980px;
  margin: 0;
}
.v2-hero-title em { font-style: normal; color: var(--h-green); display: block; }
.v2-hero-lede {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem); line-height: 1.65;
  color: rgba(255,255,255,0.96); max-width: 560px; margin: 32px 0 40px;
}
.v2-hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.v2-hero-meta {
  position: absolute; bottom: 48px; right: 32px; z-index: 2;
  display: flex; gap: 48px; font-size: 0.85rem; color: rgba(255,255,255,0.9);
  border-top: 1px solid rgba(255,255,255,0.28); padding-top: 20px;
}
.v2-hero-meta strong { color: #fff; font-weight: 600; letter-spacing: 0.02em; }
@media (max-width: 820px) {
  .v2-hero-meta { display: none; }
  .v2-hero { padding: 140px 0 72px; }
}

/* ── TRUST STRIP ───────────────────────── */
.v2-trust { background: var(--h-bg); padding: 88px 0; border-bottom: 1px solid var(--h-border); }
.v2-trust-label {
  text-align: center; font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--h-ink-soft); margin-bottom: 44px;
}
.v2-trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.v2-trust-tile { flex: 0 0 calc(33.333% - 14px); }
.v2-trust-tile.reveal:nth-child(1) { transition-delay: 0ms; }
.v2-trust-tile.reveal:nth-child(2) { transition-delay: 90ms; }
.v2-trust-tile.reveal:nth-child(3) { transition-delay: 180ms; }
.v2-trust-tile.reveal:nth-child(4) { transition-delay: 270ms; }
.v2-trust-tile.reveal:nth-child(5) { transition-delay: 360ms; }
.v2-trust-tile.reveal:nth-child(6) { transition-delay: 450ms; }
.v2-trust-tile.reveal:nth-child(7) { transition-delay: 540ms; }
.v2-trust-tile.reveal:nth-child(8) { transition-delay: 630ms; }
.v2-trust-tile.reveal:nth-child(9) { transition-delay: 720ms; }
.v2-trust-tile {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--h-border);
  border-radius: 14px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.v2-trust-tile:hover {
  transform: translateY(-3px);
  border-color: var(--h-ink);
  box-shadow: 0 12px 28px rgba(26,24,23,0.08);
}
.v2-trust-tile img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
}
@media (max-width: 900px) { .v2-trust-logos { gap: 16px; } .v2-trust-tile { flex: 0 0 calc(50% - 8px); } }
@media (max-width: 480px) { .v2-trust-tile { flex: 0 0 100%; height: 100px; padding: 20px 24px; } }

/* ── CAPABILITIES ──────────────────────── */
.v2-caps { background: var(--h-bg); padding: 140px 0; }
.v2-caps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.v2-cap {
  display: flex; flex-direction: column;
  background: #ffffff; border: 1px solid var(--h-border);
  border-radius: 18px; overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.v2-cap:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(26,24,23,0.08); border-color: var(--h-ink); }
.v2-cap-media { aspect-ratio: 4/3; overflow: hidden; }
.v2-cap-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.v2-cap:hover .v2-cap-media img { transform: scale(1.06); }
.v2-cap-body { padding: 28px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.v2-cap-body h3 { font-size: 1.25rem; font-weight: 700; color: var(--h-ink); margin: 0 0 12px; }
.v2-cap-body p { font-size: 0.95rem; line-height: 1.65; color: var(--h-ink-muted); margin: 0 0 20px; }
.v2-cap-link {
  margin-top: auto; font-size: 0.85rem; font-weight: 600; color: var(--h-ink);
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: 0.02em;
  transition: gap 0.25s ease, color 0.25s ease;
}
.v2-cap-link:hover { color: var(--h-green); gap: 14px; }
@media (max-width: 1024px) { .v2-caps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v2-caps-grid { grid-template-columns: 1fr; } .v2-caps { padding: 96px 0; } }

/* ── PROOF (dark) ──────────────────────── */
.v2-proof { background: var(--h-dark); color: #fff; padding: 140px 0; }
.v2-proof .v2-kicker { color: rgba(255,255,255,0.82); }
.v2-proof .v2-h2 { color: #fff; }
.v2-proof .v2-lead { color: rgba(255,255,255,0.92); }
.v2-proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 72px; margin-top: 72px;
}
.v2-proof-item { }
.v2-proof-item strong {
  display: block; font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; line-height: 1; color: var(--h-green);
  letter-spacing: -0.03em; margin-bottom: 14px;
}
.v2-proof-item p { font-size: 0.95rem; color: rgba(255,255,255,0.88); line-height: 1.55; margin: 0; max-width: 240px; }
@media (max-width: 768px) { .v2-proof-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 20px; } .v2-proof { padding: 96px 0; } }

/* ── FEATURED PROJECTS ─────────────────── */
.v2-projects { background: var(--h-alt); padding: 140px 0; }
.v2-projects-grid {
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: repeat(2, 1fr);
  gap: 20px; min-height: 720px;
}
.v2-project {
  position: relative; overflow: hidden; border-radius: 18px; display: block; color: #fff;
  transition: transform 0.4s ease;
}
.v2-project img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.v2-project::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,15,0) 40%, rgba(20,18,15,0.9) 100%);
}
.v2-project:hover img { transform: scale(1.06); }
.v2-project-body { position: absolute; inset: auto 0 0 0; z-index: 1; padding: 32px 32px 30px; color: #fff; }
.v2-project-body .v2-project-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); padding: 6px 12px;
  background: rgba(255,255,255,0.14); backdrop-filter: blur(4px); border-radius: 999px;
  margin-bottom: 16px;
}
.v2-project-body h3 { font-size: 1.35rem; font-weight: 700; color: #fff; margin: 0 0 6px; letter-spacing: -0.01em; }
.v2-project-body p { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5; margin: 0; }
.v2-project-featured { grid-row: span 2; }
.v2-project-featured h3 { font-size: 1.8rem; }
@media (max-width: 900px) {
  .v2-projects-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 0; }
  .v2-project { min-height: 320px; }
  .v2-project-featured { grid-row: auto; min-height: 420px; }
  .v2-projects { padding: 96px 0; }
}

/* ── WHY VISION ────────────────────────── */
.v2-why { background: var(--h-bg); padding: 140px 0; }
.v2-why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.v2-why-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.v2-why-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-why-body { max-width: 540px; }
.v2-why-list { list-style: none; margin: 32px 0 40px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.v2-why-list li {
  display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--h-border);
  font-size: 0.98rem; line-height: 1.55; color: var(--h-ink-muted);
}
.v2-why-list li:last-child { border-bottom: none; }
.v2-why-list li span {
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 700;
  color: var(--h-green); letter-spacing: 0.1em; padding-top: 3px;
}
@media (max-width: 900px) {
  .v2-why-grid { grid-template-columns: 1fr; gap: 48px; }
  .v2-why-media { aspect-ratio: 16/10; max-width: 560px; }
  .v2-why { padding: 96px 0; }
}

/* ── CAPABILITY CTA BAND (dark) ────────── */
.v2-cta-band { background: var(--h-dark); color: #fff; padding: 120px 0; text-align: center; }
.v2-cta-inner { max-width: 760px; margin: 0 auto; }
.v2-cta-band .v2-h2 { color: #fff; }
.v2-cta-band p { font-size: clamp(1rem, 1.3vw, 1.15rem); color: rgba(255,255,255,0.9); margin: 20px auto 40px; max-width: 560px; line-height: 1.65; }

/* ── CONTACT ───────────────────────────── */
.v2-contact { background: var(--h-bg); padding: 140px 0; }
.v2-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: flex-start; }
.v2-contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.v2-contact-detail {
  display: grid; grid-template-columns: 44px 1fr; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid var(--h-border);
}
.v2-contact-detail:last-child { border-bottom: none; }
.v2-contact-detail svg { width: 20px; height: 20px; color: var(--h-green); margin-top: 4px; }
.v2-contact-detail strong { display: block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--h-ink-soft); margin-bottom: 4px; }
.v2-contact-detail a, .v2-contact-detail span { font-size: 1.02rem; line-height: 1.55; color: var(--h-ink); transition: color 0.2s; }
.v2-contact-detail a:hover { color: var(--h-green); }

.v2-form {
  background: var(--h-card); border: 1px solid var(--h-border); border-radius: 20px;
  padding: 44px;
}
.v2-form h3 { font-size: 1.4rem; font-weight: 700; color: var(--h-ink); margin: 0 0 28px; }
.v2-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.v2-form-group { margin-bottom: 16px; }
.v2-form-group label {
  display: block; font-size: 0.78rem; font-weight: 600; color: var(--h-ink-muted);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em;
}
.v2-form-group input, .v2-form-group textarea {
  width: 100%; padding: 14px 18px; background: var(--h-bg);
  border: 1px solid var(--h-border); border-radius: 10px;
  font-family: inherit; font-size: 0.95rem; color: var(--h-ink);
  transition: border-color 0.2s ease;
}
.v2-form-group input::placeholder, .v2-form-group textarea::placeholder { color: var(--h-ink-soft); }
.v2-form-group input:focus, .v2-form-group textarea:focus { outline: none; border-color: var(--h-green); }
.v2-form-group textarea { resize: vertical; min-height: 120px; }
.v2-form-submit {
  width: 100%; padding: 16px; background: var(--h-ink); color: #fff;
  border: none; border-radius: 999px; font-size: 0.98rem; font-weight: 600; letter-spacing: 0.01em;
  cursor: pointer; transition: background 0.25s ease, transform 0.2s ease;
}
.v2-form-submit:hover { background: var(--h-green); transform: translateY(-2px); }
@media (max-width: 900px) {
  .v2-contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .v2-form { padding: 32px 24px; }
  .v2-form-row { grid-template-columns: 1fr; }
  .v2-contact { padding: 96px 0; }
}

/* Ensure reveal works on v2 pages */
body.v2 .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
body.v2 .reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   V2 — SUBPAGE HERO + GENERIC SECTIONS
   Used on about/capabilities/projects/etc.
   ======================================== */
.v2-subhero {
  position: relative; min-height: 520px; display: flex; align-items: flex-end;
  overflow: hidden; padding: 180px 0 72px; color: #fff;
}
.v2-subhero-media { position: absolute; inset: 0; z-index: 0; }
.v2-subhero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.v2-subhero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,15,0.55) 0%, rgba(20,18,15,0.4) 50%, rgba(20,18,15,0.85) 100%);
}
.v2-subhero .v2-container { position: relative; z-index: 2; width: 100%; }
.v2-subhero-breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 26px; letter-spacing: 0.02em; }
.v2-subhero-breadcrumb a { color: rgba(255,255,255,0.95); transition: color 0.2s; }
.v2-subhero-breadcrumb a:hover { color: var(--h-green); }
.v2-subhero-breadcrumb span { opacity: 0.5; margin: 0 10px; }
.v2-subhero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); margin-bottom: 22px;
}
.v2-subhero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--h-green); }
.v2-subhero-title {
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  font-weight: 700; line-height: 1.02; color: #fff; max-width: 880px; margin: 0;
  letter-spacing: -0.02em;
}
.v2-subhero-title em { font-style: normal; color: var(--h-green); }
.v2-subhero-lede {
  font-size: clamp(1.02rem, 1.2vw, 1.18rem); line-height: 1.65;
  color: rgba(255,255,255,0.95); max-width: 620px; margin-top: 24px;
}
@media (max-width: 820px) { .v2-subhero { padding: 140px 0 64px; min-height: 440px; } }

/* Generic content sections */
.v2-section { background: var(--h-bg); padding: 140px 0; }
.v2-section-alt { background: var(--h-alt); padding: 140px 0; }
.v2-section-dark { background: var(--h-dark); color: #fff; padding: 140px 0; }
.v2-section-dark .v2-h2 { color: #fff; }
.v2-section-dark .v2-lead { color: rgba(255,255,255,0.92); }
.v2-section-dark .v2-kicker { color: rgba(255,255,255,0.82); }
@media (max-width: 768px) { .v2-section, .v2-section-alt, .v2-section-dark { padding: 96px 0; } }

/* Two-column split (text + image) */
.v2-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.v2-split-media { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; }
.v2-split-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-split-body { max-width: 560px; }
.v2-split-body p { font-size: 1rem; line-height: 1.7; color: var(--h-ink-muted); margin: 20px 0 0; }
.v2-split-body p:first-of-type { margin-top: 28px; }
.v2-split-reverse { grid-template-columns: 1fr 1.1fr; }
.v2-split-reverse .v2-split-media { order: 2; aspect-ratio: 4/5; }
@media (max-width: 900px) {
  .v2-split, .v2-split-reverse { grid-template-columns: 1fr; gap: 48px; }
  .v2-split-media { aspect-ratio: 16/10; max-width: 640px; }
}

/* Timeline */
.v2-timeline { display: grid; gap: 0; margin-top: 72px; }
.v2-timeline-item {
  display: grid; grid-template-columns: 200px 1fr; gap: 48px;
  padding: 40px 0; border-top: 1px solid var(--h-border);
  align-items: flex-start;
}
.v2-timeline-item:last-child { border-bottom: 1px solid var(--h-border); }
.v2-timeline-year {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--h-green); letter-spacing: -0.02em; line-height: 1;
}
.v2-timeline-content h3 { font-size: 1.3rem; font-weight: 700; color: var(--h-ink); margin: 0 0 10px; }
.v2-timeline-content p { font-size: 1rem; line-height: 1.7; color: var(--h-ink-muted); margin: 0; max-width: 620px; }
@media (max-width: 768px) {
  .v2-timeline-item { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .v2-timeline-year { font-size: 1.6rem; }
}

/* Values / feature grid (4-col, no images) */
.v2-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.v2-feature {
  background: var(--h-card); border: 1px solid var(--h-border);
  border-radius: 16px; padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.v2-feature:hover { transform: translateY(-4px); border-color: var(--h-ink); box-shadow: 0 16px 40px rgba(26,24,23,0.06); }
.v2-feature-icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--h-bg);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.v2-feature-icon svg { width: 24px; height: 24px; color: var(--h-green); }
.v2-feature-icon-img {
  width: auto; max-width: 240px; height: 64px;
  object-fit: contain; object-position: left center;
  display: block; margin-bottom: 22px; align-self: flex-start;
  background: transparent; border-radius: 0;
}
.v2-feature-icon.v2-feature-badge {
  width: auto; height: auto;
  padding: 14px 22px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; color: var(--h-green);
  letter-spacing: 0.01em; white-space: nowrap;
  align-self: flex-start;
}
.v2-feature h3 { font-size: 1.15rem; font-weight: 700; color: var(--h-ink); margin: 0 0 10px; }
.v2-feature p { font-size: 0.96rem; line-height: 1.65; color: var(--h-ink-muted); margin: 0; }
.v2-features-dark .v2-feature { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.16); }
.v2-features-dark .v2-feature:hover { border-color: var(--h-green); background: rgba(255,255,255,0.06); }
.v2-features-dark .v2-feature h3 { color: #fff; }
.v2-features-dark .v2-feature p { color: rgba(255,255,255,0.88); }
.v2-features-dark .v2-feature-icon { background: rgba(76,184,72,0.14); }
@media (max-width: 1024px) { .v2-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .v2-features { grid-template-columns: 1fr; } }

/* List with checkmarks */
.v2-checklist { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.v2-checklist li {
  display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: flex-start;
  font-size: 1rem; line-height: 1.65; color: var(--h-ink-muted);
}
.v2-checklist li::before {
  content: ''; width: 20px; height: 20px; margin-top: 4px; border-radius: 999px;
  background: var(--h-green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M20 6L9 17l-5-5'/></svg>") center/12px no-repeat;
}

/* Side-by-side panel (capability area) */
.v2-panel { background: var(--h-card); border: 1px solid var(--h-border); border-radius: 22px; padding: 56px; margin-bottom: 32px; }
.v2-panel-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.v2-panel-media { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.v2-panel-media img { width: 100%; height: 100%; object-fit: cover; }
.v2-panel-body h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--h-ink); margin: 0 0 12px; letter-spacing: -0.02em; }
.v2-panel-body h2 em { font-style: normal; color: var(--h-green); }
.v2-panel-body p { font-size: 1.02rem; line-height: 1.7; color: var(--h-ink-muted); margin: 0 0 20px; }
@media (max-width: 900px) { .v2-panel { padding: 32px 24px; } .v2-panel-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Job cards */
.v2-jobs { display: flex; flex-direction: column; gap: 18px; margin-top: 48px; }
.v2-job {
  background: var(--h-card); border: 1px solid var(--h-border); border-radius: 16px;
  padding: 32px 36px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.v2-job:hover { border-color: var(--h-ink); transform: translateY(-2px); }
.v2-job-tags { display: flex; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.v2-job-tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--h-bg); border: 1px solid var(--h-border);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--h-ink-soft);
}
.v2-job h3 { font-size: 1.25rem; font-weight: 700; color: var(--h-ink); margin: 0 0 8px; }
.v2-job p { font-size: 0.98rem; line-height: 1.65; color: var(--h-ink-muted); margin: 0; max-width: 620px; }
@media (max-width: 768px) { .v2-job { grid-template-columns: 1fr; padding: 24px; } }

/* Map embed */
.v2-map { border-radius: 18px; overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--h-border); margin-top: 48px; }
.v2-map iframe { width: 100%; height: 100%; border: 0; }

/* Detail cards list (projects, policies) */
.v2-detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.cap-flip {
  position: relative; aspect-ratio: 842/1190;
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  background: #2b2b2b;
  cursor: pointer;
  perspective: 1800px;
  transform-style: preserve-3d;
}
.cap-flip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 1;
  transform: rotateY(0deg);
  transform-origin: left center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.45, 0, 0.55, 1), box-shadow 0.65s ease;
}
.cap-flip img.flipping { box-shadow: 14px 0 30px rgba(0,0,0,0.4); }
.cap-flip img.flipped { transform: rotateY(-175deg); }
.cap-flip:focus { outline: none; }
.cap-flip:focus-visible { outline: 2px solid var(--h-green); outline-offset: 4px; }

.cap-flip-wrap { display: flex; flex-direction: column; gap: 18px; }
.capstmt-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 900px) {
  .capstmt-grid { grid-template-columns: 1fr; gap: 48px; }
  .cap-flip-wrap { max-width: 420px; margin: 0 auto; width: 100%; }
}
.cap-flip-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  user-select: none;
}
.cap-flip-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}
.cap-flip-btn svg { width: 20px; height: 20px; }
.cap-flip-btn:hover:not(:disabled) { background: var(--h-green); border-color: var(--h-green); transform: translateY(-1px); }
.cap-flip-btn:active:not(:disabled) { transform: translateY(0); }
.cap-flip-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.cap-flip-counter {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  min-width: 60px; text-align: center;
}

.v2-detail-card {
  background: var(--h-card); border: 1px solid var(--h-border); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.v2-detail-card:hover { transform: translateY(-6px); border-color: var(--h-ink); box-shadow: 0 20px 50px rgba(26,24,23,0.08); }
.v2-detail-media { aspect-ratio: 16/10; overflow: hidden; }
.v2-detail-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.v2-detail-card:hover .v2-detail-media img { transform: scale(1.04); }
.v2-detail-body { padding: 28px 30px 32px; flex: 1; display: flex; flex-direction: column; }
.v2-detail-body .v2-project-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--h-green); margin-bottom: 14px;
}
.v2-detail-body h3 { font-size: 1.3rem; font-weight: 700; color: var(--h-ink); margin: 0 0 12px; letter-spacing: -0.01em; }
.v2-detail-body p { font-size: 0.98rem; line-height: 1.7; color: var(--h-ink-muted); margin: 0 0 20px; }
.v2-detail-meta {
  margin-top: auto; display: flex; flex-direction: column; gap: 6px;
  padding-top: 18px; border-top: 1px solid var(--h-border);
  font-size: 0.9rem; line-height: 1.55; color: var(--h-ink-muted);
}
.v2-detail-meta strong { color: var(--h-ink); font-weight: 600; margin-right: 6px; }
@media (max-width: 900px) { .v2-detail-list { grid-template-columns: 1fr; } }
