:root {
  --black: #111111;
  --white: #ffffff;
  --green: #00a74f;
  --red: #cf0042;
  --yellow: #ffd800;
  --blue: #00a7e8;
  --mist: #f5f5f3;
  --line: #ddddda;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--black); font-family: "DM Sans", sans-serif; font-size: 16px; line-height: 1.55; }
.site-header { height: 108px; display: flex; align-items: center; justify-content: space-between; padding: 0 6.7vw; border-bottom: 1px solid var(--line); position: relative; z-index: 5; background: white; }
.logo { color: var(--black); text-decoration: none; display: flex; align-items: center; }
.logo img { display: block; width: 290px; height: 88px; object-fit: contain; object-position: left center; }
nav { display: flex; align-items: center; gap: 31px; }
nav a { color: var(--black); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-cta { color: white; background: var(--red); padding: 10px 16px; border-radius: 2px; }
.menu-button { display: none; }

.hero { min-height: 630px; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; }
.hero-content { padding: 113px 8% 92px 13%; background: var(--mist); border-bottom: 7px solid var(--green); }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .18em; margin: 0 0 20px; color: var(--green); }
h1, h2 { font: 600 clamp(43px, 5.2vw, 76px)/1.05 "Playfair Display", serif; letter-spacing: -.04em; margin: 0; }
h2 { font-size: clamp(34px, 4vw, 58px); }
em { font-weight: 600; color: var(--red); }
.hero-text { max-width: 480px; font-size: 18px; margin: 28px 0 34px; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.button { border: 0; font: 700 13px "DM Sans", sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 24px; cursor: pointer; }
.button-main { color: white; background: var(--red); padding: 16px 19px; }
.button span { font-size: 20px; line-height: 12px; }
.button-link { color: var(--black); font-size: 13px; font-weight: 700; text-decoration: underline; text-decoration-color: var(--green); text-decoration-thickness: 3px; text-underline-offset: 5px; }

.hero-visual { position: relative; background: var(--black); overflow: hidden; min-height: 400px; border-bottom: 7px solid var(--red); }
.sun { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: var(--yellow); top: -140px; right: -20px; }
.building { position: absolute; bottom: 0; background: white; border: 4px solid var(--black); border-bottom: 0; }
.building:before { content: ""; position: absolute; inset: 23px 19px; background: repeating-linear-gradient(90deg, transparent 0 22px, var(--black) 23px 27px), repeating-linear-gradient(0deg, transparent 0 25px, var(--black) 26px 30px); }
.building-one { left: 5%; height: 43%; width: 40%; z-index: 2; }
.building-two { right: -5%; height: 70%; width: 53%; background: var(--red); }
.building-three { right: 28%; height: 34%; width: 27%; background: var(--blue); z-index: 3; }
.hero-label { position: absolute; z-index: 4; right: 8%; bottom: 7%; padding: 14px 19px; background: white; color: var(--black); font-size: 12px; line-height: 1.5; box-shadow: 8px 8px 0 var(--green); }

.intro { padding: 126px 13%; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.intro > p:not(.eyebrow) { max-width: 490px; margin: 55px 0 0; font-size: 17px; }
.figures { grid-column: 1 / -1; display: flex; border-top: 2px solid var(--black); margin-top: 76px; }
.figures div { display: flex; gap: 17px; align-items: center; flex: 1; padding: 23px 0; border-right: 1px solid var(--line); }
.figures div + div { padding-left: 30px; }.figures div:last-child { border: 0; }
.figures strong { font: 600 34px "Playfair Display"; color: var(--red); }.figures div:nth-child(2) strong { color: var(--green); }.figures div:nth-child(3) strong { color: var(--blue); }
.figures span { font-size: 13px; line-height: 1.3; font-weight: 600; }

.services { background: var(--black); color: white; padding: 115px 13%; border-top: 7px solid var(--green); }
.services .eyebrow, .process .eyebrow { color: var(--green); }.services em { color: var(--yellow); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 66px; border-top: 1px solid #555; }
.service-grid article { padding: 31px 30px 25px 0; min-height: 260px; border-right: 1px solid #555; display: flex; flex-direction: column; }
.service-grid article + article { padding-left: 30px; }.service-grid article:last-child { border: 0; }
.number { font: 600 20px "Playfair Display"; color: var(--yellow); }.service-grid article:nth-child(3n + 2) .number { color: var(--green); }.service-grid article:nth-child(3n) .number { color: var(--blue); }
.service-grid h3, .process h3 { font: 600 25px "Playfair Display"; margin: 45px 0 11px; }.service-grid p { font-size: 14px; max-width: 260px; margin: 0; }
.service-grid a { margin-top: auto; color: var(--yellow); font-size: 13px; font-weight: 700; text-decoration: none; }.service-grid a span { font-size: 18px; margin-left: 10px; }

.services-cta { padding: 100px 13%; background: var(--black); color: white; border-top: 7px solid var(--green); text-align: center; }.services-cta .eyebrow { color: var(--green); }.services-cta em { color: var(--yellow); }.services-cta .button { margin-top: 38px; background: var(--green); }
.before-after { padding: 110px 13%; background: white; border-top: 7px solid var(--red); }
.before-after .section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.before-after .section-heading h2 { max-width: 620px; }
.before-after-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; margin-top: 58px; }
.before-after-card { margin: 0; background: var(--mist); border: 1px solid var(--line); padding: 14px; }
.before-after-card span { display: inline-block; margin-bottom: 12px; font: 700 12px "DM Sans", sans-serif; letter-spacing: .16em; text-transform: uppercase; color: var(--green); }
.before-after-card img { display: block; width: 100%; height: 420px; object-fit: cover; object-position: center; background: #eee; }
.services-page { min-height: calc(100vh - 108px); }.services-page .service-grid article:nth-child(3n) { border-right: 0; }.services-page .service-grid article:last-child { border-right: 1px solid #555; }

.process { padding: 120px 13%; display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; background: var(--mist); }
.process ol { list-style: none; padding: 0; margin: 0; }.process li { display: flex; gap: 24px; padding: 0 0 25px; margin-bottom: 25px; border-bottom: 1px solid var(--line); }
.process li span { font: 600 19px "Playfair Display"; color: var(--red); }.process h3 { font-size: 21px; margin: 0 0 6px; }.process li p { margin: 0; font-size: 14px; }

.recruitment { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 110px 13%; background: white; border-top: 7px solid var(--blue); }
.recruitment .eyebrow { color: var(--blue); }.recruitment-copy { max-width: 510px; }.recruitment-copy > p { margin: 0 0 28px; font-size: 17px; }.recruitment-copy .button-main { background: var(--green); }.recruitment-copy small { display: block; margin-top: 14px; color: #5d5d5d; font-size: 11px; }

.contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--green); }.contact-copy { padding: 105px 15% 100px 26%; color: white; }.contact-copy .eyebrow { color: var(--yellow); }.contact-copy em { color: var(--yellow); }
.contact-copy > p:not(.eyebrow) { max-width: 360px; margin: 26px 0; }.contact-details { display: flex; flex-direction: column; gap: 5px; margin-top: 40px; }.contact-details a { color: white; font-weight: 700; text-decoration-color: var(--yellow); text-underline-offset: 4px; }
form { padding: 90px 13% 70px; background: var(--black); color: white; }label { display: block; font-size: 12px; font-weight: 700; margin-bottom: 20px; }
input, textarea { display: block; width: 100%; border: 0; border-bottom: 1px solid #aaa; border-radius: 0; padding: 9px 0; background: transparent; color: white; font: 15px "DM Sans"; outline: 0; resize: vertical; }input::placeholder, textarea::placeholder { color: #bdbdbd; }
form .button-main { background: var(--red); margin-top: 9px; }.form-note { font-size: 10px; line-height: 1.4; color: #ccc; max-width: 330px; }
footer { padding: 29px 6.7%; display: flex; align-items: center; justify-content: space-between; background: white; font-size: 11px; border-top: 4px solid var(--yellow); }footer .logo img { width: 220px; height: 68px; }footer p { margin: 0; color: #555; }footer div { display: flex; gap: 18px; }footer a { color: var(--black); text-decoration: none; }

@media (max-width: 760px) {
  .site-header { height: 84px; padding: 0 7vw; }.logo img { width: 195px; height: 72px; }footer .logo img { width: 185px; height: 62px; } nav { display: none; }.site-header nav.is-open { display: flex; position: absolute; top: 83px; left: 0; right: 0; padding: 20px 7vw 25px; background: white; border-bottom: 2px solid var(--green); flex-direction: column; align-items: flex-start; gap: 18px; }
  .menu-button { display: flex; border: 0; background: transparent; flex-direction: column; gap: 6px; padding: 8px; }.menu-button i { width: 23px; height: 2px; background: var(--black); }
  .hero { grid-template-columns: 1fr; }.hero-content { padding: 80px 8% 64px; }.hero-visual { min-height: 350px; }.intro, .process { display: block; padding: 80px 8%; }.intro > p:not(.eyebrow) { margin-top: 28px; }.figures { margin-top: 45px; display: block; }.figures div, .figures div + div { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .services { padding: 75px 8%; }.services-cta { padding: 75px 8%; }.before-after { padding: 75px 8%; }.before-after .section-heading { display: block; }.before-after-grid { grid-template-columns: 1fr; margin-top: 42px; }.before-after-card img { height: 290px; }.service-grid { grid-template-columns: 1fr; margin-top: 45px; }.service-grid article, .service-grid article + article, .services-page .service-grid article:last-child { padding: 25px 0; min-height: 210px; border-right: 0; border-bottom: 1px solid #555; }.process ol { margin-top: 50px; }.recruitment { grid-template-columns: 1fr; gap: 32px; padding: 78px 8%; }.contact { grid-template-columns: 1fr; }.contact-copy { padding: 78px 8% 64px; }form { padding: 58px 8%; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }footer { padding: 27px 8%; display: block; }footer p { margin: 20px 0; }footer div { gap: 12px; }
}
