:root {
  --navy: #06192a;
  --navy-soft: #0b2a43;
  --green: #2f7d45;
  --green-light: #9bd2a6;
  --copper: #c36a36;
  --steel: #77909e;
  --line: rgba(8, 36, 59, 0.14);
  --white: #fff;
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.construction-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(560px, 1.04fr) minmax(440px, .96fr);
}

.content-panel {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 34px clamp(42px, 6vw, 96px) 28px;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), var(--line) calc(100% - 1px)),
    linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 100%, 100% 25%;
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: block;
  width: 238px;
  height: 66px;
  overflow: hidden;
}

.brand img {
  position: absolute;
  width: 326px;
  max-width: none;
  top: -63px;
  left: -40px;
}

.location {
  color: #526875;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: right;
  text-transform: uppercase;
}

.message {
  width: min(680px, 100%);
  align-self: center;
  padding: 62px 0 48px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
  color: var(--navy-soft);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status span {
  position: relative;
  width: 36px;
  height: 2px;
  background: var(--copper);
}

.status span::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--copper);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h1 {
  max-width: 670px;
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(3.7rem, 6vw, 6.6rem);
  line-height: .94;
  letter-spacing: -.065em;
}

.lead {
  max-width: 650px;
  margin: 0;
  color: #4f6572;
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 32px 0 36px;
  padding: 0;
  color: var(--navy-soft);
  list-style: none;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.services li { position: relative; padding-left: 15px; }
.services li::before { content: ""; position: absolute; top: .58em; left: 0; width: 6px; height: 6px; background: var(--green); transform: rotate(45deg); }

.contact-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 30px;
  padding: 14px 20px;
  color: var(--white);
  background: var(--green);
  text-decoration: none;
  font-size: .84rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.contact-button:hover,
.contact-button:focus-visible { background: #205e34; transform: translateY(-2px); }

.email {
  display: inline-block;
  margin-left: 24px;
  color: var(--navy-soft);
  font-size: .9rem;
  font-weight: 750;
  text-decoration-color: var(--steel);
  text-underline-offset: 4px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #6c7f89;
  font-size: .72rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.image-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--navy);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(6,25,42,.08), rgba(6,25,42,.54));
}

.image-panel::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: -15%;
  left: -1px;
  width: 120px;
  height: 130%;
  border-left: 2px solid var(--copper);
  transform: rotate(9deg);
  transform-origin: top left;
  opacity: .9;
}

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

.image-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.86);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.image-label span { color: var(--green-light); }

@media (max-width: 1000px) {
  .construction-page { grid-template-columns: 1fr; }
  .content-panel { min-height: auto; padding-inline: clamp(24px, 7vw, 64px); }
  .image-panel { min-height: 42vh; max-height: 520px; grid-row: 1; }
  .image-panel::after { left: 22%; }
  .message { padding: 68px 0; }
  h1 { font-size: clamp(3.5rem, 10vw, 6rem); }
}

@media (max-width: 620px) {
  .content-panel { padding: 20px 20px 24px; }
  .brand-header { align-items: flex-start; }
  .brand { width: 190px; height: 58px; }
  .brand img { width: 264px; top: -50px; left: -35px; }
  .location { max-width: 110px; padding-top: 8px; font-size: .58rem; }
  .image-panel { min-height: 34vh; }
  .message { padding: 54px 0 60px; }
  .status { margin-bottom: 40px; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  .lead { font-size: 1rem; }
  .services { display: grid; gap: 9px; }
  .contact-button { width: 100%; justify-content: space-between; }
  .email { margin: 20px 0 0; }
  footer { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; }
}
