/*
  Color palette — matched to yardiinvestmentsuite.com live CSS tokens:
    Primary teal          #267877   accents, borders, eyebrows, badges, buttons, links
    Dark teal             #0C4441   hover states, badge/button text on teal bg
    Hero / dark bg        linear-gradient(90deg, #004247 0%, #1f605f 100%)
    Footer / CTA bg       #004247   solid dark teal for footer, CTA bands, sidebars
    Body text             #202020   main body text
    Secondary text        #595959   muted / supporting text
    Headings              #333      h2, h3 on light backgrounds
    Page background       #f2f2f2   overall body background
    Alt section bg        #f9f9f9   .section-alt panels
    Card borders          #dcdcdc   card/divider borders
    Shadow                rgba(156, 149, 181, 0.3)   soft purple-grey shadow
    Font                  Mulish    primary typeface (matches yardiinvestmentsuite.com)
*/

/* ============================================
   BASE
   ============================================ */
:root {
  font-family: 'Mulish', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  min-height: 100%;
  background: #f2f2f2;
  color: #202020;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2 {
  font-family: 'Mulish', ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 1px 0 #dcdcdc, 0 4px 20px rgba(156, 149, 181, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.6rem;
}

.brand-logo-img {
  height: 63px;
  width: auto;
  display: block;
  flex-shrink: 0;
}



.brand-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.45rem;
  line-height: 1;
}

.brand-eyk {
  font-family: 'Mulish', ui-sans-serif, system-ui, sans-serif;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #267877;
  line-height: 1;
}

.brand-group {
  font-family: 'Mulish', ui-sans-serif, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #0C4441;
  text-transform: uppercase;
  padding-bottom: 0.1rem;
}

.site-footer .brand-wordmark {
  display: inline-flex;
}

.site-footer .brand-eyk {
  font-size: 2rem;
  color: #fff;
}

.site-footer .brand-group {
  color: rgba(255, 255, 255, 0.55);
}

.company-logo {
  height: 210px;
  width: auto;
  max-width: 560px;
  object-fit: contain;
  display: block;
  margin-bottom: 1.25rem;
}

.site-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-nav a {
  color: #202020;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: #267877;
}

.nav-cta {
  padding: 0.55rem 1.35rem;
  border-radius: 9999px;
  background: #267877 !important;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.15s ease !important;
  white-space: nowrap;
}

.nav-cta:hover {
  background: #0C4441 !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ============================================
   NAV HOVER UNDERLINE + DROPDOWN
   ============================================ */

/* Underline for direct nav links (not in a nav-item wrapper, not CTA) */
.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-bottom: 2px;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #267877;
  transition: width 0.25s ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  width: 100%;
}

/* Nav item wrapper for dropdown groups */
.nav-item {
  position: relative;
}

/* Invisible bridge between nav link and dropdown panel so hover doesn't break */
.nav-item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 18px;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  padding-bottom: 2px;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #267877;
  transition: width 0.25s ease;
}

.nav-item:hover > a::after {
  width: 100%;
}

/* Chevron indicator */
.nav-chevron {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4.5px solid currentColor;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.22s ease;
}

.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 220px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-top: 2px solid #267877;
  box-shadow: 0 12px 40px rgba(156, 149, 181, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 0.8rem 1.25rem;
  font-size: 0.86rem;
  color: #202020;
  border-bottom: 1px solid #f9f9f9;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}

.nav-dropdown a:last-child {
  border-bottom: none;
  color: #267877;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav-dropdown a:hover {
  color: #267877;
  background: #fff;
  padding-left: 1.5rem;
}

.nav-dropdown a:last-child:hover {
  color: #202020;
  padding-left: 1.25rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 9rem 0 8rem;
  background: linear-gradient(90deg, #004247 0%, #1f605f 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  height: 60vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 50%;
  border: 1.5px solid rgba(38, 120, 119, 0.1);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(38, 120, 119, 0.06);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 68% 50%, rgba(38, 120, 119, 0.07) 0%, transparent 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  margin: 0 0 1.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.72);
  flex-shrink: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero h1 em {
  font-style: italic;
  color: #267877;
}

.hero-copy-text {
  margin: 2.25rem 0 0.75rem;
  max-width: 540px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.85;
}

.hero-copy-text + .hero-copy-text {
  margin-top: 0.65rem;
  margin-bottom: 2.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 32px 80px rgba(156, 149, 181, 0.5);
  position: relative;
  z-index: 1;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

/* ============================================
   BUTTONS
   ============================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 9999px;
  padding: 0.875rem 1.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #267877;
  color: #fff;
  box-shadow: 0 2px 12px rgba(38, 120, 119, 0.3);
}

.button-primary:hover {
  background: #0C4441;
  box-shadow: 0 6px 20px rgba(38, 120, 119, 0.4);
}

.button-secondary {
  background: transparent;
  color: #0C4441;
  border: 1.5px solid #267877;
}

.button-secondary:hover {
  background: rgba(38, 120, 119, 0.08);
}

.hero .button-secondary {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .button-secondary:hover {
  border-color: rgba(38, 120, 119, 0.55);
  color: #fff;
  background: rgba(38, 120, 119, 0.1);
}

.button-outline {
  background: transparent;
  color: #0C4441;
  border: 1.5px solid #dcdcdc;
}

.button-outline:hover {
  border-color: #267877;
  color: #267877;
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.75rem 1.5rem;
  border-right: 1px solid #dcdcdc;
}

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

.stat-number {
  font-family: 'Mulish', ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #267877;
  line-height: 1;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #267877;
}

.stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #595959;
  text-align: center;
  margin-top: 0.2rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
  background: #fff;
}

.section-alt {
  background: #f9f9f9;
}

.section-page-hero {
  padding: 5.5rem 0 4.5rem;
  background: linear-gradient(90deg, #004247 0%, #1f605f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-page-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #267877 0%, rgba(38, 120, 119, 0.2) 60%, transparent 100%);
}

.section-page-hero .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #267877;
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-page-hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5px;
  background: #267877;
  flex-shrink: 0;
}

.section-page-hero h1 {
  margin: 0;
  font-size: clamp(1.875rem, 3.5vw, 3.125rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #fff;
}

.section-page-hero > .container > p {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  max-width: 46rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

.section-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.section-header.centered {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #267877;
  margin: 0 0 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-header.centered .eyebrow {
  justify-content: center;
}

.section-header .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5px;
  background: #267877;
  flex-shrink: 0;
}

.section-header.centered .eyebrow::before {
  display: none;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-header p {
  margin: 1rem 0 0;
  color: #595959;
  max-width: 42rem;
  font-size: 1.02rem;
  line-height: 1.85;
}

.section-header.centered p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   OVERVIEW / SPLIT GRID
   ============================================ */
.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: start;
}

.split-grid.reverse {
  direction: rtl;
}

.split-grid.reverse > * {
  direction: ltr;
}

.section-overview .split-grid {
  gap: 5rem;
}

.section-overview .split-grid > div {
  background: transparent;
  border: none;
  padding: 0 0 0 1.75rem;
  border-left: 3px solid #267877;
}

.section-overview .split-grid > div h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: clamp(1.375rem, 2vw, 1.875rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.section-overview .split-grid > div p {
  margin: 0;
  color: #595959;
  font-size: 0.97rem;
  line-height: 1.85;
}

.section-overview .split-grid > div p + p {
  margin-top: 0.85rem;
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.card {
  padding: 1.875rem 1.875rem 1.875rem 1.625rem;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-left: 3px solid #267877;
  box-shadow: 0 6px 24px 0 rgba(156, 149, 181, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px 0 rgba(156, 149, 181, 0.3);
  border-left-color: #0C4441;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
}

.card p {
  margin: 0;
  color: #595959;
  font-size: 0.93rem;
  line-height: 1.75;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #267877;
  transition: gap 0.2s ease, color 0.2s ease;
}

.card-link:hover {
  gap: 0.55rem;
  color: #0C4441;
}

.card-coming-soon {
  background: #fff;
  border-left-color: #dcdcdc;
  opacity: 0.82;
}

/* ============================================
   BADGES
   ============================================ */
.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-active {
  background: rgba(16, 120, 60, 0.08);
  color: #0a6630;
}

.badge-dev {
  background: rgba(38, 120, 119, 0.12);
  color: #0C4441;
}

.badge-soon {
  background: #f9f9f9;
  color: #595959;
}

.badge-planning {
  background: #f9f9f9;
  color: #595959;
}

.badge-sector {
  background: rgba(38, 120, 119, 0.1);
  color: #0C4441;
}

.card-badges {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

/* ============================================
   VALUES — Numbered cards
   ============================================ */
.values-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  counter-reset: values-counter;
}

.values-grid > div {
  padding: 2rem 1.75rem;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-top: 3px solid #267877;
  border-radius: 4px;
  box-shadow: 0 6px 24px 0 rgba(156, 149, 181, 0.12);
  counter-increment: values-counter;
}

.values-grid > div::before {
  content: counter(values-counter, decimal-leading-zero);
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #267877;
  margin-bottom: 0.85rem;
  font-family: 'Mulish', sans-serif;
}

.values-grid h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #333;
}

.values-grid p {
  margin: 0;
  color: #595959;
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ============================================
   STORY / IMAGE SPLIT
   ============================================ */
.section-story .split-grid {
  gap: 4.5rem;
  align-items: center;
}

.story-image,
.page-hero-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 0;
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #dcdcdc;
  box-shadow: 0 12px 44px rgba(156, 149, 181, 0.25);
}

.story-image img,
.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy h2 {
  margin-top: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.story-copy p {
  color: #595959;
  font-size: 0.97rem;
  line-height: 1.85;
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.leadership-card {
  padding: 2.5rem;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-top: 3px solid #267877;
  border-radius: 4px;
  box-shadow: 0 6px 24px 0 rgba(156, 149, 181, 0.15);
  overflow: hidden;
}

.leadership-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.leadership-photo {
  display: block;
  width: 220px;
  height: auto;
  border-radius: 4px;
}

.leadership-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.6rem;
  font-family: 'Mulish', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  color: #333;
}

.leadership-card > p:first-of-type {
  margin: 0 0 1.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #267877;
}

.leadership-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #595959;
  font-size: 0.95rem;
  line-height: 1.85;
}

.leadership-card ul li + li {
  margin-top: 0.6rem;
}

.leadership-summary {
  padding: 2.5rem;
  background: #004247;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.97rem;
  line-height: 1.85;
  border-top: 3px solid #267877;
}

.leadership-summary p {
  margin: 0;
}

/* ============================================
   CONTACT CTA — Full-width dark band
   ============================================ */
.section-contact-cta {
  background: #004247;
  padding: 5.5rem 0;
}

.section-contact-cta.section-alt {
  background: #004247;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  color: #fff;
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.contact-cta .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #267877;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.contact-cta .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5px;
  background: #267877;
  flex-shrink: 0;
}

.contact-cta h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.contact-cta p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.97rem;
  max-width: 440px;
  line-height: 1.85;
}

.contact-cta-actions {
  flex-shrink: 0;
}

.contact-cta .button-primary {
  background: #267877;
  box-shadow: 0 4px 20px rgba(38, 120, 119, 0.25);
  padding: 1rem 2.25rem;
}

.contact-cta .button-primary:hover {
  background: #0C4441;
}

/* ============================================
   COMPANIES PAGE
   ============================================ */
.company-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.company-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-left: 3px solid #267877;
  border-radius: 4px;
  box-shadow: 0 6px 24px 0 rgba(156, 149, 181, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px 0 rgba(156, 149, 181, 0.3);
}

.company-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
}

.company-card p {
  margin: 0 0 0.5rem;
  color: #595959;
  font-size: 0.93rem;
  line-height: 1.75;
}

.company-card p:last-child {
  margin-bottom: 0;
}

.company-card-quiet {
  opacity: 0.85;
}

.page-hero-visual {
  margin-top: 2rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(156, 149, 181, 0.2);
}

.page-hero-visual img {
  width: 100%;
  display: block;
  min-height: 280px;
  object-fit: cover;
}

/* ============================================
   PROJECTS PAGE
   ============================================ */
.projects-grid {
  display: grid;
  gap: 1.5rem;
}

.project-card {
  padding: 2.25rem;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-left: 3px solid #267877;
  border-radius: 4px;
  box-shadow: 0 6px 24px 0 rgba(156, 149, 181, 0.15);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
  overflow: hidden;
}

.project-card-img-wrap {
  grid-column: 1 / -1;
  margin: -2.25rem -2.25rem 0;
  display: flex;
  gap: 3px;
}

.project-card-img {
  display: block;
  flex: 1;
  min-width: 0;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.project-meta {
  border-right: 1px solid #dcdcdc;
  padding-right: 2.5rem;
}

.project-meta h3 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
}

.project-meta-item {
  margin-bottom: 0.75rem;
}

.project-meta-item strong {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #267877;
  margin-bottom: 0.2rem;
}

.project-meta-item span {
  font-size: 0.9rem;
  color: #595959;
}

.project-body p {
  margin: 0 0 0.85rem;
  color: #595959;
  font-size: 0.95rem;
  line-height: 1.85;
}

.project-body p:last-child {
  margin-bottom: 0;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.section-contact-form {
  padding-bottom: 7rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  padding: 0.875rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  color: #202020;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236F8395' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #267877;
  box-shadow: 0 0 0 3px rgba(38, 120, 119, 0.12);
}

.contact-form button {
  width: fit-content;
  margin-top: 0.5rem;
}

.contact-summary {
  padding: 2.5rem;
  background: #004247;
  border-top: 3px solid #267877;
  color: rgba(255, 255, 255, 0.5);
  position: sticky;
  top: 90px;
}

.contact-summary h2 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #fff;
}

.contact-summary > p {
  font-size: 0.95rem;
  margin: 0 0 0;
  line-height: 1.8;
}

.contact-details {
  display: grid;
  gap: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 1.75rem;
}

.contact-details p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.contact-details p strong {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #267877;
  margin-bottom: 0.3rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #004247;
  color: rgba(255, 255, 255, 0.6);
  border-top: 3px solid #267877;
}

.footer-main {
  padding: 5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 4rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.8;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #267877;
  margin: 0 0 1.5rem;
}

.footer-col-nav {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col-nav a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.footer-col-nav a:hover {
  color: #fff;
}

.footer-contact-item {
  margin-bottom: 1.25rem;
}

.footer-contact-item strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #267877;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2rem 0;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.9;
  max-width: 880px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom-inner {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-section {
  padding-bottom: 4rem;
}

.gallery-section + .gallery-section {
  padding-top: 4rem;
  border-top: 1px solid #dcdcdc;
}

.gallery-section-header {
  margin-bottom: 2rem;
}

.gallery-section-header .eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #267877;
  margin: 0 0 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.gallery-section-header .eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5px;
  background: #267877;
  flex-shrink: 0;
}

.gallery-section-header h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #333;
  letter-spacing: -0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  background: #f9f9f9;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* ============================================
   RESPONSIVE — 900px
   ============================================ */
@media (max-width: 900px) {
  .hero-grid,
  .split-grid,
  .leadership-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .hero {
    padding: 6rem 0 5.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid #dcdcdc;
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid #dcdcdc;
    border-right: none;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0 3rem;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .project-meta {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 1.5rem;
  }

  .section-overview .split-grid {
    gap: 2.5rem;
  }

  .section-overview .split-grid > div {
    padding-left: 1.25rem;
  }
}

/* ============================================
   RESPONSIVE — 640px
   ============================================ */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-dropdown,
  .nav-chevron {
    display: none;
  }

  .nav-item > a {
    display: inline;
  }

  .hero {
    padding: 5rem 0 5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
    justify-content: center;
  }

  .section-contact-cta {
    padding: 4rem 0;
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-visual {
    margin-top: 1.5rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 4.5rem 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
