@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/manrope-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0b1f33;
  --navy-soft: #132b43;
  --offwhite: #f7f5f0;
  --white: #ffffff;
  --gold: #b08d57;
  --gold-light: #d0b98f;
  --graphite: #343a40;
  --muted: #66717a;
  --line: #dedad2;
  --surface: #eeebe4;
  --success: #276749;
  --error: #a12b32;
  --container: 1200px;
  --shadow: 0 24px 60px rgb(11 31 51 / 0.12);
  --radius: 12px;
  --control-radius: 6px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--graphite);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: var(--control-radius);
  background: var(--white);
  color: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: calc(100% - 96px);
  max-width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: 104px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--gold-light);
}

.eyebrow-gold {
  color: var(--gold-light);
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5.1vw, 4.5rem);
  line-height: 1.06;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  line-height: 1.3;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: var(--control-radius);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease;
}

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

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.16);
  color: var(--white);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  background: rgb(11 31 51 / 0.97);
  box-shadow: 0 8px 30px rgb(0 0 0 / 0.14);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-crop {
  display: block;
  width: 155px;
  height: 66px;
  overflow: hidden;
}

.brand-crop img {
  width: 155px;
  height: auto;
  transform: translateY(-8px);
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-navigation a {
  position: relative;
  padding-block: 12px;
  color: rgb(255 255 255 / 0.86);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-navigation > a:not(.header-cta)::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--ease);
}

.site-navigation > a:hover::after,
.site-navigation > a:focus-visible::after {
  transform: scaleX(1);
}

.site-navigation .header-cta {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgb(208 185 143 / 0.7);
  border-radius: var(--control-radius);
  color: var(--white);
}

.site-navigation .header-cta:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 0.3);
  border-radius: var(--control-radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(11 31 51 / 0.98) 0%, rgb(11 31 51 / 0.91) 34%, rgb(11 31 51 / 0.48) 62%, rgb(11 31 51 / 0.22) 100%),
    linear-gradient(0deg, rgb(11 31 51 / 0.26), transparent 40%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 92px;
  padding-bottom: 110px;
}

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

.hero h1 {
  color: var(--white);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  text-underline-offset: 5px;
}

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

.hero-note {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 0.62);
  font-size: 0.86rem;
}

.intentions {
  position: relative;
  z-index: 5;
  margin-top: -72px;
}

.intentions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy-soft);
  box-shadow: var(--shadow);
}

.intention-card {
  display: grid;
  min-height: 170px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 32px;
  border-right: 1px solid rgb(255 255 255 / 0.12);
  color: var(--white);
}

.intention-card:last-child {
  border-right: 0;
}

.intention-number {
  align-self: start;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.intention-card h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.intention-card p {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.perspective {
  padding-top: 150px;
}

.perspective-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 112px);
}

.section-heading h2 {
  max-width: 700px;
}

.perspective-copy > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.perspective-copy blockquote {
  position: relative;
  margin: 36px 0 0;
  padding: 26px 30px 26px 40px;
  border-left: 2px solid var(--gold);
  background: var(--white);
  box-shadow: 0 14px 36px rgb(11 31 51 / 0.06);
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.6;
}

.perspective-copy blockquote span {
  position: absolute;
  top: 5px;
  left: 12px;
  color: var(--gold);
  font-size: 2.5rem;
}

.solutions {
  padding-bottom: 120px;
  background: var(--navy);
}

.solutions-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 64px;
  margin-bottom: 52px;
}

.solutions-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--white);
}

.solutions-heading > p {
  margin-bottom: 4px;
  color: rgb(255 255 255 / 0.68);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: var(--offwhite);
  color: var(--graphite);
  box-shadow: 0 18px 50px rgb(0 0 0 / 0.16);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgb(0 0 0 / 0.24);
}

.solution-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.solution-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgb(11 31 51 / 0.45));
  content: "";
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

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

.solution-image > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 15px;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.solution-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.solution-body h3 {
  font-size: 1.45rem;
}

.solution-body p {
  color: var(--muted);
}

.solution-body ul {
  margin: 6px 0 28px;
  padding: 0;
  list-style: none;
}

.solution-body li {
  position: relative;
  margin-top: 9px;
  padding-left: 18px;
  color: var(--graphite);
  font-size: 0.9rem;
}

.solution-body li::before {
  position: absolute;
  top: 0.69em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.solution-body a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.solution-body a span {
  color: var(--gold);
  font-size: 1.25rem;
}

.method {
  background: var(--offwhite);
}

.method-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.method-media {
  position: relative;
  align-self: stretch;
}

.method-media > img {
  width: 100%;
  min-height: 650px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.method-caption {
  position: absolute;
  right: -28px;
  bottom: 34px;
  max-width: 340px;
  padding: 26px 30px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.method-caption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-caption strong {
  font-size: 1rem;
  line-height: 1.5;
}

.method-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.02rem;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 0 0 26px;
}

.method-steps li:not(:last-child)::before {
  position: absolute;
  top: 40px;
  bottom: 2px;
  left: 20px;
  width: 1px;
  background: var(--line);
  content: "";
}

.method-steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.method-steps h3 {
  margin: 3px 0 6px;
  font-size: 1.08rem;
}

.method-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.principles {
  position: relative;
  overflow: hidden;
  padding-block: 112px;
  background: var(--navy);
  color: var(--white);
}

.principles-bg,
.principles-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.principles-bg {
  object-fit: cover;
}

.principles-overlay {
  background: linear-gradient(90deg, rgb(11 31 51 / 0.99), rgb(11 31 51 / 0.89));
}

.principles-inner {
  position: relative;
  z-index: 1;
}

.principles-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.principles-heading .eyebrow {
  margin-bottom: 8px;
}

.principles-heading h2 {
  max-width: 800px;
  margin: 0;
  color: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 0.18);
}

.principles-grid article {
  padding: 34px 34px 8px 0;
}

.principles-grid article + article {
  padding-left: 34px;
  border-left: 1px solid rgb(255 255 255 / 0.18);
}

.principles-grid article > span {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.principles-grid h3 {
  max-width: 260px;
  margin-top: 40px;
  color: var(--white);
}

.principles-grid p {
  margin: 0;
  color: rgb(255 255 255 / 0.65);
  font-size: 0.92rem;
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact-bg,
.contact-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-bg {
  object-fit: cover;
}

.contact-wash {
  background: linear-gradient(90deg, rgb(247 245 240 / 0.99) 0%, rgb(247 245 240 / 0.94) 46%, rgb(247 245 240 / 0.62) 100%);
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 510px;
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-direct {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-direct span,
.footer-grid > div > span {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--navy);
  font-weight: 600;
  text-underline-offset: 4px;
}

.whatsapp-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  background: rgb(255 255 255 / 0.96);
  box-shadow: var(--shadow);
}

.whatsapp-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gold);
  content: "";
}

.whatsapp-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-card h3 {
  max-width: 460px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.whatsapp-card p {
  max-width: 500px;
  margin: 22px 0 30px;
  color: var(--muted);
}

.whatsapp-button {
  width: 100%;
}

.whatsapp-number {
  display: block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-footer {
  padding-top: 72px;
  background: #071727;
  color: rgb(255 255 255 / 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
}

.brand-crop-footer {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 390px;
  margin: 0;
}

.footer-nav,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-nav a,
.footer-contact a {
  color: rgb(255 255 255 / 0.75);
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--white);
  text-decoration-color: var(--gold-light);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding-block: 24px;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 0.75rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 760px;
  justify-self: end;
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .container {
    width: calc(100% - 64px);
  }

  .site-navigation {
    gap: 20px;
  }

  .site-navigation a {
    font-size: 0.84rem;
  }

  .intentions {
    margin-top: 0;
    background: var(--navy-soft);
  }

  .intentions-grid {
    width: calc(100% - 64px);
    box-shadow: none;
  }

  .intention-card {
    min-height: 150px;
    padding: 26px 20px;
  }

  .perspective {
    padding-top: 104px;
  }

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

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

  .method-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
  }

  .method-media > img {
    min-height: 620px;
  }

  .method-caption {
    right: -20px;
    max-width: 290px;
  }

  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
  }

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

  .field-full {
    grid-column: auto;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-crop {
    width: 150px;
    height: 66px;
  }

  .brand-crop img {
    width: 150px;
    transform: translateY(-8px);
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .site-navigation {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    height: calc(100vh - 72px);
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 30px 20px;
    background: var(--navy);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  }

  .site-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-navigation a {
    display: flex;
    min-height: 58px;
    align-items: center;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
    font-size: 1rem;
  }

  .site-navigation .header-cta {
    justify-content: center;
    margin-top: 24px;
    border: 1px solid var(--gold-light);
  }

  .hero {
    display: block;
    min-height: 0;
    padding-top: 72px;
  }

  .hero-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
  }

  .hero-media img {
    object-position: center 42%;
  }

  .hero-overlay {
    background: linear-gradient(0deg, var(--navy) 0%, rgb(11 31 51 / 0.86) 34%, rgb(11 31 51 / 0.1) 74%);
  }

  .hero-inner {
    margin-top: -86vw;
    padding-top: 0;
    padding-bottom: 52px;
  }

  .hero-copy {
    position: relative;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

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

  .hero-note {
    margin-top: 18px;
  }

  .intentions-grid,
  .perspective-grid,
  .solutions-heading,
  .method-grid,
  .principles-heading,
  .contact-grid,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .intentions-grid {
    width: calc(100% - 40px);
  }

  .intention-card {
    min-height: 0;
    padding: 26px 6px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.12);
  }

  .intention-card:last-child {
    border-bottom: 0;
  }

  .perspective {
    padding-top: 80px;
  }

  .perspective-grid {
    gap: 24px;
  }

  .section-heading h2 br {
    display: none;
  }

  .perspective-copy blockquote {
    padding-right: 22px;
    padding-left: 34px;
  }

  .solutions {
    padding-bottom: 72px;
  }

  .solutions-heading {
    gap: 20px;
    margin-bottom: 34px;
  }

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

  .solution-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .solution-card:hover {
    transform: none;
  }

  .method-grid {
    gap: 52px;
  }

  .method-media {
    order: 2;
  }

  .method-media > img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .method-caption {
    right: 12px;
    bottom: -24px;
    left: 12px;
    max-width: none;
  }

  .method-content {
    order: 1;
  }

  .principles {
    padding-block: 78px;
  }

  .principles-heading {
    gap: 16px;
    margin-bottom: 38px;
  }

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

  .principles-grid article {
    padding: 26px 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.18);
  }

  .principles-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .principles-grid h3 {
    margin-top: 18px;
  }

  .contact-wash {
    background: rgb(247 245 240 / 0.91);
  }

  .contact-grid {
    gap: 42px;
  }

  .whatsapp-card {
    padding: 28px 20px;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-bottom {
    gap: 14px;
  }

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
