@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("fonts/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("fonts/Prompt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("fonts/Prompt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Prompt";
  src: url("fonts/Prompt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ao-green: #00ce81;
  --ao-green-050: #e6faf2;
  --ao-green-100: #b8f0d9;
  --ao-green-700: #009a60;
  --ao-navy: #00366d;
  --ao-navy-050: #e6ecf2;
  --ao-navy-100: #bcc8d6;
  --ao-navy-700: #00264c;
  --ao-navy-900: #001730;
  --ao-white: #fff;
  --ao-grey-050: #f7f8f9;
  --ao-grey-100: #f0f0f0;
  --ao-grey-200: #e1e1e1;
  --ao-grey-500: #8a8a8a;
  --ao-grey-700: #4a4a4a;
  --shadow-sm: 0 2px 8px rgba(0, 54, 109, 0.08);
  --shadow-md: 0 10px 28px rgba(0, 54, 109, 0.12);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: min(1160px, calc(100vw - 40px));
  --ao-home-hero-image: url("assets/facebook/571163344_1165923658938127_4723109461233509929_n.jpg");
  --ao-home-hero-position: center 48%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ao-white);
  color: var(--ao-navy-900);
  font-family: "Prompt", "Poppins", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

p,
h1,
h2,
h3,
ul,
ol {
  margin-top: 0;
}

p {
  color: #2d5277;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 76px;
  border-bottom: 1px solid rgba(0, 54, 109, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.site-header__inner {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
  text-decoration: none;
}

.brand-link img {
  width: 168px;
  height: auto;
}

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

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 8px 12px;
  color: #254b72;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(0, 206, 129, 0.12);
  color: var(--ao-navy);
}

.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: var(--ao-navy);
  color: var(--ao-white);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.header-cta span,
.button span {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ao-green);
  color: var(--ao-navy);
  font-family: "Poppins", sans-serif;
  line-height: 1;
}

.hero {
  position: relative;
  min-height: clamp(600px, 76svh, 760px);
  overflow: hidden;
  background: var(--ao-navy-700);
  color: var(--ao-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 58%;
  background:
    linear-gradient(90deg, rgba(0, 38, 76, 0.92) 0%, rgba(0, 38, 76, 0.42) 48%, rgba(0, 38, 76, 0.1) 100%),
    url("assets/facebook/project-02.jpg") center / cover no-repeat;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 5vw;
  top: 12%;
  width: 160px;
  height: 72%;
  background:
    linear-gradient(90deg, var(--ao-green) 0 18%, transparent 18% 34%, var(--ao-green) 34% 52%, transparent 52% 68%, var(--ao-green) 68% 86%, transparent 86%);
  opacity: 0.88;
  transform: skewY(9deg);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  min-height: inherit;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.64fr);
  align-items: center;
  gap: 56px;
  padding: 56px 0 64px;
}

.hero__copy {
  max-width: 720px;
}

.hero__copy h1 {
  margin: 0;
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: clamp(42px, 5.6vw, 74px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.03;
}

@media (min-width: 981px) and (max-height: 760px) {
  .hero {
    min-height: 560px;
  }

  .hero__inner {
    padding: 36px 0 42px;
  }

  .hero__copy h1 {
    font-size: 58px;
    line-height: 1.04;
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-proof {
    display: none;
  }

  .hero-note {
    align-self: center;
  }
}

.hero__copy h1 strong {
  color: var(--ao-green);
  font-weight: 800;
}

.hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

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

.button--primary {
  background: var(--ao-green);
  color: var(--ao-navy);
  box-shadow: 0 14px 28px rgba(0, 206, 129, 0.24);
}

.button--dark {
  background: var(--ao-navy);
  color: var(--ao-white);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--ao-white);
  background: rgba(255, 255, 255, 0.06);
}

.button--outline {
  border-color: var(--ao-grey-200);
  color: var(--ao-navy);
  background: var(--ao-white);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof__item {
  min-height: 92px;
  padding: 16px;
  background: rgba(0, 23, 48, 0.36);
}

.hero-proof__item b {
  display: block;
  color: var(--ao-green);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.hero-proof__item span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.hero-note {
  align-self: end;
  margin-bottom: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(0, 23, 48, 0.68);
  color: var(--ao-white);
  box-shadow: 0 24px 64px rgba(0, 23, 48, 0.28);
}

.hero-note img {
  width: 88px;
  height: auto;
  margin-bottom: 18px;
}

.hero-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section--soft {
  background: var(--ao-grey-050);
}

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

.section--green {
  background: var(--ao-green);
  color: var(--ao-navy);
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: inherit;
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.section-heading p {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
}

.section--navy .section-heading p,
.section--navy p {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ao-grey-200);
  border-radius: 8px;
  background: var(--ao-white);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.service-card h3,
.trust-item h3,
.location-panel h3,
.step h3,
.faq-item h3 {
  margin: 0 0 10px;
  color: var(--ao-navy-900);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
}

.service-card p,
.trust-item p,
.location-panel p,
.step p,
.faq-item p {
  margin-bottom: 0;
}

.service-card__mark,
.trust-mark,
.step__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ao-green);
  color: var(--ao-navy);
  font-family: "Raleway", "Prompt", sans-serif;
  font-weight: 800;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 24px;
  align-items: stretch;
}

.location-panel {
  border-radius: 8px;
  background: var(--ao-white);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.location-panel--dark {
  background: var(--ao-navy);
  color: var(--ao-white);
}

.location-panel--dark h3,
.location-panel--dark p {
  color: var(--ao-white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  border: 1px solid rgba(0, 54, 109, 0.12);
  border-radius: 8px;
  background: rgba(0, 206, 129, 0.12);
  color: var(--ao-navy);
  padding: 7px 10px;
  font-size: 14px;
}

.location-panel--dark .area-list li {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ao-white);
}

.media-band {
  min-height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(0deg, rgba(0, 54, 109, 0.5), rgba(0, 54, 109, 0.1)),
    url("assets/pattern-web.jpg") center / cover no-repeat;
}

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

.trust-item {
  border-top: 4px solid var(--ao-green);
  background: var(--ao-white);
  padding: 24px;
}

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

.step {
  min-height: 300px;
  padding: 24px;
  background: var(--ao-navy-700);
}

.step h3 {
  color: var(--ao-white);
}

.step p {
  color: rgba(255, 255, 255, 0.75);
}

.step__number {
  margin-bottom: 44px;
}

.collab {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.collab__panel {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 54, 109, 0.92), rgba(0, 54, 109, 0.7)),
    url("assets/facebook/project-04.jpg") center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.collab__panel::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 36px;
  bottom: 36px;
  width: 100px;
  background:
    linear-gradient(90deg, var(--ao-green) 0 22%, transparent 22% 39%, var(--ao-green) 39% 61%, transparent 61% 78%, var(--ao-green) 78%);
  transform: skewY(9deg);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: #1a446f;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ao-green);
  box-shadow: inset 0 0 0 6px var(--ao-green-100);
  margin-top: 2px;
}

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

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 16px;
}

.project-photo {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ao-navy-050);
  box-shadow: var(--shadow-sm);
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-photo--feature {
  min-height: 560px;
}

.project-photo__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: 8px;
  background: rgba(0, 23, 48, 0.82);
  color: var(--ao-white);
  padding: 16px;
}

.project-photo__caption b {
  display: block;
  color: var(--ao-green);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 20px;
  line-height: 1.25;
}

.project-photo__caption span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.project-showcase__side {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--ao-grey-200);
  border-radius: 8px;
  background: var(--ao-white);
  padding: 24px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.contact-card {
  border-radius: 8px;
  background: var(--ao-white);
  color: var(--ao-navy);
  padding: 26px;
}

.contact-card h3 {
  margin: 0 0 16px;
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 28px;
}

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

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: #214a74;
  font-size: 14px;
  font-weight: 500;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--ao-grey-200);
  border-radius: 8px;
  background: var(--ao-grey-050);
  color: var(--ao-navy-900);
  font: inherit;
  padding: 10px 12px;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.submit-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.contact-facts li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-facts b {
  color: var(--ao-green);
  font-weight: 500;
}

.contact-facts a {
  color: var(--ao-white);
  text-decoration: none;
}

.site-footer {
  padding: 48px 0;
  background: var(--ao-navy-900);
  color: var(--ao-white);
}

.site-footer__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
}

.site-footer img {
  width: 188px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.page-hero {
  padding: 78px 0 70px;
  background: var(--ao-navy);
  color: var(--ao-white);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 36%;
  height: 100%;
  background: url("assets/pattern-web.jpg") center / cover no-repeat;
  opacity: 0.16;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.split-text {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 42px;
}

.split-text h2 {
  margin: 0;
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
}

.content-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 20px;
  color: #1a446f;
}

.content-list li::marker {
  color: var(--ao-green-700);
}

.hero--reference {
  min-height: clamp(640px, calc(100svh - 76px), 820px);
  background: var(--ao-navy-900);
}

.hero--reference::before {
  inset: 0;
  width: 100%;
  background:
    linear-gradient(90deg, rgba(0, 23, 48, 0.94) 0%, rgba(0, 38, 76, 0.86) 34%, rgba(0, 38, 76, 0.36) 64%, rgba(0, 23, 48, 0.16) 100%),
    var(--ao-home-hero-image) var(--ao-home-hero-position) / cover no-repeat;
  clip-path: none;
}

.hero--reference::after {
  top: 13%;
  right: 8vw;
  width: 132px;
  height: 48%;
  opacity: 0.9;
}

.hero--reference .hero__inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(240px, 0.46fr);
  align-items: end;
  padding: clamp(64px, 8vw, 112px) 0 clamp(44px, 6vw, 76px);
}

.hero__label,
.section-label {
  margin: 0 0 18px;
  color: var(--ao-green);
  font-family: "Poppins", "Prompt", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero--reference .hero__copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.98;
}

.hero--reference .hero__lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta div {
  display: grid;
  gap: 3px;
}

.hero-meta b {
  color: var(--ao-green);
  font-size: 14px;
  font-weight: 500;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.hero-note--reference {
  max-width: 300px;
  justify-self: end;
  margin-bottom: 0;
  background: rgba(0, 23, 48, 0.78);
}

.trust-strip {
  background: var(--ao-navy);
  color: var(--ao-white);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-strip__inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip__item {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 26px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.trust-strip__item:last-child {
  border-right: 0;
}

.trust-strip__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--ao-green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__item h2 {
  margin: 0 0 8px;
  color: var(--ao-white);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.trust-strip__item p {
  max-width: 260px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.62;
}

.about-snapshot {
  background: var(--ao-white);
}

.about-snapshot__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.about-snapshot__media {
  position: relative;
  border-radius: 8px;
  background: var(--ao-white);
  padding: 14px;
  box-shadow: 0 18px 48px rgba(0, 54, 109, 0.16);
}

.about-snapshot__media::before {
  content: "";
  position: absolute;
  left: -32px;
  bottom: -32px;
  width: 42%;
  height: 38%;
  background: var(--ao-green);
  z-index: 0;
}

.about-snapshot__media::after {
  content: "";
  position: absolute;
  inset: -20px auto auto -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(0, 54, 109, 0.28) 1px, transparent 1.5px);
  background-size: 13px 13px;
  z-index: 0;
}

.about-snapshot__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 58% 56%;
  border-radius: 6px;
}

.about-snapshot__copy {
  max-width: 620px;
}

.about-snapshot__copy h2,
.latest-projects__header h2 {
  margin: 0;
  color: var(--ao-navy-900);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.about-snapshot__copy p:not(.section-label) {
  margin: 20px 0 24px;
  font-size: 18px;
}

.latest-projects {
  background: var(--ao-navy-900);
  color: var(--ao-white);
}

.latest-projects__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.latest-projects__header h2 {
  color: var(--ao-white);
}

.latest-projects__header h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 14px;
  background: var(--ao-green);
}

.latest-projects__header p {
  max-width: 640px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.project-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--ao-white);
  color: var(--ao-navy-900);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 56%;
}

.project-card div {
  padding: 18px;
}

.project-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 6px;
  background: var(--ao-green);
  color: var(--ao-navy);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 500;
}

.project-card h3 {
  margin: 0 0 8px;
  color: var(--ao-navy-900);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.project-card p {
  margin: 0;
  color: #385c80;
  font-size: 14px;
  line-height: 1.55;
}

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

.portfolio-card {
  overflow: hidden;
  border: 1px solid var(--ao-grey-200);
  border-radius: 8px;
  background: var(--ao-white);
  box-shadow: var(--shadow-sm);
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.portfolio-card__body {
  padding: 20px;
}

.portfolio-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.portfolio-card__meta span {
  border-radius: 8px;
  background: rgba(0, 206, 129, 0.12);
  color: var(--ao-navy);
  padding: 5px 9px;
  font-size: 13px;
}

.portfolio-card h2 {
  margin: 0;
  color: var(--ao-navy-900);
  font-family: "Raleway", "Prompt", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.16;
}

.portfolio-card p {
  margin: 12px 0 0;
}

.portfolio-card__location {
  color: var(--ao-green-700);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 980px) {
  .site-header {
    height: auto;
  }

  .site-header__inner {
    min-height: 76px;
    flex-wrap: wrap;
    gap: 14px;
    padding: 12px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
  }

  .hero::after {
    right: -30px;
    width: 110px;
    opacity: 0.48;
  }

  .hero__inner,
  .location-layout,
  .collab,
  .contact-layout,
  .split-text,
  .about-snapshot__grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    max-width: 520px;
  }

  .hero--reference {
    min-height: auto;
  }

  .hero--reference::before {
    opacity: 1;
    background:
      linear-gradient(90deg, rgba(0, 23, 48, 0.94) 0%, rgba(0, 38, 76, 0.84) 48%, rgba(0, 38, 76, 0.58) 100%),
      var(--ao-home-hero-image) center center / cover no-repeat;
  }

  .hero--reference .hero__inner {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 62px 0 52px;
  }

  .hero-note--reference {
    justify-self: start;
  }

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

  .trust-strip__inner,
  .latest-projects__grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip__item:nth-child(2n) {
    border-right: 0;
  }

  .trust-strip__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .latest-projects__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-grid,
  .trust-grid,
  .process,
  .faq-grid,
  .project-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .brand-link {
    min-width: 132px;
  }

  .brand-link img {
    width: 138px;
  }

  .header-cta {
    margin-left: auto;
    padding-inline: 14px;
  }

  .hero__inner {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .hero--reference .hero__inner {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .hero__copy h1 {
    font-size: 40px;
    line-height: 1.08;
  }

  .hero--reference .hero__copy h1 {
    font-size: clamp(38px, 11vw, 46px);
    line-height: 1.04;
  }

  .hero__label {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .hero__lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .button,
  .latest-projects__header .button,
  .about-snapshot__copy .button {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
  }

  .hero-meta div {
    grid-template-columns: 72px 1fr;
    align-items: baseline;
  }

  .hero-proof {
    display: none;
  }

  .hero-note {
    display: none;
  }

  .trust-strip__inner,
  .latest-projects__grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__item {
    min-height: auto;
    align-items: flex-start;
    padding: 24px 0;
    text-align: left;
    border-right: 0;
  }

  .trust-strip__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .about-snapshot__media {
    padding: 10px;
  }

  .about-snapshot__media::before {
    left: -14px;
    bottom: -14px;
  }

  .about-snapshot__copy h2,
  .latest-projects__header h2 {
    font-size: 34px;
  }

  .project-card img {
    aspect-ratio: 4 / 3;
  }

  .portfolio-card h2 {
    font-size: 24px;
  }

  .service-grid,
  .trust-grid,
  .process,
  .faq-grid,
  .project-showcase {
    grid-template-columns: 1fr;
  }

  .hero-proof__item,
  .step,
  .project-photo,
  .project-photo--feature {
    min-height: auto;
  }

  .project-photo {
    aspect-ratio: 4 / 3;
  }

  .step__number {
    margin-bottom: 22px;
  }

  .section {
    padding: 58px 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
