/* =============================================
   THE BUICK ORGANIZATION
   ============================================= */

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

:root {
  --dark: #0f0f0f;
  --text: #3a3a3a;
  --muted: #999999;
  --border: #d8d5cf;
  --accent: #a1aaa9;
}

html, body {
  height: 100%;
}

body {
  background: #ffffff;
  color: var(--dark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ---- CENTERED PAGE ---- */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  text-align: center;
  gap: 0;
}

/* ---- CREST ---- */
.crest-container {
  margin-bottom: 40px;
}

.crest-img {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.10));
}

.crest-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
}

.crest-svg {
  width: 160px;
  height: 196px;
}

/* ---- NAMEPLATE ---- */
.nameplate {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 40px;
}

.nameplate-title {
  display: flex;
  justify-content: space-between;
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 900;
  color: var(--dark);
  line-height: 4rem;
  width: 100%;
}

.nameplate-rule {
  height: 1px;
  background: var(--dark);
}

.nameplate-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--dark);
  text-align: center;
  padding: 8px 0;
  margin-right: -0.42em; /* remove trailing letter-spacing so N aligns flush with right rule */
  white-space: nowrap;
}

.slogan {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.1;
  margin-bottom: 40px;
}

/* ---- DIVIDER ---- */
.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 40px;
}

/* ---- CONTACT ---- */
.contact-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-decoration: none;
  text-transform: lowercase;
  transition: color 0.2s;
}

.contact-link:hover {
  color: var(--accent);
}

/* ---- IMPRINT ---- */
.imprint {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 480px;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.imprint-heading {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--muted);
}

.imprint a {
  color: var(--muted);
  text-decoration: none;
}

.imprint a:hover {
  color: var(--accent);
}

.imprint-privacy {
  margin-top: 10px;
  color: #bbb;
}
