:root {
  --navy: #071726;
  --navy-2: #0b2133;
  --gold: #cca378;
  --gold-2: #e5c398;
  --green: #2f6f5e;
  --paper: #f6f3ef;
  --paper-2: #ece7df;
  --white: #ffffff;
  --ink: #12202d;
  --muted: #61707f;
  --line: rgba(7, 23, 38, 0.14);
  --shadow: 0 24px 80px rgba(7, 23, 38, 0.14);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--navy);
  background: var(--gold-2);
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  right: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: calc(var(--max) + 96px);
  margin: 0 auto;
  padding: 12px 14px 12px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: 0 12px 50px rgba(7, 23, 38, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(7, 23, 38, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 184px;
}

.brand img {
  width: 212px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(204, 163, 120, 0.16);
  outline: none;
}

.header-cta,
.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  background: var(--navy);
  border: 1px solid var(--navy);
  border-radius: var(--radius);
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.header-cta svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.header-cta:focus-visible,
.button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(204, 163, 120, 0.45);
  outline-offset: 3px;
}

.button-primary {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.46);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(7, 23, 38, 0.24);
}

.button-outline:hover {
  background: rgba(7, 23, 38, 0.05);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 99px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 23, 38, 0.92) 0%, rgba(7, 23, 38, 0.78) 40%, rgba(7, 23, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 23, 38, 0.44) 0%, rgba(7, 23, 38, 0.12) 54%, rgba(7, 23, 38, 0.26) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 142px 0 76px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 72px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.45;
}

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

.experience-panel {
  position: relative;
  z-index: 4;
  padding: 58px 0 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 23, 38, 0.96), rgba(11, 33, 51, 0.97)),
    url("assets/brand/grid.svg");
  background-color: var(--navy);
  background-size: auto, 240px;
}

.experience-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.experience-label {
  margin: 0 0 24px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.experience-clients {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px 26px;
  align-items: center;
  padding-bottom: 50px;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 98px;
  margin: 0;
  padding: 10px 8px;
}

.client-logo img {
  width: auto;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.client-logo-wide img {
  max-height: 64px;
}

.client-logo-coral img {
  max-height: 66px;
}

.client-logo-oab img,
.client-logo-ok img {
  max-height: 78px;
}

.client-logo-boulevard img {
  max-height: 88px;
}

.client-logo-atlantique img {
  max-height: 90px;
}

.client-logo-floripa img {
  max-height: 82px;
}

.experience-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: 188px;
  margin-bottom: -64px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(7, 23, 38, 0.08);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(7, 23, 38, 0.16);
}

.experience-card div {
  display: grid;
  place-items: center;
  align-content: center;
  padding: 34px 24px;
  text-align: center;
}

.experience-card div + div {
  border-left: 1px solid rgba(7, 23, 38, 0.1);
}

.experience-card strong {
  display: block;
  color: var(--navy-2);
  font-size: 40px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.experience-card span {
  display: block;
  max-width: 300px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.22;
}

.experience-note {
  margin: 78px 0 0;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: right;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section h2 {
  margin: 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: 0;
}

.section p {
  margin-top: 0;
}

.intro-band {
  padding: 72px 0;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: end;
}

.intro-grid p:last-child {
  margin: 0;
  color: #41515f;
  font-size: 18px;
}

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

.expert-section {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.expert-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 58px;
  align-items: center;
}

.expert-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.expert-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(180deg, rgba(7, 23, 38, 0), rgba(7, 23, 38, 0.22));
}

.expert-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.expert-copy p:not(.section-kicker) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.credential-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(7, 23, 38, 0.06);
}

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

.service-card div {
  padding: 24px;
}

.service-card h3,
.steps-list h3,
.values-grid h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.18;
}

.service-card p,
.steps-list p,
.values-grid p {
  margin: 0;
  color: var(--muted);
}

.method-band {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 23, 38, 0.96), rgba(11, 33, 51, 0.96)),
    url("assets/brand/grid.svg");
  background-size: auto, 220px;
}

.method-band h2,
.method-band h3 {
  color: var(--white);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
}

.method-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.method-copy p:not(.section-kicker) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.steps-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  background: var(--gold);
  border-radius: 50%;
}

.steps-list p {
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-section {
  background: var(--paper);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr;
  grid-auto-rows: 300px;
  gap: 18px;
}

.portfolio-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}

.portfolio-grid figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 23, 38, 0) 36%, rgba(7, 23, 38, 0.82) 100%);
}

.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-feature {
  grid-row: span 2;
}

.portfolio-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.portfolio-grid figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.client-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-band {
  background:
    linear-gradient(90deg, rgba(236, 231, 223, 0.96), rgba(246, 243, 239, 0.92)),
    url("assets/brand/hexagon.svg");
  background-repeat: no-repeat;
  background-position: right -180px center;
  background-size: auto, 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-band {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: 52px;
  align-items: start;
}

.reviews-summary {
  position: sticky;
  top: 130px;
}

.reviews-summary .button-outline {
  width: auto;
  margin-top: 24px;
}

.rating-box {
  display: inline-grid;
  gap: 4px;
  min-width: 176px;
  margin-top: 26px;
  padding: 20px 22px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.rating-box strong {
  color: var(--green);
  font-size: 44px;
  line-height: 1;
}

.rating-box span {
  color: var(--muted);
  font-weight: 800;
}

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

.review-cards article {
  min-height: 220px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-cards p {
  margin: 18px 0 22px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.review-cards span {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 58px;
  align-items: start;
}

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

.values-grid div {
  min-height: 168px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.contact-section h2 {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 58px;
  align-items: start;
}

.contact-copy p:not(.section-kicker) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.contact-section .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.contact-section .button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list a {
  color: var(--white);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list a:hover {
  color: var(--gold-2);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.contact-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f9faf9;
  border: 1px solid rgba(7, 23, 38, 0.18);
  border-radius: var(--radius);
  outline: none;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(204, 163, 120, 0.22);
}

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

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

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

.form-status {
  display: none;
  margin: -4px 0 0;
  padding: 12px 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form.has-success .form-status,
.contact-form.has-error .form-status {
  display: block;
}

.contact-form.has-success .form-status {
  color: var(--green);
  border-color: rgba(47, 111, 94, 0.28);
}

.contact-form.has-error .form-status {
  color: #9f2d2d;
  border-color: rgba(159, 45, 45, 0.28);
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #030d16;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(var(--max), calc(100% - 48px));
  min-height: 150px;
  margin: 0 auto;
  padding: 34px 0;
}

.footer-inner img {
  width: 220px;
}

.footer-inner p {
  margin: 0;
  max-width: 440px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
}

.footer-inner a:hover {
  color: var(--gold-2);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    width: 190px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(7, 23, 38, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 18px 45px rgba(7, 23, 38, 0.14);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    min-height: 46px;
    padding: 13px 14px;
  }

  .header-cta {
    display: none;
  }

  .services-grid,
  .method-layout,
  .expert-layout,
  .reviews-layout,
  .about-grid,
  .contact-layout,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

  .client-logo {
    min-height: 86px;
  }

  .client-logo img {
    max-height: 58px;
  }

  .client-logo-boulevard img {
    max-height: 76px;
  }

  .experience-card {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-bottom: -54px;
  }

  .experience-card div + div {
    border-top: 1px solid rgba(7, 23, 38, 0.1);
    border-left: 0;
  }

  .method-copy {
    position: static;
  }

  .reviews-summary {
    position: static;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    padding: 10px 10px 10px 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 164px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 23, 38, 0.92), rgba(7, 23, 38, 0.7)),
      linear-gradient(0deg, rgba(7, 23, 38, 0.44), rgba(7, 23, 38, 0.08));
  }

  .hero-content,
  .section-inner,
  .experience-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-content {
    padding: 118px 0 56px;
  }

  .hero h1 {
    font-size: 48px;
    line-height: 1;
  }

  .hero-lead {
    font-size: 18px;
  }

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

  .button,
  .header-cta {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .section h2 {
    font-size: 32px;
  }

  .experience-panel {
    padding-top: 42px;
  }

  .experience-label {
    margin-bottom: 18px;
    text-align: left;
  }

  .experience-clients {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    padding-bottom: 32px;
  }

  .client-logo {
    min-height: 70px;
    padding: 8px 4px;
  }

  .client-logo img,
  .client-logo-wide img {
    max-height: 46px;
  }

  .client-logo-coral img {
    max-height: 48px;
  }

  .client-logo-oab img,
  .client-logo-ok img,
  .client-logo-atlantique img {
    max-height: 56px;
  }

  .client-logo-boulevard img {
    max-height: 62px;
  }

  .client-logo-floripa img {
    max-height: 58px;
  }

  .experience-card {
    margin-bottom: -42px;
  }

  .experience-card div {
    padding: 26px 18px;
  }

  .experience-card strong {
    font-size: 32px;
  }

  .experience-card span {
    margin-top: 10px;
    font-size: 18px;
  }

  .experience-note {
    margin-top: 58px;
    text-align: left;
  }

  .services-grid,
  .values-grid,
  .review-cards,
  .client-strip,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .portfolio-grid {
    grid-auto-rows: 320px;
  }

  .portfolio-feature {
    grid-row: span 1;
  }

  .steps-list li {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .contact-form {
    padding: 22px;
  }

  .contact-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .footer-inner img {
    width: 190px;
  }
}

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