:root {
  --navy: #071b4a;
  --navy-2: #0a2d6f;
  --blue: #0b4aa2;
  --blue-bright: #1764c0;
  --orange: #ff8a1f;
  --orange-dark: #e96800;
  --coral: #f35662;
  --ink: #172033;
  --muted: #5f6b7a;
  --surface: #ffffff;
  --surface-soft: #f4f8fe;
  --surface-peach: #fff5e9;
  --line: #dfe7f2;
  --success: #16784a;
  --danger: #b42318;
  --shadow-sm: 0 10px 30px rgba(7, 27, 74, 0.08);
  --shadow: 0 22px 64px rgba(7, 27, 74, 0.14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; }
ul { margin-top: 0; }

.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: clamp(72px, 8vw, 112px) 0; }
.section-soft { background: var(--surface-soft); }
.section-peach { background: linear-gradient(180deg, var(--surface-peach), #fff); }
.section-dark { color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 3px; border-radius: 999px; background: currentColor; }
.section-heading { max-width: 780px; margin-bottom: 44px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 14px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.4rem); }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.section-dark .section-heading h2, .section-dark .section-heading p { color: #fff; }
.section-dark .section-heading p { color: #dce7ff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(255, 138, 31, 0.5);
  outline-offset: 3px;
}
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 14px 30px rgba(255, 138, 31, 0.27); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { color: var(--blue); background: #fff; border-color: var(--blue); }
.btn-light { color: var(--navy); background: #fff; }
.btn-link { min-height: 44px; padding-inline: 0; color: var(--blue); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.topbar { color: #e7eeff; background: var(--navy); font-size: 0.86rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; flex-wrap: wrap; gap: 18px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: #ffbd79; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 74, 162, 0.09);
  backdrop-filter: blur(16px);
}
.nav-shell { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; text-decoration: none; }
.brand img { width: 225px; height: 64px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); }
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 8px 0;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}
.site-nav a:not(.nav-profile)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
  transition: right 0.2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--orange-dark); }
.nav-profile {
  min-height: 44px !important;
  padding: 0 16px !important;
  border-radius: 10px;
  color: #fff !important;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(255, 138, 31, 0.2);
}
.mobile-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 13px;
  color: var(--navy);
  background: #edf4ff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobile-menu-button span, .mobile-menu-button::before, .mobile-menu-button::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: 0.22s ease;
}
.mobile-menu-button span { margin: 5px 0; }
.mobile-menu-button[aria-expanded="true"] span { opacity: 0; }
.mobile-menu-button[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.mobile-menu-button[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0 clamp(88px, 9vw, 124px);
  background: linear-gradient(135deg, #fff 0 52%, #edf5ff 52% 100%);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 300px;
  height: 300px;
  left: -190px;
  top: 70px;
  border-radius: 70px;
  rotate: 28deg;
  background: rgba(255, 138, 31, 0.11);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -150px;
  bottom: -190px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(11, 74, 162, 0.1);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.hero h1 { margin-bottom: 22px; color: var(--navy); font-size: clamp(2.8rem, 6vw, 5.25rem); }
.hero h1 span { color: var(--orange); }
.hero-copy > p { max-width: 670px; color: #425169; font-size: clamp(1.04rem, 1.75vw, 1.24rem); }
.hero-media { position: relative; min-width: 0; }
.hero-image {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 80px rgba(7, 27, 74, 0.23);
}
.hero-note {
  position: absolute;
  left: -26px;
  bottom: 24px;
  max-width: 270px;
  padding: 18px 20px;
  border-radius: 17px;
  color: #fff;
  background: rgba(7, 27, 74, 0.96);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}
.hero-note strong { display: block; margin-bottom: 4px; color: #ffbd79; font-size: 1.06rem; }
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  background:
    linear-gradient(174deg, transparent 0 36%, var(--orange) 36% 48%, var(--blue) 48% 68%, var(--navy) 68% 100%);
}

.page-hero { padding: clamp(46px, 6vw, 76px) 0; color: #fff; background: linear-gradient(125deg, var(--navy), var(--blue)); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(30px, 6vw, 72px); align-items: center; }
.page-hero h1 { margin-bottom: 16px; color: #fff; font-size: clamp(2.65rem, 5vw, 4.55rem); }
.page-hero p { max-width: 660px; margin-bottom: 0; color: #dce7ff; font-size: clamp(1.05rem, 1.6vw, 1.22rem); }
.page-hero .hero-image { aspect-ratio: 1.75 / 1; border-width: 5px; border-radius: 22px; box-shadow: 0 20px 55px rgba(0, 0, 0, 0.2); }
.breadcrumb { margin-bottom: 16px; color: #ffbd79; font-weight: 800; font-size: 0.88rem; }

.stats-wrap { position: relative; z-index: 5; margin-top: -58px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(11, 74, 162, 0.09);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stat-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 16px; color: var(--orange-dark); background: var(--surface-peach); font-weight: 900; }
.stat-card strong { display: block; color: var(--navy); font-size: clamp(1.55rem, 2.8vw, 2.25rem); line-height: 1; }
.stat-card span { color: var(--muted); font-size: 0.9rem; }

.two-column { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(38px, 7vw, 82px); align-items: center; }
.two-column.reverse { grid-template-columns: 1.08fr 0.92fr; }
.two-column.reverse > :first-child { order: 2; }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; inset: -15px 18px 18px -15px; z-index: 0; border-radius: 28px; background: var(--orange); }
.media-frame img { position: relative; z-index: 1; width: 100%; aspect-ratio: 1.15 / 1; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }
.copy-block h2 { margin-bottom: 18px; color: var(--navy); font-size: clamp(2rem, 4vw, 3.25rem); }
.copy-block > p { color: var(--muted); font-size: 1.04rem; }

.feature-list { display: grid; gap: 14px; margin: 28px 0 0; }
.feature-item { display: grid; grid-template-columns: 50px 1fr; gap: 14px; padding: 15px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; color: #fff; background: var(--blue); font-weight: 900; }
.feature-item h3 { margin-bottom: 5px; color: var(--navy); font-size: 1.02rem; }
.feature-item p { margin-bottom: 0; color: var(--muted); font-size: 0.93rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.info-card::after { content: ""; position: absolute; right: -40px; bottom: -52px; width: 110px; height: 110px; border-radius: 50%; background: rgba(255, 138, 31, 0.11); }
.card-number { color: var(--orange-dark); font-size: 0.78rem; font-weight: 950; letter-spacing: 0.14em; }
.info-card h3 { margin: 17px 0 10px; color: var(--navy); font-size: 1.25rem; }
.info-card p { margin-bottom: 0; color: var(--muted); }
.info-card .small-detail { margin-top: 12px; color: #44516a; font-size: 0.91rem; }

.clients-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.client-logo-card {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(7, 27, 74, 0.06);
}
.client-logo-card img { width: 100%; max-height: 92px; object-fit: contain; }
.client-logo-card span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.regions-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 68px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, #edf4ff);
  box-shadow: var(--shadow-sm);
}
.map-card { min-width: 0; padding: 16px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.map-card img { width: 100%; max-height: 610px; object-fit: contain; }
.region-copy h2 { color: var(--navy); font-size: clamp(2rem, 4vw, 3.2rem); }
.region-copy p { color: var(--muted); }
.region-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 26px 0 0; padding: 0; list-style: none; }
.region-list li { display: flex; align-items: center; gap: 11px; min-height: 52px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 13px; color: var(--navy); background: #fff; font-weight: 800; }
.region-pin { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; color: #fff; background: var(--orange); font-size: 0.75rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { padding: 24px; border-radius: 18px; color: #fff; background: rgba(255, 255, 255, 0.09); border: 1px solid rgba(255, 255, 255, 0.15); }
.value-card strong { display: block; margin-bottom: 7px; color: #ffbd79; font-size: 1.06rem; }
.value-card p { margin-bottom: 0; color: #e2eaff; font-size: 0.94rem; }

.purpose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.purpose-card { padding: 28px; border: 1px solid var(--line); border-top: 5px solid var(--orange); border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.purpose-card h3 { color: var(--navy); }
.purpose-card p { margin-bottom: 0; color: var(--muted); }

.photo-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 16px; }
.photo-card { position: relative; overflow: hidden; min-height: 340px; border-radius: 22px; box-shadow: var(--shadow-sm); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .photo-caption { position: absolute; inset: auto 14px 14px 14px; padding: 13px 15px; border-radius: 13px; color: #fff; background: rgba(7, 27, 74, 0.88); backdrop-filter: blur(10px); font-weight: 800; }

.themes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.theme-card { min-height: 128px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.theme-card h3 { margin-bottom: 7px; color: var(--navy); font-size: 1.04rem; }
.theme-card p { margin-bottom: 0; color: var(--muted); font-size: 0.91rem; }

.projects-shell { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.project-table-header, .project-row { display: grid; grid-template-columns: 90px minmax(220px, 0.78fr) minmax(0, 2fr); }
.project-table-header { color: #fff; background: var(--blue); font-weight: 900; }
.project-table-header > div { padding: 17px 18px; border-right: 1px solid rgba(255, 255, 255, 0.18); }
.project-row { border-top: 1px solid var(--line); }
.project-row:nth-child(even) { background: #fbfdff; }
.project-cell { min-width: 0; padding: 18px; border-right: 1px solid var(--line); }
.project-cell:last-child, .project-table-header > div:last-child { border-right: 0; }
.project-year { color: var(--navy); font-size: 1.06rem; font-weight: 900; }
.project-client-wrap { display: flex; align-items: center; gap: 12px; }
.project-client-wrap img { width: 70px; height: 46px; flex: 0 0 auto; object-fit: contain; border: 1px solid #edf1f7; border-radius: 8px; background: #fff; }
.project-client { color: var(--navy); font-weight: 850; }
.project-description { color: #465268; }
.project-label { display: none; color: var(--orange-dark); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }

.cta-band { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: clamp(28px, 5vw, 50px); border-radius: 28px; color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); box-shadow: var(--shadow); }
.cta-band h2 { margin-bottom: 9px; color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-band p { margin-bottom: 0; color: #dce7ff; }

.contact-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: clamp(28px, 6vw, 68px); align-items: start; }
.contact-panel { padding: 32px; border-radius: 24px; color: #fff; background: var(--navy); }
.contact-panel h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.contact-panel > p { color: #dce7ff; }
.contact-list { display: grid; gap: 13px; margin-top: 26px; }
.contact-row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; }
.contact-row .contact-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: #ffbd79; background: rgba(255, 255, 255, 0.1); font-weight: 900; }
.contact-row small { display: block; color: #aebee2; }
.contact-row a { color: #fff; text-underline-offset: 3px; }
.contact-form-card { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-form-card h2 { color: var(--navy); }
.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
label { display: grid; gap: 7px; color: var(--navy); font-size: 0.9rem; font-weight: 800; }
input, textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cdd8e8;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(11, 74, 162, 0.1); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); }
textarea { min-height: 165px; resize: vertical; }
.required { color: var(--danger); }
.form-status { min-height: 26px; margin-bottom: 0; color: var(--blue); font-weight: 750; }
.form-status.is-error { color: var(--danger); }
.form-note { color: var(--muted); font-size: 0.86rem; }

footer { color: #d9e3fa; background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 0.72fr 0.9fr 1fr; gap: 34px; padding: 58px 0 38px; }
.footer-brand img { width: 240px; height: 74px; padding: 6px; border-radius: 11px; object-fit: contain; object-position: left; background: #fff; }
.footer-brand p { max-width: 350px; margin-top: 17px; color: #bfcbea; }
footer h3 { color: #fff; font-size: 1rem; }
footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
footer a { color: #d9e3fa; text-decoration: none; }
footer a:hover { color: #ffbd79; }
.footer-contact { display: grid; gap: 10px; font-size: 0.92rem; }
.copyright { padding: 17px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: #aebddd; font-size: 0.84rem; }
.copyright-inner { display: flex; justify-content: space-between; gap: 20px; }

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 17px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 15px 35px rgba(7, 27, 74, 0.25);
}

@media (max-width: 1040px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 0.86rem; }
  .brand img { width: 190px; }
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
  .card-grid, .values-grid, .themes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
  .footer-grid > :nth-child(3) { display: none; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-shell { min-height: 72px; }
  .brand img { width: 185px; height: 54px; }
  .mobile-menu-button { display: inline-flex; }
  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 14px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: var(--shadow);
    transform: translateY(-125%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 11px 8px; border-bottom: 1px solid #edf2f8; font-size: 0.98rem; }
  .site-nav a::after { display: none; }
  .nav-profile { margin-top: 10px; }
  .hero-grid, .page-hero-grid, .two-column, .two-column.reverse, .regions-panel, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero .button-row { justify-content: center; }
  .hero-media { max-width: 720px; margin-inline: auto; }
  .hero-note { left: 18px; }
  .two-column.reverse > :first-child { order: initial; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .purpose-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid .photo-card:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .section { padding: 68px 0; }
  .hero { padding-top: 44px; padding-bottom: 92px; background: linear-gradient(180deg, #fff 0 55%, #edf5ff 55%); }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .hero-image { border-width: 5px; border-radius: 22px; }
  .hero-note { position: static; max-width: none; margin: 12px 8px 0; }
  .stats-wrap { margin-top: -38px; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { min-height: 108px; padding: 17px; }
  .card-grid, .values-grid, .themes-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-logo-card { min-height: 116px; }
  .region-list { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-grid .photo-card:first-child { grid-column: auto; }
  .photo-card { min-height: 290px; }
  .project-table-header { display: none; }
  .projects-shell { display: grid; gap: 14px; overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .project-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff !important;
    box-shadow: var(--shadow-sm);
  }
  .project-cell { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 12px; padding: 14px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .project-cell:last-child { border-bottom: 0; }
  .project-label { display: block; }
  .project-client-wrap { align-items: flex-start; }
  .project-client-wrap img { width: 58px; height: 40px; }
  .cta-band { grid-template-columns: 1fr; text-align: center; }
  .cta-band .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 44px; }
  .footer-brand { grid-column: auto; }
  .copyright-inner { display: grid; }
  .floating-contact { width: 52px; padding: 0; }
  .floating-contact span { display: none; }
}

@media (max-width: 420px) {
  .brand img { width: 165px; }
  .clients-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .client-logo-card { padding: 8px; }
  .project-cell { grid-template-columns: 1fr; gap: 5px; }
  .contact-panel, .contact-form-card { padding: 23px 19px; }
}

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


/* Updated visual tweaks */
.stat-card { align-items: center; }
.stat-icon {
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,138,31,0.08);
}
.hero-image { image-rendering: auto; }
.photo-card img, .hero-image, .media-frame img { image-rendering: auto; }


/* Motion and stat-card alignment upgrade */
.stat-card {
  position: relative;
  isolation: isolate;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
  transition: transform 260ms cubic-bezier(.2,.8,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 340ms cubic-bezier(.2,.8,.2,1);
}
.stat-card:hover,
.stat-card:focus-within {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(11, 74, 162, 0.2);
  box-shadow: 0 26px 66px rgba(7, 27, 74, 0.18);
}
.stat-card:hover::before,
.stat-card:focus-within::before { transform: scaleX(1); }
.stat-icon {
  width: 60px;
  height: 60px;
  align-self: center;
  justify-self: center;
  border: 1px solid rgba(255, 138, 31, 0.18);
  background: linear-gradient(145deg, #fff9f1, var(--surface-peach));
  color: var(--orange-dark);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), background 280ms ease, color 280ms ease;
}
.stat-icon svg {
  display: block;
  width: 30px;
  height: 30px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stat-card:hover .stat-icon,
.stat-card:focus-within .stat-icon {
  transform: translateY(-3px) rotate(-3deg) scale(1.06);
  color: #fff;
  background: linear-gradient(145deg, var(--orange), var(--orange-dark));
}
.stat-content {
  display: grid;
  align-content: center;
  min-width: 0;
  gap: 7px;
}
.stat-card .stat-number {
  margin: 0;
  line-height: .95;
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-label {
  display: block;
  line-height: 1.35;
}

/* Scroll reveal uses the individual translate property so card hover transforms still work. */
.js .reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 680ms ease, translate 680ms cubic-bezier(.2,.8,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

.hero-copy > * {
  animation: heroCopyIn 720ms cubic-bezier(.2,.8,.2,1) both;
}
.hero-copy > *:nth-child(2) { animation-delay: 90ms; }
.hero-copy > *:nth-child(3) { animation-delay: 170ms; }
.hero-copy > *:nth-child(4) { animation-delay: 250ms; }
.hero-media { animation: heroMediaIn 850ms cubic-bezier(.2,.8,.2,1) 120ms both; }
.hero-media .hero-image { animation: heroFloat 6.5s ease-in-out 1.1s infinite; }
.hero-note { animation: noteGlow 3.8s ease-in-out 1.2s infinite; }
.btn-primary span[aria-hidden="true"] { transition: transform 220ms ease; }
.btn-primary:hover span[aria-hidden="true"] { transform: translateX(5px); }
.photo-card img { transition: transform 650ms cubic-bezier(.2,.8,.2,1), filter 350ms ease; }
.photo-card:hover img { transform: scale(1.055); filter: saturate(1.05) contrast(1.02); }
.photo-card .photo-caption { transition: transform 300ms ease, background 300ms ease; }
.photo-card:hover .photo-caption { transform: translateY(-5px); background: rgba(7, 27, 74, 0.95); }
.client-logo-card { transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease; }
.client-logo-card:hover { transform: translateY(-5px); border-color: rgba(11,74,162,.22); box-shadow: 0 18px 38px rgba(7,27,74,.12); }
.client-logo-card img { transition: transform 260ms ease; }
.client-logo-card:hover img { transform: scale(1.045); }
.media-frame img { transition: transform 650ms cubic-bezier(.2,.8,.2,1); }
.media-frame:hover img { transform: scale(1.025); }

@keyframes heroCopyIn {
  from { opacity: 0; translate: -28px 14px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes heroMediaIn {
  from { opacity: 0; translate: 36px 18px; scale: .97; }
  to { opacity: 1; translate: 0 0; scale: 1; }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
@keyframes noteGlow {
  0%, 100% { box-shadow: var(--shadow); }
  50% { box-shadow: 0 22px 58px rgba(7, 27, 74, .3), 0 0 0 1px rgba(255, 189, 121, .18); }
}

@media (max-width: 900px) {
  .stat-card { grid-template-columns: 58px minmax(0, 1fr); gap: 14px; padding: 18px; }
  .stat-icon { width: 56px; height: 56px; }
  .stat-icon svg { width: 27px; height: 27px; }
}
@media (max-width: 720px) {
  .stat-card { min-height: 112px; }
  .hero-media .hero-image { animation-duration: 8s; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-copy > *, .hero-media, .hero-media .hero-image, .hero-note { animation: none !important; }
  .js .reveal { opacity: 1; translate: 0 0; }
  .stat-card:hover, .stat-card:focus-within, .photo-card:hover img, .client-logo-card:hover, .media-frame:hover img { transform: none; }
}
.stat-card.is-visible .stat-icon {
  animation: statIconPop 540ms cubic-bezier(.2,.9,.25,1.25) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 180ms);
}
@keyframes statIconPop {
  0% { opacity: 0; transform: scale(.68) rotate(-8deg); }
  70% { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-card.is-visible .stat-icon { animation: none !important; }
}

.stat-card .stat-icon { color: var(--orange-dark); }


/* Contact form email-delivery states */
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }
