:root {
  --navy-950: #08111b;
  --navy-900: #0b1826;
  --navy-850: #0f2234;
  --navy-800: #12283c;
  --navy-700: #183753;
  --orange-500: #c76a3c;
  --orange-400: #db8457;
  --slate-700: #425264;
  --slate-500: #677788;
  --slate-300: #d4dde6;
  --surface: #ffffff;
  --surface-strong: #fcfaf6;
  --surface-soft: #f3f6f8;
  --surface-alt: #f5f1e9;
  --text: #1f2d3a;
  --muted: #607180;
  --line: rgba(18, 40, 60, 0.1);
  --line-strong: rgba(18, 40, 60, 0.16);
  --shadow: 0 18px 48px rgba(8, 17, 27, 0.08);
  --shadow-soft: 0 10px 28px rgba(8, 17, 27, 0.05);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1360px, calc(100% - clamp(1.8rem, 4vw, 4rem)));
  --container-hero: min(1480px, calc(100% - clamp(1.8rem, 4vw, 4.8rem)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Aptos", "Bahnschrift", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(24, 55, 83, 0.05), transparent 22%),
    linear-gradient(180deg, #fbf9f5 0%, #eef2f4 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdfe;
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #97a5b3;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(24, 55, 83, 0.35);
  box-shadow: 0 0 0 4px rgba(24, 55, 83, 0.08);
  background: #ffffff;
}

textarea {
  resize: vertical;
  min-height: 10rem;
}

:focus-visible {
  outline: 2px solid rgba(24, 55, 83, 0.28);
  outline-offset: 3px;
}

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

.hero-home .container,
.page-hero .container {
  width: var(--container-hero);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 17, 27, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav actions";
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0;
}

.brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.58rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f2ea 100%);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.brand-logo {
  width: clamp(124px, 10vw, 156px);
  height: auto;
}

.brand-labels {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.brand-labels strong {
  color: #eef3f7;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-labels span {
  color: rgba(238, 243, 247, 0.68);
  font-size: 0.82rem;
  max-width: 28ch;
}

.site-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.62rem 0.78rem;
  border-radius: 999px;
  color: rgba(238, 243, 247, 0.76);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.topbar-actions,
.action-row,
.cta-row,
.quick-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.topbar-actions {
  grid-area: actions;
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 14px 28px rgba(199, 106, 60, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, #ce7448, #e18d62);
}

.button-outline {
  color: #eef3f7;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-soft {
  color: var(--text);
  border-color: rgba(18, 40, 60, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.button-soft:hover {
  border-color: rgba(18, 40, 60, 0.2);
}

.hero-home,
.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(6rem, 8vw, 8rem) 0 clamp(5.4rem, 7vw, 6.8rem);
  color: #eef3f7;
  background:
    radial-gradient(circle at 10% 18%, rgba(123, 150, 176, 0.2), transparent 22%),
    radial-gradient(circle at 88% 22%, rgba(199, 106, 60, 0.15), transparent 18%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(135deg, rgba(15, 34, 52, 0.99), rgba(8, 17, 27, 0.98));
  background-size:
    auto,
    auto,
    118px 118px,
    118px 118px,
    auto;
}

.hero-home::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 6% 52%, rgba(255, 255, 255, 0.05), transparent 28%),
    radial-gradient(circle at 96% 34%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(90deg, rgba(8, 17, 27, 0.38), rgba(8, 17, 27, 0.08) 28%, rgba(8, 17, 27, 0.06) 74%, rgba(8, 17, 27, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 40%);
  pointer-events: none;
}

.hero-home::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -38% auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 106, 60, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(540px, 0.92fr);
  gap: clamp(2.4rem, 4vw, 4.8rem);
  align-items: center;
}

.hero-grid {
  position: relative;
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: -2.2rem -3vw -2.8rem 34%;
  z-index: 0;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 132px 132px;
  mask-image: linear-gradient(90deg, transparent 0, #000000 16%, #000000 92%, transparent 100%);
  pointer-events: none;
}

.split-grid,
.contact-layout,
.quality-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2.2rem;
  align-items: center;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

.hero-home .hero-copy {
  max-width: 46rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(18, 40, 60, 0.68);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-home .eyebrow,
.page-hero .eyebrow,
.cta-band .eyebrow {
  color: rgba(238, 243, 247, 0.82);
}

.eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--orange-500), rgba(18, 40, 60, 0.16));
}

.hero-home .eyebrow::before,
.page-hero .eyebrow::before,
.cta-band .eyebrow::before {
  background: linear-gradient(90deg, var(--orange-500), rgba(255, 255, 255, 0.26));
}

.hero-copy h1,
.page-hero-copy h1,
.section-head h2,
.cta-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy h1 {
  font-size: clamp(3.15rem, 5vw, 5.6rem);
  max-width: 10.2ch;
}

.page-hero-copy h1 {
  font-size: clamp(2.9rem, 4.3vw, 4.65rem);
  max-width: 10ch;
}

.hero-copy p,
.page-hero-copy p,
.section-head p,
.card p,
.text-card p,
.team-card p,
.gallery-card p,
.quality-card p,
.checklist li,
.footer-copy,
.contact-card p,
.contact-card li {
  margin: 0;
  line-height: 1.72;
}

.hero-copy p,
.page-hero-copy p {
  color: rgba(238, 243, 247, 0.78);
  max-width: 54ch;
  font-size: clamp(1rem, 1vw, 1.08rem);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 0.62rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(238, 243, 247, 0.86);
  font-size: 0.88rem;
}

.hero-media,
.page-hero-media {
  position: relative;
  z-index: 1;
  min-height: clamp(460px, 42vw, 620px);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.18);
  background: #0c1723;
}

.hero-home .hero-media {
  transform: translateX(clamp(0px, 1.6vw, 26px));
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  pointer-events: none;
}

.media-rotator {
  position: relative;
}

.media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.7s ease, transform 5.2s ease;
}

.media-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.media-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 27, 0.08), transparent 34%),
    linear-gradient(180deg, transparent 42%, rgba(8, 17, 27, 0.8) 100%);
}

.media-slide-copy {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 4.6rem;
  z-index: 1;
  display: grid;
  gap: 0.32rem;
  max-width: 20rem;
}

.media-slide-copy span {
  color: rgba(238, 243, 247, 0.76);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-slide-copy strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.hero-home .media-slide-copy {
  left: auto;
  top: 1.8rem;
  right: 1.8rem;
  bottom: auto;
  max-width: 15.5rem;
  text-align: right;
}

.hero-home .media-slide-copy span {
  justify-self: end;
}

.hero-home .media-slide-copy strong {
  font-size: 1.32rem;
  line-height: 1.06;
}

.page-hero .media-slide-copy {
  left: auto;
  right: 1.45rem;
  bottom: 1.7rem;
  max-width: 15rem;
  text-align: right;
}

.page-hero .media-slide-copy span {
  justify-self: end;
}

.page-hero .media-slide-copy strong {
  font-size: 1.45rem;
}

.media-indicators {
  position: absolute;
  left: 1.35rem;
  bottom: 1.35rem;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
}

.media-indicator {
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.media-indicator.is-active,
.media-indicator:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.08);
}

.hero-badge {
  position: absolute;
  left: 1.35rem;
  bottom: 3.2rem;
  max-width: 19rem;
  padding: 1.15rem 1.15rem 1.1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 17, 27, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.hero-badge strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.hero-badge span {
  color: rgba(238, 243, 247, 0.76);
  line-height: 1.6;
}

.hero-home .hero-badge {
  left: 1.6rem;
  bottom: 1.6rem;
  max-width: 18rem;
}

.hero-home .media-indicators {
  left: 1.6rem;
  bottom: 1.2rem;
}

.section {
  padding: 5.8rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(245, 241, 233, 0.74) 0%, rgba(255, 255, 255, 0.56) 100%);
}

.section-contrast {
  background:
    radial-gradient(circle at top right, rgba(199, 106, 60, 0.14), transparent 28%),
    linear-gradient(180deg, #0c1622 0%, #08111b 100%);
  color: #eef3f7;
}

.section-contrast .eyebrow {
  color: rgba(238, 243, 247, 0.82);
}

.section-contrast .eyebrow::before {
  background: linear-gradient(90deg, var(--orange-500), rgba(255, 255, 255, 0.26));
}

.section-contrast .section-head h2 {
  color: #ffffff;
}

.section-contrast .section-head p {
  color: rgba(238, 243, 247, 0.72);
}

.metrics-band {
  position: relative;
  margin-top: -2.2rem;
  z-index: 3;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card {
  padding: 1.35rem 1.4rem 1.3rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 40, 60, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.metric-card strong {
  display: block;
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.metric-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--slate-700);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.metric-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-head {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  color: var(--navy-800);
}

.section-head p {
  color: var(--muted);
  max-width: 60ch;
}

.grid-2,
.grid-3,
.grid-4,
.capability-grid,
.service-grid,
.sector-grid,
.gallery-grid,
.team-grid,
.why-grid,
.steps-grid,
.quality-grid {
  display: grid;
  gap: 1.35rem;
}

.quality-stack {
  display: grid;
  gap: 1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.capability-grid,
.gallery-grid,
.team-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.service-grid,
.why-grid,
.steps-grid,
.quality-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.text-card,
.service-card,
.sector-card,
.gallery-card,
.team-card,
.quality-card,
.contact-card,
.contact-form,
.cta-band,
.process-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 40, 60, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card,
.text-card,
.service-card,
.sector-card,
.quality-card,
.contact-card,
.process-card {
  padding: 1.7rem;
}

.card:hover,
.text-card:hover,
.service-card:hover,
.sector-card:hover,
.gallery-card:hover,
.team-card:hover,
.quality-card:hover,
.contact-card:hover,
.process-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.card h3,
.text-card h3,
.service-card h3,
.sector-card h3,
.gallery-card h3,
.team-card h3,
.quality-card h3,
.contact-card h3,
.process-card h3 {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--navy-800);
}

.card p,
.text-card p,
.service-card p,
.sector-card p,
.gallery-card p,
.team-card p,
.quality-card p,
.contact-card p,
.process-card p {
  color: var(--muted);
}

.service-card,
.sector-card,
.quality-card {
  position: relative;
  overflow: hidden;
  border-top: 3px solid rgba(199, 106, 60, 0.34);
}

.service-card::after,
.sector-card::after,
.quality-card::after {
  display: none;
}

.icon-badge,
.number-badge,
.role-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  font-weight: 700;
}

.icon-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--navy-850), var(--navy-700));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(18, 40, 60, 0.12);
  border-radius: 18px;
}

.icon-badge svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.number-badge {
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  background: rgba(199, 106, 60, 0.1);
  color: var(--orange-500);
}

.role-badge {
  padding: 0.45rem 0.72rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(18, 40, 60, 0.06);
  color: var(--navy-800);
}

.tag-row,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.tag-row span,
.mini-tags span {
  padding: 0.48rem 0.74rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 40, 60, 0.08);
  background: #fbfaf7;
  color: var(--slate-700);
  font-size: 0.86rem;
  font-weight: 600;
}

.focus-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.1rem;
}

.focus-item {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(18, 40, 60, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.focus-item strong {
  color: var(--navy-800);
  font-size: 1rem;
}

.focus-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.capability-panel {
  position: relative;
  display: block;
  min-height: 30rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b1826;
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.22);
}

.capability-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.capability-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 17, 27, 0.04), transparent 30%),
    linear-gradient(180deg, rgba(8, 17, 27, 0.12), rgba(8, 17, 27, 0.84) 100%);
}

.capability-panel:hover img {
  transform: scale(1.06);
}

.capability-panel-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.55rem;
  color: #ffffff;
}

.capability-panel-copy strong {
  display: block;
  max-width: 7ch;
  margin-bottom: 1rem;
  color: #ffffff;
  font-family: "Bahnschrift", "Aptos", sans-serif;
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.capability-panel-copy h3 {
  margin: 0 0 0.65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.capability-panel-copy p {
  margin: 0;
  max-width: 25ch;
  color: rgba(238, 243, 247, 0.78);
  line-height: 1.7;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
  background: var(--surface-strong);
}

.gallery-card img,
.team-card img {
  width: 100%;
  object-fit: cover;
}

.gallery-card img {
  aspect-ratio: 16 / 11;
}

.gallery-copy {
  padding: 1.25rem 1.25rem 1.4rem;
}

.team-card {
  overflow: hidden;
  padding: 0;
  background: var(--surface-strong);
}

.team-card img {
  aspect-ratio: 4 / 5;
}

.team-copy {
  padding: 1.35rem 1.35rem 1.5rem;
}

.checklist {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--orange-500);
}

.process-card ol {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.process-card li::marker {
  color: var(--navy-700);
  font-weight: 700;
}

.cta-band {
  padding: 2rem;
  color: #eef3f7;
  background:
    linear-gradient(135deg, rgba(15, 34, 52, 0.99), rgba(8, 17, 27, 0.98)),
    var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #ffffff;
}

.cta-band p {
  margin: 0;
  color: rgba(238, 243, 247, 0.8);
  line-height: 1.72;
  max-width: 54ch;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.55rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  color: var(--slate-700);
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.contact-card strong {
  color: var(--navy-800);
}

.contact-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.contact-card li::marker {
  color: var(--orange-500);
}

.contact-note {
  background: linear-gradient(180deg, rgba(212, 76, 47, 0.08), #ffffff);
}

.upload-field {
  position: relative;
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem;
  border: 1px dashed rgba(18, 40, 60, 0.22);
  border-radius: 18px;
  background: var(--surface-strong);
  cursor: pointer;
}

.upload-field:hover {
  border-color: rgba(199, 106, 60, 0.44);
}

.upload-native {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-copy {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  text-align: center;
}

.upload-copy strong {
  color: var(--navy-800);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.upload-copy span {
  color: var(--muted);
  line-height: 1.55;
}

.upload-copy svg,
.footer-utility-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inline-note {
  margin: 0;
  color: #94a1ad;
  font-size: 0.82rem;
}

.form-mode-note {
  display: grid;
  gap: 0.7rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  border: 1px solid rgba(18, 40, 60, 0.1);
  background: linear-gradient(180deg, rgba(18, 40, 60, 0.03), rgba(255, 255, 255, 0.96));
}

.form-mode-note strong {
  color: var(--navy-800);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-mode-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.form-action-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-action-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(18, 40, 60, 0.14);
  color: var(--navy-800);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.form-action-link:hover {
  border-color: rgba(18, 40, 60, 0.24);
  background: #ffffff;
}

.job-grid,
.ethics-grid,
.report-grid {
  display: grid;
  gap: 1.35rem;
}

.job-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ethics-grid,
.report-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.job-card {
  display: grid;
  gap: 1rem;
  padding: 1.65rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 40, 60, 0.08);
  border-top: 3px solid rgba(199, 106, 60, 0.34);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.job-card h3,
.ethics-card h3,
.report-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--navy-800);
}

.job-card p,
.ethics-card p,
.report-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.job-meta {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.job-meta span {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  background: rgba(18, 40, 60, 0.06);
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.job-list,
.report-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.68;
}

.job-list li::marker,
.report-list li::marker {
  color: var(--orange-500);
}

.job-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.ethics-card,
.report-card,
.career-form-panel {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 40, 60, 0.08);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-soft);
}

.ethics-card,
.report-card {
  display: grid;
  gap: 0.9rem;
}

.form-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(88, 175, 123, 0.2);
  color: #2b6b42;
  background: rgba(112, 201, 147, 0.14);
}

.form-status[data-state="info"] {
  border-color: rgba(24, 55, 83, 0.16);
  color: var(--navy-800);
  background: rgba(24, 55, 83, 0.08);
}

.form-status[data-state="warning"] {
  border-color: rgba(199, 106, 60, 0.22);
  color: #7d3e1d;
  background: rgba(199, 106, 60, 0.12);
}

.site-footer {
  margin-top: 4.2rem;
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #0b1826 0%, #08111b 100%);
  color: #eef3f7;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand-panel {
  padding-right: 1rem;
}

.footer-brand-lockup {
  display: grid;
  gap: 1rem;
}

.footer-brand-mark {
  width: fit-content;
}

.footer-brand-logo {
  width: 148px;
}

.footer-brand-panel strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.footer-office-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-office {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-office:first-child {
  padding-left: 0;
  border-left: 0;
}

.footer-office h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-office p,
.footer-office a {
  margin: 0;
  color: rgba(238, 243, 247, 0.76);
  line-height: 1.7;
}

.footer-office a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin-top: 2.3rem;
  padding-top: 1.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-utility {
  display: flex;
  gap: 0.9rem;
  align-items: stretch;
  flex-wrap: wrap;
}

.footer-utility-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 220px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.footer-utility-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.footer-utility-link strong,
.footer-utility-link small {
  display: block;
}

.footer-utility-link strong {
  color: #ffffff;
  font-size: 0.96rem;
}

.footer-utility-link small {
  margin-top: 0.14rem;
  color: rgba(238, 243, 247, 0.66);
  font-size: 0.76rem;
  line-height: 1.45;
}

.footer-utility-icon,
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.footer-utility-icon {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.footer-social {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.08);
}

.floating-contact {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #1f8f5a, #34b072);
  box-shadow: 0 16px 30px rgba(30, 118, 76, 0.28);
}

.floating-contact:hover {
  transform: translateY(-1px);
}

.footer-copy {
  color: rgba(238, 243, 247, 0.76);
}

@media (min-width: 1600px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(620px, 0.88fr);
  }

  .hero-copy h1 {
    max-width: 10.8ch;
  }
}

@media (max-width: 1200px) {
  .hero-home .container,
  .page-hero .container {
    width: min(100% - 2rem, 100%);
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-layout,
  .quality-columns,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .job-grid,
  .ethics-grid,
  .report-grid,
  .metrics-grid,
  .capability-grid,
  .service-grid,
  .why-grid,
  .steps-grid,
  .quality-grid,
  .gallery-grid,
  .team-grid,
  .sector-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero-grid::after {
    content: none;
  }

  .hero-home .hero-media {
    transform: none;
  }

  .footer-office-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-office {
    padding: 0 0 0 1rem;
  }

  .footer-office:first-child {
    padding-left: 0;
  }
}

@media (max-width: 900px) {
  .hero-home .container,
  .page-hero .container {
    width: min(100% - 1.6rem, 100%);
  }

  .topbar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav";
    gap: 0.8rem;
  }

  .topbar-actions {
    display: none;
  }

  .site-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .hero-home,
  .page-hero,
  .section {
    padding: 4rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
    max-width: 9.2ch;
  }

  .page-hero-copy h1,
  .section-head h2,
  .cta-band h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-media,
  .page-hero-media {
    min-height: 300px;
  }

  .job-grid,
  .ethics-grid,
  .report-grid,
  .metrics-grid,
  .form-row,
  .grid-2,
  .capability-grid,
  .service-grid,
  .why-grid,
  .steps-grid,
  .quality-grid,
  .gallery-grid,
  .team-grid,
  .sector-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 1.2rem, 100%);
  }

  .hero-home .container,
  .page-hero .container {
    width: min(100% - 1.2rem, 100%);
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-mark {
    padding: 0.35rem 0.45rem;
  }

  .brand-logo {
    width: 96px;
  }

  .brand-labels strong {
    font-size: 0.84rem;
  }

  .brand-labels span {
    font-size: 0.76rem;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    font-size: 0.82rem;
  }

  .floating-contact {
    right: 0.8rem;
    left: 0.8rem;
    bottom: 0.8rem;
  }

  .hero-home,
  .page-hero,
  .section {
    padding: 3.4rem 0;
  }

  .eyebrow {
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .eyebrow::before {
    width: 2rem;
  }

  .action-row,
  .cta-row,
  .quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .hero-home .hero-badge {
    left: auto;
    bottom: auto;
  }

  .media-slide-copy {
    right: 1rem;
    bottom: 4.2rem;
    left: 1rem;
  }

  .media-slide-copy strong {
    font-size: 1.45rem;
  }

  .hero-home .media-slide-copy {
    right: 1rem;
    bottom: 5.2rem;
    left: 1rem;
    max-width: 14rem;
    text-align: left;
  }

  .hero-home .media-slide-copy span {
    justify-self: start;
  }

  .page-hero .media-slide-copy {
    right: 1rem;
    bottom: 5.2rem;
    left: 1rem;
    max-width: 14rem;
    text-align: left;
  }

  .page-hero .media-slide-copy span {
    justify-self: start;
  }

  .card,
  .text-card,
  .service-card,
  .sector-card,
  .quality-card,
  .contact-card,
  .process-card,
  .contact-form,
  .cta-band {
    padding: 1.25rem;
  }

  .gallery-copy,
  .team-copy {
    padding: 1.15rem 1.15rem 1.3rem;
  }

  .footer-utility {
    flex-direction: column;
  }

  .footer-utility-link {
    min-width: 0;
  }
}
