:root {
  --navy: #10284a;
  --navy-light: #1b3556;
  --orange: #f28b1b;
  --orange-hover: #ffa13e;
  --ink: #10284a;
  --muted: #61666b;
  --white: #fff;
  --surface: #f3f5f7;
  --line: #dce2e7;
  --container: 1280px;
  --background: #fff;
  --foreground: #10284a;
  --primary: #f28b1b;
  --primary-foreground: #10284a;
  --border: #dce2e7;
  --radius: 0;
}
.brand-logo {
  display: block;
  width: 104px;
  height: 104px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-light .brand-logo {
  width: 86px;
  height: 86px;
  background: #fff;
}
.header-inner {
  min-height: 110px;
}
.service p {
  font-size: 16px;
}
.service ul {
  font-size: 14px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #287bb5;
  outline-offset: 5px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
}
::selection {
  background: var(--orange);
  color: var(--navy);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--container), calc(100% - 112px));
  margin-inline: auto;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon,
.service-icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.skip-link {
  position: fixed;
  z-index: 20;
  left: 16px;
  top: 12px;
  transform: translateY(-160%);
  padding: 12px 20px;
  background: white;
  color: var(--navy);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8ecf0;
}
.header-inner {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.brand-monogram {
  font-size: 53px;
  letter-spacing: -7px;
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  padding-right: 3px;
}
.brand-monogram > span {
  color: var(--orange);
  padding-left: 2px;
}
.brand-name {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid var(--line);
  padding-left: 19px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
}
.brand-name > span {
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--muted);
}
.navigation {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.navigation > a:not(.button) {
  padding-block: 12px;
  position: relative;
}
.navigation > a:not(.button)::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}
.navigation > a:hover::after,
.navigation > a[aria-current='location']::after {
  width: 100%;
}
.button {
  min-height: 58px;
  background: var(--orange);
  color: var(--navy);
  padding: 16px 24px;
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  border: 1px solid transparent;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}
.button-small {
  min-height: 46px;
  padding: 12px 18px;
  gap: 16px;
}
.button .icon {
  width: 20px;
  height: 20px;
}
.menu-toggle {
  display: none;
}
.hero {
  isolation: isolate;
  position: relative;
  background: var(--navy);
  color: white;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 25%;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}
.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      #10284a 0%,
      rgba(16, 40, 74, 0.98) 22%,
      rgba(16, 40, 74, 0.78) 42%,
      rgba(16, 40, 74, 0.1) 72%
    ),
    linear-gradient(0deg, rgba(16, 40, 74, 0.8), transparent 35%);
}
.hero-inner {
  min-height: 655px;
  position: relative;
  padding-top: 78px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
}
.hero-copy {
  position: relative;
  max-width: 740px;
}
.eyebrow {
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: #c6d1dc;
  display: flex;
  align-items: center;
  gap: 12px;
}
.small-line {
  height: 2px;
  width: 24px;
  background: var(--orange);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  line-height: 1.03;
  letter-spacing: -0.052em;
  font-weight: 700;
  margin-top: 27px;
}
.hero h1 > span {
  color: var(--orange);
}
.hero-description {
  max-width: 425px;
  font-size: 16px;
  line-height: 1.8;
  color: #cbd4de;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 33px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px solid transparent;
  padding-block: 8px;
}
.text-link:hover {
  border-color: currentColor;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.035em;
  color: #bdcbd9;
  margin-top: 30px;
}
.hero-proof .icon {
  width: 19px;
  height: 19px;
  color: var(--orange);
}
.proof-divider {
  color: #667586;
  padding-inline: 10px;
}
.photo-caption {
  position: absolute;
  right: 0;
  bottom: 24px;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: #d1d7de;
  writing-mode: vertical-rl;
}
.hero-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 40, 74, 0.6);
}
.expertise-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 90px;
  align-items: center;
}
.expertise-strip a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  padding: 8px 24px;
  border-left: 1px solid #45505d;
  transition: color 0.2s;
}
.expertise-strip a:first-child {
  border-left: 0;
  padding-left: 0;
}
.expertise-strip a:last-child {
  padding-right: 0;
}
.expertise-strip .icon {
  color: var(--orange);
}
.expertise-strip a:hover {
  color: var(--orange);
}
.section-space {
  padding-block: 104px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 52px;
  margin-bottom: 56px;
}
.dark-eyebrow {
  color: #687687;
}
.dark-eyebrow::before {
  content: '';
  display: inline-block;
  height: 2px;
  width: 22px;
  background: var(--orange);
}
h2 {
  font-size: clamp(2.25rem, 3.35vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}
h2 > span {
  color: var(--muted);
}
.section-heading h2 {
  margin-top: 21px;
}
.section-heading > p {
  max-width: 345px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  padding-bottom: 5px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}
.service {
  padding: 32px 26px 4px;
  border-right: 1px solid var(--line);
  scroll-margin-top: 120px;
  display: flex;
  flex-direction: column;
}
.service:first-child {
  padding-left: 0;
}
.service:last-child {
  padding-right: 0;
  border-right: 0;
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.service-top > span {
  font-size: 12px;
  font-family: Consolas, monospace;
  color: #85909a;
}
.service-icon {
  width: 37px;
  height: 37px;
  stroke-width: 1.3;
  color: #1c557a;
}
.service h3 {
  font-size: 25px;
  line-height: 1.16;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin-bottom: 19px;
}
.service p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}
.service ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  font-size: 13px;
  color: #465360;
  line-height: 1.7;
}
.service li {
  padding-left: 13px;
  position: relative;
  margin-block: 8px;
}
.service li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  background: var(--orange);
}
.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 15px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}
.service-link .icon {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.service-link:hover .icon {
  transform: translate(3px, -3px);
  color: #bc5414;
}
.about {
  background: var(--surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
}
.about h2 {
  margin-top: 22px;
  margin-bottom: 28px;
}
.about-description {
  color: var(--muted);
  max-width: 490px;
  line-height: 1.85;
  margin-top: 16px;
  font-size: 16px;
}
.dark-link {
  margin-top: 23px;
  font-weight: 600;
}
.commitments {
  padding-top: 32px;
}
.commitment {
  display: flex;
  gap: 28px;
  padding: 27px 0;
  border-bottom: 1px solid #d3dce4;
}
.commitment:first-child {
  padding-top: 0;
}
.commitment-number {
  color: #ae4e14;
  font-size: 12px;
  font-family: Consolas, monospace;
  padding-top: 3px;
}
.commitment h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.35;
  font-weight: 600;
  margin-bottom: 10px;
}
.commitment p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 360px;
}
.crea-note {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 27px 0 0;
}
.crea-note > .icon {
  color: #1c557a;
  width: 31px;
  height: 31px;
}
.crea-note > span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.crea-note strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.crea-note > .crea-state {
  margin-left: auto;
  font-size: 43px;
  font-weight: 800;
  letter-spacing: -0.08em;
  color: #c6d1dc;
}
.sectors {
  background: var(--navy);
  color: white;
}
.sectors .eyebrow {
  color: var(--orange);
}
.sectors .section-heading > p {
  color: #bac7d4;
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3a4959;
}
.sectors-grid > article {
  padding: 33px 38px 0;
  border-right: 1px solid #3a4959;
}
.sectors-grid > article:first-child {
  padding-left: 0;
}
.sectors-grid > article:last-child {
  padding-right: 0;
  border-right: 0;
}
.sector-index {
  font-family: Consolas, monospace;
  font-size: 12px;
  color: var(--orange);
}
.sectors h3 {
  font-size: 31px;
  letter-spacing: -0.035em;
  line-height: 1.3;
  margin: 22px 0 15px;
}
.sectors article p {
  font-size: 15px;
  line-height: 1.8;
  color: #bac7d4;
  max-width: 330px;
}
.sector-tag {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #91a6ba;
  margin-top: 30px;
}
.contact {
  background: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.contact h2 {
  margin: 22px 0 23px;
}
.contact h2 > span {
  color: #bf5516;
}
.contact-grid > div > p:not(.eyebrow) {
  max-width: 410px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.contact-cta {
  margin-top: 29px;
  min-width: 239px;
}
.contact-grid > div > p.contact-caption {
  font-size: 12px;
  margin-top: 12px;
}
.contact-details {
  border: 1px solid var(--line);
  padding: 40px 36px;
  background: var(--surface);
  border-top: 3px solid var(--orange);
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 19px;
  padding: 26px 0;
  border-top: 1px solid #d9e0e7;
}
.contact-detail:first-child {
  border-top: 0;
  padding-top: 0;
}
.contact-detail:last-child {
  padding-bottom: 0;
}
.contact-detail > .icon {
  width: 22px;
  height: 22px;
  color: #315572;
  margin-top: 2px;
}
.detail-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #6b7886;
  margin-bottom: 12px;
}
.contact-detail address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.9;
}
.contact-detail p,
.contact-detail #phone-link,
.contact-detail #email-link {
  font-size: 15px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.address-link {
  display: inline-flex;
  gap: 19px;
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}
.address-link:hover,
.contact-detail a:hover {
  color: #a7450c;
}
.email-icon {
  font-size: 23px;
  line-height: 1.2;
  width: 22px;
  text-align: center;
  color: #315572;
}
.footer {
  background: #0c203b;
  color: #d6dfe7;
}
.footer-main {
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  padding-block: 39px;
  border-bottom: 1px solid #304052;
}
.brand-light .brand-name {
  border-color: #3b4a5a;
}
.brand-light .brand-name > span {
  color: #a0b0c0;
}
.footer-main > p {
  font-size: 13px;
  color: #a6b5c3;
}
.back-top {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.back-top span {
  width: 36px;
  height: 36px;
  border: 1px solid #566371;
  display: grid;
  place-items: center;
}
.back-top:hover {
  color: var(--orange);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 23px;
  font-size: 12px;
  color: #92a3b5;
}
@media (min-width: 1600px) {
  .hero-inner {
    min-height: 760px;
  }
  .hero h1 {
    font-size: 5.7rem;
  }
  .hero-description {
    font-size: 18px;
    max-width: 460px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .navigation {
    gap: 20px;
    font-size: 13px;
  }
  .brand {
    gap: 12px;
  }
  .brand-name {
    padding-left: 13px;
    font-size: 12px;
  }
  .brand-name > span {
    font-size: 12px;
  }
  .brand-monogram {
    font-size: 46px;
  }
  .header-inner {
    gap: 20px;
  }
  .hero-inner {
    min-height: 635px;
    padding-top: 66px;
  }
  .hero h1 {
    font-size: 4.2rem;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .text-link {
    font-size: 13px;
  }
  .expertise-strip a {
    gap: 10px;
    padding-inline: 14px;
    font-size: 12px;
  }
  .service {
    padding-inline: 20px;
  }
  .service h3 {
    font-size: 23px;
  }
  .service ul {
    font-size: 12px;
  }
  .service-link {
    font-size: 12px;
  }
  .about-grid {
    gap: 66px;
  }
  .contact-grid {
    gap: 64px;
  }
  .section-space {
    padding-block: 85px;
  }
  .contact-details {
    padding: 32px 26px;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 82px;
  }
  .menu-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    align-items: center;
    border: 1px solid var(--line);
    background: white;
    cursor: pointer;
  }
  .menu-toggle span {
    height: 2px;
    width: 20px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 20px 24px 26px;
    box-shadow: 0 14px 15px #14273b12;
    align-items: stretch;
    gap: 8px;
  }
  .navigation.is-open {
    display: flex;
    flex-direction: column;
  }
  .navigation > a:not(.button) {
    font-size: 16px;
    padding-block: 12px;
  }
  .navigation > .button {
    margin-top: 10px;
    align-self: flex-start;
  }
  .hero-photo {
    left: 12%;
  }
  .hero::before {
    background:
      linear-gradient(
        90deg,
        #10284a 0%,
        rgba(16, 40, 74, 0.85) 25%,
        rgba(16, 40, 74, 0.3) 100%
      ),
      linear-gradient(0deg, rgba(16, 40, 74, 0.75), transparent 40%);
  }
  .hero h1 {
    font-size: 4.3rem;
  }
  .hero-description {
    max-width: 400px;
  }
  .expertise-strip {
    grid-template-columns: repeat(2, 1fr);
    padding-block: 20px;
    gap: 16px;
  }
  .expertise-strip a {
    font-size: 14px;
    padding: 4px 16px;
    line-height: 1.5;
  }
  .expertise-strip a:nth-child(odd) {
    border: 0;
    padding-left: 0;
  }
  .section-heading {
    gap: 35px;
    align-items: flex-start;
  }
  .section-heading > p {
    max-width: 270px;
    font-size: 15px;
    padding-top: 45px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 35px;
  }
  .service {
    padding: 30px;
  }
  .service:nth-child(2) {
    padding-right: 0;
    border: 0;
  }
  .service:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid var(--line);
  }
  .service:nth-child(4) {
    border-top: 1px solid var(--line);
    padding-right: 0;
  }
  .service h3 {
    font-size: 27px;
  }
  .service ul,
  .service-link {
    font-size: 14px;
  }
  .service p {
    font-size: 16px;
  }
  .about-grid {
    gap: 42px;
  }
  .about-description {
    font-size: 15px;
  }
  .commitment {
    gap: 16px;
  }
  .commitment h3 {
    font-size: 18px;
  }
  .sectors-grid > article {
    padding-inline: 24px;
  }
  .sectors h3 {
    font-size: 27px;
  }
  .sectors article p {
    font-size: 14px;
  }
  .contact-grid {
    gap: 34px;
    grid-template-columns: 1fr 1fr;
  }
  .contact-details {
    padding: 28px 20px;
  }
  .contact-detail {
    gap: 12px;
  }
  .footer-main > p {
    display: none;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
@media (max-width: 640px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero-inner {
    min-height: 655px;
    padding-top: 52px;
    padding-bottom: 70px;
    align-items: flex-start;
  }
  .hero-photo {
    left: 0;
  }
  .hero-photo img {
    object-position: 64% center;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(16, 40, 74, 0.95), rgba(16, 40, 74, 0.64)),
      linear-gradient(0deg, #10284a 2%, transparent 65%);
  }
  .hero .eyebrow {
    font-size: 12px;
    letter-spacing: 0.1em;
    gap: 9px;
  }
  .small-line {
    width: 15px;
  }
  .hero h1 {
    font-size: clamp(2.7rem, 10vw, 4rem);
    margin-top: 31px;
    line-height: 1.06;
    letter-spacing: -0.055em;
  }
  .hero-description {
    font-size: 16px;
    margin-top: 25px;
    max-width: 365px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
  }
  .hero-actions > .button {
    font-size: 14px;
    gap: 17px;
  }
  .hero-actions > .text-link {
    font-size: 14px;
  }
  .hero-proof {
    font-size: 12px;
    margin-top: 20px;
  }
  .photo-caption {
    writing-mode: horizontal-tb;
    right: 0;
    bottom: 17px;
    font-size: 12px;
  }
  .expertise-strip {
    column-gap: 12px;
    row-gap: 18px;
    padding-block: 22px;
  }
  .expertise-strip a {
    font-size: 12px;
    padding-right: 0;
    padding-left: 11px;
    gap: 9px;
  }
  .expertise-strip .icon {
    width: 19px;
    height: 19px;
  }
  .section-space {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p {
    padding-top: 23px;
    max-width: 100%;
    font-size: 16px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  h2 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .section-heading h2 {
    margin-top: 18px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .service,
  .service:first-child,
  .service:nth-child(2),
  .service:nth-child(3),
  .service:nth-child(4) {
    padding: 30px 0 26px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .service:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .service-top {
    margin-bottom: 18px;
  }
  .service h3 {
    font-size: 28px;
  }
  .service h3 br {
    display: none;
  }
  .service p {
    font-size: 16px;
    max-width: 380px;
  }
  .service ul {
    margin-block: 17px 20px;
    font-size: 14px;
  }
  .service-link {
    font-size: 14px;
  }
  .service-icon {
    width: 34px;
    height: 34px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about h2 {
    margin-top: 18px;
  }
  .about-description {
    font-size: 16px;
  }
  .commitments {
    padding-top: 0;
  }
  .commitment {
    gap: 22px;
  }
  .commitment h3 {
    font-size: 21px;
  }
  .commitment p {
    font-size: 15px;
  }
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  .sectors-grid > article,
  .sectors-grid > article:first-child,
  .sectors-grid > article:last-child {
    padding: 27px 0;
    border-right: 0;
    border-bottom: 1px solid #3a4959;
  }
  .sectors-grid > article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
  .sectors h3 {
    margin-top: 13px;
    font-size: 30px;
  }
  .sectors article p {
    font-size: 16px;
    max-width: 100%;
  }
  .sector-tag {
    font-size: 12px;
    margin-top: 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 39px;
  }
  .contact-details {
    padding: 30px 24px;
  }
  .contact-detail {
    gap: 20px;
  }
  .contact-detail address,
  .contact-detail p {
    font-size: 16px;
  }
  .detail-label {
    font-size: 12px;
  }
  .contact h2 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }
  .contact-grid > div > p.contact-caption {
    font-size: 13px;
  }
  .footer-main {
    padding-block: 31px;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-main .brand {
    gap: 10px;
  }
  .footer-main .brand-monogram {
    font-size: 39px;
  }
  .footer-main .brand-name {
    font-size: 12px;
    padding-left: 11px;
  }
  .footer-main .brand-name > span {
    font-size: 12px;
  }
  .back-top {
    gap: 10px;
    font-size: 12px;
  }
  .back-top span {
    width: 30px;
    height: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    padding-block: 24px;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover {
    transform: none;
  }
}
@media print {
  .site-header,
  .hero-photo,
  .hero-bottom,
  .hero-actions,
  .photo-caption,
  .back-top,
  .contact-cta {
    display: none;
  }
  .hero,
  .sectors,
  .footer {
    background: white;
    color: black;
  }
  .hero::before {
    display: none;
  }
  .hero-inner {
    min-height: 0;
    padding-block: 30px;
  }
  .hero h1 {
    font-size: 40px;
    color: black;
  }
  .hero-description,
  .hero-proof,
  .sectors article p {
    color: #333;
  }
  .section-space {
    padding-block: 30px;
  }
  .container {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service {
    break-inside: avoid;
  }
  .about-grid,
  .contact-grid {
    gap: 30px;
  }
  .section-heading {
    margin-bottom: 25px;
  }
}

.service p {
  font-size: 16px;
}
.service ul,
.service-link {
  font-size: 14px;
}
.brand-name {
  font-size: 12px;
  letter-spacing: 0.1em;
}
.brand-name > span {
  font-size: 12px;
  letter-spacing: 0.09em;
}
@media (max-width: 900px) {
  .brand-logo {
    width: 82px;
    height: 82px;
  }
  .header-inner {
    min-height: 86px;
  }
}
@media (max-width: 640px) {
  .brand-logo {
    width: 77px;
    height: 77px;
  }
  .brand-light .brand-logo {
    width: 65px;
    height: 65px;
  }
  .footer-main .brand-name {
    display: none;
  }
  .photo-caption {
    font-size: 12px;
    letter-spacing: 0.06em;
  }
  .hero .eyebrow {
    font-size: 12px;
    max-width: 320px;
  }
  .hero-inner {
    min-height: 690px;
  }
  .hero h1 {
    margin-top: 26px;
  }
  .brand-name {
    padding-left: 12px;
  }
  .contact-cta {
    max-width: 100%;
    text-align: left;
  }
  .button {
    gap: 16px;
  }
  .expertise-strip a {
    font-size: 14px;
  }
  .expertise-strip .icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
}
.whatsapp-floating {
  position: fixed;
  right: max(26px, env(safe-area-inset-right));
  bottom: max(26px, env(safe-area-inset-bottom));
  z-index: 15;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #128c49;
  box-shadow: 0 5px 22px #061b2840;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.whatsapp-floating svg {
  width: 36px;
  height: 36px;
}
.whatsapp-floating:hover {
  background: #0b7139;
  transform: translateY(-3px);
  box-shadow: 0 7px 26px #061b2850;
}
.whatsapp-floating:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 13px);
  padding: 8px 14px;
  border-radius: 4px;
  background: var(--navy);
  color: white;
  white-space: nowrap;
  font-size: 14px;
  box-shadow: 0 3px 16px #061b2820;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-floating:hover .whatsapp-tooltip,
.whatsapp-floating:focus-visible .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}
.footer-bottom {
  padding-right: 74px;
}
@media (max-width: 640px) {
  .whatsapp-floating {
    width: 58px;
    height: 58px;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
  }
  .footer-bottom {
    padding-right: 0;
    padding-bottom: 96px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-floating:hover {
    transform: none;
  }
}
@media print {
  .whatsapp-floating {
    display: none;
  }
}
