:root {
  --ink: #111514;
  --ink-soft: #46504c;
  --forest: #174b3b;
  --forest-dark: #10372c;
  --sage: #dce6df;
  --stone: #f4f1eb;
  --paper: #fffefd;
  --copper: #b87842;
  --copper-dark: #92572d;
  --line: #d9ddd9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 31, 25, 0.12);
  --shadow-soft: 0 12px 34px rgba(15, 31, 25, 0.09);
  --radius: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--copper-dark);
}

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

button,
.button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.75rem, 6vw, 5.75rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

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

.narrow {
  max-width: 780px;
}

.section {
  padding: 108px 0;
}

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

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

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

.section-forest h2,
.section-forest h3,
.section-forest a {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.section-forest .eyebrow {
  color: #e6bd95;
}

.lead {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.72;
}

.section-forest .lead {
  color: rgba(255, 255, 255, 0.8);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--forest-dark);
  transform: translateY(-2px);
}

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

.button-light:hover {
  color: var(--forest-dark);
  background: var(--stone);
}

.button-outline {
  color: var(--forest);
  background: transparent;
}

.button-outline:hover {
  color: var(--white);
  background: var(--forest);
}

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

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

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 24, 20, 0.1);
  background: rgba(255, 254, 253, 0.97);
}

.header-inner {
  display: grid;
  min-height: 118px;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  width: 178px;
  height: 96px;
  object-fit: contain;
}

.site-nav {
  justify-self: end;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  position: relative;
  color: #28312e;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
}

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

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--forest);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  min-height: 46px;
  padding: 11px 20px;
  font-size: 0.84rem;
}

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

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-lines {
  position: relative;
}

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

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

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

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

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

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

.hero {
  position: relative;
  display: grid;
  min-height: 715px;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: url("../images/rainbow-exterior.webp") center 46% / cover no-repeat;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 20, 16, 0.9) 0%, rgba(7, 20, 16, 0.68) 42%, rgba(7, 20, 16, 0.12) 78%), linear-gradient(0deg, rgba(7, 20, 16, 0.48), transparent 55%);
}

.hero-content {
  max-width: 780px;
  padding: 110px 0 92px;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.1rem, 7.2vw, 6.5rem);
}

.hero .eyebrow {
  color: #f0c69e;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.32rem);
}

.hero .button-outline {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero .button-outline:hover {
  border-color: var(--white);
  color: var(--forest-dark);
  background: var(--white);
}

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

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

.trust-item {
  padding: 28px 34px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(46px, 8vw, 108px);
}

.split-reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 530px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split-media::after {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 62%;
  height: 58%;
  border-radius: var(--radius);
  content: "";
  background: var(--sage);
}

.feature-list {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 42px;
}

.feature-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sage);
  content: "\2713";
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}

.feature-list span {
  color: var(--ink-soft);
}

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

.service-card {
  position: relative;
  min-height: 320px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--sage);
  font-weight: 800;
}

.service-card p {
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "\2192";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 54px;
}

.process-step {
  position: relative;
  padding: 0 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 26px;
  color: #e6bd95;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
}

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

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--white);
}

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

.page-hero {
  position: relative;
  padding: 118px 0 105px;
  overflow: hidden;
  background: var(--stone);
}

.page-hero::after {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(23, 75, 59, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(23, 75, 59, 0.035), 0 0 0 140px rgba(23, 75, 59, 0.025);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat {
  padding: 28px 30px;
  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.35rem;
  font-weight: 500;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.comparison-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.comparison-card-accent {
  border-color: var(--forest);
  color: rgba(255, 255, 255, 0.8);
  background: var(--forest-dark);
}

.comparison-card-accent h3,
.comparison-card-accent strong {
  color: var(--white);
}

.comparison-card ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.comparison-card-accent li {
  border-color: rgba(255, 255, 255, 0.18);
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
  margin-top: 50px;
}

.gallery-card {
  position: relative;
  grid-column: span 5;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: #1b2823;
  text-align: left;
}

.gallery-card:nth-child(1),
.gallery-card:nth-child(4) {
  grid-column: span 7;
}

.gallery-card:nth-child(1) {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 24px 20px;
  background: linear-gradient(transparent, rgba(8, 18, 14, 0.82));
  font-weight: 700;
}

.gallery-card:focus-visible {
  outline: 4px solid var(--copper);
  outline-offset: 3px;
}

.lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #08100d;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(5, 10, 8, 0.86);
  backdrop-filter: blur(5px);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 1.4rem;
}

.lightbox figcaption {
  padding: 16px 24px 20px;
  color: var(--white);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 46px;
}

.service-panel {
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-panel ul {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(44px, 7vw, 92px);
}

.contact-aside {
  position: sticky;
  top: 32px;
}

.contact-detail {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-detail span,
.contact-detail p {
  margin: 0;
  color: var(--ink-soft);
}

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

.form-card h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 34px;
}

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

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 750;
}

.required {
  color: #a54030;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #bdc6c1;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border 150ms ease, box-shadow 150ms ease;
}

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

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 75, 59, 0.15);
}

.field-hint {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.consent-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--stone);
}

.consent-box input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--forest);
}

.consent-box label {
  margin: 0;
  color: #303936;
  font-size: 0.83rem;
  font-weight: 500;
  line-height: 1.55;
}

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

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-actions .button {
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid #d9aaa0;
  border-radius: var(--radius-sm);
  color: #6c2a1e;
  background: #fff3ef;
}

.form-status.is-visible {
  display: block;
}

.privacy-copy h2 {
  margin-top: 58px;
  font-size: 2rem;
}

.privacy-copy h2:first-child {
  margin-top: 0;
}

.privacy-copy ul {
  padding-left: 22px;
}

.success-wrap {
  display: grid;
  min-height: 67vh;
  place-items: center;
  padding: 90px 0;
  background: var(--stone);
}

.success-card {
  max-width: 760px;
  padding: clamp(38px, 7vw, 78px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 1.7rem;
}

.success-card h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

.success-card .button-row {
  justify-content: center;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--copper);
  background: var(--stone);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #0d1713;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.85fr;
  gap: 70px;
  padding: 76px 0 58px;
}

.footer-brand {
  max-width: 470px;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-lion {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--white);
}

.footer-lion img {
  width: 100%;
  height: 100%;
  padding: 6px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 20px;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
}

.footer-bottom p {
  max-width: 800px;
  margin: 0;
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: 164px 1fr auto;
    gap: 18px;
  }

  .site-logo {
    width: 154px;
  }

  .nav-list {
    gap: 18px;
  }

  .header-cta {
    display: none;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 0;
  }

  .process-step:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 94px;
    grid-template-columns: 142px 1fr;
  }

  .site-logo {
    width: 136px;
    height: 78px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: 94px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    width: 100%;
    padding: 38px 28px;
    background: var(--paper);
    justify-self: stretch;
  }

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

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 500;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 660px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(7, 20, 16, 0.9), rgba(7, 20, 16, 0.48)), linear-gradient(0deg, rgba(7, 20, 16, 0.5), transparent 65%);
  }

  .hero-content {
    padding: 92px 0 72px;
  }

  .trust-grid,
  .split,
  .split-reverse,
  .stat-row,
  .comparison-grid,
  .service-columns,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split-media img {
    min-height: 430px;
  }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .gallery-card,
  .gallery-card:nth-child(1),
  .gallery-card:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-aside {
    position: static;
  }

  .cta-band {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-main {
    gap: 44px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

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

  .section {
    padding: 68px 0;
  }

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

  .hero {
    min-height: 630px;
  }

  .hero::before {
    background-position: 61% center;
  }

  .button-row,
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards-3,
  .process-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 30px;
  }

  .process-grid {
    gap: 0;
  }

  .process-step,
  .process-step:first-child,
  .process-step:nth-child(3),
  .process-step:last-child {
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step span {
    margin-bottom: 12px;
  }

  .page-hero {
    padding: 82px 0 74px;
  }

  .page-hero::after {
    right: -320px;
  }

  .comparison-card,
  .service-panel {
    padding: 30px;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .form-card {
    padding: 26px 20px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }
}
