:root {
  --ink: #17141a;
  --muted: #6c6670;
  --paper: #ffffff;
  --soft: #f4f2f5;
  --line: #ded8df;
  --brand: #ad0061;
  --brand-dark: #720043;
  --steel: #39373b;
  --shadow: 0 18px 45px rgba(23, 20, 26, 0.14);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(222, 216, 223, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  width: 112px;
  height: 82px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--steel);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
}

.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 92vh;
  padding-top: 92px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #121014;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 16, 20, 0.9) 0%, rgba(18, 16, 20, 0.66) 38%, rgba(18, 16, 20, 0.18) 74%),
    linear-gradient(0deg, rgba(18, 16, 20, 0.7), rgba(18, 16, 20, 0.05) 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 110px 0 80px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b4d5;
}

h1,
h2,
h3,
p,
span,
dd,
address {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  max-width: 630px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--brand);
  color: white;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--ink);
  background: white;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.proof-item span {
  color: var(--muted);
}

.section {
  padding: 96px 0;
}

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

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

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

.service-card {
  min-height: 260px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(23, 20, 26, 0.04);
  color: inherit;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-number {
  margin-bottom: auto;
  color: var(--brand);
  font-weight: 900;
}

.service-card p,
.process-list p,
.company-panel p,
.contact-section p,
.lead-block {
  color: var(--muted);
}

.lead-block {
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--brand);
  font-weight: 900;
}

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

.section-dark h2 {
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-list div {
  padding: 0 0 22px 24px;
  border-left: 3px solid var(--brand);
}

.process-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.company-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.company-logo {
  padding: 28px;
  border-radius: var(--radius);
  background: white;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 0;
}

.company-facts div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.company-facts dt {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-facts dd {
  margin: 5px 0 0;
  color: var(--steel);
  font-weight: 700;
}

.contact-section {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(173, 0, 97, 0.14);
  border-color: var(--brand);
}

.page-hero {
  padding: 170px 0 82px;
  color: white;
  background:
    linear-gradient(90deg, rgba(23, 20, 26, 0.92), rgba(23, 20, 26, 0.74)),
    url("assets/hero-construction.png") center/cover;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 6vw, 4.9rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  overflow-wrap: anywhere;
}

.service-grid-large .service-card {
  min-height: 300px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: start;
}

.detail-grid h2 {
  margin-bottom: 18px;
}

.detail-grid p {
  max-width: 740px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.check-list li {
  position: relative;
  padding: 14px 18px 14px 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 18px;
  color: var(--brand);
  content: "✓";
}

.side-card {
  position: sticky;
  top: 116px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow);
}

.side-card .button {
  width: 100%;
  margin-top: 12px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.cta-panel p {
  max-width: 720px;
  color: var(--muted);
}

.compact {
  margin-top: 30px;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2,
.legal-copy h3 {
  margin-top: 34px;
}

.legal-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-section p,
.footer-cta span,
.footer-grid p,
.footer-grid address {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-cta span {
  display: block;
  max-width: 100%;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--brand);
  font-weight: 700;
}

.site-footer {
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-cta {
  color: white;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
}

.footer-cta strong {
  font-size: 1.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
  gap: 42px;
  align-items: start;
  padding: 54px 0;
}

.site-footer img {
  width: 118px;
  padding: 10px;
  border-radius: var(--radius);
  background: white;
}

.footer-brand p {
  margin: 16px 0 0;
  color: white;
  font-weight: 800;
}

.footer-muted {
  color: rgba(255, 255, 255, 0.58) !important;
  font-weight: 500 !important;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
  color: white;
}

.site-footer .button-light {
  color: var(--ink);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: min(460px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.cookie-notice strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.cookie-actions a {
  color: var(--brand);
  font-weight: 800;
}

address {
  font-style: normal;
}

@media (max-width: 880px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .proof-strip,
  .service-grid,
  .split,
  .company-panel,
  .contact-grid,
  .footer-grid,
  .footer-cta-inner,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .side-card {
    position: static;
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1120px);
  }

  .site-header {
    height: 76px;
  }

  .brand {
    width: 82px;
    height: 68px;
  }

  .brand img {
    width: 82px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 76px;
  }

  .page-hero {
    padding: 126px 0 56px;
  }

  .page-hero h1 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-content {
    width: min(calc(100% - 44px), 340px);
    margin-left: 14px;
    margin-right: auto;
    padding: 76px 0 52px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(18, 16, 20, 0.9), rgba(18, 16, 20, 0.64));
  }

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

  h1 {
    max-width: 100%;
    font-size: 1.68rem;
    line-height: 1.08;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 64px 0;
  }

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

  .company-panel,
  .contact-form,
  .cta-panel {
    padding: 20px;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-grid h2 {
    font-size: 1.9rem;
  }

  .contact-section p {
    font-size: 0.96rem;
  }

  .footer-grid {
    gap: 28px;
    padding: 38px 0;
  }

  .footer-cta-inner span {
    max-width: 30ch;
  }

  .cookie-notice {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
