:root {
  --ink: #151515;
  --charcoal: #10100f;
  --charcoal-2: #1e1d1a;
  --muted: #68635d;
  --line: #e6dfd4;
  --stone: #f5f2ed;
  --stone-2: #ebe5da;
  --white: #ffffff;
  --gold: #c99a44;
  --gold-dark: #9b6f25;
  --shadow: 0 24px 70px rgba(20, 18, 15, 0.12);
  --container: 1180px;
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.8rem);
  max-width: 930px;
}

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

h3 {
  font-size: 1.08rem;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: #0e1621;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  background: #0b121b;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--white);
  font-weight: 900;
  min-width: max-content;
}

.brand-logo {
  width: 132px;
  height: 74px;
  object-fit: contain;
  border-radius: 2px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--gold);
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand strong {
  font-size: 1.12rem;
}

.brand small {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.page-home .site-header {
  position: fixed;
  width: 100%;
  background: rgba(12, 16, 22, 0.74);
  backdrop-filter: blur(14px);
}

.page-home .site-header.is-scrolled {
  background: rgba(10, 12, 16, 0.94);
}

.page-home .brand {
  color: rgba(255, 255, 255, 0.88);
}

.page-home .site-nav a:not(.nav-cta):hover,
.page-home .site-nav a[aria-current="page"] {
  color: var(--gold);
}

.page-home .nav-phone {
  color: rgba(255, 255, 255, 0.7) !important;
}

.page-home .language-switch {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.page-home .language-switch a {
  color: rgba(255, 255, 255, 0.68);
}

.page-home .language-switch a[aria-current="true"] {
  background: var(--gold);
  color: #17130d;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}

.nav-phone {
  color: rgba(255, 255, 255, 0.68) !important;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta,
.btn--gold {
  background: var(--gold);
  color: #17130d !important;
}

.btn--gold:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  background: #d6a64d;
}

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

.btn--dark:hover {
  background: #2a2824;
  transform: translateY(-1px);
}

.btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  border-radius: 3px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
}

.language-switch a span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switch a[aria-current="true"] {
  background: var(--gold);
  color: #17130d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero--home {
  position: relative;
  min-height: 820px;
  background: var(--charcoal);
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.92) 0%, rgba(16, 16, 15, 0.72) 42%, rgba(16, 16, 15, 0.12) 100%),
    linear-gradient(0deg, rgba(16, 16, 15, 0.88) 0%, rgba(16, 16, 15, 0.05) 48%),
    url("../images/home-hero-construction.webp") center center / cover no-repeat;
  transform: scale(1.01);
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: 820px;
  display: grid;
  align-content: center;
  gap: 58px;
  padding: 152px 0 140px;
}

.hero__copy {
  max-width: 710px;
}

.hero__copy h1,
.hero__copy p {
  color: var(--white);
}

.hero__copy p {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.04rem, 1.4vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: min(100%, 900px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 16, 15, 0.54);
  backdrop-filter: blur(12px);
}

.hero-contact a,
.hero-contact span {
  flex: 1 1 240px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  font-size: 0.92rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.home-proof {
  position: relative;
  z-index: 5;
  margin-top: -108px;
  padding-bottom: 96px;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.22fr) repeat(2, minmax(0, 1fr));
  background: var(--white);
  box-shadow: 0 28px 80px rgba(20, 18, 15, 0.16);
}

.proof-panel article {
  min-height: 188px;
  padding: 34px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-panel article:not(.proof-panel__lead) > span {
  display: block;
  color: var(--charcoal);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.proof-panel article h3 {
  margin-top: 12px;
  font-size: 1rem;
}

.proof-panel article p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.proof-panel__lead {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--gold);
}

.proof-panel__lead span {
  color: rgba(23, 19, 13, 0.68);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-panel__lead h2 {
  margin-top: 16px;
  color: #17130d;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

.proof-panel__lead p {
  margin-top: 18px;
  color: rgba(23, 19, 13, 0.74);
}

.proof-panel__lead .btn {
  margin-top: auto;
}

.section {
  padding: 104px 0;
}

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

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

.section--dark h2,
.section--dark h3,
.section--dark p {
  color: var(--white);
}

.section-heading {
  width: min(100%, 740px);
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-heading--left {
  margin-left: 0;
  text-align: left;
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.split--intro {
  align-items: center;
}

.split--intro p + p,
.content-flow p + p {
  margin-top: 16px;
}

.split--image {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: center;
}

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

.service-grid--preview {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-services {
  padding-top: 0;
  background: var(--white);
}

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

.home-service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(20, 18, 15, 0.06);
}

.home-service-card > img {
  width: 100%;
  height: 198px;
  object-fit: cover;
}

.home-service-card__body {
  padding: 24px;
}

.home-service-card__title {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.home-service-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  background: #f1e6d2;
}

.home-service-card p {
  margin-top: 14px;
  font-size: 0.94rem;
}

.service-card {
  min-height: 276px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.05);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: #efe5d3;
  color: var(--gold-dark);
  border-radius: 4px;
}

.icon {
  width: 24px;
  height: 24px;
  flex: none;
}

.service-card p {
  margin-top: 12px;
  font-size: 0.96rem;
}

.service-card__price {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 3px;
  background: rgba(201, 154, 68, 0.13);
  color: #8b641d;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.service-price-note {
  margin: 12px 0 16px;
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
  background: rgba(201, 154, 68, 0.12);
  color: var(--charcoal);
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 900;
}

.text-link .icon {
  width: 17px;
  height: 17px;
  color: var(--gold-dark);
}

.text-link:hover {
  color: var(--gold-dark);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.home-feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.home-feature-band__dark,
.home-feature-band__gold {
  display: grid;
  align-items: center;
  padding: clamp(52px, 7vw, 94px);
}

.home-feature-band__dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 13, 20, 0.92), rgba(9, 13, 20, 0.76)),
    url("../images/home-hero-construction.webp") center center / cover no-repeat;
}

.home-feature-band__dark h2,
.home-feature-band__dark p {
  color: var(--white);
}

.home-feature-band__dark p {
  margin-top: 18px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
}

.home-feature-band__gold {
  background: var(--gold);
}

.home-feature-band__gold h2 {
  max-width: 520px;
  color: #17130d;
}

.home-feature-band__gold p {
  margin-top: 18px;
  max-width: 580px;
  color: rgba(23, 19, 13, 0.72);
}

.feature-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #17130d;
  font-weight: 900;
}

.feature-checks li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.feature-checks .icon {
  width: 20px;
  height: 20px;
}

.reason-list {
  display: grid;
  gap: 24px;
}

.reason-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
}

.reason-list .icon {
  width: 28px;
  height: 28px;
  color: var(--gold-dark);
}

.reason-list h3 {
  margin-bottom: 8px;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--stone-2);
}

.image-panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.image-panel--wide img {
  height: 560px;
}

.image-panel--about img {
  object-position: center top;
}

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

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

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.project-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.gallery-grid .project-card img {
  height: 340px;
}

.project-card__body {
  padding: 24px;
}

.project-card__body span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section--dark .project-card {
  background: #171613;
  border-color: rgba(255, 255, 255, 0.1);
}

.section--dark .project-card__body span {
  color: var(--gold);
}

.project-card__body p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.section--dark .project-card__body p {
  color: rgba(255, 255, 255, 0.68);
}

.process-grid,
.testimonial-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step,
.values-grid article,
.testimonial-grid blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-step span,
.values-grid span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold-dark);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-step p,
.values-grid p {
  margin-top: 12px;
  font-size: 0.94rem;
}

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

.testimonial-grid blockquote p {
  color: var(--ink);
  font-size: 1.06rem;
}

.testimonial-grid cite {
  display: block;
  margin-top: 22px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

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

.contact-cta h2,
.contact-cta p {
  color: var(--white);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 14px;
  max-width: 680px;
}

.contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.page-hero {
  padding: 110px 0 96px;
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.92), rgba(16, 16, 15, 0.76)),
    url("../images/project-concrete.webp") center / cover no-repeat;
  color: var(--white);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 840px);
}

.page-hero h1,
.page-hero p {
  color: var(--white);
}

.page-hero p {
  margin-top: 20px;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.page-hero__label {
  margin-bottom: 18px !important;
  color: var(--gold) !important;
  font-size: 0.78rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.content-flow h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.content-flow h2:first-child {
  margin-top: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63em;
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.service-detail {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 28px;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-aside h2 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.detail-aside .btn {
  margin-top: 22px;
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-weight: 900;
  color: var(--ink);
}

.faq-list p {
  padding: 0 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 360px;
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 32px;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d6cec0;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.96rem;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(201, 154, 68, 0.32);
  border-color: var(--gold);
}

.form-status {
  font-weight: 800;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

button:disabled,
.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none !important;
}

.contact-panel {
  padding: 32px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
}

.contact-panel h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.contact-panel a,
.contact-panel span {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.contact-panel hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 26px 0;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 38px 0 12px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

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

.site-footer {
  background: #0e1621;
  color: var(--white);
  padding: 72px 0 28px;
}

.footer-cookie-button {
  display: inline-flex;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
}

.brand--footer {
  color: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer h2 a {
  display: inline;
  margin-top: 0;
  color: inherit;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), 1040px);
  margin: 0 auto;
  padding: 18px;
  background: #101820;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  max-width: 680px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner__actions a {
  color: var(--gold);
  font-weight: 900;
}

body.page-home {
  background: #111b27;
}

.page-home .site-header {
  position: fixed;
  width: 100%;
  background: rgba(13, 22, 32, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.page-home .site-header.is-scrolled {
  background: rgba(12, 18, 27, 0.96);
}

.mm-home {
  overflow: hidden;
  background: #111b27;
  color: var(--white);
}

.mm-hero {
  position: relative;
  min-height: 650px;
  padding-top: var(--header-height);
  background: #111b27;
}

.mm-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 30, 0.9) 0%, rgba(12, 20, 30, 0.66) 36%, rgba(12, 20, 30, 0.18) 72%),
    linear-gradient(0deg, rgba(17, 27, 39, 1) 0%, rgba(17, 27, 39, 0.28) 34%, rgba(17, 27, 39, 0.04) 70%),
    url("../images/rs21-mm-hero-site.webp") center top / cover no-repeat;
}

.mm-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 46px 0 22px;
}

.mm-hero__copy {
  max-width: 700px;
}

.mm-hero h1 {
  max-width: 610px;
  color: var(--white);
  font-size: clamp(2.8rem, 4.4vw, 4.35rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.mm-hero p {
  max-width: 610px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.55;
}

.mm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.mm-services-shell {
  position: relative;
  z-index: 2;
  padding: 0 0 28px;
}

.mm-services-shell h2,
.mm-why h2,
.mm-projects h2,
.mm-testimonials h2 {
  margin-bottom: 16px;
  color: inherit;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.1;
}

.mm-section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.mm-section-title-row h2 {
  margin-bottom: 0;
}

.mm-section-title-row h2 a {
  color: inherit;
}

.mm-small-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 900;
}

.mm-small-link:hover {
  color: var(--gold);
}

.mm-small-link .icon {
  width: 18px;
  height: 18px;
}

.mm-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.mm-service-tile {
  min-height: 106px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  background: rgba(29, 41, 54, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mm-service-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 68, 0.5);
  background: rgba(35, 49, 64, 0.96);
}

.mm-service-tile__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.mm-service-tile__icon .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.7;
}

.mm-service-tile__title {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
  line-height: 1.12;
}

.mm-service-tile__text {
  display: block;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.78rem;
  line-height: 1.45;
}

.price-calculator {
  padding: 44px 0 48px;
  background:
    linear-gradient(135deg, rgba(17, 27, 39, 0.98), rgba(25, 37, 52, 0.96)),
    radial-gradient(circle at 14% 12%, rgba(201, 154, 68, 0.22), transparent 34%);
  color: var(--white);
}

.price-calculator__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.price-calculator__intro {
  padding-top: 12px;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-calculator h2 {
  max-width: 540px;
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.04;
}

.price-calculator__intro p {
  max-width: 610px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.62;
}

.calculator-note-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.calculator-note-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.calculator-note-list .icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.calculator-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.form-field,
.calculator-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.calculator-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
  gap: 14px;
  align-items: end;
}

.calculator-card.is-custom-job .calculator-row {
  display: none;
}

.calculator-vat {
  min-height: 50px;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 10px !important;
  padding: 12px;
  border: 1px solid rgba(17, 27, 39, 0.1);
  background: #f4f5f6;
  font-size: 0.86rem;
  line-height: 1.35;
}

.calculator-vat input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.calculator-result {
  padding: 18px;
  border-radius: 4px;
  background: #101b27;
  color: var(--white);
}

.calculator-result span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculator-result strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  line-height: 1;
}

.calculator-card.is-custom-job .calculator-result strong {
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.15;
}

.calculator-result p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

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

.calculator-contact-grid .form-field:last-child {
  grid-column: 1 / -1;
}

.calculator-card .btn {
  justify-content: center;
  width: 100%;
}

.calculator-status {
  min-height: 20px;
  color: #39506b;
}

.mm-why {
  padding: 38px 0 46px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 248, 0.96)),
    radial-gradient(circle at 12% 20%, rgba(201, 154, 68, 0.14), transparent 32%);
  color: #162233;
}

.mm-why h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(22, 34, 51, 0.18);
}

.mm-why__grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.mm-why__grid > img {
  width: 100%;
  height: 100%;
  min-height: 342px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  box-shadow: 0 14px 32px rgba(17, 27, 39, 0.18);
}

.mm-why__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mm-why-card {
  display: flex;
  gap: 14px;
  min-height: 70px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(17, 27, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(17, 27, 39, 0.08);
}

.mm-why-card > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.mm-why-card .icon {
  width: 28px;
  height: 28px;
}

.mm-why-card h3 {
  color: #162233;
  font-size: 0.98rem;
}

.mm-why-card p {
  margin-top: 4px;
  color: #566170;
  font-size: 0.82rem;
  line-height: 1.45;
}

.mm-projects {
  padding: 34px 0 42px;
  background:
    linear-gradient(rgba(16, 27, 40, 0.94), rgba(16, 27, 40, 0.94)),
    url("../images/rs21-mm-hero-site.webp") center center / cover no-repeat;
  color: var(--white);
}

.mm-projects h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.mm-project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mm-project-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 3px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
}

.mm-project-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.mm-project-card:hover img {
  transform: scale(1.04);
}

.mm-project-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(0deg, rgba(7, 12, 19, 0.9), transparent);
}

.mm-project-card div {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
}

.mm-project-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
}

.mm-project-card h3 {
  margin-top: 2px;
  color: var(--white);
  font-size: 0.96rem;
  line-height: 1.15;
}

.mm-center-action {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.mm-testimonials {
  position: relative;
  padding: 34px 0 30px;
  background:
    linear-gradient(90deg, rgba(16, 27, 40, 0.98) 0%, rgba(16, 27, 40, 0.9) 58%, rgba(16, 27, 40, 0.42) 100%),
    url("../images/testimonials-interior-finish.jpg") right center / 46% auto no-repeat,
    #101b29;
  color: var(--white);
}

.mm-testimonial-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
}

.mm-testimonial-card {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  background: rgba(28, 40, 54, 0.92);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.mm-testimonial-card > div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mm-avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: #172434;
  font-weight: 950;
}

.mm-testimonial-card cite {
  color: var(--white);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.mm-testimonial-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.84rem;
  line-height: 1.45;
}

.mm-final-cta {
  padding: 30px 0 42px;
  text-align: center;
  background: #101b29;
  color: var(--white);
}

.mm-final-cta h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
}

.mm-final-cta p {
  margin: 8px auto 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.04rem;
}

body:not(.page-home) {
  background: #101b29;
}

body:not(.page-home) main {
  background: #f2f5f6;
}

body:not(.page-home) .page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 360px;
  display: grid;
  align-items: center;
  padding: 92px 0 82px;
  background: #101b29;
}

body:not(.page-home) .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13, 22, 32, 0.94) 0%, rgba(13, 22, 32, 0.74) 46%, rgba(13, 22, 32, 0.24) 100%),
    linear-gradient(0deg, rgba(16, 27, 41, 0.92) 0%, rgba(16, 27, 41, 0.18) 48%),
    url("../images/rs21-mm-hero-site.webp") center center / cover no-repeat;
  transform: scale(1.01);
}

body:not(.page-home) .page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.68;
}

body:not(.page-home) .page-hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.65rem, 5.2vw, 5.1rem);
  line-height: 1.06;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.32);
}

body:not(.page-home) .page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

body:not(.page-home) .section {
  background: #f2f5f6;
}

body:not(.page-home) .section--stone {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 246, 0.96)),
    radial-gradient(circle at 12% 16%, rgba(201, 154, 68, 0.14), transparent 32%);
}

body:not(.page-home) .section-heading {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(22, 34, 51, 0.16);
}

body:not(.page-home) .section-heading h2,
body:not(.page-home) .split h2,
body:not(.page-home) .content-flow h2,
body:not(.page-home) .prose h2 {
  color: #162233;
}

body:not(.page-home) .section-heading p,
body:not(.page-home) .content-flow p,
body:not(.page-home) .prose p,
body:not(.page-home) .check-list li {
  color: #536170;
}

body:not(.page-home) .content-flow a,
body:not(.page-home) .prose a,
body:not(.page-home) .check-list a {
  color: #9b6f25;
  font-weight: 800;
}

body:not(.page-home) .service-card,
body:not(.page-home) .process-step,
body:not(.page-home) .values-grid article,
body:not(.page-home) .testimonial-grid blockquote,
body:not(.page-home) .faq-list details,
body:not(.page-home) .detail-aside,
body:not(.page-home) .contact-form,
body:not(.page-home) .project-card {
  border: 1px solid rgba(17, 27, 39, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 34px rgba(17, 27, 39, 0.08);
}

body:not(.page-home) .service-card:hover,
body:not(.page-home) .project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 154, 68, 0.36);
}

body:not(.page-home) .service-card__icon,
body:not(.page-home) .process-step span,
body:not(.page-home) .values-grid article span {
  color: var(--gold);
}

body:not(.page-home) .service-card h3,
body:not(.page-home) .process-step h3,
body:not(.page-home) .values-grid article h3,
body:not(.page-home) .project-card h3,
body:not(.page-home) .faq-list summary {
  color: #162233;
}

body:not(.page-home) .service-card p,
body:not(.page-home) .process-step p,
body:not(.page-home) .values-grid p,
body:not(.page-home) .project-card__body p,
body:not(.page-home) .faq-list p {
  color: #536170;
}

body:not(.page-home) .project-card {
  overflow: hidden;
}

body:not(.page-home) .project-card img {
  transition: transform 240ms ease;
}

body:not(.page-home) .project-card:hover img {
  transform: scale(1.03);
}

body:not(.page-home) .project-card__body span {
  color: #9b6f25;
}

body:not(.page-home) .image-panel img {
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(17, 27, 39, 0.18);
}

body:not(.page-home) .contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(22, 34, 51, 0.98), rgba(12, 20, 30, 0.98));
  box-shadow: 0 18px 44px rgba(17, 27, 39, 0.16);
}

body:not(.page-home) .contact-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #101b29;
}

body:not(.page-home) .contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(16, 27, 40, 0.96), rgba(16, 27, 40, 0.78), rgba(16, 27, 40, 0.5)),
    url("../images/rs21-mm-hero-site.webp") center center / cover no-repeat;
}

body:not(.page-home) .contact-cta::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  z-index: -1;
  background: rgba(201, 154, 68, 0.55);
}

body:not(.page-home) .contact-cta__inner {
  position: relative;
  z-index: 1;
}

body:not(.page-home) .contact-cta h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

@media (max-width: 1080px) {
  .mm-service-grid,
  .mm-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm-why__grid {
    grid-template-columns: 1fr;
  }

  .mm-why__grid > img {
    height: 360px;
    min-height: 0;
  }

  .price-calculator__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .mm-hero {
    min-height: auto;
  }

  .mm-hero__media {
    background:
      linear-gradient(90deg, rgba(12, 20, 30, 0.92), rgba(12, 20, 30, 0.66)),
      linear-gradient(0deg, rgba(17, 27, 39, 1) 0%, rgba(17, 27, 39, 0.18) 58%),
      url("../images/rs21-mm-hero-site.webp") center top / cover no-repeat;
  }

  .mm-hero__inner {
    min-height: 520px;
    padding: 72px 0 28px;
  }

  .mm-service-grid,
  .mm-project-grid,
  .mm-why__items,
  .mm-testimonial-row,
  .calculator-row,
  .calculator-contact-grid {
    grid-template-columns: 1fr;
  }

  .mm-section-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .mm-why__items {
    grid-template-rows: none;
  }

  .mm-why__grid > img {
    height: 320px;
  }

  .mm-testimonials {
    background: #101b29;
  }

  .price-calculator {
    padding: 34px 0 38px;
  }

  .calculator-card {
    padding: 18px;
  }
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 14px;
  }

  .nav-phone {
    display: none;
  }

  .service-grid,
  .home-service-grid,
  .project-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-panel__lead {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .home-feature-band {
    grid-template-columns: 1fr;
  }

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

  .cookie-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
  }

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

  .nav-toggle {
    display: block;
  }

  .brand-logo {
    width: 124px;
    height: 68px;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(10, 12, 16, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
  }

  .page-home .site-nav {
    background: rgba(10, 12, 16, 0.98);
    border-color: rgba(255, 255, 255, 0.12);
  }

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

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .page-home .site-nav a {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-phone {
    display: block;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .language-switch {
    justify-content: center;
    margin-top: 10px;
  }

  .page-home .nav-toggle {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
  }

  .page-home .nav-toggle span:not(.sr-only) {
    background: var(--white);
  }

  .hero__image {
    background:
      linear-gradient(90deg, rgba(16, 16, 15, 0.9), rgba(16, 16, 15, 0.58)),
      linear-gradient(0deg, rgba(16, 16, 15, 0.88), rgba(16, 16, 15, 0.06)),
      url("../images/home-hero-construction.webp") center center / cover no-repeat;
  }

  .hero__content {
    min-height: 760px;
    padding: 118px 0 90px;
  }

  .hero-contact {
    display: none;
  }

  .home-proof {
    margin-top: -64px;
    padding-bottom: 72px;
  }

  .section {
    padding: 72px 0;
  }

  .split,
  .split--image,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .detail-aside {
    position: static;
  }

  .image-panel img,
  .image-panel--wide img {
    height: 420px;
  }

  .gallery-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .contact-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 84px 0 76px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.4rem, 13vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .contact-cta .hero-actions {
    width: 100%;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }

  .service-grid,
  .home-service-grid,
  .service-grid--preview,
  .project-grid,
  .process-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 116px;
    height: 64px;
  }

  .hero--home {
    min-height: 720px;
  }

  .hero__content {
    min-height: 720px;
  }

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

  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-panel article {
    min-height: auto;
    padding: 28px;
  }

  .home-service-card > img {
    height: 220px;
  }

  .home-feature-band__dark,
  .home-feature-band__gold {
    padding: 44px 20px;
  }

  .feature-checks {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step,
  .values-grid article,
  .testimonial-grid blockquote,
  .contact-form,
  .contact-panel {
    padding: 24px;
  }

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

  .image-panel img,
  .project-card img,
  .gallery-grid .project-card img {
    height: 300px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

.mm-project-card--button,
.project-card--button {
  appearance: none;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.project-lightbox[hidden] {
  display: none;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.project-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 11, 18, 0.92);
}

.project-lightbox__dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  background: #101b29;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.project-lightbox__close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 12, 19, 0.82);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.project-lightbox__stage {
  position: relative;
  min-height: 300px;
  display: grid;
  place-items: center;
  background: #080e16;
}

.project-lightbox__stage img {
  display: block;
  width: 100%;
  height: min(70vh, 720px);
  object-fit: contain;
}

.project-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(7, 12, 19, 0.82);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.project-lightbox__arrow--prev {
  left: 14px;
}

.project-lightbox__arrow--next {
  right: 14px;
}

.project-lightbox__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 16px 20px;
  color: #fff;
}

.project-lightbox__meta h3 {
  margin: 0 0 4px;
}

.project-lightbox__meta p {
  margin: 0;
  color: #c9d1da;
}

.project-lightbox__meta span {
  white-space: nowrap;
  font-weight: 800;
  color: #d8a13e;
}

.project-lightbox button:focus-visible,
.project-card--button:focus-visible,
.mm-project-card--button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

body.gallery-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .project-lightbox {
    padding: 0;
  }

  .project-lightbox__dialog {
    width: 100%;
    max-height: 100vh;
    min-height: 100dvh;
  }

  .project-lightbox__stage img {
    height: 72dvh;
  }

  .project-lightbox__meta {
    align-items: start;
    flex-direction: column;
    padding: 14px 16px;
  }

  .project-lightbox__arrow {
    width: 46px;
    height: 46px;
  }
}
