/* ==========================================================================
   Pranathan Constructions Ltd — site stylesheet
   Palette, type and card language carried over from the original build;
   restructured for a multi-page site with lighter motion.
   ========================================================================== */

:root {
  --blue: #005eb8;
  --cyan: #0891b2;
  --navy: #0f172a;
  --amber: #c2601a;
  --success: #15803d;
  --danger: #b91c1c;

  --bg-page: #f9fafb;
  --glass-bg: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(148, 163, 184, 0.35);
  --text-main: #0f172a;
  --text-muted: #62748e;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 50px rgba(15, 23, 42, 0.10);
  --shadow-lift: 0 26px 60px rgba(15, 23, 42, 0.16);
  --transition-fast: 160ms ease-out;
  --transition-med: 260ms ease-out;
  --max-width: 1200px;
  --font-display: 'Fraunces', 'Outfit', system-ui, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, #e8f2ff 0, #f9fafb 42%, #f9fafb 100%);
  color: var(--text-main);
  overflow-x: hidden;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) { body { font-size: 15.5px; } }
@media (max-width: 480px) { body { font-size: 15px; } }

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; }

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
  top: 0;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Background canvas + wash (home hero only, see main.js) */
#bg-canvas { position: fixed; inset: 0; z-index: -2; }
.bg-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(0, 94, 184, 0.07), transparent 55%),
              radial-gradient(circle at 90% 100%, rgba(8, 145, 178, 0.07), transparent 55%);
  z-index: -1;
  pointer-events: none;
}

/* Subtle film-grain texture — breaks up flat digital gradients for a tactile, premium feel */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain-overlay { opacity: 0.02; } }

/* ==========================================================================
   Layout shell
   ========================================================================== */

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 132px 20px 90px;
}
@media (max-width: 720px) {
  .page-shell { padding: 116px 18px 100px; }
}

section { margin-bottom: 96px; }
section:last-child { margin-bottom: 0; }

.section-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 46rem;
}
.section-header.center { margin-inline: auto; text-align: center; align-items: center; }

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  font-weight: 700;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  color: var(--navy);
  line-height: 1.16;
  letter-spacing: -0.005em;
}
.section-sub {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.page-intro {
  max-width: 46rem;
  margin-bottom: 40px;
}
.page-intro .eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.page-intro h1 {
  font-family: var(--font-display);
  font-weight: 540;
  font-size: clamp(2.3rem, 4.6vw, 3.2rem);
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.page-intro p { color: var(--text-muted); font-size: 1rem; line-height: 1.65; }

/* ==========================================================================
   Glass card
   ========================================================================== */

.glass {
  background: var(--glass-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
}

.card-hover {
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 480ms cubic-bezier(0.16, 1, 0.3, 1);
  transform: perspective(900px) rotateX(0) rotateY(0) translateY(0) scale(1);
}
.card-hover:hover {
  transform: perspective(900px) rotateX(2deg) rotateY(-2deg) translateY(-6px) scale(1.012);
  box-shadow: var(--shadow-lift), 0 0 34px rgba(8, 145, 178, 0.18);
}

/* Reserved for the one signature moment: the hero card only */
.tilt {
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease-out;
  will-change: transform;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), opacity var(--transition-fast);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .btn { width: 100%; }
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 94, 184, 0.32);
  position: relative;
  z-index: 0;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  filter: blur(16px);
  opacity: 0.45;
  transition: opacity var(--transition-med);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 18px 42px rgba(0, 94, 184, 0.42); }
.btn-primary:hover::after { opacity: 0.8; }
.btn-primary:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  border: 1px solid rgba(148, 163, 184, 0.6);
}
.btn-outline:hover { background: #e8f2ff; color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid rgba(148, 163, 184, 0.5); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.9); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
}
.header-glass {
  background: rgba(248, 250, 252, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  padding: 9px 10px 9px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 720px) {
  .header-inner { padding-inline: 12px; }
  .header-glass { padding: 8px 8px 8px 12px; }
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.logo-img-wrap {
  width: 42px; height: 42px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  font-size: clamp(0.68rem, 1.6vw, 0.8rem);
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.logo-sub {
  font-size: clamp(0.62rem, 1.4vw, 0.72rem);
  color: var(--text-muted);
  white-space: nowrap;
}

nav.primary-nav { display: flex; align-items: center; gap: 6px; font-size: 0.9rem; }
nav.primary-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color var(--transition-fast), background var(--transition-fast);
}
nav.primary-nav a:hover { color: var(--navy); background: rgba(15, 23, 42, 0.05); }
nav.primary-nav a.active { color: var(--navy); background: rgba(0, 94, 184, 0.1); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 6px; }
.nav-enquire { padding-inline: 1.2rem; padding-block: 0.55rem; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.25rem;
  color: var(--navy);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 10px;
}
.nav-toggle:hover { background: rgba(15, 23, 42, 0.06); }

@media (max-width: 900px) {
  nav.primary-nav { display: none; }
  .nav-toggle { display: inline-flex; }
}

.nav-mobile {
  display: none;
  position: absolute;
  top: 66px; left: 0; right: 0;
  padding: 10px 20px 0;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner {
  background: rgba(248, 250, 252, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-inner a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 600;
  padding: 11px 12px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-mobile-inner a span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; }
.nav-mobile-inner a:hover, .nav-mobile-inner a.active { background: #e8f2ff; }
.nav-mobile-inner .nav-mobile-enquire {
  margin-top: 6px;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}

/* ==========================================================================
   Hero (home page)
   ========================================================================== */

main { position: relative; z-index: 1; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  margin-bottom: 84px;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr); gap: 34px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: radial-gradient(circle, var(--cyan), var(--blue));
  box-shadow: 0 0 0 4px rgba(8, 145, 178, 0.22);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(2.6rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  background: linear-gradient(120deg, var(--navy), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 22px;
}
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; font-size: 0.8rem; }
.hero-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
  font-weight: 600;
}
.hero-meta i { color: var(--cyan); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero-footnote { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero-footnote i { color: var(--cyan); }

.hero-visual { position: relative; }
.hero-card { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.hero-ribbon {
  position: absolute;
  top: -14px; right: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.88));
  color: #dbeeff;
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.4);
  z-index: 2;
}
.hero-ribbon i { color: var(--cyan); }
@media (max-width: 900px) { .hero-ribbon { top: 12px; right: 12px; } }

.hero-stats { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; }
.hero-photo {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  margin-bottom: 14px;
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,23,42,0) 55%, rgba(15,23,42,0.35));
}

/* Reusable full-width banner photo for inner pages */
.page-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21/9;
  margin-bottom: 40px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.page-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-photo-caption {
  position: absolute;
  left: 20px; bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-photo-caption i { color: #7dd3fc; }
@media (max-width: 720px) { .page-photo { aspect-ratio: 4/3; } }
.hero-stat {
  flex: 1 1 130px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.hero-stat-label { color: var(--text-muted); margin-bottom: 3px; }
.hero-stat-value { font-family: 'Outfit', system-ui, sans-serif; font-weight: 600; color: var(--navy); font-size: 0.94rem; }

/* ==========================================================================
   Photo placeholder — stands in for real project / site photography
   ========================================================================== */

.photo-ph {
  aspect-ratio: var(--ph-ratio, 16/10);
  border-radius: var(--radius-md);
  background:
    repeating-linear-gradient(135deg, rgba(0,94,184,0.07) 0 12px, rgba(8,145,178,0.07) 12px 24px),
    linear-gradient(135deg, #e8f2ff, #dbeafe);
  border: 1.5px dashed rgba(0, 94, 184, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  color: var(--blue);
}
.photo-ph i { font-size: 1.6rem; opacity: 0.75; }
.photo-ph span { font-size: 0.82rem; font-weight: 600; color: #1e4f8a; }
.photo-ph small { display: block; font-weight: 500; color: var(--text-muted); margin-top: 2px; }

/* ==========================================================================
   Grids (auto-fit — one system reused for services, values, protocols…)
   ========================================================================== */

.auto-grid { display: grid; gap: 20px; }
.auto-grid--3 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.auto-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

.info-card { padding: 22px; }
.info-card .card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,94,184,0.12), rgba(8,145,178,0.12));
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
  transition: box-shadow var(--transition-med), transform var(--transition-med);
}
.info-card.card-hover:hover .card-icon,
.trust-card:hover i {
  box-shadow: 0 0 0 8px rgba(8, 145, 178, 0.1), 0 0 24px rgba(8, 145, 178, 0.35);
}
.info-card h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.info-card ul { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.info-card li {
  font-size: 0.86rem; color: var(--text-muted);
  padding-left: 20px; position: relative; line-height: 1.5;
}
.info-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 2px;
  color: var(--cyan); font-size: 0.72rem;
}

/* Identity split (two-column text + stat rail) */
.identity-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 22px; }
@media (max-width: 900px) { .identity-grid { grid-template-columns: 1fr; } }
.identity-text { padding: 22px 24px; font-size: 0.94rem; color: var(--text-muted); line-height: 1.75; }
.identity-text p + p { margin-top: 14px; }
.identity-stats { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.identity-stat-row {
  padding: 12px 14px; border-radius: 14px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
}
.identity-stat-label { font-size: 0.74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.identity-stat-value { font-family: 'Outfit', system-ui, sans-serif; font-size: 1rem; color: var(--navy); display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.identity-stat-value i { color: var(--cyan); }
.identity-footnote { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   Trust strip / "what to expect" cards
   ========================================================================== */

.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.trust-card {
  padding: 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.trust-card i { font-size: 1.3rem; color: var(--cyan); }
.trust-card h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: 0.98rem; color: var(--navy); }
.trust-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.5; }

/* ==========================================================================
   Process steps
   ========================================================================== */

.process-list { display: flex; flex-direction: column; gap: 0; }
.process-step { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; }
.process-step + .process-step { border-top: 1px solid rgba(148, 163, 184, 0.3); }
.process-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-family: 'Outfit', system-ui, sans-serif; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
}
.process-step h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ==========================================================================
   Case study / project cards
   ========================================================================== */

.case-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 22px; }
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }
.case-main, .case-side { padding: 22px 24px; }
.case-title { font-family: var(--font-display); font-weight: 540; font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; letter-spacing: -0.005em; }
.case-meta { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; }
.case-list { display: flex; flex-direction: column; gap: 10px; }
.case-list li { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; padding-left: 22px; position: relative; }
.case-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900;
  position: absolute; left: 0; top: 2px; color: var(--cyan); font-size: 0.72rem;
}
.case-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(0, 94, 184, 0.1); color: var(--blue);
  font-size: 0.78rem; font-weight: 700; margin-bottom: 14px;
}
.case-side p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.case-side p:last-child { margin-bottom: 0; }

.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.project-card { padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.project-card h3 { font-family: 'Outfit', system-ui, sans-serif; font-size: 1rem; color: var(--navy); }
.project-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.project-card--add {
  border-style: dashed;
  border-color: rgba(0, 94, 184, 0.35);
  background: rgba(255, 255, 255, 0.5);
  align-items: center;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   Leadership / social
   ========================================================================== */

.lead-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 22px; }
@media (max-width: 900px) { .lead-grid { grid-template-columns: 1fr; } }
.lead-card, .social-card { padding: 22px 24px; }
.lead-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.lead-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff; font-family: 'Outfit', system-ui, sans-serif; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  flex-shrink: 0;
}
.lead-name { font-family: 'Outfit', system-ui, sans-serif; font-size: 1rem; color: var(--navy); }
.lead-role { font-size: 0.82rem; color: var(--text-muted); }
.lead-quote { font-family: var(--font-display); font-size: 1.2rem; font-weight: 440; color: var(--navy); font-style: italic; line-height: 1.5; margin-bottom: 14px; }
.lead-footnote { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }
.social-note { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.social-buttons { display: flex; gap: 10px; margin-bottom: 16px; }
.social-btn {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 94, 184, 0.08); color: var(--blue);
  border: 1px solid rgba(148, 163, 184, 0.4);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.social-btn:hover { background: var(--blue); color: #fff; }

/* ==========================================================================
   Governance accordion
   ========================================================================== */

.gov-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 22px; }
@media (max-width: 900px) { .gov-grid { grid-template-columns: 1fr; } }
.gov-accordion { padding: 8px 18px; }
.gov-accordion details { border-bottom: 1px solid rgba(148, 163, 184, 0.3); padding: 14px 0; }
.gov-accordion details:last-of-type { border-bottom: none; }
.gov-accordion summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; list-style: none; gap: 12px;
}
.gov-accordion summary::-webkit-details-marker { display: none; }
.summary-label { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); font-size: 0.94rem; }
.summary-icon {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: rgba(0, 94, 184, 0.1); color: var(--blue);
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}
.gov-accordion summary > i:last-child { color: var(--text-muted); transition: transform var(--transition-fast); }
.gov-accordion details[open] summary > i:last-child { transform: rotate(180deg); }
.gov-accordion details p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-top: 10px; padding-left: 46px; }
.gov-side { padding: 22px 24px; }
.gov-side p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.gov-side ul { display: flex; flex-direction: column; gap: 8px; }
.gov-side li { font-size: 0.86rem; color: var(--text-muted); padding-left: 20px; position: relative; line-height: 1.5; }
.gov-side li::before { content: "—"; position: absolute; left: 0; color: var(--cyan); }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy), #163a63 55%, var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { font-family: var(--font-display); font-weight: 540; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 8px; letter-spacing: -0.005em; }
.cta-banner p { color: rgba(255, 255, 255, 0.78); font-size: 0.94rem; max-width: 34rem; }
.cta-banner .btn-primary { box-shadow: 0 14px 34px rgba(0,0,0,0.28); }
.cta-banner .btn-outline { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-banner .btn-outline:hover { background: rgba(255,255,255,0.22); }

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 22px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 22px 24px; }
.contact-row { padding: 12px 0; border-bottom: 1px solid rgba(148, 163, 184, 0.25); }
.contact-row:last-of-type { border-bottom: none; }
.contact-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 3px; }
.contact-value { font-size: 0.98rem; color: var(--navy); font-weight: 600; }
.contact-value a { text-decoration: none; color: inherit; }
.contact-value a:hover { text-decoration: underline; }
.map-wrap { border-radius: var(--radius-md); overflow: hidden; margin-top: 16px; border: 1px solid rgba(148,163,184,0.4); }
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field-hint { font-size: 0.76rem; color: var(--text-muted); margin-top: 4px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.55);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text-main);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 94, 184, 0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field-required { color: var(--amber); }

/* Honeypot — hidden from real visitors, left for bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; overflow: hidden; }

.form-status {
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
  gap: 8px;
  align-items: flex-start;
}
.form-status.show { display: flex; }
.form-status.success { background: rgba(21, 128, 61, 0.1); color: var(--success); }
.form-status.error { background: rgba(185, 28, 28, 0.1); color: var(--danger); }
.form-status i { margin-top: 2px; }

/* ==========================================================================
   Footer + mobile command bar
   ========================================================================== */

footer.site-footer {
  margin-top: 70px;
  padding-top: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 28px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } }
.footer-brand .logo-block { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 26rem; }
.footer-col h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--navy); margin-bottom: 12px;
}
.footer-col a {
  display: block; text-decoration: none; color: var(--text-muted);
  font-size: 0.88rem; padding: 4px 0; transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  justify-content: space-between; align-items: center;
  padding: 18px 0 90px;
  font-size: 0.78rem; color: var(--text-muted);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}
@media (min-width: 720px) { .footer-bottom { padding-bottom: 24px; } }
.footer-bottom span { display: inline-flex; align-items: center; gap: 6px; }

.command-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 39;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 250, 252, 0.96);
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
}
@media (max-width: 720px) { .command-bar { display: block; } }
.command-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; max-width: var(--max-width); margin: 0 auto; }
.command-label strong { display: block; font-size: 0.82rem; color: var(--navy); }
.command-label span { font-size: 0.72rem; color: var(--text-muted); }
.command-actions { display: flex; gap: 8px; flex-shrink: 0; }
.command-btn {
  border: none; border-radius: 999px; padding: 9px 14px;
  font-size: 0.78rem; font-weight: 700; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none;
}
.command-call { background: var(--navy); color: #fff; }
.command-email { background: linear-gradient(135deg, var(--blue), var(--cyan)); color: #fff; }

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
