:root {
  --font-geist: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  --ink: #10223b;
  --ink-soft: #405167;
  --navy: #273c96;
  --navy-deep: #172668;
  --blue: #26a9df;
  --blue-soft: #dff4fb;
  --green: #b3da71;
  --green-deep: #7aa23a;
  --paper: #f7faf8;
  --white: #ffffff;
  --mist: #edf5f6;
  --line: #d9e4e5;
  --shadow: 0 28px 70px rgba(16, 34, 59, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --page: min(1180px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

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

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

body,
button,
a,
summary {
  font-family: var(--font-geist), Arial, Helvetica, sans-serif;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5vw, 4.65rem);
  font-weight: 590;
}

h3 {
  font-size: 1.5rem;
}

::selection {
  background: var(--green);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.section-shell,
.nav-shell,
.hero-grid,
.principles {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(217, 228, 229, 0.82);
  background: rgba(247, 250, 248, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 43px;
  height: 43px;
  border-radius: 50%;
}

.brand-name {
  color: #090d11;
  font-size: 1.22rem;
  font-weight: 820;
  letter-spacing: -0.055em;
}

.brand-name span {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: #314258;
  font-size: 0.91rem;
  font-weight: 540;
}

.desktop-nav a,
.footer-links a {
  position: relative;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 650;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 0;
  background:
    radial-gradient(circle at 77% 17%, rgba(38, 169, 223, 0.12), transparent 27%),
    radial-gradient(circle at 6% 73%, rgba(179, 218, 113, 0.15), transparent 23%),
    var(--paper);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  gap: clamp(42px, 7vw, 100px);
  min-height: 610px;
}

.hero-copy {
  padding-bottom: 34px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(179, 218, 113, 0.2);
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 6.7vw, 6.65rem);
  font-weight: 580;
  line-height: 0.94;
}

.hero h1 em {
  display: block;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 680;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--navy);
  box-shadow: 0 14px 30px rgba(39, 60, 150, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 18px 38px rgba(39, 60, 150, 0.28);
}

.text-link,
.map-link {
  color: var(--navy);
  font-weight: 680;
}

.text-link span,
.map-link span,
.project-link span {
  display: inline-block;
  transition: transform 180ms ease;
}

.text-link:hover span,
.map-link:hover span,
.project-link:hover span {
  transform: translate(3px, -2px);
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 475px;
  padding-bottom: 45px;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.87;
  border-radius: 240px 240px 28px 28px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 34, 59, 0) 55%, rgba(16, 34, 59, 0.28));
  content: "";
}

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

.hero-badge {
  position: absolute;
  right: -42px;
  bottom: 4px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 17px 13px 12px;
  border: 1px solid rgba(217, 228, 229, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(16, 34, 59, 0.15);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 590;
  line-height: 1.4;
}

.hero-badge .badge-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.hero-caption {
  position: absolute;
  bottom: 63px;
  left: -28px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--green);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(39, 60, 150, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
}

.hero-orbit-one {
  top: -210px;
  right: -250px;
  width: 710px;
  height: 710px;
  transform: rotate(18deg);
}

.hero-orbit-two {
  top: -130px;
  right: -330px;
  width: 760px;
  height: 620px;
  transform: rotate(-10deg);
}

.principles {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principles div {
  display: flex;
  min-height: 100px;
  align-items: center;
  gap: 13px;
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.principles div:last-child {
  border-right: 0;
}

.principles strong {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.principles span {
  font-size: 0.9rem;
  font-weight: 620;
}

.about-section {
  padding-block: 132px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(50px, 9vw, 130px);
}

.about-copy {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.lead-paragraph {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.58rem);
  line-height: 1.45;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--line);
}

.about-facts div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: var(--white);
}

.about-facts span {
  margin-bottom: 5px;
  color: #718093;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-facts strong {
  color: var(--navy);
  font-size: 1.04rem;
}

.areas-section {
  position: relative;
  overflow: hidden;
  padding-block: 126px;
  background:
    radial-gradient(circle at 92% 8%, rgba(38, 169, 223, 0.21), transparent 25%),
    var(--ink);
  color: var(--white);
}

.areas-heading,
.projects-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.55fr);
  gap: 70px;
  margin-bottom: 64px;
}

.areas-heading p,
.projects-heading p {
  margin: 0;
  color: #aeb9c7;
  font-size: 1.06rem;
}

.section-kicker-light {
  color: var(--green);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.area-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.area-card:hover {
  border-color: rgba(179, 218, 113, 0.58);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-7px);
}

.area-number {
  margin-bottom: 66px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.area-card h3 {
  max-width: 270px;
  margin-bottom: 20px;
  font-size: clamp(1.6rem, 2.5vw, 2.18rem);
  font-weight: 570;
}

.area-card p {
  color: #b9c4d0;
  line-height: 1.62;
}

.area-card ul {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: auto 0 0;
  padding: 26px 0 0;
  list-style: none;
}

.area-card li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #d3dbe4;
  font-size: 0.69rem;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(55px, 9vw, 130px);
  padding-block: 132px;
}

.method-intro h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 46px 170px 1fr;
  gap: 18px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.method-list li > span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 740;
}

.method-list h3 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.method-list p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.52;
}

.projects-section {
  padding-block: 126px;
  background: var(--mist);
}

.projects-heading p {
  color: var(--ink-soft);
}

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

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 34, 59, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project-card:hover {
  box-shadow: 0 23px 58px rgba(16, 34, 59, 0.13);
  transform: translateY(-7px);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.65;
}

.project-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(16, 34, 59, 0.35));
  content: "";
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.project-image > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 720;
}

.project-body {
  padding: 34px 35px 38px;
}

.project-domain {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-body h3 {
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-weight: 590;
}

.project-body p {
  min-height: 82px;
  color: var(--ink-soft);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 13px;
  color: var(--navy);
  font-weight: 700;
}

.collaboration-section {
  position: relative;
  overflow: hidden;
  background: var(--green);
}

.collaboration-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 420px;
  align-items: center;
  grid-template-columns: 0.52fr 1.3fr auto;
  gap: 50px;
}

.collaboration-grid > p {
  margin: 0;
  font-size: 0.77rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.collaboration-grid h2 {
  max-width: 700px;
  font-size: clamp(2.4rem, 4.6vw, 4.7rem);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.button-dark:hover {
  background: var(--navy-deep);
}

.collaboration-orbit {
  position: absolute;
  top: -160px;
  right: -40px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(16, 34, 59, 0.16);
  border-radius: 50%;
}

.collaboration-orbit::before,
.collaboration-orbit::after {
  position: absolute;
  border: 1px solid rgba(16, 34, 59, 0.13);
  border-radius: 50%;
  content: "";
}

.collaboration-orbit::before {
  inset: 55px -60px 25px 45px;
  transform: rotate(28deg);
}

.collaboration-orbit::after {
  inset: 120px -90px 80px 5px;
  transform: rotate(-20deg);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: clamp(60px, 10vw, 145px);
  padding-block: 132px;
}

.contact-heading h2 {
  margin-bottom: 28px;
}

.contact-heading p {
  max-width: 450px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.contact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 56px rgba(16, 34, 59, 0.08);
}

.contact-block {
  padding: 31px 35px;
  border-bottom: 1px solid var(--line);
}

.contact-block > span {
  display: block;
  margin-bottom: 10px;
  color: #718093;
  font-size: 0.73rem;
  font-weight: 710;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-block > a:not(.map-link) {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.contact-block address {
  margin-bottom: 13px;
  color: var(--ink);
  font-size: 1.16rem;
  font-style: normal;
  line-height: 1.55;
}

.map-link {
  font-size: 0.87rem;
}

.contact-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding: 22px 35px;
  background: #f2f7f6;
  color: #617083;
  font-size: 0.72rem;
}

.contact-meta span:not(:last-child)::after {
  margin-left: 14px;
  color: var(--green-deep);
  content: "•";
}

.site-footer {
  padding: 74px 0 24px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 0.8fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-wordmark {
  width: 190px;
  height: auto;
  margin: -15px 0 -3px;
  padding: 8px;
  border-radius: 16px;
  background: var(--white);
}

.footer-brand p {
  margin: 17px 0 0;
  color: #aeb9c7;
}

.footer-links,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  color: #c3ccd6;
  font-size: 0.9rem;
}

.footer-contact a {
  color: var(--green);
  font-size: 1.04rem;
  font-weight: 650;
}

.footer-legal {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr auto;
  gap: 22px;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8997a7;
  font-size: 0.75rem;
}

.footer-legal summary {
  width: fit-content;
  color: #bdc7d1;
  cursor: pointer;
  font-weight: 600;
}

.footer-legal details[open] {
  grid-column: 1 / -1;
}

.legal-copy {
  max-width: 820px;
  padding: 21px 0 4px;
  color: #aeb9c7;
  line-height: 1.65;
}

.legal-copy p {
  margin-bottom: 12px;
}

.credits-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.credits-copy a:hover {
  color: var(--green);
}

@media (max-width: 1060px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 52px;
  }

  .hero-badge {
    right: -10px;
  }

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

  .collaboration-grid {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .collaboration-grid .button {
    justify-self: start;
    grid-column: 2;
    margin-top: -48px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 36px, 720px);
  }

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

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

  .mobile-menu summary {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 650;
    list-style: none;
  }

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

  .mobile-menu nav {
    position: absolute;
    top: 49px;
    right: 0;
    display: flex;
    width: 235px;
    flex-direction: column;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 10px 9px;
    border-radius: 9px;
    font-size: 0.9rem;
  }

  .mobile-menu nav a:hover {
    background: var(--mist);
  }

  .hero {
    padding-top: 54px;
  }

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

  .hero-copy {
    max-width: 670px;
    padding-bottom: 0;
  }

  .hero-visual {
    justify-self: center;
    max-width: 570px;
  }

  .hero-image-wrap {
    aspect-ratio: 1.08;
    border-radius: 260px 260px 28px 28px;
  }

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

  .principles div:nth-child(2) {
    border-right: 0;
  }

  .principles div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .about-grid,
  .method-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .method-section,
  .contact-section {
    gap: 50px;
  }

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

  .area-card {
    min-height: 350px;
  }

  .area-number {
    margin-bottom: 40px;
  }

  .projects-heading,
  .areas-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .collaboration-grid {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 84px;
  }

  .collaboration-grid .button {
    grid-column: auto;
    margin-top: 4px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .nav-shell {
    min-height: 68px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.07rem;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

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

  .hero-visual {
    padding: 0 0 68px;
  }

  .hero-image-wrap {
    aspect-ratio: 0.92;
  }

  .hero-caption {
    bottom: 86px;
    left: 7px;
  }

  .hero-badge {
    right: 5px;
    bottom: 12px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .principles div {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principles div:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .principles div:last-child {
    border-bottom: 0;
  }

  .about-section,
  .method-section,
  .contact-section {
    padding-block: 90px;
  }

  .areas-section,
  .projects-section {
    padding-block: 90px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts div {
    min-height: 82px;
  }

  .area-card {
    min-height: 385px;
    padding: 28px;
  }

  .method-list li {
    grid-template-columns: 38px 1fr;
  }

  .method-list p {
    grid-column: 2;
  }

  .project-body {
    padding: 29px 27px 33px;
  }

  .project-body p {
    min-height: 0;
  }

  .contact-section {
    gap: 38px;
  }

  .contact-card {
    border-radius: 22px;
  }

  .contact-block,
  .contact-meta {
    padding-inline: 25px;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

  .footer-legal details[open] {
    grid-column: auto;
  }
}

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

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