/* ── CRCJ Review — style.css ── */

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

:root {
  --navy: #1a2332;
  --charcoal: #2c3e50;
  --gold: #b8953e;
  --off-white: #f8f7f4;
  --text: #3a3a3a;
  --text-light: #6b7280;
  --border: #e2e0dc;
  --max-width: 960px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.4rem; margin-bottom: 0.5em; }
h2 { font-size: 1.6rem; margin-bottom: 0.4em; }
h3 { font-size: 1.2rem; margin-bottom: 0.3em; }

p { margin-bottom: 1.25em; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--navy); }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Navigation ── */
.site-nav {
  background: var(--navy);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-nav__brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.site-nav__brand:hover { color: var(--gold); }
.site-nav__links { list-style: none; display: flex; gap: 2rem; }
.site-nav__links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.site-nav__links a:hover,
.site-nav__links a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}
.hero h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 0.3em;
  letter-spacing: 0.01em;
}
.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.hero__rule {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: 1.5rem auto 1.2rem;
}

/* ── Section ── */
.section {
  padding: 4rem 0;
}
.section--alt {
  background: #fff;
}
.section__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section__body {
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--text);
}
.section__body p:last-child { margin-bottom: 0; }

/* ── About: portrait ── */
.portrait-wrap {
  text-align: center;
  margin-bottom: 2.5rem;
}
.portrait {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.portrait-name {
  margin-top: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: var(--navy);
}
.portrait-title {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.site-footer a {
  color: rgba(255,255,255,0.7);
}
.site-footer a:hover {
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 3.5rem 1.2rem 2.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero__tagline { font-size: 1rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 2.5rem 0; }
  .portrait { width: 160px; height: 160px; }
  .site-nav__links { gap: 1.2rem; }
  .site-nav__links a { font-size: 0.8rem; }
}
