:root {
  --forest: #4f6b38;
  --forest-dark: #273a20;
  --leaf: #91c34b;
  --leaf-dark: #76a73a;
  --cream: #f7f5ed;
  --sand: #ece7d8;
  --white: #ffffff;
  --ink: #1c271b;
  --muted: #667061;
  --gold: #d6a52f;
  --line: rgba(79, 107, 56, 0.16);
  --shadow: 0 20px 50px rgba(37, 55, 30, 0.11);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

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

.section {
  padding: 100px 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  color: var(--white);
  background: var(--forest-dark);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: var(--leaf);
  content: "";
}

.section--dark .eyebrow {
  color: #cbe5a8;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
}

.section--dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(145, 195, 75, 0.48);
  outline-offset: 3px;
}

.btn--primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 12px 28px rgba(79, 107, 56, 0.22);
}

.btn--primary:hover {
  background: var(--forest-dark);
}

.btn--light {
  color: var(--forest-dark);
  background: var(--white);
}

.btn--outline {
  color: var(--forest);
  border-color: rgba(79, 107, 56, 0.35);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--forest);
  background: rgba(145, 195, 75, 0.1);
}

.arrow {
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.btn:hover .arrow,
.text-link:hover .arrow {
  transform: translateX(4px);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--forest-dark);
  transform: translateY(-150%);
}

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

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: var(--forest-dark);
  font-size: 0.76rem;
}

.topbar__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__group {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar a:hover {
  color: var(--leaf);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(37, 55, 30, 0.07);
}

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

.brand {
  width: min(300px, 37vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  position: relative;
  color: #3f4c3a;
  font-size: 0.86rem;
  font-weight: 600;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--leaf);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link.active {
  color: var(--forest-dark);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest-dark);
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle span::before {
  top: -6px;
}

.menu-toggle span::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 245, 237, 1) 0%, rgba(247, 245, 237, 0.96) 39%, rgba(247, 245, 237, 0.16) 69%, rgba(247, 245, 237, 0.03) 100%);
  content: "";
}

.hero__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 66%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 710px;
  align-items: center;
}

.hero__copy {
  max-width: 630px;
  padding: 90px 0 110px;
}

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

.hero h1 em {
  color: var(--forest);
  font-style: normal;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 38px;
  color: #4f5d49;
  font-size: 0.79rem;
  font-weight: 600;
}

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

.hero__proof span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 5px rgba(145, 195, 75, 0.15);
  content: "";
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

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

.stat strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.split--reverse .split__media {
  order: 2;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  min-height: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-badge {
  position: absolute;
  right: -22px;
  bottom: 34px;
  max-width: 220px;
  padding: 19px 22px;
  border: 6px solid var(--white);
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.media-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.media-badge span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
  color: #475342;
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-dark);
  background: rgba(145, 195, 75, 0.24);
  content: "✓";
  font-size: 0.7rem;
  font-weight: 900;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card:hover {
  border-color: rgba(145, 195, 75, 0.6);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(145, 195, 75, 0.08);
  content: "";
}

.service-card__number {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  border-radius: 50%;
  color: var(--forest);
  background: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 700;
}

.portfolio-banner {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-lg);
  background: var(--forest-dark);
}

.portfolio-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
}

.portfolio-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39, 58, 32, 0.95), rgba(39, 58, 32, 0.44) 65%, rgba(39, 58, 32, 0.12));
  content: "";
}

.portfolio-banner__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: clamp(42px, 7vw, 80px);
  color: var(--white);
}

.portfolio-banner__copy p {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 30px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  counter-increment: process;
}

.process-step:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.process-step::before {
  display: block;
  margin-bottom: 32px;
  color: var(--leaf);
  content: "0" counter(process);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.87rem;
}

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

.quote-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(37, 55, 30, 0.05);
}

.quote-card__mark {
  margin-bottom: 14px;
  color: var(--leaf);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 0.8;
}

.quote-card blockquote {
  margin: 0 0 22px;
  color: #3f4b3b;
  font-size: 0.91rem;
}

.quote-card strong {
  display: block;
  color: var(--forest-dark);
  font-size: 0.84rem;
}

.quote-card span {
  color: var(--muted);
  font-size: 0.74rem;
}

.faq-list {
  max-width: 850px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  position: relative;
  padding: 24px 56px 24px 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: rgba(145, 195, 75, 0.17);
  content: "+";
  font-family: "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 760px;
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.cta-band {
  padding: 76px 0;
  color: var(--white);
  background: var(--forest);
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 8px;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 86px;
  color: var(--white);
  background: var(--forest-dark);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 1px solid rgba(145, 195, 75, 0.24);
  border-radius: 50%;
  content: "";
}

.page-hero::before {
  top: -230px;
  right: -100px;
  width: 540px;
  height: 540px;
}

.page-hero::after {
  right: 130px;
  bottom: -250px;
  width: 420px;
  height: 420px;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 810px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.page-hero p {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  color: #cbe5a8;
  font-size: 0.78rem;
  font-weight: 600;
}

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

.value-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}

.value-card__dot {
  width: 13px;
  height: 13px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 7px rgba(145, 195, 75, 0.15);
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.feature-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: var(--radius-lg);
}

.feature-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-list__item {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.service-list__item .tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(145, 195, 75, 0.14);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list__item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: block;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: border-color 180ms ease, transform 180ms ease;
}

a.contact-card:hover {
  border-color: var(--leaf);
  transform: translateY(-2px);
}

.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--forest-dark);
  font-size: 0.9rem;
}

.form-card {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.field--full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: #3f4c3a;
  font-size: 0.76rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #dce2d7;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
  background: var(--cream);
}

.field input,
.field select {
  height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 132px;
  padding: 14px 15px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 4px rgba(145, 195, 75, 0.13);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.form-status {
  margin: 14px 0 0;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.map-wrap {
  overflow: hidden;
  height: 470px;
  border-radius: var(--radius-lg);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #1b2a17;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.85fr 1fr;
  gap: 52px;
  padding: 72px 0 54px;
}

.footer__logo {
  width: 255px;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer__brand p {
  max-width: 390px;
  font-size: 0.84rem;
}

.footer__heading {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer__links a {
  font-size: 0.82rem;
}

.footer__links a:hover {
  color: var(--leaf);
}

.footer__contact {
  display: grid;
  gap: 14px;
  font-size: 0.81rem;
}

.footer__contact a:hover {
  color: var(--leaf);
}

.footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.floating-call {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: none;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 14px 34px rgba(39, 58, 32, 0.28);
  font-size: 0.8rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

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

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

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

@media (max-width: 980px) {
  .topbar__group:first-child {
    display: none;
  }

  .brand {
    width: 240px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    z-index: 99;
    top: 120px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 20px;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 20px 30px rgba(37, 55, 30, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav__links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__link {
    padding: 14px 8px;
  }

  .nav__links .btn {
    margin-top: 8px;
  }

  .hero,
  .hero__inner {
    min-height: 660px;
  }

  .hero__image {
    width: 72%;
    opacity: 0.48;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(247, 245, 237, 1) 0%, rgba(247, 245, 237, 0.94) 53%, rgba(247, 245, 237, 0.36));
  }

  .trust-strip__inner {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .split--reverse .split__media {
    order: 0;
  }

  .cards,
  .quote-grid,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-step:nth-child(3),
  .process-step:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer__main {
    grid-template-columns: 1.4fr 0.7fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .topbar__inner {
    justify-content: center;
  }

  .topbar__group {
    gap: 12px;
  }

  .topbar__group span {
    display: none;
  }

  .nav {
    min-height: 74px;
  }

  .brand {
    width: 206px;
  }

  .nav__links {
    top: 112px;
  }

  .hero,
  .hero__inner {
    min-height: 680px;
  }

  .hero__image {
    width: 100%;
    opacity: 0.28;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(247, 245, 237, 0.97) 0%, rgba(247, 245, 237, 0.88) 75%, rgba(247, 245, 237, 0.7));
  }

  .hero__copy {
    padding: 80px 0 108px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__proof {
    display: grid;
    gap: 13px;
  }

  .trust-strip {
    margin-top: -32px;
  }

  .trust-strip__inner,
  .cards,
  .quote-grid,
  .service-list,
  .value-grid,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .split__media img,
  .feature-image {
    min-height: 360px;
  }

  .media-badge {
    right: 12px;
    bottom: 18px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .portfolio-banner {
    min-height: 520px;
  }

  .portfolio-banner__copy {
    padding: 36px 26px;
  }

  .process-step,
  .process-step:last-child {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cta-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 72px 0 66px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0 92px;
  }

  .floating-call {
    display: flex;
  }
}
/* @vn-deploy:1784922020649 */
