/* =============================================================================
   HOME PAGE
   ============================================================================= */

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem var(--gutter) 4rem max(var(--gutter), calc((100vw - 1400px)/2 + var(--gutter)));
  position: relative;
  z-index: 2;
  background: var(--bone);
}
.hero-text .eyebrow { margin-bottom: 1.8rem; }
.hero-title {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.92;
  margin-bottom: 1.6rem;
}
.hero-title .accent { color: var(--orange); }
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--navy);
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--muted);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-meta {
  display: flex; gap: 2.5rem;
  border-top: 1px solid rgba(20,52,100,0.15);
  padding-top: 1.6rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-meta strong { color: var(--navy); display: block; font-size: 1.6rem; font-family: var(--display); letter-spacing: -0.02em; margin-bottom: 0.2rem; }

.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, var(--bone), transparent);
  z-index: 2;
}
.hero-tag {
  position: absolute;
  bottom: 2rem; left: 2rem;
  background: var(--navy);
  color: var(--bone);
  padding: 0.7rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
  border-left: 3px solid var(--orange);
}
.hero-tri-tr {
  position: absolute;
  top: 80px; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 240px 240px 0;
  border-color: transparent var(--orange) transparent transparent;
  z-index: 3;
}
.hero-tri-bl {
  position: absolute;
  bottom: 0; left: -1px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 180px 0 0 180px;
  border-color: transparent transparent transparent var(--navy);
  z-index: 3;
}
/* Marquee */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--bone);
  padding: 0.9rem 0;
  overflow: hidden;
  z-index: 4;
  border-top: 2px solid var(--orange);
}
.hero-marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-marquee-track span { display: inline-flex; align-items: center; gap: 4rem; }
.hero-marquee-track span::after {
  content: "▲";
  color: var(--orange);
  margin-left: 4rem;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 6rem var(--gutter) 4rem; }
  .hero-visual { min-height: 70vh; }
  .hero-visual::before { display: none; }
  .hero-tri-tr { display: none; }
}

/* =============================================================================
   STATS BAND
   ============================================================================= */

.stats {
  background: var(--navy);
  color: var(--bone);
  padding: 5rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1400px; margin: 0 auto;
  position: relative; z-index: 2;
}
.stat {
  padding: 0 2rem;
  border-left: 1px solid rgba(244, 241, 236, 0.15);
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-value {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--bone);
  display: flex; align-items: baseline; gap: 0.1em;
}
.stat-value sup { font-size: 0.5em; color: var(--orange); font-weight: 800; }
.stat-label {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 1rem;
  color: rgba(244, 241, 236, 0.65);
}
.stats-tri {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 320px 320px;
  border-color: transparent transparent var(--orange) transparent;
  opacity: 0.12;
}
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; padding-left: 0; padding-bottom: 2rem; border-bottom: 1px solid rgba(244,241,236,0.1); }
  .stat:last-child { border-bottom: none; }
}

/* =============================================================================
   SERVICES
   ============================================================================= */

.services { padding: 8rem var(--gutter); background: var(--bone); }
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}
.services-head h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 0.95; }
.services-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 50ch; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service {
  background: var(--white);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(20, 52, 100, 0.08);
  position: relative;
  transition: transform 0.4s var(--ease-out), border-color 0.3s;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 4px;
  background: var(--orange);
  transition: width 0.5s var(--ease-out);
}
.service:hover { transform: translateY(-8px); border-color: var(--orange); }
.service:hover::before { width: 100%; }
.service-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--orange);
  letter-spacing: 0.15em;
  margin-bottom: 1.6rem;
  display: block;
}
.service h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.service p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.service-tri {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 60px 60px;
  border-color: transparent transparent var(--navy) transparent;
  opacity: 0.06;
  transition: opacity 0.3s, border-color 0.3s;
}
.service:hover .service-tri { opacity: 1; border-color: transparent transparent var(--orange) transparent; }
@media (max-width: 880px) {
  .services-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   FEATURED PROJECTS — dramatic reveal scroll section
   ============================================================================= */

.featured {
  padding: 8rem var(--gutter);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.featured-head {
  max-width: 1400px; margin: 0 auto 5rem;
  display: flex; justify-content: space-between; align-items: end; gap: 2rem;
  flex-wrap: wrap;
}
.featured-head h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.featured-head a { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 0.4rem; }
.featured-head a:hover { color: var(--orange); }

.featured-list {
  max-width: 1400px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 4rem;
}
.featured-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 60vh;
}
.featured-item:nth-child(even) { direction: rtl; }
.featured-item:nth-child(even) > * { direction: ltr; }

.featured-img {
  position: relative;
  overflow: hidden;
}
.featured-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.featured-num {
  position: absolute;
  top: 1.5rem; left: 1.5rem;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--bone);
  background: var(--navy);
  padding: 0.5rem 0.9rem;
  z-index: 3;
}
.featured-content {
  background: var(--white);
  padding: 3rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  border-left: 4px solid var(--orange);
}
.featured-item:nth-child(even) .featured-content {
  border-left: none;
  border-right: 4px solid var(--orange);
}
.featured-content .eyebrow { margin-bottom: 1.5rem; }
.featured-content h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.featured-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.featured-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border-top: 1px solid rgba(20,52,100,0.1);
  padding-top: 1.2rem;
}
.featured-meta strong { display: block; color: var(--navy); font-family: var(--display); font-size: 1rem; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
@media (max-width: 880px) {
  .featured-item, .featured-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
  .featured-img { height: 50vh; }
  .featured-content { padding: 2.5rem 1.5rem; }
}

/* =============================================================================
   CLIENTS MARQUEE
   ============================================================================= */

.clients { padding: 6rem var(--gutter); background: var(--bone); }
.clients-head { text-align: center; margin-bottom: 4rem; }
.clients-head h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-top: 1rem; }
.clients-track {
  display: flex; gap: 3rem;
  animation: marquee 60s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.clients-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.client-pill {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  padding: 1rem 2rem;
  border: 1.5px solid rgba(20, 52, 100, 0.15);
  border-radius: 999px;
  transition: all 0.3s;
  background: var(--white);
}
.client-pill:hover { color: var(--orange); border-color: var(--orange); }

/* =============================================================================
   CTA BAND
   ============================================================================= */

.cta {
  padding: 7rem var(--gutter);
  background: var(--navy);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cta-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--bone);
  line-height: 0.98;
}
.cta h2 .accent { color: var(--orange); }
.cta p {
  margin-top: 1.2rem;
  color: rgba(244, 241, 236, 0.7);
  max-width: 50ch;
  font-size: 1.05rem;
}
.cta-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.cta-actions .btn-primary { background: var(--orange); color: var(--white); border-color: var(--orange); }
.cta-actions .btn-primary:hover { background: transparent; color: var(--orange); box-shadow: none; transform: none; }

.cta-tri-1 {
  position: absolute;
  top: -1px; left: -1px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 380px 380px 0 0;
  border-color: var(--orange) transparent transparent transparent;
  opacity: 0.08;
}
.cta-tri-2 {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 280px 280px;
  border-color: transparent transparent var(--orange) transparent;
  opacity: 0.06;
}
@media (max-width: 880px) {
  .cta-inner { grid-template-columns: 1fr; }
}

/* =============================================================================
   PAGE HEADER (used on Projects, About, Contact)
   ============================================================================= */

.page-head {
  padding: 10rem var(--gutter) 5rem;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.page-head-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.page-head .eyebrow { margin-bottom: 1.2rem; }
.page-head h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.9;
}
.page-head h1 .accent { color: var(--orange); }
.page-head h1 .stroke { -webkit-text-stroke: 2px var(--navy); -webkit-text-fill-color: transparent; }
.page-head p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 52ch; }
.page-head-tri {
  position: absolute;
  top: 80px; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 200px 200px 0;
  border-color: transparent var(--orange) transparent transparent;
  opacity: 0.18;
}
@media (max-width: 880px) {
  .page-head-inner { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* =============================================================================
   PROJECTS PAGE
   ============================================================================= */

.proj-section { padding: 5rem var(--gutter); background: var(--paper); }
.proj-filter {
  max-width: 1400px; margin: 0 auto 3rem;
  display: flex; flex-wrap: wrap; gap: 0.7rem;
}
.filter-btn {
  padding: 0.7rem 1.2rem;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid rgba(20, 52, 100, 0.2);
  background: transparent;
  transition: all 0.25s;
  border-radius: 999px;
}
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--bone); border-color: var(--navy); }

.proj-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.proj-card {
  background: var(--white);
  border: 1px solid rgba(20, 52, 100, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, opacity 0.6s var(--ease-out);
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
}
.proj-card.in {
  opacity: 1;
  transform: none;
}
.proj-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(20, 52, 100, 0.12); }
.proj-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy);
  position: relative;
}
.proj-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.proj-card:hover .proj-card-img img { transform: scale(1.06); }
.proj-card-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--navy);
  color: var(--bone);
  padding: 0.4rem 0.8rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.proj-card-body { padding: 1.4rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.proj-card-body h3 {
  font-size: 1.15rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.proj-card-body .num {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--orange);
  letter-spacing: 0.15em;
  margin-bottom: 0.7rem;
}
.proj-card.hidden { display: none; }
@media (max-width: 880px) {
  .proj-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .proj-grid { grid-template-columns: 1fr; }
}

/* Ongoing badge */
.proj-badge-ongoing { background: var(--orange); }

/* =============================================================================
   ABOUT PAGE
   ============================================================================= */

.about-intro { padding: 6rem var(--gutter); background: var(--bone); }
.about-intro-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-intro-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy);
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-img::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent var(--bone) transparent;
}
.about-intro-content h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; line-height: 1; }
.about-intro-content p { margin-bottom: 1.2rem; line-height: 1.8; color: var(--ink); }
.about-intro-content p strong { color: var(--navy); }

/* Pillars (Vision/Mission/Time/Safety) */
.pillars { padding: 7rem var(--gutter); background: var(--paper); }
.pillars-head { max-width: 1400px; margin: 0 auto 4rem; }
.pillars-head h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-top: 1rem; max-width: 18ch; line-height: 0.98; }
.pillars-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(20, 52, 100, 0.1);
  border: 1px solid rgba(20, 52, 100, 0.1);
}
.pillar {
  background: var(--bone);
  padding: 3rem 2.5rem;
  position: relative;
}
.pillar-num {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.pillar h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--navy);
}
.pillar p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.97rem;
}
.pillar blockquote {
  margin-top: 1.5rem;
  font-family: var(--display);
  font-style: italic;
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1.4;
  border-left: 3px solid var(--orange);
  padding-left: 1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.pillar blockquote cite { display: block; font-style: normal; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-top: 0.6rem; font-weight: 500; }
@media (max-width: 880px) {
  .pillars-grid { grid-template-columns: 1fr; }
}

/* Leadership */
.leaders { padding: 7rem var(--gutter); background: var(--navy); color: var(--bone); position: relative; overflow: hidden; }
.leaders-head { max-width: 1400px; margin: 0 auto 4rem; }
.leaders-head h2 { color: var(--bone); font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-top: 1rem; }
.leaders-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.leader {
  background: rgba(244, 241, 236, 0.04);
  border: 1px solid rgba(244, 241, 236, 0.1);
  padding: 3rem 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.leader:hover { border-color: var(--orange); transform: translateY(-4px); }
.leader-role {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.5rem;
}
.leader h3 { color: var(--bone); font-size: 2rem; margin-bottom: 0.4rem; line-height: 1; }
.leader-title { color: rgba(244,241,236,0.6); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; margin-bottom: 1.5rem; text-transform: uppercase; }
.leader p { color: rgba(244, 241, 236, 0.78); line-height: 1.7; font-size: 0.95rem; }
.leader-stat {
  display: flex; gap: 1rem;
  margin-top: 1.8rem;
  border-top: 1px solid rgba(244,241,236,0.1);
  padding-top: 1.5rem;
}
.leader-stat div { flex: 1; }
.leader-stat strong { display: block; color: var(--orange); font-family: var(--display); font-size: 2rem; letter-spacing: -0.02em; line-height: 1; }
.leader-stat span { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,241,236,0.6); margin-top: 0.4rem; display: block; }
.leaders-quote {
  max-width: 1400px; margin: 4rem auto 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: rgba(244, 241, 236, 0.92);
  font-weight: 600;
  max-width: 60ch;
  letter-spacing: -0.005em;
}
.leaders-tri-1 {
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 360px 360px 0;
  border-color: transparent var(--orange) transparent transparent;
  opacity: 0.06;
}
@media (max-width: 880px) {
  .leaders-grid { grid-template-columns: 1fr; }
}

/* Infrastructure */
.infra { padding: 7rem var(--gutter); background: var(--bone); }
.infra-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.infra h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-top: 1rem; line-height: 1; margin-bottom: 1.5rem; }
.infra p { line-height: 1.8; color: var(--ink); margin-bottom: 1.2rem; }
.infra-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.infra-list li {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.7rem 1rem;
  background: var(--white);
  border-left: 2px solid var(--orange);
}
.infra-visual {
  position: relative;
  aspect-ratio: 5 / 4;
  background: var(--navy);
  overflow: hidden;
}
.infra-visual img { width: 100%; height: 100%; object-fit: cover; }
.infra-visual-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--navy);
  color: var(--bone);
  padding: 0.6rem 1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-left: 3px solid var(--orange);
}
@media (max-width: 880px) {
  .infra-grid { grid-template-columns: 1fr; gap: 3rem; }
  .infra-list { grid-template-columns: 1fr; }
}

/* =============================================================================
   CONTACT PAGE
   ============================================================================= */

.contact-grid {
  padding: 6rem var(--gutter);
  background: var(--bone);
}
.contact-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 5rem;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; line-height: 1; }
.contact-info > p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 50ch; }
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--white);
  padding: 2rem 1.8rem;
  border-top: 4px solid var(--orange);
}
.contact-card-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--navy); }
.contact-card .role {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.contact-card a { display: block; color: var(--ink); font-size: 0.92rem; margin-bottom: 0.4rem; transition: color 0.2s; word-break: break-word; }
.contact-card a:hover { color: var(--orange); }

.contact-side {
  background: var(--navy);
  color: var(--bone);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}
.contact-side h3 { color: var(--bone); font-size: 1.3rem; margin-bottom: 1.5rem; }
.contact-side .row {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(244,241,236,0.1);
  font-size: 0.92rem;
}
.contact-side .row:last-child { border-bottom: none; }
.contact-side .row span:first-child {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  min-width: 6rem;
  flex-shrink: 0;
}
.contact-side .row span:last-child {
  color: rgba(244, 241, 236, 0.85);
  word-break: break-word;
}
.contact-side-tri {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--orange) transparent;
  opacity: 0.1;
}
@media (max-width: 980px) {
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-block { grid-template-columns: 1fr; }
}
