/* ============================================================
   Enchiparambil Constructions — stylesheet
   ============================================================ */

:root {
  --navy: #002561;
  --navy-dark: #00184a;
  --navy-light: #123a7d;
  --navy-tint: #eef1f8;
  --red: #e30208;
  --red-dark: #b8050a;
  --off-white: #f7f7f9;
  --white: #ffffff;
  --ink: #1a1d24;
  --gray-700: #454b57;
  --gray-500: #767d8a;
  --gray-300: #d9dce2;
  --gray-100: #eef0f3;
  --border: #e3e6ec;
  --shadow-sm: 0 2px 10px rgba(0, 20, 60, 0.06);
  --shadow-md: 0 12px 32px rgba(0, 20, 60, 0.10);
  --shadow-lg: 0 24px 60px rgba(0, 20, 60, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1200px;
  --font-head: "Poppins", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; margin: 0; color: var(--navy); font-weight: 700; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

.section-pad { padding: 96px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
}

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.section-head p {
  color: var(--gray-700);
  font-size: 17px;
}

.bg-tint { background: var(--navy-tint); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(227, 2, 8, 0.28);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(227, 2, 8, 0.36); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { height: 60px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text .name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.brand-text .sub {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-700);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--navy); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Mobile bottom tab bar ---------- */
.mobile-tabbar {
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(0, 20, 60, 0.08);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  background: none;
  border: none;
  color: var(--gray-500);
  font-family: inherit;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 4px 2px;
}
.tab-item svg { width: 22px; height: 22px; stroke: currentColor; transition: stroke 0.2s ease, color 0.2s ease; }
.tab-item.active { color: var(--navy); }
.tab-item.active:not(.tab-item-center) svg { stroke: var(--red); }

.tab-item-center { position: relative; margin-top: -30px; color: var(--navy); }
.tab-center-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border: 4px solid var(--white);
  box-shadow: 0 8px 18px rgba(227, 2, 8, 0.38);
  margin-bottom: 2px;
  transition: transform 0.2s ease;
}
.tab-center-circle svg { width: 24px; height: 24px; stroke: var(--white); }
.tab-item-center span:last-child { font-weight: 700; }
.tab-item-center:active .tab-center-circle { transform: scale(0.94); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 190px 0 140px;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(227, 2, 8, 0.18), transparent 45%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.22) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 70% at 20% 25%, black, transparent 75%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(227,2,8,0.20), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: stretch;
}

.hero-content { display: flex; flex-direction: column; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  align-self: flex-start;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }

.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #ff4b52, #ff9a6c);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero p.lead {
  font-size: 17.5px;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

/* Hero stat chips */
.hero-chips {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 48px;
}
.hero-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 132px;
}
.hero-chip .stat-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero-chip .stat-num .plus { color: #ff9a6c; }
.hero-chip .chip-label {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.62);
}

/* Hero info card (right column) */
.hero-card-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}
.hero-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hc-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.hc-logo-box {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center;
  padding: 7px;
}
.hc-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.hc-name { font-family: var(--font-head); font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.3; }
.hc-loc {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 5px;
}

.hc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.hc-stat { border-radius: 12px; padding: 14px 16px; }
.hc-stat.light { background: var(--navy-tint); }
.hc-stat.solid { background: var(--navy); }
.hc-stat .lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  color: var(--gray-500);
}
.hc-stat.solid .lbl { color: rgba(255, 255, 255, 0.6); }
.hc-stat .val { font-size: 13.5px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.hc-stat.solid .val { color: var(--white); }

.hc-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray-700);
  font-weight: 600;
}
.hc-check svg { width: 16px; height: 16px; stroke: #1f8a4c; flex: none; margin-top: 1px; }

.hero-card-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px 20px;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-card-foot:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }
.hero-card-foot .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.hero-card-foot .ic svg { width: 20px; height: 20px; stroke: var(--red); }
.hero-card-foot strong { display: block; font-size: 14px; }
.hero-card-foot .sub { display: block; font-size: 12.5px; color: rgba(255, 255, 255, 0.65); margin-top: 2px; font-weight: 400; }
.hero-card-foot .arrow { margin-left: auto; font-size: 18px; flex: none; }

.hero-mini-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-chips { margin-top: 40px; padding-top: 0; }
  .hero-card-col { margin-top: 0; }
}
@media (max-width: 640px) {
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; padding: 14px 10px; font-size: 13.5px; }
}
@media (max-width: 480px) {
  .hero-chip { min-width: 0; flex: 1 1 auto; padding: 14px 16px; }
}

.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  line-height: 0;
  z-index: 2;
}
.hero-wave svg { display: block; width: 100%; height: 56px; }
.hero-wave path { fill: var(--white); }
@media (max-width: 640px) {
  .hero-wave svg { height: 34px; }
}

/* ============================================================
   Image placeholders
   ============================================================ */
.img-placeholder {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, var(--navy-tint) 0%, #e3e9f5 100%);
  border: 1.5px dashed #b9c3da;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}
.img-placeholder .ph-inner {
  text-align: center;
  color: var(--navy-light);
  padding: 20px;
}
.img-placeholder svg { width: 40px; height: 40px; margin-bottom: 10px; opacity: 0.65; }
.img-placeholder .ph-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
}
.img-placeholder.dark {
  background: linear-gradient(135deg, #0a2f70, #08205a);
  border-color: rgba(255,255,255,0.25);
}
.img-placeholder.dark .ph-inner { color: rgba(255,255,255,0.85); }
.img-placeholder.ratio-16-9 { aspect-ratio: 16 / 9; }
.img-placeholder.ratio-4-3 { aspect-ratio: 4 / 3; }
.img-placeholder.ratio-1-1 { aspect-ratio: 1 / 1; }
.img-placeholder.ratio-3-4 { aspect-ratio: 3 / 4; }
.img-placeholder img { width: 100%; height: 100%; object-fit: cover; }

/* Real <img> that may be dropped in place of a placeholder */
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   About
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; min-width: 0; }
.about-media .about-accent {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 148px;
  height: 148px;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.about-media .about-accent .ph-inner svg { width: 26px; height: 26px; margin-bottom: 6px; }
.about-media .about-accent .ph-label { font-size: 10px; }
.about-media .badge-float {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--navy);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-width: 220px;
  z-index: 2;
}
.about-media .badge-float .num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}
.about-media .badge-float .txt {
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 2px;
}
.about-media-extra {
  display: block;
  width: 100%;
  margin-top: 56px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.about-copy { min-width: 0; }
.about-copy h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 20px; }
.about-copy p { color: var(--gray-700); margin-bottom: 16px; font-size: 16px; }
.about-copy p:last-of-type { margin-bottom: 28px; }

.about-callout {
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.about-callout p {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 4px 0 32px;
}
.feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.feature-ic svg { width: 19px; height: 19px; stroke: var(--navy); }
.feature-item h4 { font-size: 14.5px; margin-bottom: 6px; color: var(--navy); }
.feature-item p { font-size: 12.5px; color: var(--gray-500); margin: 0; }

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media .badge-float { left: 16px; bottom: -20px; padding: 14px 18px; max-width: 168px; }
  .about-media .badge-float .num { font-size: 24px; }
  .about-media .badge-float .txt { font-size: 11px; }
  .about-media .about-accent { width: 110px; height: 110px; top: -18px; right: -12px; }
}
@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Values
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.value-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-index {
  position: absolute;
  top: 28px;
  right: 32px;
  font-family: var(--font-head);
  font-size: 46px;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
}
.value-icon {
  position: relative;
  width: 62px; height: 62px;
  border-radius: 16px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 22px rgba(0, 37, 97, 0.28);
}
.value-card:nth-child(2) .value-icon { background: var(--red); box-shadow: 0 10px 22px rgba(227, 2, 8, 0.28); }
.value-icon svg { width: 30px; height: 30px; stroke: var(--white); }
.value-card h3 { position: relative; font-size: 22px; margin-bottom: 14px; }
.value-card p { position: relative; color: var(--gray-700); font-size: 15.5px; margin-bottom: 12px; }

@media (max-width: 860px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   History timeline
   ============================================================ */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 154px;
  top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--border), var(--border));
  background-image: repeating-linear-gradient(to bottom, var(--gray-300) 0 8px, transparent 8px 16px);
}
.tl-item {
  display: grid;
  grid-template-columns: 110px 40px 1fr;
  gap: 0 24px;
  margin-bottom: 48px;
  align-items: start;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-year {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy);
  text-align: right;
  padding-top: 10px;
}
.tl-dot-col { display: flex; justify-content: center; }
.tl-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 6px var(--white), 0 0 0 7px var(--border), var(--shadow-sm);
  flex: none;
}
.tl-icon svg { width: 18px; height: 18px; stroke: var(--white); }
.tl-item:nth-child(2) .tl-icon { background: var(--red); }
.tl-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tl-content:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--red);
}
.tl-content h4 { font-size: 18px; margin-bottom: 8px; }
.tl-content p { color: var(--gray-700); font-size: 15px; }

.tl-content-photo { display: flex; gap: 20px; align-items: center; }
.tl-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
}

@media (max-width: 640px) {
  .timeline::before { left: 19px; }
  .tl-item { grid-template-columns: 40px 1fr; }
  .tl-year { grid-column: 1 / -1; text-align: left; padding-top: 0; margin-bottom: 10px; }
  .tl-dot-col { justify-content: flex-start; }
  .tl-content-photo { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: stretch;
}
.team-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  min-height: 620px;
}
.team-media-top {
  flex: 1 1 50%;
  min-height: 0;
  aspect-ratio: auto;
}
.team-media-ceo {
  position: relative;
  flex: 1 1 50%;
  min-height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.team-media-ceo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.team-media-ceo-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(6, 16, 40, 0.88) 0%, rgba(6, 16, 40, 0.45) 55%, rgba(6, 16, 40, 0) 100%);
}
.team-media-ceo-caption .name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 18px; line-height: 1.25; }
.team-media-ceo-caption .role {
  display: inline-block;
  font-size: 12px;
  color: #ffb3b3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.team-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.team-fact {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-fact:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tf-ic {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-tint);
  display: flex; align-items: center; justify-content: center;
}
.tf-ic svg { width: 21px; height: 21px; stroke: var(--navy); }
.team-fact .num { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--red); line-height: 1.1; }
.team-fact .lbl { font-size: 12.5px; color: var(--gray-700); font-weight: 600; margin-top: 3px; }

.loc-list { display: grid; gap: 14px; }
.loc-list li {
  display: flex;
  gap: 14px;
  font-size: 14.5px;
  color: var(--gray-700);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.loc-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.loc-list svg { flex: none; width: 20px; height: 20px; stroke: var(--red); margin-top: 2px; }
.loc-list strong { color: var(--navy); }

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-media { min-height: 460px; }
}
@media (max-width: 480px) {
  .team-facts { grid-template-columns: 1fr; }
}

/* ============================================================
   Resources / equipment
   ============================================================ */
.equip-cat { margin-bottom: 44px; }
.equip-cat:last-of-type { margin-bottom: 0; }
.equip-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 20px;
}
.equip-cat-title::before { content: ""; width: 24px; height: 2px; background: var(--red); flex: none; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.equip-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 26px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.equip-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.equip-card:hover::before { transform: scaleX(1); }
.equip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--navy-light); }
.equip-card .ic {
  width: 48px; height: 48px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--navy-tint);
}
.equip-card .ic svg { width: 24px; height: 24px; stroke: var(--navy); }
.equip-card .ic.ic-photo {
  width: calc(100% + 40px);
  height: 120px;
  margin: -26px -20px 16px;
  border-radius: 0;
  background: none;
}
.equip-card .ic.ic-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.equip-card p { font-size: 13.5px; font-weight: 600; color: var(--navy); }

.equip-note {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  padding: 22px 30px;
  border-radius: var(--radius-sm);
}
.equip-note strong { color: #ffd7d7; }

/* ============================================================
   Projects
   ============================================================ */
.project-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.pf-btn {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--gray-700);
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13.5px;
  transition: all 0.2s ease;
}
.pf-btn:hover { border-color: var(--navy); color: var(--navy); }
.pf-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.project-card.is-clickable { cursor: pointer; }
.project-card.is-clickable:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.project-card .img-placeholder { border-radius: 0; min-height: 200px; }
.project-body { padding: 24px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.status-badge {
  align-self: flex-start;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.status-badge.completed { background: #e7f6ec; color: #1f8a4c; }
.status-badge.ongoing { background: #fff2e3; color: #b96b06; }
.status-badge.sub { background: var(--navy-tint); color: var(--navy); }
.project-body h3 { font-size: 18.5px; margin-bottom: 10px; line-height: 1.3; }
.project-meta { display: flex; flex-direction: column; gap: 6px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); }
.project-meta span { font-size: 13.5px; color: var(--gray-500); display: flex; align-items: center; gap: 8px; }
.project-meta svg { width: 15px; height: 15px; stroke: var(--red); flex: none; }

@media (max-width: 980px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .project-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Project modal
   ============================================================ */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.project-modal.open { opacity: 1; visibility: visible; }
.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 30, 0.78);
  backdrop-filter: blur(2px);
}
.project-modal-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 920px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.project-modal.open .project-modal-frame { transform: translateY(0) scale(1); }
.project-modal-dialog {
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.project-modal-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--navy-tint) 0%, #e3e9f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-modal-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-modal-media.is-placeholder .ph-inner { text-align: center; color: var(--navy-light); padding: 20px; }
.project-modal-media.is-placeholder svg { width: 40px; height: 40px; margin-bottom: 10px; opacity: 0.65; }
.project-modal-media.is-placeholder .ph-label { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.75; }
.project-modal-body { padding: 26px 30px 30px; }
.project-modal-body h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.3; }
.project-modal-body .project-meta { flex-direction: row; flex-wrap: wrap; gap: 18px; border-top: none; padding-top: 0; margin-top: 4px; }
.project-modal-count { margin-top: 16px; font-size: 12.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gray-500); }
.project-modal-close,
.project-modal-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.project-modal-close:hover,
.project-modal-nav:hover { background: var(--white); transform: scale(1.06); }
.project-modal-close svg,
.project-modal-nav svg { width: 20px; height: 20px; }
.project-modal-close { top: 16px; right: 16px; }
.project-modal-nav.prev { top: 50%; left: -22px; transform: translateY(-50%); }
.project-modal-nav.next { top: 50%; right: -22px; transform: translateY(-50%); }
.project-modal-nav.prev:hover { transform: translateY(-50%) scale(1.06); }
.project-modal-nav.next:hover { transform: translateY(-50%) scale(1.06); }

.lightbox-trigger { cursor: zoom-in; transition: filter 0.2s ease; }
.lightbox-trigger:hover { filter: brightness(1.06); }

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.image-lightbox.open { opacity: 1; visibility: visible; }
.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 30, 0.82);
  backdrop-filter: blur(2px);
}
.image-lightbox-frame {
  position: relative;
  z-index: 1;
  max-width: min(88vw, 640px);
  max-height: 88vh;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
  text-align: center;
}
.image-lightbox.open .image-lightbox-frame { transform: translateY(0) scale(1); }
.image-lightbox-frame img {
  display: block;
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  background: var(--white);
}
.image-lightbox-caption {
  margin-top: 14px;
  color: var(--white);
  font-weight: 600;
  font-size: 14.5px;
}
.image-lightbox-close {
  position: absolute;
  top: -18px; right: -18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.image-lightbox-close:hover { background: var(--white); transform: scale(1.06); }
.image-lightbox-close svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .image-lightbox-close { top: -14px; right: 0; }
}

@media (max-width: 640px) {
  .project-modal { padding: 0; }
  .project-modal-dialog { max-height: 100vh; height: 100%; border-radius: 0; }
  .project-modal-nav.prev { left: 10px; }
  .project-modal-nav.next { right: 10px; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: 56px 48px;
  min-width: 0;
}
.contact-map { min-width: 0; }
.contact-info h3 { color: var(--white); font-size: 26px; margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 15.5px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-item:first-of-type { border-top: none; }
.contact-item .ic + div { min-width: 0; }
.contact-item .ic {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
}
.contact-item .ic svg { width: 20px; height: 20px; stroke: var(--white); }
.contact-item .ic.ic-photo {
  width: 108px; height: 108px;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 3px var(--red), 0 10px 28px rgba(0,0,0,0.4);
}
.contact-item .ic.ic-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.contact-item .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); font-weight: 700; margin-bottom: 4px; }
.contact-item a, .contact-item p.val { font-size: 15px; font-weight: 600; color: var(--white); overflow-wrap: break-word; word-break: break-word; }
.contact-item a:hover { color: #ffb3b3; }

.contact-map {
  position: relative;
  min-height: 420px;
}
.contact-map .img-placeholder { border-radius: 0; height: 100%; min-height: 420px; }
.contact-map iframe { position: absolute; inset: 0; }
.map-open-link {
  position: absolute;
  right: 16px; bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.map-open-link svg { width: 16px; height: 16px; flex-shrink: 0; }
.map-open-link:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { padding: 44px 30px; }
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, var(--red) 0%, #b8050a 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.20) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 65% at 80% 25%, black, transparent 75%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.34);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.cta-icon svg { width: 26px; height: 26px; stroke: var(--white); }
.cta-band h2 { color: var(--white); font-size: clamp(24px, 3.4vw, 34px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.88); margin-bottom: 30px; font-size: 16.5px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.6); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.15); }
.cta-band .btn-white { background: var(--white); color: var(--red); }
.cta-band .btn-white:hover { background: #fff0f0; transform: translateY(-2px); }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand img { height: 44px; }
.footer-brand .name { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 17px; }
.footer-col p { font-size: 14.5px; line-height: 1.7; }
.footer-col h5 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-col .contact-line { display: flex; gap: 10px; font-size: 14.5px; margin-bottom: 10px; }
.footer-col .contact-line svg { width: 16px; height: 16px; stroke: var(--red); flex: none; margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 26px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal animation
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   Mobile nav
   ============================================================ */
@media (max-width: 980px) {
  .site-header { position: static; backdrop-filter: none; }
  .header-cta { display: none; }
  .hero { padding: 56px 0 100px; }
  body { padding-bottom: 72px; }
  .mobile-tabbar { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: calc(100vh - 72px);
    width: min(320px, 82vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 48px 32px 32px;
    gap: 26px;
    box-shadow: -12px 0 40px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 16px; }
  .nav-scrim {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 72px;
    background: rgba(0,10,30,0.45);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1040;
  }
  .nav-scrim.show { opacity: 1; pointer-events: auto; }
}

@media (max-width: 640px) {
  .site-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(238, 241, 248, 0.55));
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 28px rgba(0, 37, 97, 0.12);
    background-color: #111139;
  }
  .brand-text .name {
    text-transform: uppercase;
    font-size: 25px;
    line-height: 0.90;
    font-weight: 800;
    letter-spacing: 0.02em;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-light) 55%, var(--red) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .brand-text .sub {
    margin-top: 4px;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
}
