/* ------------------------------------------------- 
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.6rem;
  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;
}

@media (max-width: 768px) {
  /* Mobile styles */
  
  .hero-title {
  font-size: clamp(1.1rem, 3.1vw, 2.8rem);
  line-height: 1.1;
  margin: 0 0 0.8rem;
  color: #101827;
}
}
/* ------------------------------------------------- 
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 {
  position: relative;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  padding: 6rem clamp(1.5rem, 5vw, 4.5rem) 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  border-bottom: 4px solid var(--accent);
  overflow: hidden;
}

/* Dark gradient scrim so the heading reads crisply over any photo */
.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 26, 0.88) 0%,
    rgba(8, 15, 26, 0.45) 36%,
    rgba(8, 15, 26, 0.08) 66%,
    rgba(8, 15, 26, 0) 100%
  );
  pointer-events: none;
}

.project-hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  background: none;
  border: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  padding: 0;
  text-align: left;
}

/* Accent rule above the title */
.project-hero-overlay::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px rgba(35, 115, 127, 0.55);
}

.project-hero-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0 0 0.5rem;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.5);
}

.project-hero-location {
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.82rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}



