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

:root {
  --navy: #1a2744;
  --gold: #c9a84c;
  --cream: #f7f4ef;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--cream);
  color: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Under-construction page ── */

.construction-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.construction-card {
  text-align: center;
  max-width: 480px;
}

.monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
}

.construction-card h1 {
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.sub {
  font-size: 0.95rem;
  color: var(--light-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--gray);
}

/* ── Interior bio/content pages ── */

.site-header {
  background: var(--navy);
  color: var(--gold);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-header a {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.content-page {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 2rem;
  line-height: 1.75;
}

.content-page h1 {
  font-size: 2rem;
  font-weight: normal;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.content-page h2 {
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.content-page p {
  margin-bottom: 1rem;
  color: #2d3748;
}

.content-page img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

/* ── Image gallery ── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-grid figcaption {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.4rem 0;
}

/* ── Responsive ── */

@media (max-width: 600px) {
  .construction-card h1 {
    font-size: 1.8rem;
  }
  .monogram {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }
}
