/* ------------------------------------------------- 
ABOUT MAIN HERO
-------------------------------------------------- */

.hero {
  position: relative;
  min-height: 60vh;
  padding: 3.5rem 0 3.5rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 5px solid var(--accent);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/img/project_ct-westport/westport_43.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.70;
  filter: grayscale(40%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #fdfdfd 0%, #fdfdfd 48%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.7), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100% - 3rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 3.3fr) minmax(0, 2.4fr);
  gap: 2.5rem;
  align-items: center;
}

/* ------------------------------------------------- 
MISSION CARD
-------------------------------------------------- */

.hero-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2.6rem;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3.1vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: #101827;
}

.hero-title span {
  color: var(--accent);
}

.hero-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.hero-meta span strong {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
}

/* ------------------------------------------------- 
SECONDARY COLUMN
-------------------------------------------------- */

.hero-secondary {
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-highlight {
  width: 100%;
  background: radial-gradient(circle at top left, var(--accent-soft), #ffffff);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(229, 231, 235, 0.9);
  padding: 1.8rem 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

.hero-highlight-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #111827;
  margin-bottom: 1rem;
}

.hero-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-highlight-grid strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 0.15rem;
}


/* ------------------------------------------------- 
PROJECT PAGE HERO
-------------------------------------------------- */
.project-hero {
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-bottom: 5px solid var(--accent);
}

.project-hero-overlay {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.438);
  padding: 10px 0px;
  border-radius: 3px;
  text-align: center;
  -webkit-backdrop-filter: blur(12px); /* Safari */
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.294);
}

.project-hero-title {
  color: #000000b2;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.project-hero-location {
  color: #000000c2;
}




