:root {
  --navy: #05182e;
  --navy-soft: #0b2744;
  --graphite: #303337;
  --steel: #617082;
  --concrete: #f2f4f6;
  --white: #ffffff;
  --border: #d7dde3;
  --green: #078b3e;
  --red: #c91f28;
  --shadow: 0 24px 70px rgba(5, 24, 46, 0.16);
  --radius: 8px;
  --max-width: 1180px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  cursor: pointer;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  padding: 12px max(20px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: rgba(5, 24, 46, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 24, 46, 0.96);
  box-shadow: 0 10px 28px rgba(5, 24, 46, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 56px;
  width: 56px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.brand-mark img {
  width: 56px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
  white-space: nowrap;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 850;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.mobile-sticky-cta,
.mobile-whatsapp-action,
.mobile-phone-label,
.mobile-quick-facts,
.real-work-toggle {
  display: none;
}

.header-action {
  padding: 0 16px;
  color: var(--white);
  background: var(--green);
}

.header-action svg,
.button svg,
.contact-list svg,
.nav-toggle svg,
.dialog-close svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  padding: 0 20px;
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(7, 139, 62, 0.24);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.button:hover,
.button:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 82svh;
  max-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 24, 46, 0.99), rgba(5, 24, 46, 0.84) 38%, rgba(5, 24, 46, 0.36) 75%),
    linear-gradient(180deg, rgba(5, 24, 46, 0.28), rgba(5, 24, 46, 0.46)),
    url("assets/apartment-feature/3.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green) 0 32%, var(--white) 32% 66%, var(--red) 66% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 168px 0 76px;
}

.hero-content.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 4.75rem;
  line-height: 0.96;
  font-weight: 900;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.45);
}

.mobile-title-break {
  display: none;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  line-height: 1.55;
  font-weight: 560;
}

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

.hero-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-contact > * {
  min-width: 0;
  overflow-wrap: anywhere;
}

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

.hero-contact a:hover,
.hero-contact a:focus-visible {
  color: var(--white);
}

.intro-band {
  background: var(--navy);
  color: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.intro-grid p {
  min-height: 116px;
  margin: 0;
  padding: 28px;
  display: flex;
  align-items: center;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  line-height: 1.5;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section[id] {
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 38px;
}

.section-heading h2,
.process-copy h2,
.reviews-copy h2,
.area-layout h2,
.contact-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p,
.process-copy p,
.reviews-copy p,
.area-layout p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.featured-work {
  background: var(--white);
}

.featured-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 46px;
  align-items: center;
}

.featured-copy h2 {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.08;
  font-weight: 900;
}

.featured-copy p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--steel);
  font-size: 1.05rem;
  line-height: 1.7;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.featured-video {
  overflow: hidden;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.featured-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--navy);
}

.featured-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 14px;
  margin-top: 18px;
}

.featured-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 24, 46, 0.09);
}

.services {
  background: var(--white);
}

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

.service-card {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  color: var(--green);
  border: 1px solid #b9dcc8;
  border-radius: var(--radius);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.22;
  font-weight: 850;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--steel);
  font-size: 0.96rem;
  line-height: 1.62;
}

.process {
  background: var(--concrete);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.process-list li {
  counter-increment: step;
  min-height: 104px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.process-list li::before {
  content: counter(step, decimal-leading-zero);
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-weight: 900;
}

.process-list strong,
.process-list span {
  grid-column: 2;
}

.process-list strong {
  align-self: end;
  font-size: 1.05rem;
  line-height: 1.1;
}

.process-list span {
  align-self: start;
  margin-top: -16px;
  color: var(--steel);
  font-size: 0.95rem;
  line-height: 1.5;
}

.real-work {
  background: var(--concrete);
}

.real-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.real-work-card {
  position: relative;
  min-height: 238px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(5, 24, 46, 0.11);
  text-align: left;
}

.real-work-card.is-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.real-work-card.is-tall {
  grid-row: span 2;
  aspect-ratio: 1 / 2;
}

.real-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.real-work-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(5, 24, 46, 0), rgba(5, 24, 46, 0.88));
}

.real-work-card span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 20px;
}

.real-work-card small,
.real-work-card strong {
  display: block;
}

.real-work-card small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
}

.real-work-card strong {
  font-size: 1.02rem;
  line-height: 1.18;
  font-weight: 850;
}

.real-work-card:hover img,
.real-work-card:focus-visible img {
  transform: scale(1.05);
}

.reviews {
  background: var(--navy);
  color: var(--white);
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 46px;
}

.reviews-copy h2,
.reviews-copy p {
  color: var(--white);
}

.reviews-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.review-card {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.stars {
  display: block;
  color: #f1c84b;
  font-size: 1rem;
  line-height: 1;
}

.review-card p {
  margin: 18px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.review-card strong {
  font-size: 0.94rem;
}

.reference-names {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.reference-names span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
}

.area {
  padding: 78px 0;
  background: var(--concrete);
}

.area-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
}

.contact {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-list a {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  color: var(--navy);
  background: var(--concrete);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: var(--green);
}

.contact-list svg {
  color: var(--green);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 26px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius);
  outline: none;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(7, 139, 62, 0.2);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.quote-form .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.4;
}

.site-footer {
  padding: 32px 0;
  color: var(--white);
  background: var(--navy);
  border-top: 7px solid transparent;
  border-image: linear-gradient(90deg, var(--green), var(--white), var(--red)) 1;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-layout strong,
.footer-layout span,
.footer-layout a {
  display: block;
}

.footer-layout span,
.footer-layout a {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.footer-layout a:hover,
.footer-layout a:focus-visible {
  color: var(--white);
}

.project-dialog {
  width: min(100% - 40px, 980px);
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.project-dialog::backdrop {
  background: rgba(5, 24, 46, 0.78);
}

.project-dialog img {
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  background: #101820;
}

.project-dialog h3 {
  margin: 0;
  padding: 18px 22px 22px;
  font-size: 1.18rem;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(5, 24, 46, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

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

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

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

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    position: fixed;
    inset: 78px 16px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .primary-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .primary-nav a::after {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-action {
    display: none;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

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

  .real-work-card.is-wide,
  .real-work-card.is-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .process-layout,
  .reviews-layout,
  .area-layout,
  .contact-layout,
  .featured-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 76px;
  }

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

  .site-header {
    min-height: 76px;
    padding: 10px 18px;
    background: rgba(5, 24, 46, 0.98);
  }

  .brand-mark {
    flex-basis: 48px;
    width: 48px;
    height: 42px;
  }

  .brand-mark img {
    width: 48px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
  }

  .primary-nav {
    inset: 76px 14px auto;
    padding: 14px;
  }

  .nav-toggle {
    width: 52px;
    height: 52px;
  }

  .hero {
    min-height: 760px;
    max-height: none;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(5, 24, 46, 0.12), rgba(5, 24, 46, 0.22) 34%, rgba(5, 24, 46, 0.98) 78%),
      linear-gradient(90deg, rgba(5, 24, 46, 0.98), rgba(5, 24, 46, 0.82) 46%, rgba(5, 24, 46, 0.36) 100%),
      url("assets/apartment-feature/2.jpg") center / cover no-repeat;
    transform: none;
  }

  .hero::after {
    right: auto;
    bottom: 20px;
    left: 50%;
    width: 168px;
    height: 6px;
    transform: translateX(-50%);
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 54px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(2.18rem, 9.5vw, 2.45rem);
    line-height: 1;
    text-shadow: 0 4px 22px rgba(5, 24, 46, 0.42);
  }

  .mobile-title-break {
    display: block;
  }

  .hero-lead {
    max-width: 340px;
    margin-top: 22px;
    font-size: 1.18rem;
    line-height: 1.42;
    font-weight: 520;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .form-actions {
    display: grid;
  }

  .mobile-whatsapp-action {
    display: inline-flex;
    min-height: 58px;
    order: 1;
    font-size: 1.05rem;
  }

  .hero-phone-action {
    order: 2;
    min-height: 56px;
    font-size: 1.02rem;
    border-color: rgba(255, 255, 255, 0.62);
  }

  .hero-quote-action {
    order: 3;
    justify-self: center;
    width: auto;
    min-height: 36px;
    padding: 0 2px 4px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 2px solid var(--green);
    border-radius: 0;
    box-shadow: none;
    font-size: 1.08rem;
  }

  .hero-quote-action svg {
    display: none;
  }

  .desktop-phone-label {
    display: none;
  }

  .mobile-phone-label {
    display: inline;
  }

  .button {
    width: 100%;
    padding: 0 14px;
    min-height: 52px;
    font-size: 0.9rem;
  }

  .hero-quote-action {
    width: fit-content;
  }

  .mobile-quick-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .mobile-quick-facts span {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 36px 0 0;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0;
    font-size: 1rem;
    font-weight: 800;
  }

  .mobile-quick-facts span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 10px;
    height: 10px;
    border-top: 3px solid rgba(255, 255, 255, 0.92);
    border-right: 3px solid rgba(255, 255, 255, 0.92);
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-quick-facts span:last-child {
    border-bottom: 0;
  }

  .mobile-quick-facts svg,
  .mobile-sticky-cta svg {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 11px;
    color: var(--green);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-sticky-cta svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    padding: 0;
    color: currentColor;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .hero-contact {
    display: none;
  }

  .intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    background: var(--concrete);
    border: 0;
  }

  .intro-grid p {
    min-height: 92px;
    padding: 12px;
    display: block;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
  }

  .desktop-proof {
    display: none;
  }

  .mobile-proof-title,
  .mobile-proof-copy {
    display: block;
  }

  .mobile-proof-title {
    color: var(--navy);
    font-size: 0.86rem;
    line-height: 1.12;
  }

  .mobile-proof-copy {
    margin-top: 6px;
    color: var(--steel);
    font-size: 0.73rem;
    line-height: 1.28;
  }

  .section {
    padding: 56px 0;
  }

  .section[id] {
    scroll-margin-top: 88px;
  }

  .section-heading h2,
  .process-copy h2,
  .reviews-copy h2,
  .area-layout h2,
  .contact-copy h2,
  .featured-copy h2 {
    font-size: 1.9rem;
  }

  .featured-layout {
    gap: 24px;
  }

  .featured-video {
    order: -1;
  }

  .featured-video video {
    aspect-ratio: 4 / 5;
  }

  .featured-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
  }

  .featured-gallery img {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .service-grid,
  .real-work-grid,
  .review-strip,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 178px;
    padding: 16px;
  }

  .service-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 20px;
  }

  .service-icon svg {
    width: 21px;
    height: 21px;
  }

  .service-card h3 {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .service-card p {
    margin-top: 10px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .real-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .real-work-card,
  .real-work-card.is-wide,
  .real-work-card.is-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .real-work-card.is-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .real-work-card span {
    padding: 14px;
  }

  .real-work-card small {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .real-work-card strong {
    font-size: 0.92rem;
  }

  #lavori-reali:not(.is-expanded) .real-work-card.is-mobile-hidden {
    display: none;
  }

  .real-work-toggle {
    width: 100%;
    min-height: 50px;
    display: grid;
    place-items: center;
    margin-top: 14px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.92rem;
    font-weight: 900;
  }

  .contact-layout {
    gap: 28px;
  }

  .contact-list {
    margin-top: 22px;
  }

  .contact-list a {
    min-height: 50px;
    font-size: 0.92rem;
  }

  .quote-form {
    gap: 13px;
  }

  input,
  select {
    min-height: 48px;
  }

  textarea {
    min-height: 118px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8px;
    padding: 8px;
    background: rgba(5, 24, 46, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(5, 24, 46, 0.32);
    transform: translateY(130%);
    transition: transform 220ms ease;
  }

  .mobile-sticky-cta.is-visible {
    transform: translateY(0);
  }

  body.nav-open .mobile-sticky-cta {
    transform: translateY(130%);
  }

  .mobile-sticky-cta a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white);
    background: var(--green);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 900;
  }

  .mobile-sticky-cta a + a {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
  }

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

  .quote-form {
    padding: 18px;
  }

  .footer-layout {
    display: grid;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
  }

  .brand-copy span {
    display: none;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.24rem, 10vw, 2.48rem);
  }

  .hero-contact {
    display: none;
  }

  .hero-contact > * {
    width: 100%;
  }

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