:root {
  --teal: #008eb0;
  --charcoal: #4b4b4b;
  --black: #050505;
  --paper: #ffffff;
  --focus: #003d4d;
  --sheet-width: 1180px;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  background: var(--teal);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body, a { color: var(--charcoal); }

a { text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 2px;
}

.site {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5.2vw, 72px);
}

.sheet {
  position: relative;
  width: min(var(--sheet-width), 92vw);
  aspect-ratio: 1.414 / 1;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
}

.brand {
  position: absolute;
  left: 55.8%;
  top: 13.4%;
  width: 31.2%;
  height: 73.2%;
  display: grid;
  grid-template-rows: 8px 1fr auto 8px;
  align-items: stretch;
}

.brand-rule {
  display: block;
  width: 100%;
  height: 8px;
  background: var(--teal);
}

.brand h1,
.brand p {
  margin: 0;
  color: var(--black);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.brand h1 {
  align-self: start;
  padding-top: 3.2%;
  padding-left: 7.5%;
  font-size: clamp(66px, 7.65vw, 119px);
  line-height: 0.88;
}

.brand p {
  align-self: end;
  justify-self: end;
  padding-bottom: 3.2%;
  font-size: clamp(36px, 4.28vw, 64px);
  line-height: 1.03;
  text-align: right;
}

.services {
  position: absolute;
  left: 26.8%;
  top: 16.8%;
  width: 24%;
  font-size: clamp(19px, 2.03vw, 28px);
  line-height: 1.27;
  font-weight: 600;
}

.dot-row {
  display: flex;
  gap: clamp(12px, 1.45vw, 21px);
  margin: 0 0 clamp(18px, 2.1vw, 30px) 1px;
}

.dot-row span,
.services li::before {
  display: block;
  width: 0.44em;
  height: 0.44em;
  border-radius: 50%;
  background: var(--charcoal);
}

.services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services li {
  display: flex;
  align-items: baseline;
  gap: 0.78em;
  margin: 0.06em 0;
  white-space: nowrap;
}

.services li::before {
  content: "";
  flex: 0 0 auto;
  transform: translateY(-0.08em);
}

.logo {
  position: absolute;
  left: 9.8%;
  bottom: 19.1%;
  width: 38.7%;
  height: auto;
}

.intro {
  position: absolute;
  left: 42.4%;
  top: 45.3%;
  width: 32.2%;
  font-size: clamp(24px, 2.55vw, 35px);
  line-height: 1.36;
  text-align: center;
  font-weight: 600;
}

.intro p {
  margin: 0 0 1.08em;
}

.intro p:last-child { margin-bottom: 0; }

.contact {
  position: absolute;
  right: 17.2%;
  bottom: 10.7%;
  width: 23%;
  font-size: clamp(17px, 1.68vw, 24px);
  line-height: 1.28;
  text-align: center;
  font-style: normal;
  font-weight: 600;
}

.contact p {
  margin: 0 0 0.72em;
}

.contact p:last-child { margin-bottom: 0; }

.footer {
  position: absolute;
  left: 9.4%;
  right: 13.6%;
  bottom: 7.8%;
  border-bottom: 8px solid var(--teal);
  padding-bottom: 0.72%;
}

.footer small {
  display: block;
  font-size: clamp(13px, 1.12vw, 17px);
  font-weight: 600;
  line-height: 1.1;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 760px) {
  .site { padding: 18px; }

  .sheet {
    width: min(94vw, 520px);
    min-height: 880px;
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 36px 30px 30px;
    overflow: visible;
  }

  .brand,
  .services,
  .logo,
  .intro,
  .contact,
  .footer {
    position: static;
    width: 100%;
  }

  .brand {
    order: 1;
    height: auto;
    display: block;
    border-top: 5px solid var(--teal);
    border-bottom: 5px solid var(--teal);
    padding: 14px 0 16px;
    text-align: center;
  }

  .brand-rule { display: none; }

  .brand h1 {
    padding: 0;
    font-size: clamp(46px, 12vw, 60px);
    line-height: 0.94;
  }

  .brand p {
    padding: 0;
    margin-top: 5px;
    font-size: clamp(28px, 7vw, 36px);
    line-height: 1.05;
    text-align: center;
  }

  .logo {
    order: 2;
    width: min(100%, 380px);
  }

  .services {
    order: 3;
    width: auto;
    font-size: 20px;
    line-height: 1.35;
  }

  .dot-row {
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
  }

  .intro {
    order: 4;
    width: 100%;
    font-size: 21px;
    line-height: 1.38;
  }

  .intro br { display: none; }

  .contact {
    order: 5;
    width: 100%;
    font-size: 18px;
  }

  .footer {
    order: 6;
    margin-top: auto;
    border-bottom-width: 5px;
    padding-bottom: 10px;
    text-align: center;
  }

  .footer small { font-size: 12px; }
}

@media (max-width: 420px) {
  .sheet {
    padding-left: 22px;
    padding-right: 22px;
  }

  .services { font-size: 18px; }
  .intro { font-size: 19px; }
  .contact { font-size: 16px; }
}

@media print {
  body { background: #fff; }
  .site { padding: 0; }
  .sheet {
    width: 100vw;
    min-height: 100vh;
    box-shadow: none;
  }
}
