:root {
  --white: #ffffff;
  --paper: #f4f4f2;
  --concrete: #b9bbb8;
  --line: #d8d9d5;
  --ink: #11100e;
  --muted: #6d6d67;
  --graphite: #242321;
  --stone: #8a887b;
  --olive: #72745f;
  --shadow: 0 22px 80px rgba(17, 16, 14, 0.12);
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

section {
  scroll-margin-top: 96px;
}

.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.045) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    linear-gradient(0deg, rgba(17, 16, 14, 0.035) 1px, transparent 1px) 0 0 / 100% 96px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 78px;
  padding: 18px clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
  backdrop-filter: blur(18px);
  transition:
    border-radius 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 32px;
  line-height: 0.9;
}

.brand-mark i {
  width: 1px;
  height: 40px;
  background: var(--ink);
}

.brand-name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.32em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: clamp(22px, 3vw, 42px);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a {
  position: relative;
}

.main-nav a::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  transition: right 0.28s ease;
}

.main-nav a:hover::after,
.site-footer a:hover::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  transition: background 0.28s ease, color 0.28s ease;
}

.header-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(28px, 5vw, 72px);
  min-height: 100vh;
  padding: 142px clamp(20px, 4vw, 58px) 0;
}

.hero-copy {
  align-self: center;
  min-width: 0;
  max-width: 670px;
  padding-bottom: 76px;
}

.hero-index {
  display: grid;
  grid-template-columns: minmax(58px, auto) 1fr 1fr;
  gap: 18px;
  width: min(100%, 430px);
  margin-bottom: clamp(40px, 7vw, 88px);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.slogan-credit {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.hero-bottom span,
.service-card p,
.contact-meta strong {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 640px;
  font-family: var(--serif);
  font-size: clamp(58px, 7.2vw, 116px);
  font-weight: 400;
  line-height: 0.92;
}

h1 span {
  display: block;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.7;
}

.hero-copy .slogan-credit {
  max-width: none;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.primary-link,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: normal;
}

.primary-link {
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
  border: 1px solid var(--ink);
}

.primary-link.dark {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.text-link {
  color: var(--muted);
  border-bottom: 1px solid var(--concrete);
}

.hero-media {
  position: relative;
  align-self: end;
  min-width: 0;
  min-height: 66vh;
  overflow: hidden;
  background: var(--concrete);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 66vh;
  object-fit: cover;
  object-position: 58% 50%;
  filter: saturate(0.78) contrast(1.02);
  transition: transform 1.2s ease;
}

.hero-media:hover img {
  transform: scale(1.035);
}

.project-rail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  align-content: space-between;
  width: 58px;
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(17, 16, 14, 0.12);
  color: var(--muted);
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.status-panel {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 16, 14, 0.1);
  backdrop-filter: blur(14px);
}

.status-title,
.section-heading span,
.section-number {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.status-panel strong {
  display: block;
  margin-top: 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.status-panel p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.progress,
.row-progress {
  display: block;
  height: 2px;
  background: var(--line);
  overflow: hidden;
}

.progress {
  margin-top: 18px;
}

.progress span,
.row-progress i {
  display: block;
  height: 100%;
  background: var(--ink);
  transform-origin: left;
}

.status-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.hero-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  min-height: 92px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-bottom span {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0 clamp(16px, 2.2vw, 28px);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.hero-bottom span:last-child {
  border-right: 0;
}

.project-strip,
.services-section,
.contact-band {
  padding: clamp(86px, 9vw, 150px) clamp(20px, 4vw, 58px);
}

.section-heading {
  display: grid;
  grid-template-columns: 80px minmax(260px, 0.8fr) minmax(240px, 0.65fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  margin-bottom: 58px;
}

.section-heading.compact {
  grid-template-columns: 80px minmax(260px, 1fr);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 82px);
  font-weight: 400;
  line-height: 0.98;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.projects-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}

.project-preview {
  position: sticky;
  top: 106px;
  min-width: 0;
  height: 620px;
  overflow: hidden;
  background: var(--paper);
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--preview-pos, 18% 50%);
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.08);
  transition: object-position 0.45s ease, transform 0.45s ease;
}

.preview-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  color: var(--white);
  text-transform: uppercase;
}

.preview-caption span {
  font-size: 11px;
}

.preview-caption strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.project-list {
  border-top: 1px solid var(--line);
}

.project-row {
  display: grid;
  grid-template-columns: 72px minmax(150px, 1fr) minmax(150px, 0.72fr) 128px;
  gap: 22px;
  align-items: center;
  width: 100%;
  min-height: 134px;
  padding: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease, padding 0.25s ease;
}

.project-row:hover,
.project-row.is-active {
  padding-left: 18px;
  background: var(--paper);
}

.row-code,
.row-type {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.row-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 58px);
  line-height: 1;
}

.row-progress {
  width: 100%;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(520px, 1.42fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}

.service-statement {
  position: sticky;
  top: 106px;
  display: flex;
  min-height: 480px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.05) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--ink);
  color: var(--white);
}

.service-statement span {
  max-width: 240px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 76px);
  line-height: 0.95;
}

.service-statement p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.75;
}

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

.service-card {
  display: grid;
  min-height: 260px;
  grid-template-rows: auto auto 1fr;
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  transition: background 0.28s ease, transform 0.28s ease;
}

.service-card:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.service-card span {
  color: var(--muted);
  font-size: 11px;
}

.service-card h3 {
  margin-top: 0;
  max-width: 320px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.04;
  text-wrap: balance;
}

.service-card p {
  align-self: end;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.service-card-wide {
  grid-column: 1 / -1;
  min-height: 220px;
  grid-template-columns: 54px minmax(240px, 0.64fr) minmax(240px, 1fr);
  grid-template-rows: auto;
  gap: clamp(18px, 3vw, 46px);
  align-items: center;
  background: var(--paper);
}

.service-card-wide h3,
.service-card-wide p {
  align-self: center;
}

h3 {
  margin-top: 76px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(300px, 0.76fr) minmax(480px, 1fr);
  gap: clamp(22px, 4.5vw, 70px);
  align-items: start;
  margin: 0 clamp(20px, 4vw, 58px) clamp(20px, 4vw, 58px);
  padding-block: clamp(62px, 7vw, 112px);
  background: rgba(255, 255, 255, 0.86);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.contact-band::before {
  content: "";
  position: absolute;
  top: clamp(62px, 7vw, 112px);
  bottom: clamp(62px, 7vw, 112px);
  left: calc(clamp(20px, 4vw, 58px) + 80px);
  width: 1px;
  background: var(--line);
}

.contact-kicker {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-kicker span:first-child {
  color: var(--ink);
}

.contact-intro {
  padding-right: clamp(8px, 2vw, 28px);
}

.contact-intro p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.contact-band h2 {
  max-width: 620px;
  margin-top: clamp(26px, 4vw, 56px);
  font-size: clamp(48px, 5.8vw, 94px);
  text-wrap: balance;
}

.contact-panel {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

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

.contact-action {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 188px;
  padding: clamp(20px, 2.4vw, 30px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.contact-action.dark {
  background: var(--ink);
  color: var(--white);
}

.contact-action:hover {
  background: var(--concrete);
  transform: translateY(-2px);
}

.contact-action.dark:hover {
  background: var(--graphite);
}

.contact-action:active {
  transform: scale(0.98);
}

.contact-action small,
.contact-meta small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
}

.contact-action.dark small,
.contact-action.dark span {
  color: rgba(255, 255, 255, 0.58);
}

.contact-action strong {
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.02;
  text-wrap: balance;
}

.contact-action span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.contact-meta p,
.contact-meta address {
  display: grid;
  gap: 26px;
  min-height: 138px;
  margin: 0;
  padding: clamp(18px, 2vw, 24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: inherit;
  font-style: normal;
}

.contact-meta strong {
  align-self: end;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  text-wrap: pretty;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 58px) 38px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.whatsapp-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.whatsapp-preview,
.whatsapp-toggle {
  pointer-events: auto;
}

.whatsapp-preview {
  position: relative;
  width: min(342px, calc(100vw - 32px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 16, 14, 0.16);
  box-shadow: 0 22px 60px rgba(17, 16, 14, 0.14);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(16px);
  visibility: hidden;
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.whatsapp-preview::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 18px;
  width: 72px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0.42);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.whatsapp-widget.is-open .whatsapp-preview {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.whatsapp-widget.is-open .whatsapp-preview::before {
  transform: scaleX(1);
}

.chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.chat-close {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
}

.chat-close:hover {
  color: var(--ink);
}

.chat-message {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 1px solid var(--ink);
}

.chat-message small {
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}

.chat-message p {
  margin-top: 10px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.chat-send,
.whatsapp-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.chat-send {
  width: 100%;
  margin-top: 18px;
  background: var(--ink);
  color: var(--white);
}

.chat-send:hover,
.whatsapp-toggle:hover {
  transform: translateY(-2px);
}

.whatsapp-toggle {
  gap: 10px;
  min-width: 190px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(17, 16, 14, 0.12);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.whatsapp-toggle:hover,
.whatsapp-widget.is-open .whatsapp-toggle {
  background: var(--ink);
  color: var(--white);
}

.toggle-mark {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes scan {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: 78%;
  }
}

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

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

  .main-nav {
    display: none;
  }

  .hero,
  .projects-layout,
  .services-layout {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 52vh;
  }

  .hero-media img {
    min-height: 52vh;
  }

  .project-preview {
    position: relative;
    top: auto;
    height: 520px;
  }

  .service-statement {
    position: relative;
    top: auto;
    min-height: 340px;
  }

  .contact-band {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .contact-panel {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
    display: flex;
    justify-content: center;
    padding: 15px 18px 14px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom-color: rgba(17, 16, 14, 0.1);
    backdrop-filter: blur(18px);
  }

  .site-header.is-scrolled {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background: rgba(255, 255, 255, 0.985);
    border-bottom-color: rgba(17, 16, 14, 0.12);
    box-shadow: 0 12px 34px rgba(17, 16, 14, 0.1);
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-mark {
    font-size: 29px;
    gap: 9px;
    flex: 0 0 auto;
  }

  .brand-mark i {
    height: 34px;
    width: 1px;
  }

  .brand-name {
    max-width: none;
    overflow: visible;
    color: var(--ink);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.17em;
  }

  .header-cta {
    display: none;
  }

  .hero {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    min-height: auto;
    gap: 22px;
    padding: 94px 16px 0;
  }

  section {
    scroll-margin-top: 82px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
  }

  .hero-index {
    width: 100%;
    margin-bottom: 24px;
    padding-bottom: 12px;
    gap: 12px;
    font-size: 10px;
  }

  h1 {
    max-width: none;
    width: max-content;
    font-size: clamp(37px, 10.8vw, 45px);
    line-height: 1;
    white-space: nowrap;
  }

  h1 span {
    display: inline;
  }

  h1 span + span::before {
    content: " ";
  }

  .hero-index,
  .preview-caption,
  .site-footer {
    flex-direction: column;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 15px;
    margin-top: 18px;
    line-height: 1.58;
  }

  .hero-copy .slogan-credit {
    margin-bottom: 10px;
  }

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

  .primary-link {
    justify-content: center;
    width: 100%;
    text-align: center;
  }

  .text-link {
    justify-content: flex-start;
    width: fit-content;
  }

  .hero-media {
    min-height: clamp(300px, 43svh, 430px);
    align-self: stretch;
  }

  .hero-media img {
    min-height: clamp(300px, 43svh, 430px);
    object-position: 58% 46%;
  }

  .project-rail {
    width: 42px;
    padding: 16px 0;
    font-size: 9px;
  }

  .status-panel {
    right: 14px;
    bottom: 14px;
    width: min(286px, calc(100% - 28px));
    padding: 16px;
  }

  .status-panel strong {
    margin-top: 10px;
    font-size: 27px;
  }

  .status-panel p {
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.48;
  }

  .progress {
    margin-top: 14px;
  }

  .hero-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .section-heading.compact {
    grid-template-columns: 1fr;
    margin-bottom: 34px;
  }

  .project-strip,
  .services-section,
  .contact-band {
    padding: 72px 16px;
  }

  .project-preview {
    height: 420px;
  }

  .project-row {
    grid-template-columns: 52px 1fr;
    gap: 12px;
    min-height: 128px;
  }

  .service-grid,
  .service-card-wide {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-wide {
    min-height: 220px;
  }

  .service-card-wide {
    grid-column: auto;
    gap: 18px;
    align-items: start;
  }

  .service-card h3 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .row-type,
  .row-progress {
    grid-column: 2;
  }

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

  .contact-band::before {
    display: none;
  }

  h3 {
    margin-top: 46px;
  }

  .contact-band {
    margin: 0 16px 16px;
  }

  .contact-kicker {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .contact-intro {
    padding-right: 0;
  }

  .contact-intro p {
    max-width: 100%;
  }

  .contact-band h2 {
    max-width: 100%;
    font-size: clamp(42px, 13vw, 58px);
  }

  .contact-panel {
    grid-column: auto;
  }

  .contact-actions,
  .contact-meta {
    grid-template-columns: 1fr;
  }

  .contact-action,
  .contact-meta p,
  .contact-meta address {
    gap: 18px;
    min-height: 124px;
    padding: 20px;
  }

  .contact-action {
    min-height: 148px;
  }

  .contact-action strong {
    font-size: 31px;
  }

  .site-footer {
    align-items: flex-start;
    padding: 24px 16px 34px;
  }

  .whatsapp-widget {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .whatsapp-preview {
    width: 100%;
    padding: 16px;
  }

  .whatsapp-toggle {
    justify-self: end;
    min-width: 164px;
    min-height: 44px;
    padding: 0 14px;
  }

  .chat-message p {
    font-size: 14px;
  }
}
