@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("./assets/fonts/bebas-neue-latin.woff2") format("woff2"),
    url("./assets/fonts/bebas-neue.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src:
    url("./assets/fonts/inter-latin.woff2") format("woff2"),
    url("./assets/fonts/inter-300.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src:
    url("./assets/fonts/inter-latin.woff2") format("woff2"),
    url("./assets/fonts/inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src:
    url("./assets/fonts/inter-latin.woff2") format("woff2"),
    url("./assets/fonts/inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src:
    url("./assets/fonts/inter-latin.woff2") format("woff2"),
    url("./assets/fonts/inter-600.ttf") format("truetype");
}

:root {
  --dark: #121212;
  --dark-90: rgba(18, 18, 18, 0.9);
  --light: #f5f5f5;
  --gold: #c4a464;
  --gold-light: #d5be90;
  --text-70: rgba(245, 245, 245, 0.7);
  --text-60: rgba(245, 245, 245, 0.6);
  --text-50: rgba(245, 245, 245, 0.5);
  --text-40: rgba(245, 245, 245, 0.4);
  --line: rgba(77, 77, 77, 0.3);
  --line-soft: rgba(77, 77, 77, 0.2);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--light);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background: rgba(196, 164, 100, 0.35);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--dark-90);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav-inner {
  width: min(100%, 1280px);
  height: 80px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: auto;
  height: 48px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-menu > a:not(.call-button) {
  color: rgba(245, 245, 245, 0.72);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 20px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.desktop-menu > a:not(.call-button):hover {
  color: var(--gold);
}

.call-button,
.mobile-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.call-button {
  min-width: 144px;
  padding: 13px 24px;
}

.call-button:hover,
.mobile-call:hover,
.primary-cta:hover,
.form-button:hover {
  background: var(--gold-light);
}

.call-button svg {
  width: 16px;
  height: 16px;
}

.mobile-toggle {
  display: none;
  padding: 6px;
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

.mobile-toggle .icon-close,
.mobile-toggle.is-open .icon-menu {
  display: none;
}

.mobile-toggle.is-open .icon-close {
  display: block;
}

.mobile-menu {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid var(--line);
}

.mobile-menu-inner {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-inner > a:not(.mobile-call) {
  color: rgba(245, 245, 245, 0.82);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 24px;
  letter-spacing: 0.02em;
}

.mobile-call {
  margin-top: 12px;
  padding: 16px 24px;
}

.page {
  min-height: 100vh;
  padding: 122px 24px 96px;
  background: var(--dark);
}

.page-wide {
  padding-bottom: 128px;
}

.intro-block,
.narrow-page {
  width: min(100%, 896px);
  margin: 0 auto;
}

.page-wide > .intro-block,
.service-list,
.project-list {
  width: min(100%, 1232px);
  margin-left: auto;
  margin-right: auto;
}

.page-wide > .intro-block h1 {
  max-width: none;
}

.about-page,
.contact-page {
  width: min(100%, 1280px);
  margin-left: auto;
  margin-right: auto;
}

.intro-block {
  margin-bottom: 80px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.3em;
  line-height: 20px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.intro-block h1,
.about-hero h1,
.contact-left h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--light);
  font-size: 72px;
  line-height: 1;
}

.about-hero h1 span,
.contact-left h1 span {
  color: var(--gold);
}

.intro-block p,
.about-hero p,
.contact-left > p {
  max-width: 672px;
  color: var(--text-60);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}

.service-list,
.project-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.split-row,
.project-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.media-box {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-box {
  min-width: 0;
}

.mobile-title,
.mobile-copy {
  display: none;
}

.content-box h2,
.project-copy h2 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
}

.content-box p,
.project-copy p {
  max-width: 640px;
  margin-bottom: 32px;
  color: var(--text-70);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}

.check-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: rgba(245, 245, 245, 0.85);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--gold);
  border-radius: 999px;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.center-cta {
  margin-top: 96px;
  text-align: center;
}

.primary-cta,
.form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  background: var(--gold);
  color: var(--dark);
  border: 0;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition:
    background-color 0.3s ease,
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.primary-cta:hover {
  transform: translateY(-8px);
}

.outline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border: 1px solid rgba(245, 245, 245, 0.35);
  color: var(--light);
  padding: 0 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 96px 24px;
  text-align: center;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.25), rgba(18, 18, 18, 0.82)),
    radial-gradient(circle at center, rgba(18, 18, 18, 0.1), rgba(18, 18, 18, 0.62));
}

.home-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
}

.home-kicker {
  margin-bottom: 24px;
  color: rgba(245, 245, 245, 0.82);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-hero h1 {
  margin-bottom: 28px;
  color: var(--light);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 86px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.home-hero h1 span,
.home-philosophy h2 span {
  color: var(--gold);
}

.home-hero-content > p:not(.home-kicker) {
  width: min(100%, 640px);
  margin: 0 auto 44px;
  color: rgba(245, 245, 245, 0.72);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}

.home-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-down {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 48px;
  color: var(--gold);
  font-size: 34px;
  transform: translateX(-50%);
}

.home-philosophy {
  background: #f5f5f5;
  color: #111;
  padding: 140px 24px;
  text-align: center;
}

.home-philosophy .eyebrow {
  color: rgba(17, 17, 17, 0.55);
}

.home-philosophy h2 {
  margin: 0 auto;
  max-width: 860px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 72px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
}

.gold-rule {
  width: 160px;
  height: 3px;
  margin: 72px auto 0;
  background: var(--gold);
}

.mobile-break {
  display: none;
}

.home-services {
  width: min(100%, 1232px);
  margin: 0 auto;
  padding: 128px 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.home-services article {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.home-services article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.05), rgba(18, 18, 18, 0.78));
}

.home-services img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-services article > div {
  position: absolute;
  z-index: 1;
  left: 40px;
  right: 40px;
  bottom: 36px;
}

.home-services h3 {
  margin-bottom: 12px;
  color: var(--light);
  font-size: 40px;
  line-height: 1;
}

.home-services p {
  color: rgba(245, 245, 245, 0.72);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.home-services > .primary-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 32px;
}

.project-tag {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.project-copy h2 {
  color: var(--light);
  font-size: 36px;
}

.process-page {
  width: min(100%, 896px);
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.step-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 164, 100, 0.1);
  color: var(--gold);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 30px;
  line-height: 36px;
}

.step p {
  color: var(--text-70);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.625;
}

.about-page {
  max-width: 1152px;
}

.about-hero {
  margin-bottom: 80px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 96px;
}

.about-card {
  min-height: 200px;
  border: 1px solid var(--line);
  padding: 32px;
}

.about-card h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 26px;
}

.about-card p {
  color: var(--text-60);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.625;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  padding: 64px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  text-align: center;
}

.stat-number {
  display: block;
  color: var(--gold);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 72px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.stats p {
  margin-top: 8px;
  color: var(--text-50);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials {
  padding-top: 96px;
}

.testimonials h2 {
  margin-bottom: 56px;
  color: var(--light);
  font-size: 56px;
  line-height: 0.98;
  text-align: center;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.testimonial-card {
  min-height: 260px;
  border: 1px solid var(--line);
  padding: 40px 36px;
}

.stars {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.1em;
}

.testimonial-card p {
  color: var(--text-60);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  margin-top: 32px;
  color: var(--light);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-card span {
  margin-top: 6px;
  color: var(--text-50);
  font-size: 14px;
}

.contact-page {
  display: grid;
  grid-template-columns: 448px minmax(0, 1fr);
  width: min(100%, 1152px);
  gap: 160px;
  align-items: start;
}

.contact-left {
  padding-top: 80px;
}

.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 164, 100, 0.1);
  color: var(--gold);
}

.contact-item small {
  display: block;
  color: var(--text-40);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
}

.contact-form {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-40);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--light);
  padding: 16px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.field select {
  color-scheme: dark;
  background-color: var(--dark);
}

.field select option {
  background: #121212;
  color: #f5f5f5;
}

.field select option:checked,
.field select option:hover {
  background: #caa967;
  color: #111;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(210, 224, 242, 0.82);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.form-button {
  width: 100%;
  min-height: 60px;
}

.callback {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 700;
  border-top-left-radius: 10px;
}

.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--line-soft);
  padding: 64px 24px;
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.footer-logo {
  width: auto;
  height: 40px;
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 320px;
  color: var(--text-40);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-links h4 {
  margin-bottom: 16px;
  color: var(--gold);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  color: var(--text-50);
  font-size: 14px;
  line-height: 20px;
  transition: color 0.3s ease;
}

.footer-links a + a {
  margin-top: 12px;
}

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

.copyright {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  color: rgba(245, 245, 245, 0.3);
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

.mobile-bottom-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 55;
  display: none;
  border-top: 1px solid var(--line);
}

.mobile-bottom-bar a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  background: var(--dark);
  color: var(--light);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-bottom-bar .gold {
  background: var(--gold);
  color: var(--dark);
}

.legal-page {
  width: min(100%, 768px);
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 48px;
  font-size: 60px;
}

.legal-page section + section {
  margin-top: 32px;
}

.legal-page h2 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 28px;
}

.legal-page p {
  color: var(--text-70);
  font-weight: 300;
  line-height: 1.625;
}

@media (max-width: 900px) {
  body {
    padding-bottom: 56px;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .brand img {
    height: 44px;
    max-width: 190px;
    object-fit: contain;
    object-position: left center;
  }

  .page {
    padding: 128px 24px 96px;
  }

  .intro-block h1,
  .about-hero h1,
  .contact-left h1 {
    font-size: 52px;
  }

  .split-row,
  .project-row,
  .split-row.reverse,
  .project-row.reverse,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .split-row.reverse .content-box,
  .project-row.reverse .project-copy {
    order: 2;
  }

  .split-row.reverse .media-box,
  .project-row.reverse .media-box {
    order: 1;
  }

  .service-list,
  .project-list {
    gap: 72px;
  }

  .about-cards,
  .stats {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding-top: 0;
  }

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

  .mobile-bottom-bar {
    display: flex;
  }

  .callback {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .page,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-block h1,
  .about-hero h1,
  .contact-left h1 {
    font-size: 44px;
  }

  .content-box h2,
  .project-copy h2 {
    font-size: 36px;
  }

  .step {
    gap: 24px;
  }

  .step > div:last-child {
    min-width: 0;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 84px;
  }

  .site-nav {
    background:
      radial-gradient(circle at center top, rgba(245, 245, 245, 0.08), transparent 58%),
      rgba(18, 18, 18, 0.96);
  }

  .nav-inner {
    height: 126px;
    padding-left: 38px;
    padding-right: 38px;
  }

  .brand img {
    height: 64px;
    max-width: 176px;
  }

  .mobile-toggle {
    padding: 4px;
  }

  .mobile-toggle svg {
    width: 38px;
    height: 38px;
    stroke-width: 2.2;
  }

  .mobile-toggle.is-open {
    border: 2px solid rgba(245, 245, 245, 0.75);
    border-radius: 8px;
    padding: 8px;
  }

  .mobile-menu {
    position: fixed;
    inset: 126px 0 84px;
    z-index: 54;
    overflow-y: auto;
    background: #121212;
    border-top: 1px solid var(--line);
  }

  .site-nav.menu-open {
    inset: 0 0 84px;
    overflow-y: auto;
    background: #121212;
  }

  .site-nav.menu-open .mobile-menu {
    position: static;
    min-height: calc(100svh - 126px - 84px);
    display: block;
  }

  .mobile-menu-inner {
    padding: 54px 38px 48px;
    gap: 46px;
  }

  .mobile-menu-inner > a:not(.mobile-call) {
    color: rgba(245, 245, 245, 0.8);
    font-size: 33px;
    line-height: 1;
  }

  .mobile-call {
    min-height: 82px;
    margin-top: 26px;
    gap: 14px;
    font-size: 22px;
    letter-spacing: 0.14em;
  }

  .mobile-call svg {
    width: 28px;
    height: 28px;
  }

  .mobile-bottom-bar {
    display: flex;
    height: 84px;
  }

  .mobile-bottom-bar a {
    min-height: 84px;
    gap: 14px;
    font-size: 22px;
    letter-spacing: 0.05em;
  }

  .mobile-bottom-bar svg {
    width: 29px;
    height: 29px;
  }

  .callback {
    right: 0;
    bottom: 84px;
    z-index: 58;
    min-width: 196px;
    min-height: 78px;
    display: inline-flex;
    justify-content: center;
    gap: 12px;
    background: #fff;
    color: #111;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
    padding: 0 26px;
    font-size: 20px;
    font-weight: 700;
    text-transform: none;
  }

  .callback svg {
    width: 22px;
    height: 22px;
  }

  .callback-arrow {
    font-size: 28px;
    line-height: 1;
  }

  .page {
    padding: 220px 38px 104px;
  }

  .intro-block {
    margin-bottom: 66px;
  }

  .intro-block p:not(.eyebrow) {
    font-size: 23px;
    line-height: 1.42;
  }

  .eyebrow {
    font-size: 18px;
    letter-spacing: 0.34em;
  }

  .intro-block h1,
  .about-hero h1,
  .contact-left h1 {
    font-size: 52px;
    line-height: 0.98;
  }

  .services-shell .intro-block p:not(.eyebrow),
  .projects-shell .intro-block p:not(.eyebrow) {
    display: none;
  }

  .services-shell .intro-block h1,
  .projects-shell .intro-block h1 {
    font-size: 52px;
  }

  .desktop-title,
  .desktop-copy {
    display: none;
  }

  .mobile-title,
  .mobile-copy {
    display: inline;
  }

  .service-list,
  .project-list {
    gap: 28px;
  }

  .split-row,
  .split-row.reverse,
  .project-row,
  .project-row.reverse {
    position: relative;
    display: block;
    overflow: hidden;
  }

  .split-row .media-box,
  .project-row .media-box {
    aspect-ratio: 4 / 3;
  }

  .project-row .media-box {
    aspect-ratio: 16 / 9;
  }

  .split-row::after,
  .project-row::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.08), rgba(18, 18, 18, 0.78));
    pointer-events: none;
  }

  .split-row .content-box,
  .project-row .project-copy,
  .split-row.reverse .content-box,
  .project-row.reverse .project-copy {
    position: absolute;
    z-index: 1;
    left: 32px;
    right: 32px;
    bottom: 30px;
    order: initial;
  }

  .split-row.reverse .media-box,
  .project-row.reverse .media-box {
    order: initial;
  }

  .content-box h2,
  .project-copy h2 {
    color: var(--light);
    font-size: 42px;
    line-height: 1.02;
  }

  .content-box p {
    margin-bottom: 0;
    color: rgba(245, 245, 245, 0.72);
    font-size: 24px;
    line-height: 1.34;
  }

  .project-copy p,
  .check-list {
    display: none;
  }

  .project-tag {
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 0.38em;
  }

  .center-cta {
    margin-top: 78px;
  }

  .primary-cta,
  .form-button {
    width: 100%;
    min-height: 78px;
    padding: 0 20px;
    font-size: 20px;
    letter-spacing: 0.16em;
  }

  .home-hero {
    min-height: calc(100svh - 126px - 84px);
    margin-top: 126px;
    padding: 62px 38px 50px;
  }

  .home-hero h1 {
    font-size: clamp(70px, 15vw, 88px);
  }

  .home-kicker {
    font-size: 19px;
    line-height: 1.55;
  }

  .home-hero-content > p:not(.home-kicker) {
    font-size: 28px;
  }

  .home-actions {
    display: grid;
    gap: 24px;
  }

  .home-actions .primary-cta,
  .home-actions .outline-cta {
    width: 100%;
    min-height: 96px;
    font-size: 20px;
  }

  .hero-down {
    bottom: 22px;
  }

  .home-philosophy {
    padding: 176px 38px 146px;
  }

  .home-philosophy h2 {
    font-size: 60px;
  }

  .home-services {
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 64px 38px 128px;
  }

  .home-services article {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-services article > div {
    left: 32px;
    right: 32px;
    bottom: 28px;
  }

  .home-services h3 {
    font-size: 42px;
  }

  .home-services p {
    font-size: 24px;
  }

  .process-shell {
    padding-top: 210px;
  }

  .process-page .intro-block {
    text-align: left;
  }

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

  .process-page .intro-block h1 {
    color: var(--light);
    font-size: 64px;
  }

  .process-page .intro-block p:not(.eyebrow) {
    display: block;
    max-width: none;
    color: var(--text-60);
    font-size: 28px;
    line-height: 1.48;
  }

  .steps {
    gap: 88px;
  }

  .step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 52px;
    text-align: left;
  }

  .step::before {
    content: none;
  }

  .step-icon {
    position: relative;
    z-index: 1;
    width: 102px;
    height: 102px;
    flex: 0 0 102px;
    margin: 0;
    background: rgba(196, 164, 100, 0.1);
    color: var(--gold);
  }

  .step-icon svg {
    width: 42px;
    height: 42px;
  }

  .step h2 {
    color: var(--gold);
    font-size: 34px;
    line-height: 1;
    margin-bottom: 26px;
  }

  .process-page .desktop-title {
    display: inline;
  }

  .process-page .mobile-title {
    display: none;
  }

  .step p {
    color: var(--text-60);
    font-size: 28px;
    line-height: 1.46;
  }

  .about-shell {
    padding-top: 210px;
  }

  .about-hero {
    text-align: left;
  }

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

  .about-hero h1 {
    color: var(--light);
    font-size: 70px;
    line-height: 1.02;
  }

  .about-hero p:not(.eyebrow) {
    display: block;
    max-width: none;
    color: var(--text-60);
    font-size: 28px;
    line-height: 1.52;
  }

  .about-cards {
    display: flex;
    flex-direction: column;
    gap: 52px;
    margin-bottom: 72px;
  }

  .about-card {
    min-height: 320px;
    padding: 52px 50px;
  }

  .about-card h3 {
    margin-bottom: 26px;
    font-size: 34px;
  }

  .about-card p {
    font-size: 26px;
    line-height: 1.52;
  }

  .stats {
    margin-left: -38px;
    margin-right: -38px;
    padding: 72px 38px;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    overflow: hidden;
    background: #121212;
    border: 0;
    text-align: left;
  }

  .stat-number {
    font-size: 72px;
  }

    .stats p {
    font-size: 20px;
    line-height: 1.35;
  }

  .testimonials {
    padding-top: 92px;
  }

  .testimonials .eyebrow {
    color: var(--gold);
    text-align: center;
  }

  .testimonials h2 {
    margin-bottom: 64px;
    font-size: 52px;
  }

  .testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .testimonial-card {
    min-height: 418px;
    padding: 52px 52px;
  }

  .stars {
    margin-bottom: 32px;
    font-size: 25px;
  }

  .testimonial-card p {
    font-size: 28px;
    line-height: 1.55;
  }

  .testimonial-card strong {
    margin-top: 44px;
    font-size: 24px;
  }

  .testimonial-card span {
    font-size: 20px;
  }

  .about-cta {
    margin-top: 92px;
  }

  .contact-shell {
    padding-top: 220px;
  }

  .contact-page {
    gap: 58px;
  }

  .contact-left h1 {
    font-size: 58px;
  }

  .contact-left > p {
    font-size: 27px;
    line-height: 1.5;
  }

  .contact-details {
    gap: 36px;
    margin-top: 72px;
  }

  .contact-item {
    gap: 28px;
  }

  .contact-icon {
    width: 76px;
    height: 76px;
  }

  .contact-icon svg {
    width: 34px;
    height: 34px;
  }

  .contact-item small {
    font-size: 20px;
    letter-spacing: 0.16em;
  }

  .contact-item strong {
    font-size: 26px;
  }

  .contact-form {
    padding-top: 0;
    gap: 36px;
  }

  .field label {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 92px;
    padding: 24px 26px;
    font-size: 26px;
  }

  .field select option {
    background: #2a2a2c;
    color: #f5f5f5;
  }

  .field textarea {
    min-height: 206px;
  }

  .site-footer {
    padding: 92px 38px 104px;
  }

  .footer-logo {
    height: 52px;
    margin-bottom: 34px;
  }

  .footer-copy {
    max-width: none;
    font-size: 23px;
    line-height: 1.45;
  }

  .footer-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .footer-links h4 {
    font-size: 18px;
    letter-spacing: 0.34em;
  }

  .footer-links a {
    font-size: 22px;
    line-height: 1.6;
  }

  .copyright {
    font-size: 19px;
    line-height: 1.32;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .page,
  .site-footer {
    padding-left: 38px;
    padding-right: 38px;
  }

  .page {
    padding-top: 220px;
  }

  .brand img {
    height: 62px;
    max-width: 168px;
  }

  .intro-block h1,
  .services-shell .intro-block h1,
  .projects-shell .intro-block h1,
  .process-page .intro-block h1 {
    font-size: 48px;
  }

  .content-box h2,
  .project-copy h2,
  .home-services h3 {
    font-size: 38px;
  }

  .content-box p,
  .home-services p {
    font-size: 23px;
  }

  .home-hero h1 {
    font-size: clamp(64px, 15vw, 84px);
  }

  .home-hero-content > p:not(.home-kicker) {
    font-size: 26px;
  }

  .home-philosophy h2,
  .about-hero h1 {
    font-size: 56px;
  }

  .process-page .intro-block h1 {
    font-size: 56px;
  }

  .process-page .intro-block p:not(.eyebrow),
  .step p,
  .about-hero p:not(.eyebrow),
  .about-card p,
  .testimonial-card p {
    font-size: 26px;
  }

  .step {
    gap: 50px;
  }

  .step h2 {
    font-size: 31px;
  }

  .contact-left h1 {
    font-size: 52px;
  }

  .contact-left > p {
    font-size: 25px;
  }
}

.home-section-inner {
  width: min(100%, 1232px);
  margin: 0 auto;
}

.home-services-section {
  background: var(--dark);
  padding: 128px 24px;
}

.home-services-section .intro-block {
  width: 100%;
  margin: 0 0 72px;
}

.home-services-section .intro-block h2,
.home-projects .intro-block h2,
.home-process h2,
.home-testimonials h2,
.home-contact h2 {
  color: var(--light);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.96;
}

.home-services-section .home-services {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.home-process {
  background: #f5f5f5;
  color: #111;
  padding: 128px 24px 112px;
  text-align: center;
}

.home-process .eyebrow {
  color: rgba(17, 17, 17, 0.55);
}

.home-process h2 {
  color: #111;
  margin-bottom: 88px;
}

.home-process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.home-process-steps article {
  position: relative;
  min-width: 0;
}

.step-number {
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 0;
  color: rgba(17, 17, 17, 0.04);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 88px;
  line-height: 1;
}

.home-process-icon {
  position: relative;
  z-index: 1;
  width: 148px;
  height: 148px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121212;
  color: var(--gold);
}

.home-process-icon svg {
  width: 52px;
  height: 52px;
}

.home-process-steps h3 {
  margin-bottom: 18px;
  color: #111;
  font-size: 34px;
  line-height: 1;
}

.home-process-steps p {
  color: rgba(17, 17, 17, 0.58);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.home-projects {
  background: var(--dark);
  padding: 128px 24px 104px;
}

.home-projects .intro-block {
  width: 100%;
  margin: 0 0 72px;
}

.home-project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.home-project-list article {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.home-project-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.04), rgba(18, 18, 18, 0.76));
}

.home-project-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-project-list article > div {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  z-index: 1;
}

.home-project-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.home-project-list h3 {
  color: var(--light);
  font-size: 38px;
  line-height: 1;
}

.home-stats {
  background: var(--dark);
  padding: 48px 24px 96px;
}

.home-testimonials {
  background: #f5f5f5;
  color: #111;
  padding: 128px 24px 120px;
  text-align: center;
}

.home-testimonials .eyebrow {
  color: rgba(17, 17, 17, 0.55);
}

.home-testimonials h2 {
  color: #111;
  margin-bottom: 72px;
}

.home-testimonials .testimonial-card {
  background: #f5f5f5;
  border-color: rgba(17, 17, 17, 0.15);
  text-align: left;
}

.home-testimonials .testimonial-card p {
  color: rgba(17, 17, 17, 0.72);
}

.home-testimonials .testimonial-card strong {
  color: #111;
}

.home-testimonials .testimonial-card span {
  color: rgba(17, 17, 17, 0.5);
}

.home-contact {
  background: var(--dark);
  padding: 128px 24px 112px;
}

.home-contact .contact-left h2 {
  max-width: 760px;
  margin-bottom: 32px;
}

.home-contact .contact-left h2 span {
  color: var(--gold);
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.42);
}

.callback-modal.is-open {
  display: flex;
}

.callback-dialog {
  width: min(100%, 460px);
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  color: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.callback-header {
  min-height: 70px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.callback-header svg {
  color: var(--gold);
  width: 24px;
  height: 24px;
}

.callback-close {
  margin-left: auto;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.callback-body {
  padding: 34px 32px 32px;
}

.callback-body p {
  margin-bottom: 26px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 22px;
  line-height: 1.35;
}

.callback-body label {
  display: block;
  margin: 0 0 10px;
  color: rgba(17, 17, 17, 0.8);
  font-size: 18px;
  font-weight: 600;
}

.callback-body input {
  width: 100%;
  min-height: 62px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 999px;
  background: #f0f0f2;
  color: #111;
  padding: 0 28px;
  font-size: 20px;
  outline: none;
}

.callback-submit {
  width: 100%;
  min-height: 70px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 20px;
  font-weight: 700;
}

.callback-note {
  margin-top: 22px;
  color: rgba(17, 17, 17, 0.38);
  font-size: 15px;
  text-align: center;
}

@media (max-width: 900px) {
  .home-services-section,
  .home-projects,
  .home-contact {
    padding-left: 38px;
    padding-right: 38px;
  }

  .home-services-section {
    padding-top: 152px;
    padding-bottom: 138px;
  }

  .home-services-section .intro-block,
  .home-projects .intro-block {
    margin-bottom: 74px;
  }

  .home-services-section .intro-block h2,
  .home-projects .intro-block h2 {
    font-size: 52px;
  }

  .home-services-section .home-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .home-services-section .home-services article {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .home-services-section .center-cta {
    margin-top: 86px;
  }

  .home-process {
    padding: 154px 38px 132px;
  }

  .home-process h2 {
    margin-bottom: 118px;
    font-size: 52px;
  }

  .home-philosophy .mobile-break {
    display: block;
  }

  .home-process-steps {
    display: flex;
    flex-direction: column;
    gap: 94px;
  }

  .step-number {
    top: -22px;
    font-size: 90px;
  }

  .home-process-icon {
    width: 154px;
    height: 154px;
    margin-bottom: 48px;
  }

  .home-process-steps h3 {
    margin-bottom: 24px;
    font-size: 38px;
  }

  .home-process-steps p {
    font-size: 24px;
    line-height: 1.42;
  }

  .home-projects {
    padding-top: 126px;
    padding-bottom: 86px;
  }

  .home-project-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .home-project-list article {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .home-project-list article > div {
    left: 32px;
    right: 32px;
    bottom: 28px;
  }

  .home-project-list span {
    font-size: 16px;
    letter-spacing: 0.38em;
  }

  .home-project-list h3 {
    font-size: 35px;
  }

  .home-stats {
    padding: 86px 38px 118px;
    overflow: hidden;
  }

  .home-stats .stats {
    margin: 0 -38px;
    padding: 0 38px;
  }

  .home-testimonials {
    padding: 154px 38px 132px;
  }

  .home-testimonials h2 {
    margin-bottom: 74px;
    font-size: 52px;
  }

  .home-testimonials .testimonial-card {
    min-height: 418px;
  }

  .home-contact {
    padding-top: 152px;
    padding-bottom: 128px;
  }

  .home-contact .contact-left h2 {
    font-size: 58px;
  }

  .callback-modal {
    align-items: flex-start;
    padding: 452px 25px 110px;
  }

  .callback-dialog {
    width: 100%;
    border-radius: 14px;
  }
}

@media (max-width: 560px) {
  .home-services-section,
  .home-projects,
  .home-contact,
  .home-process,
  .home-testimonials {
    padding-left: 38px;
    padding-right: 38px;
  }

  .home-process h2,
  .home-testimonials h2 {
    font-size: 48px;
  }

  .home-philosophy .mobile-break {
    display: block;
  }

  .home-project-list h3 {
    font-size: 31px;
  }

  .home-services-section .content-box h2,
  .home-services h3 {
    font-size: 38px;
  }
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

h1,
h2,
h3,
.mobile-menu-inner > a:not(.mobile-call),
.home-hero h1,
.home-philosophy h2,
.content-box h2,
.project-copy h2,
.step h2,
.stat strong,
.home-services-section .intro-block h2,
.home-projects .intro-block h2,
.home-process h2,
.home-testimonials h2,
.home-contact .contact-left h2,
.project-list h3,
.home-project-list h3,
.home-services h3 {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif !important;
}

.home-hero h1 span {
  white-space: nowrap;
}

/* Final mobile parity pass: keep the generated desktop layout, but restore the
   compact mobile scale used by the original BB-Fliesen build. */
@media (max-width: 900px) {
  body {
    padding-bottom: 56px;
  }

  .nav-inner {
    height: 80px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand img {
    height: 48px;
    max-width: 190px;
  }

  .mobile-toggle {
    padding: 4px;
  }

  .mobile-toggle svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
  }

  .mobile-toggle.is-open {
    border-width: 1px;
    border-radius: 6px;
    padding: 6px;
  }

  .mobile-menu {
    inset: 80px 0 56px;
  }

  .site-nav.menu-open {
    inset: 0 0 56px;
  }

  .site-nav.menu-open .mobile-menu {
    min-height: calc(100svh - 80px - 56px);
  }

  .mobile-menu-inner {
    padding: 32px 24px;
    gap: 24px;
  }

  .mobile-menu-inner > a:not(.mobile-call) {
    font-size: 24px;
  }

  .mobile-call {
    min-height: 54px;
    margin-top: 16px;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.08em;
  }

  .mobile-call svg {
    width: 16px;
    height: 16px;
  }

  .mobile-bottom-bar {
    height: 56px;
  }

  .mobile-bottom-bar a {
    min-height: 56px;
    gap: 8px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .mobile-bottom-bar svg {
    width: 22px;
    height: 22px;
  }

  .callback {
    bottom: 56px;
    min-width: 142px;
    min-height: 48px;
    gap: 8px;
    padding: 0 18px;
    border-radius: 14px 0 0 14px;
    font-size: 15px;
  }

  .callback svg {
    width: 17px;
    height: 17px;
  }

  .callback-arrow {
    font-size: 22px;
  }

  .page,
  .process-shell,
  .about-shell,
  .contact-shell {
    padding: 128px 24px 88px;
  }

  .intro-block {
    margin-bottom: 56px;
  }

  .eyebrow {
    font-size: 14px;
    letter-spacing: 0.3em;
  }

  .intro-block p:not(.eyebrow),
  .services-shell .intro-block p:not(.eyebrow),
  .projects-shell .intro-block p:not(.eyebrow),
  .process-page .intro-block p:not(.eyebrow),
  .about-hero p:not(.eyebrow) {
    display: block;
    font-size: 16px;
    line-height: 1.6;
  }

  .intro-block h1,
  .services-shell .intro-block h1,
  .projects-shell .intro-block h1,
  .process-page .intro-block h1,
  .contact-left h1 {
    font-size: 48px;
    line-height: 1;
  }

  .about-hero h1 {
    font-size: 54px;
    line-height: 1;
  }

  .service-list,
  .project-list {
    gap: 28px;
  }

  .split-row .content-box,
  .project-row .project-copy,
  .split-row.reverse .content-box,
  .project-row.reverse .project-copy {
    left: 32px;
    right: 32px;
    bottom: 28px;
  }

  .content-box h2,
  .project-copy h2 {
    font-size: 34px;
    line-height: 1.02;
  }

  .content-box p {
    font-size: 18px;
    line-height: 1.42;
  }

  .project-tag {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 0.3em;
  }

  .primary-cta,
  .form-button {
    min-height: 60px;
    padding: 0 20px;
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .center-cta {
    margin-top: 72px;
  }

  .home-hero {
    min-height: 100svh;
    margin-top: 0;
    padding: 96px 24px 72px;
  }

  .home-kicker {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.3em;
  }

  .home-hero h1 {
    margin-bottom: 28px;
    font-size: 60px;
    line-height: 0.9;
  }

  .home-hero-content > p:not(.home-kicker) {
    margin-bottom: 48px;
    font-size: 18px;
    line-height: 1.55;
  }

  .home-actions {
    gap: 16px;
  }

  .home-actions .primary-cta,
  .home-actions .outline-cta {
    min-height: 60px;
    padding: 0 40px;
    font-size: 14px;
  }

  .hero-down {
    bottom: 40px;
    font-size: 24px;
  }

  .home-philosophy {
    padding: 128px 24px 112px;
  }

  .home-philosophy h2 {
    font-size: 48px;
    line-height: 0.95;
  }

  .gold-rule {
    width: 96px;
    margin-top: 48px;
  }

  .home-services-section,
  .home-projects,
  .home-contact {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-services-section {
    padding-top: 112px;
    padding-bottom: 104px;
  }

  .home-services-section .intro-block,
  .home-projects .intro-block {
    margin-bottom: 56px;
  }

  .home-services-section .intro-block h2,
  .home-projects .intro-block h2,
  .home-process h2,
  .home-testimonials h2,
  .home-contact .contact-left h2,
  .testimonials h2 {
    font-size: 48px;
    line-height: 1;
  }

  .home-services-section .home-services {
    gap: 28px;
  }

  .home-services article > div,
  .home-project-list article > div {
    left: 32px;
    right: 32px;
    bottom: 28px;
  }

  .home-services h3 {
    font-size: 34px;
    line-height: 1.02;
  }

  .home-services p {
    font-size: 18px;
    line-height: 1.42;
  }

  .home-services-section .center-cta {
    margin-top: 72px;
  }

  .home-process {
    padding: 128px 24px 112px;
  }

  .home-process h2 {
    margin-bottom: 88px;
  }

  .home-process-steps {
    gap: 80px;
  }

  .step-number {
    top: -18px;
    font-size: 82px;
  }

  .home-process-icon {
    width: 148px;
    height: 148px;
    margin-bottom: 36px;
  }

  .home-process-icon svg {
    width: 52px;
    height: 52px;
  }

  .home-process-steps h3 {
    margin-bottom: 18px;
    font-size: 34px;
  }

  .home-process-steps p {
    font-size: 18px;
    line-height: 1.55;
  }

  .home-projects {
    padding-top: 112px;
    padding-bottom: 88px;
  }

  .home-project-list {
    gap: 28px;
  }

  .home-project-list span {
    font-size: 12px;
    letter-spacing: 0.3em;
  }

  .home-project-list h3 {
    font-size: 28px;
  }

  .home-stats {
    padding: 72px 24px 96px;
  }

  .home-stats .stats,
  .stats {
    margin-left: -24px;
    margin-right: -24px;
    padding: 48px 24px;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }

  .stat-number {
    font-size: 54px;
  }

  .stats p {
    font-size: 14px;
    line-height: 1.35;
  }

  .home-testimonials,
  .testimonials {
    padding: 112px 24px;
  }

  .testimonial-list {
    gap: 40px;
  }

  .testimonial-card,
  .home-testimonials .testimonial-card {
    min-height: 0;
    padding: 40px 52px;
  }

  .stars {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .testimonial-card p {
    font-size: 20px;
    line-height: 1.55;
  }

  .testimonial-card strong {
    margin-top: 32px;
    font-size: 18px;
  }

  .testimonial-card span {
    font-size: 16px;
  }

  .steps {
    gap: 64px;
  }

  .step {
    gap: 28px;
  }

  .step-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
  }

  .step-icon svg {
    width: 28px;
    height: 28px;
  }

  .step h2 {
    margin-bottom: 12px;
    font-size: 30px;
  }

  .step p {
    font-size: 18px;
    line-height: 1.55;
  }

  .about-cards {
    gap: 32px;
    margin-bottom: 72px;
  }

  .about-card {
    min-height: 200px;
    padding: 32px;
  }

  .about-card h3 {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .about-card p {
    font-size: 16px;
    line-height: 1.6;
  }

  .about-cta {
    margin-top: 72px;
  }

  .contact-page {
    gap: 48px;
  }

  .contact-left > p {
    font-size: 18px;
    line-height: 1.55;
  }

  .contact-details {
    gap: 24px;
    margin-top: 48px;
  }

  .contact-item {
    gap: 16px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }

  .contact-icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-item small,
  .field label {
    font-size: 13px;
    letter-spacing: 0.16em;
  }

  .contact-item strong {
    font-size: 18px;
  }

  .contact-form {
    gap: 24px;
  }

  .field label {
    margin-bottom: 10px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 58px;
    padding: 16px;
    font-size: 18px;
  }

  .field textarea {
    min-height: 132px;
  }

  .home-contact {
    padding-top: 112px;
    padding-bottom: 104px;
  }

  .site-footer {
    padding: 64px 24px 84px;
  }

  .footer-logo {
    height: 40px;
    margin-bottom: 24px;
  }

  .footer-copy {
    max-width: none;
    font-size: 18px;
    line-height: 1.45;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-links h4 {
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.3em;
  }

  .footer-links a {
    font-size: 18px;
    line-height: 1.6;
  }

  .copyright {
    font-size: 14px;
    line-height: 1.35;
  }

  .callback-modal {
    align-items: flex-start;
    padding: 380px 25px 88px;
  }
}

@media (max-width: 560px) {
  .nav-inner,
  .page,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .page,
  .process-shell,
  .about-shell,
  .contact-shell {
    padding-top: 128px;
  }

  .brand img {
    height: 48px;
    max-width: 160px;
  }

  .home-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-hero h1 {
    font-size: 60px;
  }

  .home-philosophy h2,
  .about-hero h1 {
    font-size: 48px;
  }

  .home-services-section,
  .home-projects,
  .home-contact,
  .home-process,
  .home-testimonials,
  .testimonials {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-process h2,
  .home-testimonials h2,
  .testimonials h2 {
    font-size: 42px;
  }

  .step {
    gap: 24px;
  }

  .step h2 {
    font-size: 28px;
  }

  .contact-left h1 {
    font-size: 48px;
  }
}

/* Final parity pass: original text flow, decorative glyphs and page-specific mobile stacks. */
.hero-down::before {
  content: "↓";
}

.stars::before {
  content: "★★★★★";
}

.callback::after {
  content: "";
}

.callback-label-mobile {
  display: none;
}

@media (min-width: 901px) {
  .home-hero {
    min-height: 100vh;
  }

  .home-hero h1 {
    font-size: 128px;
    line-height: 0.9;
  }

  .home-hero h1 span {
    display: block;
  }
}

@media (max-width: 900px) {
  .home-hero h1 {
    font-size: 60px;
    line-height: 0.9;
  }

  .home-hero h1 span {
    display: block;
  }

  .callback .callback-label {
    display: none;
  }

  .callback .callback-label-mobile {
    display: none;
  }

  .callback:not(.callback-contact):not(.callback-home)::after {
    content: "Rückruf";
  }

  .callback.callback-contact .callback-label-mobile,
  .callback.callback-home .callback-label-mobile {
    display: inline;
  }

  .services-shell .split-row,
  .services-shell .split-row.reverse,
  .projects-shell .project-row,
  .projects-shell .project-row.reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    overflow: visible;
  }

  .services-shell .split-row::after,
  .projects-shell .project-row::after {
    content: none;
  }

  .services-shell .split-row .media-box,
  .services-shell .split-row.reverse .media-box,
  .projects-shell .project-row .media-box,
  .projects-shell .project-row.reverse .media-box {
    order: 0;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .services-shell .split-row .content-box,
  .services-shell .split-row.reverse .content-box,
  .projects-shell .project-row .project-copy,
  .projects-shell .project-row.reverse .project-copy {
    position: static;
    order: 1;
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .services-shell .desktop-title,
  .services-shell .desktop-copy,
  .projects-shell .desktop-copy {
    display: inline;
  }

  .services-shell .mobile-title,
  .services-shell .mobile-copy,
  .projects-shell .mobile-copy {
    display: none;
  }

  .services-shell .content-box h2,
  .projects-shell .project-copy h2 {
    color: var(--gold);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 22px;
    text-shadow: none;
  }

  .services-shell .content-box p,
  .projects-shell .project-copy p {
    display: block;
    color: var(--text-70);
    font-size: 18px;
    line-height: 1.55;
    text-shadow: none;
  }

  .services-shell .check-list {
    display: flex;
    gap: 14px;
    margin-top: 28px;
  }

  .services-shell .check-list li {
    color: var(--text);
    font-size: 15px;
    line-height: 1.35;
    text-shadow: none;
  }

  .projects-shell .project-copy small {
    text-shadow: none;
  }

  .legal-page {
    padding-top: 128px;
    padding-bottom: 80px;
  }

  .legal-page h1 {
    font-size: 48px;
  }
}

/* Visibility polish from mobile QA screenshots. */
.copyright a {
  color: var(--gold);
}

@media (max-width: 900px) {
  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.42), rgba(18, 18, 18, 0.28) 38%, rgba(18, 18, 18, 0.72)),
      linear-gradient(90deg, rgba(18, 18, 18, 0.44), rgba(18, 18, 18, 0.12), rgba(18, 18, 18, 0.44));
  }

  .home-hero-content > p:not(.home-kicker) {
    color: rgba(245, 245, 245, 0.9);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
  }

  .home-services article::after,
  .home-project-list article::after {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.16), rgba(18, 18, 18, 0.36) 38%, rgba(18, 18, 18, 0.82)),
      linear-gradient(90deg, rgba(18, 18, 18, 0.45), rgba(18, 18, 18, 0.12));
  }

  .home-services article > div,
  .home-project-list article > div {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .home-services h3 {
    font-size: clamp(29px, 8vw, 34px);
    line-height: 1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
  }

  .home-services p {
    color: rgba(245, 245, 245, 0.86);
    font-size: 16px;
    line-height: 1.34;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
  }

  .home-project-list h3 {
    font-size: clamp(27px, 7.4vw, 31px);
    line-height: 1;
  }

  .home-project-list span {
    font-size: 13px;
    letter-spacing: 0.28em;
  }

  .home-stats {
    padding-top: 76px;
    padding-bottom: 96px;
  }

  .home-stats .stats,
  .stats {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    overflow: hidden;
  }

  .stat-number {
    font-size: clamp(42px, 15vw, 58px);
    letter-spacing: 0;
  }

  .stats p {
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: 0.13em;
    overflow-wrap: anywhere;
  }

  .testimonial-card p,
  .about-card p,
  .footer-copy,
  .footer-links a,
  .copyright {
    color: rgba(245, 245, 245, 0.68);
  }

  .site-footer {
    padding-bottom: 124px;
  }

  .callback-modal {
    align-items: flex-start;
    padding: 150px 25px 80px;
    overflow-y: auto;
  }

  .callback-dialog {
    max-height: calc(100svh - 124px);
    overflow: auto;
  }

  .callback-header {
    min-height: 58px;
    padding: 0 24px;
    font-size: 20px;
  }

  .callback-body {
    padding: 22px 28px 24px;
  }

  .callback-body p {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.32;
  }

  .callback-body input {
    min-height: 48px;
    margin-bottom: 12px;
    font-size: 18px;
  }

  .callback-submit {
    min-height: 54px;
    font-size: 18px;
  }

  .callback-body label {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .callback-note {
    margin-top: 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .home-services article > div,
  .home-project-list article > div {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .home-services h3 {
    font-size: clamp(27px, 8.7vw, 32px);
  }

  .home-services p {
    font-size: 15px;
    line-height: 1.32;
  }

  .stat-number {
    font-size: clamp(38px, 14.2vw, 52px);
  }

  .stats p {
    font-size: 10px;
    letter-spacing: 0.11em;
  }
}

/* Mobile stats fit: keep all three values visible on narrow phones. */
@media (max-width: 560px) {
  .home-stats .stats,
  .stats {
    grid-template-columns: 1.05fr 0.68fr 1fr;
    column-gap: 8px;
    overflow: visible;
  }

  .stats > div {
    min-width: 0;
  }

  .stat-number {
    display: block;
    font-size: clamp(34px, 10.8vw, 43px);
    line-height: 0.95;
    white-space: nowrap;
  }

  .stats p {
    max-width: 100%;
    margin-top: 14px;
    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 0.12em;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 380px) {
  .home-stats .stats,
  .stats {
    grid-template-columns: 1fr 0.62fr 0.9fr;
    column-gap: 6px;
  }

  .stat-number {
    font-size: clamp(30px, 10vw, 37px);
  }

  .stats p {
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}

/* Service detail pages and light interaction layer. */
.service-jump {
  cursor: pointer;
}

.service-jump:focus-within,
.service-jump:hover {
  outline: 1px solid rgba(202, 169, 103, 0.55);
}

.detail-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 0.2s ease;
}

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

.service-detail-page {
  max-width: 1240px;
}

.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 72px;
}

.service-detail-copy h1 {
  max-width: 620px;
  color: var(--light);
  font-size: 86px;
  line-height: 0.95;
}

.service-detail-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 28px;
  color: var(--text-70);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

.service-detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.service-detail-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}

.service-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0), rgba(18, 18, 18, 0.2));
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 72px;
}

.service-tabs a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text-70);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-tabs a:hover,
.service-tabs a.is-active {
  border-color: var(--gold);
  background: rgba(202, 169, 103, 0.12);
  color: var(--gold);
  transform: translateY(-2px);
}

.service-tabs-overview {
  width: min(100%, 1232px);
  margin-bottom: 96px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 96px;
}

.service-feature-card {
  border: 1px solid var(--line);
  padding: 44px 40px;
  min-height: 360px;
}

.service-feature-card h2,
.service-accordion h2,
.service-final-cta h2 {
  color: var(--gold);
  font-size: 40px;
  line-height: 1;
}

.service-feature-card p {
  margin-top: 22px;
  color: var(--text-70);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.service-feature-card ul,
.service-feature-card ol {
  margin-top: 28px;
  display: grid;
  gap: 14px;
  color: var(--light);
  font-size: 15px;
  line-height: 1.45;
}

.service-feature-card li {
  padding-left: 26px;
  position: relative;
}

.service-feature-card ul li::before,
.service-feature-card ol li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-feature-card ul li::before {
  content: "✓";
}

.service-feature-card ol {
  counter-reset: service-step;
}

.service-feature-card ol li {
  counter-increment: service-step;
}

.service-feature-card ol li::before {
  content: counter(service-step, decimal-leading-zero);
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
}

.service-accordion {
  margin-bottom: 96px;
}

.service-accordion > h2 {
  margin-bottom: 32px;
}

.service-accordion details {
  border-top: 1px solid var(--line);
}

.service-accordion details:last-child {
  border-bottom: 1px solid var(--line);
}

.service-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 28px 0;
  color: var(--light);
  font-size: 22px;
  font-weight: 600;
}

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

.service-accordion summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 28px;
  line-height: 1;
}

.service-accordion details[open] summary::after {
  content: "–";
}

.service-accordion details p {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--text-70);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
}

.service-final-cta {
  border-top: 1px solid var(--line-soft);
  padding: 72px 0 0;
  text-align: center;
}

.service-final-cta h2 {
  margin-bottom: 32px;
  color: var(--light);
  font-size: 60px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 900px) {
  .service-detail-hero,
  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-detail-copy h1 {
    font-size: 54px;
  }

  .service-detail-copy > p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.55;
  }

  .service-detail-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .service-tabs {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 56px;
  }

  .service-tabs a {
    min-height: 52px;
    padding: 0 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .service-feature-card {
    min-height: 0;
    padding: 32px 28px;
  }

  .service-feature-card h2,
  .service-accordion h2 {
    font-size: 34px;
  }

  .service-accordion summary {
    padding: 24px 0;
    font-size: 19px;
  }

  .service-final-cta h2 {
    font-size: 46px;
  }
}

/* SEO/Ads landing and qualified lead form polish. */
.contact-form[data-lead-form] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-form[data-lead-form] .field-full,
.contact-form[data-lead-form] .form-button {
  grid-column: 1 / -1;
}

.contact-form [aria-invalid="true"] {
  border-color: #d8a15b;
}

.thank-you-page {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
}

.thank-you-card {
  width: min(100%, 820px);
  text-align: center;
}

.thank-you-card h1,
.landing-hero h1,
.landing-contact h2 {
  color: var(--light);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.98;
}

.thank-you-card p:not(.eyebrow),
.landing-hero-content > p,
.landing-contact p {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--text-70);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.thank-you-actions {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-page {
  background: var(--dark);
}

.landing-hero {
  position: relative;
  min-height: 86vh;
  margin-top: 80px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 96px 24px;
  text-align: center;
}

.landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.35), rgba(18, 18, 18, 0.82)),
    radial-gradient(circle at center, rgba(18, 18, 18, 0.08), rgba(18, 18, 18, 0.6));
}

.landing-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 860px);
}

.landing-hero .primary-cta {
  margin-top: 42px;
}

.landing-section {
  width: min(100%, 1152px);
  margin: 0 auto;
  padding: 96px 24px;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}

.trust-bar strong {
  display: block;
  color: var(--gold);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 64px;
  line-height: 1;
}

.trust-bar span {
  display: block;
  margin-top: 10px;
  color: var(--text-50);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.landing-card {
  border: 1px solid var(--line);
  padding: 36px 32px;
}

.landing-card h2 {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.landing-card p {
  color: var(--text-70);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.landing-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  border-top: 1px solid var(--line-soft);
}

.landing-contact p {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 900px) {
  .contact-form[data-lead-form],
  .landing-grid,
  .landing-contact,
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: 78svh;
    margin-top: 80px;
    padding: 88px 24px 72px;
  }

  .landing-hero h1,
  .thank-you-card h1,
  .landing-contact h2 {
    font-size: 50px;
  }

  .landing-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .trust-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-bar strong {
    font-size: clamp(36px, 11vw, 48px);
  }

  .trust-bar span {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
}
