:root {
  --bg: #ffffff;
  --ink: #131313;
  --muted: #343434;
  --navy: #2f4a97;
  --navy-deep: #253b7c;
  --teal: #23a2dd;
  --teal-soft: #cfeffc;
  --line: #cfd8ea;
  --panel: #f8fbfe;
  --footer: #33498e;
  --shadow: 0 10px 30px rgba(16, 36, 66, 0.12);
  --radius: 20px;
  --radius-sm: 10px;
  --content-width: min(1360px, calc(100% - 56px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Urbanist", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  max-width: 1080px;
}

.center {
  text-align: center;
}

.page-shell {
  padding-top: 160px;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 60px;
  padding: 0 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-image {
  width: 150px;
  height: auto;
  margin-left: 0;
}
.footer-logo-image {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  position: relative;
  font-size: 17px;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px 4px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.button-primary,
.button-secondary,
.button-light {
  padding: 14px 22px;
}

.button-primary {
  background: var(--navy-deep);
  color: #fff;
}

.button-secondary {
  background: var(--teal);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--ink);
  min-width: 144px;
}

.header-contact-button {
  min-width: 154px;
}

.header-contact-button.is-current {
  background: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-toggle-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy-deep);
}

.mobile-panel {
  display: none;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  padding: 10px 14px;
  border: 1px solid rgba(47, 74, 151, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-section,
.page-hero {
  padding: 0px 0 48px;
}

.hero-grid,
.split-section,
.project-intro-grid,
.blog-hero-grid,
.contact-layout,
.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.home-hero {
  position: relative;
  background:
    linear-gradient(rgba(47, 74, 151, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 74, 151, 0.08) 1px, transparent 1px);
  background-size: 96px 96px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(35, 162, 221, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-copy-column h1,
.page-hero h1,
.project-intro-copy h1 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  line-height: 1.02;
}

.hero-copy-column h1 {
  font-size: clamp(40px, 6vw, 70px);
}

.page-hero h1 {
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(42px, 4.6vw, 68px);
}

.project-intro-copy h1 {
  font-size: clamp(42px, 5vw, 76px);
}

.project-intro-copy h2,
.accent-title,
.contact-page-title {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
}

.accent-text {
  color: var(--teal);
}

.hero-copy,
.page-subtitle,
.project-intro-copy p,
.split-content p,
.about-text-grid p,
.objective-card p,
.project-copy p,
.service-card p,
.featured-blog-copy p,
.team-profile-detailed__copy p,
.contact-page-copy,
.contact-details-card span {
  color: var(--muted);
  line-height: 1.45;
}

.hero-copy {
  max-width: 560px;
  font-size: 22px;
  margin-bottom: 22px;
}

.page-subtitle {
  font-size: 24px;
  font-weight: 700;
}

.page-intro-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-illustration-card,
.media-surface,
.project-media,
.media-showcase,
.team-photo,
.blog-hero-image,
.featured-blog-image,
.image-panel,
.contact-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #edf7ff, #d8eef9);
}

.hero-illustration-card {
  min-height: 360px;
}

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

.section-block {
  padding: 72px 0;
}

.compact-block {
  padding-top: 28px;
}

.compact-top {
  padding-top: 24px;
}

.soft-panel {
  background: linear-gradient(180deg, #fefefe 0%, #edfcfd 100%);
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 54px);
}

.feature-grid,
.objective-grid,
.project-card-grid,
.service-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

.feature-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.objective-card,
.project-card,
.service-card,
.capability-card,
.statement-card,
.intro-card,
.team-profile-detailed {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

.feature-card {
  position: relative;
  min-height: 214px;
  padding: 68px 20px 24px;
  text-align: center;
  background: linear-gradient(180deg, #c8ebfb 0%, #ffffff 100%);
}

.feature-card--home h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.icon-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 700;
}

.logo-marquee {
  overflow: hidden;
  padding: 12px 0 24px;
}

.marquee-track {
  display: flex;
  gap: 38px;
  min-width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  color: rgba(47, 74, 151, 0.18);
  font-size: clamp(42px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-35%);
  }
}

.home-about-visual {
  position: relative;
  min-height: 420px;
}

.home-about-visual__base {
  position: absolute;
  inset: 48px 24px 0 0;
}

.home-about-visual__overlay {
  position: absolute;
  width: 220px;
  height: 220px;
  left: 18px;
  top: 0;
  border-radius: 50%;
}

.split-content h2,
.story-copy h2 {
  margin: 0 0 16px;
  color: var(--navy-deep);
  font-size: clamp(28px, 4vw, 46px);
}

.mission-vision-display {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 160px 1fr;
  gap: 28px;
  align-items: center;
}

.statement-card {
  padding: 24px;
  border: 1px solid rgba(35, 162, 221, 0.4);
}

.statement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.mission-vision-ribbon {
  position: relative;
  height: 220px;
}

.mission-vision-ribbon__top,
.mission-vision-ribbon__bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 126px;
  height: 100px;
  clip-path: polygon(0 0, 100% 16%, 100% 100%, 0 82%);
}

.mission-vision-ribbon__top {
  top: 0;
  background: var(--teal);
}

.mission-vision-ribbon__bottom {
  bottom: 0;
  background: var(--navy-deep);
  transform: translateX(-50%) scaleX(-1);
}

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

.objective-card {
  padding: 28px 22px;
  text-align: center;
  background: linear-gradient(180deg, #c8ebfb 0%, #ffffff 100%);
}

.objective-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  color: var(--navy-deep);
  font-weight: 700;
}

.objective-card h3,
.project-copy h3,
.service-card h3,
.capability-card h3,
.approach-card h3,
.featured-blog-copy h3,
.team-profile-detailed__copy h3 {
  margin: 0 0 12px;
  color: var(--navy-deep);
}

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

.project-card {
  overflow: hidden;
}

.project-media {
  height: 238px;
  border-radius: 0;
  box-shadow: none;
}

.project-copy {
  padding: 20px;
  text-align: center;
}

.centered-page-hero {
  padding-bottom: 18px;
}

.about-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.about-text-grid p {
  margin: 0 0 28px;
  font-size: 24px;
}

.dual-image-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.image-panel {
  margin: 0;
  min-height: 370px;
}

.image-panel figcaption {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-deep);
  font-weight: 700;
}

.project-intro-grid {
  align-items: start;
}

.project-intro-copy h2 {
  font-size: clamp(30px, 4vw, 58px);
}

.project-intro-copy p {
  margin: 0 0 20px;
  font-size: 22px;
}

.project-collage {
  position: relative;
  min-height: 380px;
}

.project-collage__top,
.project-collage__bottom,
.project-collage__accent {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
}

.project-collage__top {
  inset: 0 0 190px 0;
}

.project-collage__bottom {
  inset: 170px 0 0 40px;
}

.project-collage__accent {
  right: -4px;
  top: 110px;
  width: 120px;
  height: 120px;
  background: var(--teal);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.stacked-projects {
  display: grid;
  gap: 44px;
}

.project-showcase {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
}

.project-showcase.reverse {
  grid-template-columns: 1fr 360px;
}

.project-showcase.reverse .media-showcase {
  order: 2;
}

.media-showcase {
  min-height: 270px;
}

.project-showcase__copy h3,
.featured-blog-copy h3 {
  font-size: clamp(26px, 3vw, 42px);
}

.page-hero--split {
  padding-bottom: 30px;
}

.split-hero-media {
  min-height: 440px;
}

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

.approach-hero-layout,
.team-hero-layout,
.service-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.approach-hero-copy h1,
.team-hero-copy h1,
.service-hero-copy h1 {
  margin-inline: 0;
}

.project-showcase__copy p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.35;
}

.project-showcase--detailed .project-showcase__copy p {
  font-size: 18px;
}

.approach-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.approach-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.approach-card h3 {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  max-width: 220px;
  font-size: 22px;
}

.approach-card--centered {
  grid-column: 2;
}

.approach-card-grid--detailed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.approach-card--copy {
  min-height: 520px;
  display: grid;
  grid-template-rows: 270px 1fr;
  background: #fff;
}

.approach-card--copy .media-image {
  position: relative;
}

.approach-card--copy h3 {
  position: static;
  max-width: none;
}

.approach-card__content {
  padding: 24px 22px 28px;
}

.approach-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.45;
}

.approach-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.approach-photo-card__overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 270px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.04), rgba(19, 19, 19, 0.62));
}

.approach-photo-card__overlay h3 {
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
}

.story-grid {
  align-items: center;
}

.story-collage {
  position: relative;
  min-height: 450px;
}

.story-collage__small,
.story-collage__large,
.story-collage__shape,
.story-collage__dots {
  position: absolute;
}

.story-collage__small {
  left: 0;
  top: 20px;
  width: 46%;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-collage__large {
  left: 110px;
  top: 138px;
  width: 54%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.story-collage__shape {
  left: 34px;
  top: 248px;
  width: 64px;
  height: 122px;
  border-radius: 18px;
  background: #73cef2;
  clip-path: path("M20,0 Q20,28 44,44 L64,58 Q64,94 44,122 L0,122 L0,24 Q0,0 20,0 Z");
}

.story-collage__dots {
  left: 254px;
  top: 110px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--teal-soft) 2px, transparent 2px);
  background-size: 14px 14px;
}

.button-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  padding: 14px 18px;
  margin-bottom: 24px;
  border-radius: 14px 4px;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 620px;
}

.story-lead {
  color: var(--navy-deep);
  font-size: 22px;
  font-weight: 600;
}

.story-copy p {
  margin: 0 0 20px;
  font-size: 20px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 28px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.process-step__num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: #fff;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--navy-deep);
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  min-height: 420px;
  padding: 0 0 24px;
  border: 2px solid var(--teal);
  box-shadow: none;
  overflow: hidden;
  background: #fff;
}

.service-card__image {
  height: 188px;
  overflow: hidden;
  background: #dbeefa;
}

.service-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: -36px 0 18px 18px;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: #fff;
  color: var(--navy-deep);
  font-weight: 700;
}

.service-card h3 {
  padding: 0 18px;
  font-size: 24px;
}

.service-card p {
  padding: 0 18px;
  font-size: 18px;
  text-align: left;
}

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

.capability-card {
  min-height: 340px;
  padding: 38px 20px;
  text-align: center;
  border: 2px solid var(--teal);
  box-shadow: none;
}

.capability-diamond {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 28px auto 38px;
  background: var(--teal);
  transform: rotate(45deg);
  box-shadow: var(--shadow);
}

.capability-diamond span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: rotate(-45deg);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

.capability-card h3 {
  font-size: 22px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.portfolio-card__image {
  position: relative;
  height: 220px;
}

.portfolio-card__body {
  padding: 22px 20px 24px;
}

.portfolio-card__body h3 {
  margin: 0 0 14px;
  color: var(--navy-deep);
  font-size: 24px;
}

.portfolio-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.portfolio-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.project-table-wrap {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.project-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: #fff;
}

.project-table th,
.project-table td {
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e3e9f2;
}

.project-table thead th {
  background: #eef5fb;
  color: var(--navy-deep);
  font-size: 15px;
}

.project-table tbody td {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.blog-hero-grid {
  align-items: start;
}

.accent-title {
  color: var(--teal);
}

.blog-hero-grid p {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.35;
}

.blog-hero-image {
  min-height: 360px;
}

.featured-blog-row {
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 28px;
  align-items: center;
}

.featured-blog-image {
  min-height: 270px;
}

.featured-blog-copy p {
  margin: 0 0 16px;
  font-size: 22px;
}

.read-more-link {
  color: var(--navy-deep);
  font-weight: 700;
}

.intro-card-stack {
  display: grid;
  gap: 16px;
}

.intro-card {
  padding: 34px 40px;
  text-align: center;
}

.intro-card p {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.team-profile-stack {
  display: grid;
  gap: 26px;
}

.team-profile-detailed {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 0;
  overflow: hidden;
}

.team-photo {
  min-height: 360px;
  border-radius: 0;
  box-shadow: none;
}

.team-profile-detailed__copy {
  padding: 26px 28px 28px 0;
}

.team-profile-detailed__copy h3 {
  font-size: 34px;
}

.team-meta,
.team-role,
.team-duty {
  color: var(--ink);
}

.team-meta {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.team-role {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 18px;
  font-weight: 700;
}

.team-duty {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.45;
}

.team-profile-detailed__copy p:last-child {
  margin-bottom: 0;
}

.team-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.team-glance-card {
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ecf8ff 0%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.team-glance-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-deep);
  font-size: 34px;
}

.team-glance-card span {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 44px;
}

.team-strip figure {
  margin: 0;
  min-height: 230px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-banner {
  position: relative;
  min-height: 290px;
  border-radius: 0;
  box-shadow: none;
}

.contact-banner__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(47, 74, 151, 0.52);
}

.contact-banner__overlay h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 5vw, 72px);
}

.contact-page-title {
  font-size: clamp(34px, 4vw, 60px);
}

.contact-page-copy {
  margin: 0 auto;
  max-width: 980px;
  font-size: 24px;
}

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

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid #9fb0c7;
  border-radius: 4px;
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form-status {
  min-height: 22px;
  color: var(--navy-deep);
  font-weight: 600;
}

.contact-details-card {
  padding: 12px 0;
}

.contact-details-card h3,
.contact-follow h4 {
  margin: 0 0 18px;
  color: var(--navy-deep);
  font-size: 22px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
}

.footer-cta {
  padding: 60px 0;
  background: var(--teal);
  color: #fff;
  text-align: center;
}

.footer-cta__inner {
  display: grid;
  gap: 10px;
  place-items: center;
}

.footer-cta__inner h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.footer-cta__inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
}

.site-footer {
  background: var(--footer);
  color: #fff;
}

.footer-shell {
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.6fr 0.8fr 0.8fr 1fr;
  gap: 22px;
}

.footer-brand p,
.footer-list a,
.contact-list a,
.contact-list span,
.newsletter-copy,
.footer-bottom {
  color: rgba(255, 255, 255, 0.9);
}

.footer-title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
}

.footer-list,
.contact-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  margin-top: 12px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 14px 16px;
}

.newsletter-submit {
  width: 56px;
  border: 0;
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-status {
  min-height: 22px;
  margin-top: 10px;
  font-size: 14px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions .button {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .mobile-panel {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.22s ease;
    background: #fff;
  }

  body.menu-open .mobile-panel {
    max-height: 520px;
  }

  .mobile-panel__inner {
    display: grid;
    gap: 16px;
    padding: 18px 0 22px;
  }

  .feature-grid.four-up,
  .objective-grid,
  .project-card-grid,
  .service-grid,
  .capability-grid,
  .footer-grid,
  .about-text-grid,
  .dual-image-panels,
  .project-showcase,
  .project-showcase.reverse,
  .featured-blog-row,
  .team-profile-detailed,
  .hero-grid,
  .blog-hero-grid,
  .contact-layout,
  .story-grid,
  .project-intro-grid,
  .split-section,
  .approach-hero-layout,
  .team-hero-layout,
  .service-hero-layout,
  .team-strip,
  .team-glance-grid {
    grid-template-columns: 1fr;
  }

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

  .approach-card--centered {
    grid-column: auto;
  }

  .approach-card-grid--detailed,
  .process-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .mission-vision-display {
    grid-template-columns: 1fr;
  }

  .mission-vision-ribbon {
    height: 160px;
    order: 2;
  }

  .team-profile-detailed__copy {
    padding: 18px 18px 24px;
  }

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

  .project-showcase.reverse .media-showcase {
    order: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100% - 24px, 1240px);
  }

  .page-shell {
    padding-top: 60px;
  }

  .nav-bar {
    min-height: 76px;
  }

  .logo-image {
    width: 100px;
  }

  .hero-section,
  .page-hero,
  .section-block,
  .footer-cta {
    padding: 34px 0;
  }

  .hero-copy,
  .project-intro-copy p,
  .blog-hero-grid p,
  .contact-page-copy,
  .project-showcase__copy p,
  .featured-blog-copy p,
  .about-text-grid p,
  .intro-card p {
    font-size: 18px;
  }

  .feature-card--home h3,
  .service-card h3,
  .capability-card h3,
  .approach-card h3 {
    font-size: 20px;
  }

  .hero-illustration-card,
  .project-collage,
  .blog-hero-image,
  .contact-banner {
    min-height: 240px;
  }

  .home-about-visual {
    min-height: 320px;
  }

  .home-about-visual__overlay {
    width: 150px;
    height: 150px;
  }

  .project-collage__top {
    inset: 0 0 116px 0;
  }

  .project-collage__bottom {
    inset: 118px 0 0 28px;
  }

  .project-collage__accent {
    width: 88px;
    height: 88px;
    top: 84px;
  }

  .approach-card-grid {
    grid-template-columns: 1fr;
  }

  .approach-card--copy {
    min-height: auto;
  }

  .service-card {
    min-height: auto;
  }

  .service-card__image {
    height: 160px;
  }

  .split-hero-media {
    min-height: 280px;
  }

  .story-collage {
    min-height: 340px;
  }

  .story-collage__small {
    width: 42%;
    height: 120px;
  }

  .story-collage__large {
    left: 80px;
    top: 98px;
    width: 58%;
    height: 180px;
  }

  .story-collage__dots {
    left: 188px;
    width: 82px;
    height: 82px;
  }

  .story-collage__shape {
    top: 212px;
    width: 54px;
    height: 96px;
  }

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

  .newsletter-form {
    max-width: 320px;
  }
}
