:root {
  --container: 1320px;
  --ink: #13363b;
  --muted: #526a6d;
  --deep: #0d4547;
  --deep2: #083638;
  --paper: #f3f7f6;
  --white: #fbfdfc;
  --mist: #dcebea;
  --coral: #d77868;
  --line: #cbdcda;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.6 system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -60px;
  left: 12px;
  z-index: 20;
  background: var(--deep);
  color: white;
  padding: 10px 16px;
}
.skip:focus {
  top: 12px;
}
header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 247, 246, 0.96);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.logo {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.nav nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav nav a {
  text-decoration: none;
  font-weight: 720;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--deep);
  color: white;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.button:hover,
.button:focus-visible {
  background: var(--deep2);
}
.button:active {
  transform: translateY(1px);
}
.header-button {
  min-height: 42px;
}
.menu-button {
  display: none;
}
.hero {
  height: 84svh;
  min-height: 760px;
  max-height: 880px;
  padding: 24px 0;
}
.hero-grid {
  height: 100%;
  display: grid;
  grid-template-columns: 52fr 48fr;
  align-items: stretch;
  gap: 42px;
}
.hero-copy,
.hero-media {
  height: 100%;
  min-width: 0;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: 0.78rem;
  color: var(--deep);
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(3rem, 3.45vw, 3.45rem);
  line-height: 1;
  letter-spacing: -0.052em;
  margin: 0;
  max-width: 680px;
}
.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 23px 0 28px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.call {
  font-weight: 800;
  text-underline-offset: 5px;
}
.hero-media {
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 18px;
}
.hero-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(8, 54, 56, 0.88);
  color: white;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.78rem;
}
.section {
  padding: 112px 0;
  scroll-margin-top: 76px;
}
.section h2 {
  font-size: clamp(2.35rem, 4vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.044em;
  margin: 0 0 18px;
  max-width: 860px;
}
.services-head p,
.area-grid p,
.contact p {
  font-size: 1.13rem;
  color: var(--muted);
  max-width: 650px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr;
  grid-template-areas: "home move office" "home window window";
  gap: 14px;
  margin-top: 42px;
}
.service-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  min-height: 205px;
}
.service-grid .home {
  grid-area: home;
  min-height: 424px;
  background: var(--deep);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.service-grid .tinted {
  background: var(--mist);
}
.service-grid article:last-child {
  grid-area: window;
}
.service-grid h3 {
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.service-grid p {
  margin: 0;
}
.process {
  background: var(--white);
}
.process-wrap > h2 {
  margin-bottom: 44px;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process-line article {
  padding-top: 20px;
  border-top: 3px solid var(--coral);
}
.process-line h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}
.process-line p {
  margin: 0;
  color: var(--muted);
}
.area {
  background: var(--mist);
}
.area-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
}
.places {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.places span {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  padding: 15px 18px;
  font-weight: 730;
}
.text-link {
  font-weight: 800;
  text-underline-offset: 5px;
}
.contact {
  background: var(--deep);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 90px;
  align-items: center;
}
.contact p {
  color: #d4e7e5;
}
.pale {
  background: #eef7f5;
  color: var(--deep2);
}
.pale:hover,
.pale:focus-visible {
  background: white;
}
.light {
  color: white;
}
.map {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  padding: 28px;
  text-decoration: none;
}
.map span {
  color: #d4e7e5;
}
.map strong {
  font-size: 1.3rem;
}
.map b {
  text-decoration: underline;
  text-underline-offset: 5px;
}
footer {
  padding: 44px 0;
  background: #062c2e;
  color: #e3efed;
}
.footer-grid {
  display: grid;
  grid-template-columns: 76px 0.8fr 2fr;
  gap: 36px;
  align-items: center;
}
.footer-grid img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.footer-grid > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}
.footer-grid p {
  margin: 4px 0;
}
.illustration-note,
.disclaimer {
  font-size: 0.88rem;
  color: #bad0ce;
}
.reveal {
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.js-ready .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(18px);
}
.no-js .reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    transition: none !important;
  }
}
@media (max-width: 950px) {
  .container {
    width: min(100% - 32px, var(--container));
  }
  .nav nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    padding: 20px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
  }
  .nav nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
    margin-left: auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 9px 15px;
    font: inherit;
  }
  .eyebrow {
    align-self: flex-start;
    padding: 3px 10px;
    border-radius: 18px;
    color: #13363b;
    background: #d5ece9;
  }
  .header-button {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 52px 0 64px;
  }
  .hero-grid {
    height: auto;
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy,
  .hero-media {
    height: auto;
  }
  .hero-media img {
    height: auto;
    max-height: none;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "home home" "move office" "window window";
  }
  .service-grid .home {
    min-height: 300px;
  }
  .process-line {
    grid-template-columns: 1fr 1fr;
  }
  .area-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .footer-grid {
    grid-template-columns: 76px 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1/-1;
  }
  .section {
    padding: 82px 0;
  }
}
@media (max-width: 580px) {
  .hero h1 {
    font-size: clamp(2.7rem, 11vw, 4rem);
  }
  .actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-grid,
  .process-line,
  .places {
    grid-template-columns: 1fr;
  }
  .service-grid {
    grid-template-areas: none;
  }
  .service-grid article,
  .service-grid .home,
  .service-grid article:last-child {
    grid-area: auto;
    min-height: auto;
  }
  .section {
    padding: 68px 0;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e9f3f1;
    --muted: #b8cfcc;
    --paper: #102e30;
    --white: #173a3c;
    --mist: #244849;
    --line: #3b6263;
  }
  header {
    background: rgba(16, 46, 48, 0.97);
  }
  .process {
    background: var(--white);
  }
  .places span {
    background: rgba(7, 44, 46, 0.62);
  }
  .menu-button {
    color: var(--ink);
    background: var(--white);
  }
}
