
:root {
  --navy: #0b2033;
  --navy-deep: #061522;
  --blue: #1769aa;
  --blue-dark: #0f527f;
  --paper: #f3f1ec;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #64717d;
  --line: #d7d9d9;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

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

a {
  color: inherit;
}

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

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

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

.topbar {
  background: var(--navy-deep);
  color: #cdd7df;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.topbar-inner {
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-links {
  display: flex;
  gap: 26px;
}

.topbar a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -1px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-text strong {
  font-size: 15px;
  letter-spacing: .08em;
}

.brand-text small {
  margin-top: 5px;
  font-size: 11px;
  color: #6d7881;
  letter-spacing: .025em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.nav-cta):hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 14px 19px;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  min-height: 680px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4,18,29,.92) 0%, rgba(4,18,29,.76) 48%, rgba(4,18,29,.35) 100%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1800&q=85") center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 95px 0 85px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #9bc6e7;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--blue);
}

.eyebrow.light {
  color: #b7d6ee;
}

.hero h1,
.section h2,
.emergency-strip h2 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 76px);
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #dbe4ea;
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
}

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

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

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

.button-secondary:hover {
  background: rgba(255,255,255,.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 62px;
  border-top: 1px solid rgba(255,255,255,.28);
}

.hero-facts div {
  padding: 22px 24px 0 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 23px;
}

.hero-facts span {
  margin-top: 3px;
  color: #c7d1d8;
  font-size: 13px;
}

.section {
  padding: 105px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading h2,
.about-copy h2,
.coverage h2,
.contact h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 52px);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 70px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}

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

.service {
  min-height: 310px;
  padding: 31px 27px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.service-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.service h3 {
  margin: 40px 0 13px;
  font-size: 22px;
}

.service p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.service a {
  margin-top: auto;
  padding-top: 30px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}


.service:hover {
  background: #f8f9f9;
}

.emergency-strip {
  padding: 55px 0;
  background: var(--navy);
  color: var(--white);
}

.emergency-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.emergency-strip h2 {
  font-size: clamp(29px, 3.5vw, 43px);
}

.emergency-contact {
  min-width: 290px;
  border-left: 1px solid rgba(255,255,255,.25);
  padding-left: 36px;
}

.emergency-contact span,
.emergency-contact a {
  display: block;
}

.emergency-contact span {
  color: #b9c7d1;
  font-size: 13px;
}

.emergency-contact a {
  margin-top: 7px;
  font-size: 31px;
  font-weight: 800;
  text-decoration: none;
}

.about {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.about-image {
  min-height: 620px;
  background:
    linear-gradient(rgba(7,24,37,.08), rgba(7,24,37,.08)),
    url("https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1200&q=85") center/cover no-repeat;
}

.about-copy {
  padding: 55px 0 55px 72px;
  align-self: center;
}

.about-copy .lead {
  margin: 28px 0 18px;
  font-size: 19px;
  line-height: 1.65;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.values {
  margin-top: 36px;
  border-top: 1px solid #c9cbc9;
}

.values div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #c9cbc9;
}

.values strong {
  font-size: 14px;
}

.values span {
  color: var(--muted);
  font-size: 14px;
}

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

.project-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 24px;
}

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

.project-large {
  grid-row: span 2;
}

.project-image {
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.project-large .project-image {
  min-height: 620px;
}

.project:not(.project-large) .project-image {
  min-height: 250px;
}

.project-bathroom {
  background-image: url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=1400&q=85");
}

.project-kitchen {
  background-image: url("https://images.unsplash.com/photo-1556912167-f556f1f39fdf?auto=format&fit=crop&w=1100&q=85");
}

.project-service {
  background-image:
    linear-gradient(rgba(7,24,37,.1), rgba(7,24,37,.1)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?auto=format&fit=crop&w=1100&q=85");
}

.project-caption {
  padding: 20px 0 25px;
}

.project-caption span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.project-caption h3 {
  margin: 7px 0 0;
  font-size: 21px;
}

.demo-note {
  margin: 26px 0 0;
  color: #7e878d;
  font-size: 12px;
}

.coverage {
  background: #f7f7f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.communes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.communes span {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.communes span:nth-child(odd) {
  padding-right: 20px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 90px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 23px;
  color: #b7c4ce;
  font-size: 17px;
}

.contact-details {
  margin-top: 45px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.contact-details div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-details span,
.contact-details a,
.contact-details strong {
  display: block;
}

.contact-details span {
  margin-bottom: 4px;
  color: #91a4b3;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-details a,
.contact-details strong {
  font-size: 17px;
  text-decoration: none;
}

.contact-form {
  background: var(--white);
  color: var(--ink);
  padding: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 17px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #cfd3d6;
  background: #fff;
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

.contact-form textarea {
  resize: vertical;
}

.form-button {
  width: 100%;
  border: 0;
}

.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: var(--blue-dark);
  font-size: 13px;
}

.site-footer {
  background: #050f17;
  color: #aebbc5;
  padding: 65px 0 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand .brand-mark {
  background: var(--blue);
}

.footer-brand small {
  color: #aebbc5;
}

.footer-grid p {
  max-width: 410px;
  margin: 4px 0 0;
  font-size: 13px;
}

.footer-grid > div > strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-grid a {
  color: #aebbc5;
  text-decoration: none;
  font-size: 13px;
}

.footer-grid span {
  font-size: 13px;
}

.footer-bottom {
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
}

@media (max-width: 950px) {
  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .main-nav a {
    padding: 17px 24px;
    border-top: 1px solid var(--line);
  }

  .nav-cta {
    color: var(--white);
  }

  .menu-toggle {
    display: block;
  }

  .split-heading,
  .about-grid,
  .coverage-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .about-copy {
    padding: 55px 0 0;
  }

  .about-image {
    min-height: 520px;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
  }

  .project-large .project-image {
    min-height: 460px;
  }

  .project:not(.project-large) .project-image {
    min-height: 360px;
  }

  .contact-grid {
    gap: 55px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 30px), var(--max));
  }

  .topbar {
    display: none;
  }

  .nav {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-text strong {
    font-size: 13px;
  }

  .hero {
    min-height: 660px;
    background-position: 63% center;
  }

  .hero-content {
    padding: 78px 0 60px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-copy {
    font-size: 17px;
  }

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

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero-facts div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }

  .section {
    padding: 72px 0;
  }

  .split-heading {
    gap: 24px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

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

  .service {
    min-height: 250px;
  }

  .emergency-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .emergency-contact {
    width: 100%;
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.25);
  }

  .about-image {
    min-height: 390px;
  }

  .about-copy {
    padding-top: 40px;
  }

  .values div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .project-large .project-image,
  .project:not(.project-large) .project-image {
    min-height: 300px;
  }

  .coverage-grid {
    gap: 34px;
  }

  .communes {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
