/* Whitefield Brand Identity */
:root {
  --navy: #1e3a5f;
  --white: #ffffff;
  --gold: #c4943a;
  --text: #333333;
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: var(--text);
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 2rem;
  line-height: 1.6;
}

/* Layout container */
header,
main,
footer {
  width: 100%;
  max-width: 600px;
}

/* Header */
header {
  margin-bottom: 2rem;
}

h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.tagline {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Main */
main {
  margin-bottom: 3rem;
}

.description {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text);
  line-height: 1.7;
  opacity: 0.5;
}

/* Footer */
footer {
  margin-top: auto;
  padding-top: 2rem;
}

.copyright {
  font-size: 0.85rem;
  color: #888888;
}

/* Print */
@media print {
  body {
    min-height: auto;
    padding: 1rem;
  }

}
