:root {
  --color-background: #294535;
  --color-text: #ffffff;
  --color-muted-line: rgba(255, 255, 255, 0.2);
  --color-accent: #22ba4a;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-background);
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

a:focus-visible {
  outline: 3px solid rgba(34, 186, 74, 0.7);
  outline-offset: 4px;
  border-radius: 3px;
}

.page-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 40px 24px;
}

.content-card {
  width: min(100%, 360px);
  transform: translateY(-2px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 48px;
}

.contact-details,
.phone-numbers,
.email-line,
.status-text {
  margin: 0;
}

.contact-details {
  display: grid;
  gap: 2px;
  font-style: normal;
  font-size: 18px;
  line-height: 1.34;
  letter-spacing: -0.02em;
}

.phone-numbers {
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.email-line {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.email-line a {
  color: var(--color-accent);
}

.divider {
  width: 100%;
  height: 1px;
  margin: 46px 0 47px;
  background: var(--color-muted-line);
}

.status-text {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

@media (max-width: 520px) {
  .page-shell {
    place-items: start center;
    padding-top: 96px;
  }

  .content-card {
    width: min(100%, 320px);
  }

  .brand-logo {
    margin-bottom: 42px;
  }

  .contact-details,
  .phone-numbers,
  .email-line {
    font-size: 16px;
  }

  .status-text {
    font-size: 16px;
    letter-spacing: 0.16em;
  }

  .divider {
    margin: 40px 0 42px;
  }
}

@media (max-width: 360px) {
  .page-shell {
    padding-inline: 20px;
  }

  .content-card {
    width: 100%;
  }

  .status-text {
    letter-spacing: 0.12em;
  }
}
