/* ============================================
   UETPL — Stylesheet
   Classic & professional aesthetic
   ============================================ */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --navy: #1A2A3F;
  --navy-deep: #0F1B2D;
  --navy-soft: #2A3E5A;
  --gold: #7CBE3F;        /* brand green (was gold accent) */
  --gold-soft: #A4D26B;   /* lighter brand green */
  --gold-deep: #5BA336;   /* darker brand green for hover */
  --cream: #FAFAF7;
  --cream-deep: #F1F1EB;
  --ink: #1A1A1A;
  --body: #3A3A3A;
  --muted: #6B7280;
  --line: #E5E1D8;
  --white: #FFFFFF;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 4px;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* --- Top accent bar --- */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-soft) 50%, var(--gold) 100%);
}

/* --- Header --- */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text .name {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
}

.brand-text .tagline {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.25rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 0.7rem 1.4rem !important;
  border-radius: var(--radius);
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s ease;
}
.nav-cta:hover { background: var(--gold-soft); }
.nav-cta.active::after { display: none; }

.menu-toggle {
  display: none;
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(201, 169, 97, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
}

/* --- Trusted by strip --- */
.trusted {
  background: var(--white);
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.trusted-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 2rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.trusted-logos img {
  max-height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.trusted-logos img:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .trusted-logos { gap: 1.5rem 2.5rem; }
  .trusted-logos img { max-height: 34px; max-width: 110px; }
}

/* --- Hero (Home) --- */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,169,97,0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201,169,97,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-lede {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 32rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-emblem {
  display: grid;
  place-items: center;
  position: relative;
}

.hero-emblem svg {
  width: 100%;
  max-width: 380px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* --- Mission & Vision (About) --- */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.mv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.mv-card h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.mv-card p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.7;
}

.mv-card .mv-quote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold-soft);
  padding-left: 1.25rem;
  border-left: 2px solid var(--gold);
}

.mv-card ul {
  list-style: none;
  padding: 0;
}

.mv-card li {
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mv-card li:last-child { border-bottom: none; }

.mv-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

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

/* --- Page header (inner pages) --- */
.page-header {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 50%, rgba(201,169,97,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 50rem;
}

.page-header h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: 1rem;
}
.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.page-header p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  max-width: 38rem;
}

.breadcrumb {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.breadcrumb::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

/* --- Sections --- */
section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3.5rem;
}

.section-head h2 em {
  font-style: italic;
  color: var(--navy-soft);
  font-weight: 400;
}

.section-head p {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  color: var(--muted);
}

/* --- Intro / Two-column on Home --- */
.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.intro h2 em {
  font-style: italic;
  color: var(--navy-soft);
  font-weight: 400;
}

.intro-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.intro-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 3.5rem;
  float: left;
  line-height: 0.9;
  padding-right: 0.75rem;
  padding-top: 0.4rem;
  color: var(--navy);
  font-weight: 400;
}

/* --- Service cards --- */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2.25rem 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 37, 69, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--navy-deep);
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-number {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--serif);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

/* Detailed services (services.html) */
.service-detail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.service-detail:last-child { border-bottom: none; }

.service-detail-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}

.service-detail h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--navy-deep);
}

.service-detail p {
  font-size: 1.05rem;
  color: var(--body);
  margin-bottom: 1.25rem;
  max-width: 50rem;
}

.service-detail ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
}

.service-detail li {
  color: var(--body);
  font-size: 0.95rem;
  padding-left: 1.25rem;
  position: relative;
}

.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

/* --- Why us / Stats --- */
.why-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 0% 100%, rgba(201,169,97,0.08) 0%, transparent 50%);
}

.why-section .section-head h2 { color: var(--white); font-weight: 300; }
.why-section .section-head h2 em { color: var(--gold); }
.why-section .section-head p { color: rgba(255,255,255,0.7); }
.why-section .section-eyebrow { color: var(--gold); }

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.why-item {
  padding: 2.5rem 1.5rem 2rem 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.why-item:last-child { border-right: none; }

.why-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.why-item h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-item p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Major projects list --- */
.projects-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background 0.2s ease;
}

.project-row:hover {
  background: rgba(124, 190, 63, 0.04);
}

.project-client {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy-deep);
  font-size: 1.1rem;
}

.project-scope {
  color: var(--body);
  font-size: 0.98rem;
}

.project-meta {
  font-family: var(--sans);
  color: var(--gold-deep);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-align: right;
}

@media (max-width: 880px) {
  .project-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  .project-meta { text-align: left; }
}

/* --- CTA strip --- */
.cta-strip {
  background: var(--cream-deep);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 2rem;
  align-items: center;
}

.cta-strip h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 400;
}
.cta-strip h2 em { font-style: italic; color: var(--navy-soft); }

.cta-strip p {
  color: var(--muted);
  margin-top: 0.5rem;
}

/* --- About page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.about-image {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-image-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.about-image-overlay .year {
  font-family: var(--serif);
  font-size: 4.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-image-overlay .label {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.85);
}

.about-text h2 em { font-style: italic; color: var(--navy-soft); font-weight: 400; }

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Values grid */
.values-section { background: var(--cream); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.value-item {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
}

.value-item .value-num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}

.value-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--navy-deep);
}

.value-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Contact page --- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.contact-info h3 {
  font-family: var(--sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.contact-info .info-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-block:last-child { border-bottom: none; }

.contact-info .info-block p {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
}

.contact-info .info-block a {
  color: var(--ink);
  transition: color 0.2s ease;
}
.contact-info .info-block a:hover { color: var(--gold); }

.contact-info .small {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Form */
.contact-form {
  background: var(--cream);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy-deep);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
  font-family: var(--sans);
}

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 22rem; }

.footer-col h5 {
  font-family: var(--sans);
  color: var(--white);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-col a { color: rgba(255,255,255,0.7); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Responsive --- */
@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem var(--pad);
    gap: 1.25rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-emblem { max-width: 280px; margin: 0 auto; order: -1; }
  .hero-emblem svg { max-width: 240px; }

  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; }

  .why-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 2rem 0; }
  .why-item:last-child { border-bottom: none; }

  .service-detail { grid-template-columns: 1fr; gap: 1rem; }
  .service-detail-num { font-size: 2.5rem; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
}

/* ============================================
   ADDITIONS — WhatsApp, Map, Clients, Careers
   ============================================ */

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: var(--white);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  color: var(--white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* --- Google Map Embed --- */
.map-wrap {
  margin-top: 4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border-top: 3px solid var(--gold);
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.map-caption {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.map-caption p {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.map-caption .map-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.map-caption .map-link:hover { color: var(--navy); }

/* --- Download Profile Card --- */
.download-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--white);
  padding: 1.75rem 2rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-top: 2.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11, 37, 69, 0.08);
}

.download-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--cream-deep);
  border-radius: var(--radius);
  color: var(--navy);
  flex-shrink: 0;
}

.download-card-text {
  flex: 1;
  min-width: 0;
}

.download-card-text h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}

.download-card-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.download-card .btn {
  flex-shrink: 0;
  padding: 0.7rem 1.4rem;
  font-size: 0.78rem;
}

@media (max-width: 600px) {
  .download-card { flex-direction: column; align-items: flex-start; }
  .download-card .btn { width: 100%; text-align: center; }
}

/* --- Clients Page --- */
.client-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.client-logo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 180px;
}

.client-logo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 37, 69, 0.08);
}

.client-logo-card:hover::before { transform: scaleX(1); }

.client-logo-card .logo-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
  min-height: 80px;
}

.client-logo-card img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.client-logo-card .client-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
  letter-spacing: 0.02em;
}

.client-logo-card .client-meta {
  font-family: var(--sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
  font-weight: 500;
}

/* Case study cards */
.case-study {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.case-study::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.case-study-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.case-study-client {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.case-study h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--navy-deep);
  line-height: 1.3;
}

.case-study-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold-deep);
  white-space: nowrap;
}

.case-study p {
  color: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.case-study-meta-item {
  font-family: var(--sans);
}

.case-study-meta-item .label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.case-study-meta-item .value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--navy-deep);
  font-weight: 500;
}

/* --- Careers Page --- */
.careers-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.career-benefit {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.career-benefit .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.75rem;
}

.career-benefit h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy-deep);
}

.career-benefit p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.roles-list {
  border-top: 1px solid var(--line);
}

.role-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.2s ease;
}

.role-row:hover { background: rgba(124, 190, 63, 0.04); }

.role-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--navy-deep);
}

.role-meta {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
}

.role-apply {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  white-space: nowrap;
}

.role-apply:hover { color: var(--navy); }

@media (max-width: 700px) {
  .role-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }
}

/* Apply CTA box */
.apply-box {
  background: var(--cream-deep);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  margin-top: 4rem;
  text-align: center;
}

.apply-box h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.75rem;
  color: var(--navy-deep);
  margin-bottom: 1rem;
}
.apply-box h3 em { font-style: italic; color: var(--navy-soft); }

.apply-box p {
  color: var(--body);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}


/* ============================================
   IMAGES, FOUNDERS, SECTORS
   ============================================ */

/* --- Image utility classes --- */
.hero-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-deep);
}

.hero-image img,
.hero-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) contrast(1.05);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,190,63,0.15) 0%, transparent 50%, rgba(11,37,69,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.feature-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-image {
  width: 100%;
  aspect-ratio: 21/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 4rem;
  position: relative;
  background: var(--navy-deep);
}

.banner-image img,
.banner-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Sectors served section --- */
.sectors-section { background: var(--cream); }

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.sector-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  cursor: pointer;
}

.sector-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.65);
}

.sector-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.sector-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,37,69,0.95) 0%, rgba(11,37,69,0.2) 60%, transparent 100%);
  z-index: 1;
}

.sector-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.75rem;
  color: var(--white);
}

.sector-card-content .label {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
  display: block;
}

.sector-card-content h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.sector-card-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.5;
}

/* --- Founder Profiles --- */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(2rem, 4vw, 2.75rem);
  border-top: 3px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 37, 69, 0.08);
}

.founder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.75rem;
  border: 3px solid var(--gold);
  box-shadow: 0 10px 28px rgba(11, 37, 69, 0.15);
  background: var(--cream);
  position: relative;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-avatar.initials {
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--gold);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  letter-spacing: 0.02em;
}

.founder-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--navy-deep);
  margin-bottom: 0.3rem;
}

.founder-role {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.founder-card .bio {
  color: var(--body);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.founder-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy-soft);
  padding: 1.25rem 0 0 1.25rem;
  border-left: 2px solid var(--gold);
  line-height: 1.5;
}

/* --- Stats Ribbon --- */
.stats-ribbon {
  background: var(--navy-deep);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.stats-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(124,190,63,0.1) 0%, transparent 60%);
}

.stats-ribbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.stat-cell {
  text-align: center;
  padding: 1rem;
}

.stat-cell .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-cell .label {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
}

/* --- Two-col with image (about & content sections) --- */
.image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.image-text-grid.reverse > div:first-child { order: 2; }

@media (max-width: 880px) {
  .image-text-grid { grid-template-columns: 1fr; }
  .image-text-grid.reverse > div:first-child { order: 0; }
}

/* --- Updated about-image-overlay sit on top of real image --- */
.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,37,69,0.85) 0%, rgba(15,27,45,0.7) 100%);
  z-index: 1;
}

.about-image-overlay {
  position: relative;
  z-index: 2;
}


/* ============================================
   JUSTIFIED TEXT — prose paragraphs only
   ============================================ */

.hero-lede,
.page-header p,
.intro-body p,
.about-text p,
.service-detail p,
.case-study p,
.section-head p,
.apply-box p {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  text-justify: inter-word;
}

/* Disable justification on very narrow screens where gaps look bad */
@media (max-width: 480px) {
  .hero-lede,
  .page-header p,
  .intro-body p,
  .about-text p,
  .service-detail p,
  .case-study p,
  .section-head p,
  .apply-box p {
    text-align: left;
  }
}
