:root {
  --ink: #02261d;
  --ink-soft: #123c32;
  --blue: #2a4366;
  --gold: #d7b679;
  --gold-soft: #efe1c7;
  --text: #616a68;
  --muted: #8a9290;
  --line: #e5e8e7;
  --paper: #ffffff;
  --surface: #f7f7f7;
  --shadow: 0 18px 45px rgba(2, 38, 29, 0.11);
  --radius: 4px;
  --container: 1290px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

h3 {
  font-size: 1.45rem;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.topbar {
  color: #fff;
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.topbar a,
.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar svg {
  width: 15px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(2, 38, 29, 0.08);
}

.site-header.is-sticky {
  animation: drop-in 0.25s ease-out;
}

@keyframes drop-in {
  from {
    transform: translateY(-100%);
  }
}

.nav-inner {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 210px;
  height: 84px;
  object-fit: contain;
}

.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.nav-dropdown > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
}

.site-nav > ul > li > a::after,
.nav-dropdown > button::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after,
.nav-dropdown:hover > button::after,
.nav-dropdown > button.active::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button svg {
  width: 14px;
  margin-left: 5px;
}

.submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: -20px;
  width: 190px;
  margin: 0;
  padding: 12px 0;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
  list-style: none;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.submenu a {
  display: block;
  min-height: auto;
  padding: 9px 20px;
}

.submenu a:hover {
  color: var(--gold);
}

.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu,
.nav-dropdown.open .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  content: "";
  transition: 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(690px, calc(100vh - 144px));
  display: grid;
  align-items: center;
  color: #fff;
  background: center / cover no-repeat url("../images/banners/home-hero.jpg");
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 38, 29, 0.92), rgba(2, 38, 29, 0.58) 55%, rgba(2, 38, 29, 0.22));
  content: "";
}

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

.hero-content {
  max-width: 760px;
  padding-block: 100px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero h1,
.page-hero h1 {
  margin-bottom: 24px;
  color: #fff;
}

.hero p {
  max-width: 670px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s ease;
  cursor: pointer;
}

.button:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.button-outline {
  color: #fff;
  background: transparent;
}

.button-outline:hover {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.page-hero {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
  text-align: center;
  background: center / cover no-repeat url("../images/banners/default.jpg");
}

.page-hero.about {
  background-image: url("../images/banners/about.jpg");
}

.page-hero.portfolio {
  background-image: url("../images/banners/portfolio.jpg");
}

.page-hero.careers {
  background-image: url("../images/banners/careers.jpg");
}

.page-hero.contact {
  background-image: url("../images/banners/contact.jpg");
}

.page-hero.certificates {
  background-image: url("../images/banners/certificates.jpg");
}

.page-hero::before {
  background: rgba(0, 0, 0, 0.56);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-muted {
  background: var(--surface);
}

.section-dark {
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

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

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading.center .eyebrow::after {
  width: 38px;
  height: 1px;
  background: currentColor;
  content: "";
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.intro-copy p:last-of-type {
  margin-bottom: 30px;
}

.intro-art {
  position: relative;
  min-height: 520px;
  background: right top / auto 100% no-repeat url("../images/home-accent.jpg");
}

.intro-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(92%, 480px);
  padding: 50px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.intro-panel h3 {
  color: #fff;
  font-size: 2rem;
}

.value-grid,
.solution-grid,
.project-grid,
.skill-grid {
  display: grid;
  gap: 24px;
}

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

.value-card {
  padding: 38px 34px;
  border-top: 3px solid var(--gold);
  background: #fff;
  box-shadow: 0 8px 30px rgba(2, 38, 29, 0.07);
}

.value-card .number {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}

.counter {
  min-height: 235px;
  display: grid;
  place-content: center;
  padding: 30px;
  text-align: center;
  background: #fff;
  border-right: 1px solid var(--line);
  transition: 0.25s ease;
}

.counter:last-child {
  border-right: 0;
}

.counter:hover {
  color: #fff;
  background: var(--ink);
}

.counter-value {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 3.6rem;
  line-height: 1;
}

.counter-title {
  margin-top: 16px;
  font-weight: 600;
}

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

.split-panel {
  min-height: 560px;
  padding: clamp(55px, 8vw, 105px);
}

.split-panel:first-child {
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.split-panel:first-child h2 {
  color: #fff;
}

.sector-list,
.solution-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 26px;
}

.sector-list li,
.solution-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sector-list li {
  padding: 10px 0;
}

.split-panel:last-child {
  background: var(--gold-soft);
}

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

.solution-card {
  padding: 18px 8px 18px 0;
  border-color: rgba(2, 38, 29, 0.15);
  color: var(--ink);
  font-weight: 600;
}

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

.skill-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
  transition: 0.2s ease;
}

.skill-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.skill-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.skill-card li {
  padding: 5px 11px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.85rem;
}

.partners {
  background: left top / auto 100% no-repeat url("../images/home-partners.jpg"), var(--surface);
}

.partner-grid,
.client-grid {
  display: grid;
  gap: 22px;
}

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

.partner-card,
.client-card {
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 7px 25px rgba(2, 38, 29, 0.07);
}

.partner-card {
  min-height: 210px;
  padding: 38px;
}

.partner-card img {
  max-width: 190px;
  max-height: 80px;
  object-fit: contain;
}

.partner-card span {
  margin-top: 18px;
  color: var(--ink);
  font-weight: 600;
}

.about-quote {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 58px;
  border-left: 4px solid var(--gold);
  background: #fff;
  box-shadow: var(--shadow);
}

.about-quote p {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.55;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: 36px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
}

.project-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  content: "";
}

.project-card:nth-child(3n + 2) {
  background: var(--blue);
}

.project-card:nth-child(3n + 3) {
  color: var(--text);
  background: var(--surface);
}

.project-card h3 {
  color: #fff;
}

.project-card:nth-child(3n + 3) h3 {
  color: var(--ink);
}

.client-grid {
  grid-template-columns: repeat(5, 1fr);
}

.client-card {
  min-height: 150px;
  padding: 25px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.client-card img {
  width: 100%;
  max-height: 75px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
  transition: 0.2s ease;
}

.client-card:hover img {
  filter: none;
  opacity: 1;
}

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

.certificate-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
  cursor: zoom-in;
}

.certificate-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.3s ease;
}

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

.certificate-copy {
  padding: 22px;
}

.certificate-copy h3 {
  min-height: 3.2em;
  margin-bottom: 8px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.certificate-copy span {
  color: var(--gold);
  font-weight: 700;
}

.jobs {
  display: grid;
  gap: 14px;
}

.job {
  border: 1px solid var(--line);
  background: #fff;
}

.job summary {
  position: relative;
  padding: 22px 68px 22px 26px;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 1.25rem;
  cursor: pointer;
  list-style: none;
}

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

.job summary::after {
  position: absolute;
  top: 50%;
  right: 25px;
  color: var(--gold);
  content: "+";
  font-family: sans-serif;
  font-size: 1.7rem;
  transform: translateY(-50%);
}

.job[open] summary {
  color: #fff;
  background: var(--ink);
}

.job[open] summary::after {
  content: "−";
}

.job-content {
  padding: 28px;
  border-top: 1px solid var(--line);
}

.job-content h3 {
  margin-top: 26px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
}

.job-content ul {
  padding-left: 20px;
}

.job-note {
  margin-top: 25px;
  padding: 18px;
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
}

.contact-panel {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: center / cover no-repeat url("../images/contact-card.jpg");
}

.contact-panel::before {
  position: absolute;
  inset: 0;
  background: rgba(2, 38, 29, 0.86);
  content: "";
}

.contact-panel > * {
  position: relative;
}

.contact-panel h2 {
  color: #fff;
}

.contact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  margin-top: 17px;
}

.contact-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.77rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-form .field-wide {
  grid-column: 1 / -1;
}

.contact-form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 16px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(215, 182, 121, 0.2);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.policy {
  max-width: 940px;
}

.policy h2 {
  margin: 50px 0 14px;
  font-size: 1.8rem;
}

.policy ul {
  padding-left: 22px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--blue);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 55px;
  padding: 76px 0 60px;
}

.footer-brand img {
  width: 210px;
  height: 85px;
  margin-bottom: 24px;
  padding: 8px;
  background: #fff;
  object-fit: contain;
}

.site-footer h3 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  background: #fff;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .site-nav > ul {
    gap: 18px;
  }

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

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

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

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

  .footer-main > :nth-child(3) {
    display: none;
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    justify-content: center;
  }

  .nav-inner {
    min-height: 84px;
  }

  .brand img {
    width: 170px;
    height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    width: min(390px, 88vw);
    height: 100vh;
    padding: 98px 34px 40px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -15px 0 40px rgba(2, 38, 29, 0.16);
    transform: translateX(105%);
    transition: transform 0.25s ease;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .site-nav > ul {
    display: block;
  }

  .site-nav a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav > ul > li > a::after,
  .nav-dropdown > button::after {
    display: none;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    border-top: 0;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown.open .submenu {
    display: block;
  }

  .submenu a {
    padding-left: 18px;
    color: var(--text);
  }

  .hero {
    min-height: 620px;
  }

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

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

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

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

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

  .split-section {
    grid-template-columns: 1fr;
  }

  .split-panel {
    min-height: auto;
  }

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

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

  .footer-main > :nth-child(3) {
    display: block;
  }
}

@media (max-width: 600px) {
  body {
    line-height: 1.72;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .topbar-inner {
    min-height: 38px;
    gap: 15px;
  }

  .topbar span {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

  .page-hero {
    min-height: 240px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-content {
    padding-block: 70px;
  }

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

  .value-grid,
  .skill-grid,
  .partner-grid,
  .project-grid,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

  .intro-art {
    min-height: 430px;
  }

  .intro-panel {
    width: 96%;
    padding: 34px;
  }

  .counter {
    min-height: 180px;
    padding: 22px 15px;
  }

  .counter-value {
    font-size: 2.8rem;
  }

  .sector-list,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .split-panel {
    padding: 55px 28px;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .client-card {
    min-height: 115px;
    padding: 18px;
  }

  .certificate-card img {
    height: 270px;
  }

  .contact-panel {
    min-height: 480px;
    padding: 34px 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .field-wide {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 58px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .about-quote {
    padding: 36px 28px;
  }
}
