@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap");

:root {
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", Arial, sans-serif;
  --ink: #0b1f35;
  --ink-soft: #34495d;
  --navy: #102b49;
  --navy-deep: #07192c;
  --teal: #148c87;
  --teal-dark: #0b6d69;
  --lime: #bdd837;
  --mist: #edf4f5;
  --ice: #f5f8f8;
  --line: #d9e3e5;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 31, 53, 0.1);
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-body), Arial, sans-serif;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin: 0;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

.shell {
  margin-inline: auto;
  width: var(--shell);
}

.section {
  padding: 112px 0;
}

.section-tint {
  background: var(--ice);
}

.eyebrow {
  align-items: center;
  color: var(--teal-dark);
  display: flex;
  font-size: 0.73rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--lime);
  content: "";
  height: 3px;
  width: 24px;
}

.eyebrow-light {
  color: #cde7e5;
}

.button {
  align-items: center;
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.83rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 52px;
  padding: 0 25px;
  transition: background-color 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

.button:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
  border-color: var(--lime);
}

.button-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.text-link {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.02em;
}

.text-link b {
  color: var(--teal);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover b {
  transform: translate(3px, -3px);
}

.text-link-light {
  color: var(--white);
}

.text-link-light b {
  color: var(--lime);
}

.utility-bar {
  background: var(--navy-deep);
  color: #d5e1ea;
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.utility-inner {
  align-items: center;
  display: flex;
  height: 34px;
  justify-content: space-between;
}

.utility-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.utility-links a:hover {
  color: var(--lime);
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 84px;
}

.brand {
  align-items: center;
  display: flex;
  height: 64px;
  margin-right: 46px;
  width: 220px;
}

.brand img {
  height: 58px;
  object-fit: contain;
  object-position: left center;
  width: 100%;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 27px;
  margin-left: auto;
}

.desktop-nav a {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.025em;
  padding: 31px 0 27px;
  position: relative;
}

.desktop-nav a::after {
  background: var(--lime);
  bottom: 21px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.desktop-quote {
  margin-left: 31px;
}

.mobile-menu {
  display: none;
}

.home-hero {
  background: var(--navy);
  color: var(--white);
  min-height: calc(100svh - 118px);
  overflow: hidden;
  position: relative;
}

.home-hero::before {
  background: var(--lime);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 31%;
  z-index: 2;
}

.home-hero-image {
  background-image: linear-gradient(
      90deg,
      rgba(7, 25, 44, 0.98) 0%,
      rgba(7, 25, 44, 0.91) 33%,
      rgba(7, 25, 44, 0.42) 68%,
      rgba(7, 25, 44, 0.09) 100%
    ),
    url("../assets/original/1753854505_2b9bad1b77d1751faf05.jpeg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.home-hero-image::after {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 0;
  border-top: 0;
  content: "";
  inset: 0 12% 0 auto;
  position: absolute;
  width: 1px;
}

.home-hero-inner {
  align-items: flex-end;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(0, 1fr) 232px;
  min-height: calc(100svh - 118px);
  padding-bottom: 104px;
  padding-top: 94px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 790px;
}

.hero-copy h1 {
  font-size: clamp(4rem, 7.7vw, 7.6rem);
  letter-spacing: -0.072em;
  line-height: 0.93;
  margin-bottom: 35px;
}

.hero-lede {
  color: #dce7ee;
  font-size: clamp(1rem, 1.5vw, 1.23rem);
  line-height: 1.7;
  max-width: 670px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 43px;
}

.hero-proof {
  backdrop-filter: blur(7px);
  background: rgba(7, 25, 44, 0.72);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding: 25px 0 5px 25px;
}

.hero-proof > p {
  color: #cde7e5;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-proof > div {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 2px;
  padding: 17px 0;
}

.hero-proof strong {
  color: var(--lime);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.85rem;
  letter-spacing: -0.04em;
}

.hero-proof span {
  color: #dce7ee;
  font-size: 0.75rem;
}

.hero-scroll {
  align-items: center;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  font-size: 0.66rem;
  font-weight: 700;
  gap: 13px;
  left: max(24px, calc((100vw - 1240px) / 2));
  letter-spacing: 0.1em;
  position: absolute;
  text-transform: uppercase;
  z-index: 1;
}

.hero-scroll span {
  color: var(--lime);
  font-size: 1rem;
}

.intro-grid {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 0.65fr 1.25fr 1.15fr;
}

.intro-kicker {
  align-self: stretch;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 34px;
}

.index-number {
  color: var(--teal);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: clamp(3.8rem, 7vw, 6.6rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
}

.intro-kicker p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  max-width: 145px;
}

.intro-copy h2,
.section-heading h2,
.about-story-copy h2,
.expertise-grid h2,
.quality-grid h2,
.service-feature-copy h2,
.detail-support-grid h2,
.contact-details h2 {
  font-size: clamp(2.45rem, 4.4vw, 4.15rem);
}

.intro-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-top: 24px;
}

.intro-copy .text-link {
  margin-top: 34px;
}

.intro-image {
  min-height: 535px;
  position: relative;
}

.intro-image > img {
  height: 535px;
  object-fit: cover;
  width: 100%;
}

.experience-badge {
  align-items: center;
  background: var(--lime);
  bottom: 0;
  display: flex;
  gap: 14px;
  left: -62px;
  padding: 20px 26px;
  position: absolute;
}

.experience-badge strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.experience-badge span {
  font-size: 0.71rem;
  font-weight: 800;
  line-height: 1.35;
  max-width: 84px;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  margin-bottom: 55px;
}

.section-heading-copy {
  color: var(--ink-soft);
}

.section-heading-copy .text-link {
  margin-top: 20px;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.product-image-wrap {
  aspect-ratio: 1.32;
  background: var(--mist);
  overflow: hidden;
  position: relative;
}

.product-image-wrap img {
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
  width: 100%;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.035);
}

.product-image-wrap > span {
  background: var(--navy-deep);
  bottom: 0;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  left: 0;
  letter-spacing: 0.1em;
  padding: 9px 12px;
  position: absolute;
  text-transform: uppercase;
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.product-card-body h3 {
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}

.product-card-body > p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.65;
  margin: 13px 0 26px;
}

.product-card-body .text-link {
  margin-top: auto;
}

.service-overview {
  background: var(--navy-deep);
  color: var(--white);
}

.service-overview .section-heading-copy {
  color: #b9cbd6;
}

.service-overview .eyebrow {
  color: #cde7e5;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  gap: 25px;
  grid-template-columns: 58px 1fr 30px;
  padding: 27px 3px;
  transition: background-color 180ms ease, padding 180ms ease;
}

.service-row > span:first-child {
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-row h3 {
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
}

.service-arrow {
  color: var(--lime);
  font-size: 1.35rem;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 18px;
  padding-right: 18px;
}

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

.quote-card {
  background: var(--ice);
  border-top: 4px solid var(--teal);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 370px;
  padding: 32px;
}

.quote-mark {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 4rem;
  height: 60px;
  line-height: 1;
}

.quote-card blockquote {
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.85;
  margin: 18px 0 30px;
}

.quote-card figcaption {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 4px;
  margin-top: auto;
  padding-top: 20px;
}

.quote-card figcaption strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.91rem;
}

.quote-card figcaption span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.client-strip {
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  margin-top: 72px;
}

.client-logo {
  align-items: center;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  height: 96px;
  justify-content: center;
  padding: 17px;
}

.client-logo img {
  filter: grayscale(1);
  max-height: 57px;
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease;
  width: 100%;
}

.client-logo:hover img {
  filter: grayscale(0);
}

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

.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.insight-card > img {
  aspect-ratio: 1.55;
  object-fit: cover;
  width: 100%;
}

.insight-card-body {
  padding: 26px;
}

.insight-card-body > p:first-child {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.insight-card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 25px;
}

.contact-band {
  background: var(--teal);
  color: var(--white);
  overflow: hidden;
  padding: 84px 0;
  position: relative;
}

.contact-band::after {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  height: 280px;
  position: absolute;
  right: -90px;
  top: -155px;
  width: 280px;
}

.contact-band-inner {
  align-items: end;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr auto;
  position: relative;
  z-index: 1;
}

.contact-band h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  max-width: 870px;
}

.contact-band-actions {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.site-footer {
  background: var(--navy-deep);
  color: #ccd9e2;
  padding: 88px 0 0;
}

.footer-grid {
  display: grid;
  gap: 55px;
  grid-template-columns: 1.3fr 0.65fr 1fr 0.9fr;
  padding-bottom: 70px;
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  background: var(--white);
  display: block;
  height: auto;
  margin-bottom: 24px;
  max-width: 245px;
  width: 100%;
}

.footer-brand p,
.footer-grid address {
  font-size: 0.8rem;
  line-height: 1.85;
}

.footer-label {
  color: var(--white);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.branch-label {
  margin-top: 25px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 0.8rem;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-contact-link {
  align-items: center;
  display: flex;
  gap: 9px;
}

.footer-contact-icon {
  color: var(--lime);
  height: 15px;
  width: 15px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  font-size: 0.68rem;
  justify-content: space-between;
  letter-spacing: 0.03em;
  padding: 22px 0;
}

.floating-call {
  align-items: center;
  background: var(--lime);
  bottom: 22px;
  box-shadow: 0 10px 32px rgba(11, 31, 53, 0.22);
  color: var(--ink);
  display: flex;
  font-size: 0.72rem;
  font-weight: 900;
  height: 55px;
  justify-content: center;
  position: fixed;
  right: 22px;
  text-transform: uppercase;
  width: 55px;
  z-index: 90;
}

.page-hero {
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  padding: 105px 0 88px;
  position: relative;
}

.page-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  height: 440px;
  position: absolute;
  right: -90px;
  top: -270px;
  width: 440px;
}

.page-hero-inner {
  align-items: end;
  display: grid;
  gap: 80px;
  grid-template-columns: 1.3fr 0.7fr;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(3.4rem, 6.5vw, 6.5rem);
  max-width: 890px;
}

.page-hero-inner > p {
  border-left: 3px solid var(--lime);
  color: #c9d7e1;
  font-size: 0.95rem;
  padding-left: 24px;
}

.about-story-grid {
  align-items: center;
  display: grid;
  gap: 82px;
  grid-template-columns: 1fr 1fr;
}

.about-story-image {
  position: relative;
}

.about-story-image::before {
  background: var(--lime);
  content: "";
  height: 42%;
  left: -18px;
  position: absolute;
  top: -18px;
  width: 8px;
}

.about-story-image img {
  aspect-ratio: 0.96;
  object-fit: cover;
  width: 100%;
}

.about-story-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-top: 24px;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  color: var(--ink-soft);
  padding-left: 29px;
  position: relative;
}

.check-list li::before {
  background: var(--lime);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 8px;
}

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

.mission-card {
  background: var(--white);
  min-height: 460px;
  padding: 54px;
  position: relative;
}

.mission-card > span {
  color: #d2dfe1;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 5rem;
  font-weight: 700;
  position: absolute;
  right: 35px;
  top: 24px;
}

.mission-card h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  max-width: 520px;
}

.mission-card > p:last-child {
  color: var(--ink-soft);
  margin-top: 27px;
  max-width: 560px;
}

.mission-card-dark {
  background: var(--navy);
  color: var(--white);
}

.mission-card-dark > span {
  color: rgba(255, 255, 255, 0.12);
}

.mission-card-dark > p:last-child {
  color: #c9d7e1;
}

.values-grid {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.value-card {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  min-height: 270px;
  padding: 28px 24px;
}

.value-card > span {
  color: var(--teal);
  font-size: 0.69rem;
  font-weight: 800;
}

.value-card h3 {
  font-size: 1.25rem;
  margin: 64px 0 14px;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.79rem;
}

.expertise-section {
  background: var(--navy-deep);
  color: var(--white);
}

.expertise-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.82fr 1.18fr;
}

.expertise-grid > div:first-child > p:not(.eyebrow) {
  color: #becdd7;
  margin: 27px 0 37px;
}

.expertise-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.expertise-list > div {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: 35px 1fr;
  padding: 20px 18px 20px 0;
}

.expertise-list > div:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 18px;
}

.expertise-list span {
  color: var(--lime);
  font-size: 0.64rem;
}

.expertise-list strong {
  font-size: 0.8rem;
}

.quality-grid {
  align-items: end;
  display: grid;
  gap: 85px;
  grid-template-columns: 1fr 0.8fr;
}

.quality-grid > p {
  color: var(--ink-soft);
  font-size: 1rem;
}

.areas-panel {
  align-items: center;
  background: var(--teal);
  color: var(--white);
  display: grid;
  gap: 65px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 75px;
  padding: 48px;
}

.areas-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.73rem;
  font-weight: 700;
  padding: 10px 13px;
}

.testimonials-page-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(20, 140, 135, 0.24), transparent 30%),
    radial-gradient(circle at 7% 96%, rgba(189, 216, 55, 0.08), transparent 25%),
    var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.testimonial-showcase-header {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.6fr);
  margin-bottom: 46px;
  padding-bottom: 42px;
}

.testimonial-showcase-header h2 {
  font-size: clamp(2.55rem, 4.8vw, 4.65rem);
  max-width: 880px;
}

.testimonial-summary {
  display: grid;
  gap: 28px;
}

.testimonial-summary > p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.75;
}

.testimonial-count {
  align-items: end;
  display: flex;
  gap: 15px;
}

.testimonial-count strong {
  color: var(--lime);
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 3.8rem;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.testimonial-count span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.testimonial-wall {
  display: grid;
  gap: 18px;
  grid-auto-columns: 370px;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 0 26px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--lime) rgba(255, 255, 255, 0.12);
  scrollbar-width: thin;
}

.testimonial-wall:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.testimonial-wall::-webkit-scrollbar {
  height: 7px;
}

.testimonial-wall::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.12);
}

.testimonial-wall::-webkit-scrollbar-thumb {
  background: var(--lime);
}

.testimonial-scroll-cue {
  align-items: center;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  font-size: 0.67rem;
  font-weight: 800;
  gap: 10px;
  justify-content: flex-end;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.testimonial-scroll-cue span {
  color: var(--lime);
  font-size: 1rem;
}

.testimonial-story {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 350px;
  padding: 30px;
  scroll-snap-align: start;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.testimonial-story:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(189, 216, 55, 0.5);
  transform: translateY(-4px);
}

.testimonial-story-top {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.testimonial-quote-mark {
  color: var(--lime);
  font-family: Georgia, serif;
  font-size: 4.7rem;
  height: 42px;
  line-height: 0.85;
}

.testimonial-story-index {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.testimonial-story blockquote {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  line-height: 1.85;
  margin: 34px 0 36px;
}

.testimonial-story figcaption {
  border-left: 3px solid var(--lime);
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-left: 15px;
}

.testimonial-story figcaption strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.35;
}

.testimonial-story figcaption span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  line-height: 1.55;
}

.catalog-intro {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 32px;
  margin-bottom: 58px;
  padding-bottom: 38px;
}

.catalog-intro .index-number {
  font-size: 4.3rem;
}

.catalog-intro p {
  color: var(--ink-soft);
  max-width: 550px;
}

.product-detail-hero {
  background: var(--ice);
  padding: 78px 0 92px;
}

.product-detail-grid {
  align-items: center;
  display: grid;
  gap: 80px;
  grid-template-columns: 0.92fr 1.08fr;
}

.back-link {
  color: var(--ink-soft);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-bottom: 65px;
}

.product-detail-copy h1 {
  font-size: clamp(3.3rem, 6vw, 6.2rem);
}

.product-detail-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-top: 27px;
  max-width: 600px;
}

.detail-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 38px;
}

.product-detail-image {
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-detail-image img {
  aspect-ratio: 1.08;
  object-fit: cover;
  width: 100%;
}

.detail-support-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.75fr 1.25fr;
}

.detail-steps {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-steps > div {
  border-bottom: 1px solid var(--line);
  min-height: 220px;
  padding: 28px 30px 28px 0;
}

.detail-steps > div:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 30px;
}

.detail-steps span {
  color: var(--teal);
  font-size: 0.66rem;
  font-weight: 800;
}

.detail-steps h3 {
  font-size: 1.4rem;
  margin: 44px 0 12px;
}

.detail-steps p {
  color: var(--ink-soft);
  font-size: 0.81rem;
}

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

.services-page {
  padding-bottom: 50px;
}

.service-feature {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 85px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 62px 0;
}

.service-feature:first-child {
  padding-top: 0;
}

.service-feature:nth-child(even) .service-feature-image {
  order: 2;
}

.service-feature-image {
  background: var(--ice);
  position: relative;
}

.service-feature-image img {
  aspect-ratio: 1.28;
  object-fit: cover;
  width: 100%;
}

.service-feature-image > span {
  align-items: center;
  background: var(--lime);
  bottom: 0;
  display: flex;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  height: 70px;
  justify-content: center;
  position: absolute;
  right: 0;
  width: 70px;
}

.service-feature-copy .check-list {
  margin: 27px 0 31px;
}

.service-principles {
  background: var(--navy-deep);
  color: var(--white);
}

.principles-grid {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.principles-grid article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 260px;
  padding: 28px;
}

.principles-grid span {
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 800;
}

.principles-grid h3 {
  font-size: 1.25rem;
  margin: 66px 0 15px;
  text-transform: uppercase;
}

.principles-grid p {
  color: #c0d0db;
  font-size: 0.79rem;
}

.insight-grid-page {
  align-items: start;
}

.insight-card-large .insight-card-body h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.article-excerpt {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.article-details {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 18px;
}

.article-details summary {
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
}

.article-details summary::after {
  color: var(--teal);
  content: "+";
  float: right;
}

.article-details[open] summary::after {
  content: "–";
}

.article-details > div {
  color: var(--ink-soft);
  display: grid;
  font-size: 0.8rem;
  gap: 14px;
  padding-top: 18px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 90px;
  grid-template-columns: 0.78fr 1.22fr;
}

.contact-lines {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 45px;
}

.contact-lines a {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5px;
  padding: 19px 0;
}

.contact-lines a:hover strong {
  color: var(--teal);
}

.contact-lines span {
  color: var(--ink-soft);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-lines strong {
  align-items: center;
  display: flex;
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 1rem;
  gap: 10px;
}

.contact-icon {
  color: var(--teal);
  fill: none;
  flex: 0 0 auto;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 18px;
}

.contact-form {
  background: var(--ice);
  display: grid;
  gap: 22px;
  padding: 48px;
}

.form-heading {
  margin-bottom: 10px;
}

.form-heading span {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading h2 {
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  margin-top: 8px;
}

.contact-form label {
  color: var(--ink);
  display: grid;
  font-size: 0.71rem;
  font-weight: 800;
  gap: 8px;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid #cddadd;
  border-radius: 0;
  color: var(--ink);
  font-size: 0.9rem;
  outline: none;
  padding: 13px 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 140, 135, 0.11);
}

.contact-form [aria-invalid="true"] {
  border-color: #b42318;
}

.contact-form textarea {
  resize: vertical;
}

.form-split {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.form-status {
  border-left: 4px solid;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.form-status strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 0.86rem;
}

.form-status p,
.form-status li {
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-status ul {
  margin: 2px 0 0;
  padding-left: 18px;
}

.form-status-success {
  background: rgba(20, 140, 135, 0.1);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.form-status-error {
  background: #fff1f0;
  border-color: #b42318;
  color: #7a271a;
}

.form-honeypot {
  height: 1px;
  left: -10000px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.office-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin-top: 80px;
}

.office-grid article {
  background: var(--navy-deep);
  color: var(--white);
  min-height: 340px;
  padding: 42px;
}

.office-grid article > span {
  color: var(--lime);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.office-grid h2 {
  font-size: 2.4rem;
  margin: 60px 0 20px;
}

.office-grid address {
  color: #c7d6df;
  font-size: 0.84rem;
  margin-bottom: 24px;
}

.office-grid .text-link {
  color: var(--white);
}

.not-found {
  align-items: center;
  background: var(--ice);
  display: flex;
  justify-content: center;
  min-height: 70vh;
  padding: 80px 24px;
  text-align: center;
}

.not-found > div {
  max-width: 720px;
}

.not-found .eyebrow {
  justify-content: center;
}

.not-found h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.not-found > div > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin: 24px 0 36px;
}

.not-found > div > div {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: center;
}

@media (max-width: 1120px) {
  .brand {
    margin-right: 25px;
    width: 180px;
  }

  .desktop-nav {
    gap: 17px;
  }

  .desktop-quote {
    margin-left: 20px;
  }

  .intro-grid {
    gap: 42px;
    grid-template-columns: 0.55fr 1.2fr 1fr;
  }

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

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

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

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 40px, 760px);
  }

  .section {
    padding: 84px 0;
  }

  .utility-inner > span {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .desktop-nav,
  .desktop-quote {
    display: none;
  }

  .brand {
    margin-right: auto;
    width: 205px;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    border: 1px solid var(--line);
    cursor: pointer;
    font-size: 0.72rem;
    font-weight: 900;
    list-style: none;
    padding: 10px 14px;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    min-width: 240px;
    padding: 12px;
    position: absolute;
    right: 0;
    top: 48px;
  }

  .mobile-menu nav a {
    border-bottom: 1px solid var(--line);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 12px;
  }

  .home-hero-inner {
    align-items: end;
    grid-template-columns: 1fr;
    padding-bottom: 88px;
  }

  .hero-proof {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 0.25fr 1fr;
  }

  .intro-image {
    grid-column: 1 / -1;
  }

  .intro-kicker {
    padding-right: 25px;
  }

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

  .testimonial-showcase-header {
    align-items: start;
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .testimonial-summary {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .testimonial-wall {
    grid-auto-columns: 360px;
  }

  .insight-grid .insight-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
  }

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

  .page-hero-inner,
  .quality-grid,
  .expertise-grid,
  .detail-support-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    gap: 40px;
  }

  .page-hero-inner > p {
    max-width: 590px;
  }

  .about-story-grid,
  .service-feature,
  .product-detail-grid {
    gap: 55px;
  }

  .about-story-grid,
  .service-feature,
  .product-detail-grid,
  .areas-panel {
    grid-template-columns: 1fr;
  }

  .areas-panel {
    gap: 35px;
  }

  .service-feature:nth-child(even) .service-feature-image {
    order: 0;
  }

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

  .mission-card {
    min-height: 510px;
    padding: 42px;
  }

  .product-detail-image {
    order: -1;
  }

  .back-link {
    margin-bottom: 45px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .section {
    padding: 70px 0;
  }

  .utility-links {
    gap: 14px;
  }

  .utility-links a {
    font-size: 0.65rem;
  }

  .header-inner {
    height: 74px;
  }

  .brand {
    height: 54px;
    width: 170px;
  }

  .brand img {
    height: 50px;
  }

  .home-hero {
    min-height: calc(100svh - 108px);
  }

  .home-hero-image {
    background-image: linear-gradient(
        90deg,
        rgba(7, 25, 44, 0.97),
        rgba(7, 25, 44, 0.74)
      ),
      url("../assets/original/1753854505_2b9bad1b77d1751faf05.jpeg");
    background-position: 63% center;
  }

  .home-hero-inner {
    min-height: calc(100svh - 108px);
    padding-bottom: 92px;
    padding-top: 68px;
  }

  .hero-copy h1 {
    font-size: clamp(3.3rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-scroll {
    left: 15px;
  }

  .intro-grid,
  .product-grid,
  .testimonial-grid,
  .insight-grid,
  .section-heading,
  .footer-grid,
  .mission-grid,
  .values-grid,
  .expertise-list,
  .detail-steps,
  .form-split,
  .office-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-showcase-header h2 {
    font-size: 2.45rem;
  }

  .testimonial-summary {
    grid-template-columns: 1fr;
  }

  .testimonial-count {
    margin-top: 4px;
  }

  .testimonial-wall {
    grid-auto-columns: minmax(280px, 84vw);
  }

  .testimonial-story {
    min-height: 0;
    padding: 28px 24px;
  }

  .testimonial-story blockquote {
    margin: 30px 0 34px;
  }

  .intro-kicker {
    align-items: center;
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: flex;
    flex-direction: row;
    padding: 0 0 25px;
  }

  .intro-kicker p {
    text-align: right;
  }

  .intro-copy {
    padding: 8px 0;
  }

  .intro-image {
    grid-column: auto;
    min-height: 400px;
  }

  .intro-image > img {
    height: 400px;
  }

  .experience-badge {
    left: 0;
  }

  .section-heading {
    align-items: start;
    gap: 26px;
  }

  .section-heading h2,
  .intro-copy h2,
  .about-story-copy h2,
  .expertise-grid h2,
  .quality-grid h2,
  .service-feature-copy h2,
  .detail-support-grid h2,
  .contact-details h2 {
    font-size: 2.45rem;
  }

  .insight-grid .insight-card:last-child {
    grid-column: auto;
    width: auto;
  }

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

  .contact-band-inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .contact-band-actions {
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .page-hero {
    padding: 78px 0 65px;
  }

  .page-hero h1 {
    font-size: 3.35rem;
  }

  .about-story-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    min-height: auto;
    padding: 36px 28px 42px;
  }

  .mission-card > span {
    font-size: 3.5rem;
    right: 24px;
  }

  .value-card {
    min-height: 230px;
  }

  .expertise-list > div:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .areas-panel {
    padding: 32px 25px;
  }

  .quote-row {
    gap: 22px;
    grid-template-columns: 1fr;
  }

  .catalog-intro {
    align-items: start;
  }

  .product-detail-hero {
    padding: 45px 0 70px;
  }

  .product-detail-copy h1 {
    font-size: 3.25rem;
  }

  .detail-steps > div:nth-child(even) {
    border-left: 0;
    padding-left: 0;
  }

  .service-feature {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

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

  .contact-form {
    padding: 30px 22px;
  }

  .office-grid article {
    min-height: 310px;
    padding: 32px;
  }

  .floating-call {
    bottom: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
