/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

/* Base */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               system-ui, Helvetica, Arial, sans-serif;
  background-color: #2b3436; /* calm blue-grey */
  color: #ffffff;
}

/* Page uses grid: logo area + footer */
.page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto; /* logo area, then footer */
}

/* Center logo inside the top grid row */
.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 20px; /* small top/bottom padding */
}

/* Size of the monogram */
.logo-mark {
  width: 260px;
  height: 120px;
}

/* Footer */
.footer {
  width: 100%;
  padding: 28px 36px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-left {
  text-align: left;
}

.footer-center {
  text-align: center;
  letter-spacing: 0.18em;
}

.footer-right {
  text-align: right;
}

.footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.footer a:hover {
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

/* Mobile */
@media (max-width: 700px) {

  .logo-mark {
    width: 200px;
    height: 92px; /* keeps roughly same aspect ratio */
  }

  .footer {
    grid-template-columns: 1fr;
    row-gap: 10px;
    text-align: center;
    padding: 22px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }
}
