/* ------------------------------------------------------------------
   64K Asset Management, Inc. — Under Construction
   ------------------------------------------------------------------ */

:root {
  --bg: #faf8f4;          /* soft warm white */
  --text: #3a3a3c;        /* charcoal, matched to the logo */
  --text-muted: #6b6b6e;  /* secondary text */
  --blue: #005dab;        /* blue accent, matched to the logo */
  --blue-dark: #004b8a;   /* hover state */
  --rule: #dcd8d0;        /* thin divider */

  --font: "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  color: var(--blue-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------ */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.header {
  margin-bottom: 3rem;
}

.logo {
  display: block;
  width: 220px;
  max-width: 100%;
  height: auto;
}

.content {
  width: 100%;
}

.title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
}

.lede {
  margin: 0 auto;
  max-width: 34rem;
  font-size: 1.0625rem;
  color: var(--text-muted);
}

.divider {
  width: 64px;
  height: 2px;
  margin: 2.5rem auto;
  border: 0;
  background: var(--blue);
}

/* ------------------------------------------------------------------
   Address & contact
   ------------------------------------------------------------------ */

.details {
  font-size: 1rem;
  line-height: 1.7;
}

.company {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.address {
  margin: 0 0 0.75rem;
  font-style: normal;
  color: var(--text-muted);
}

.phone {
  margin: 0;
}

.phone strong {
  font-weight: 600;
}

.phone__prefix {
  display: inline-block;
  margin-right: 0.4em;
  color: var(--text);
}

/* ------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------ */

.footer {
  width: 100%;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.copyright {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ------------------------------------------------------------------
   Responsive adjustments
   ------------------------------------------------------------------ */

@media (max-width: 480px) {
  .page {
    padding: 2.25rem 1.25rem 1.5rem;
  }

  .header {
    margin-bottom: 2.25rem;
  }

  .logo {
    width: 180px;
  }

  .title {
    font-size: 1.5rem;
  }

  .divider {
    margin: 2rem auto;
  }

  .footer {
    margin-top: 2.25rem;
  }
}
