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

:root {
  --gold:     #D1AE20;
  --red-dark: #5c0c1c;
  --red:      #7D1126;
  --white:    #FFFFFF;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--white);
  color: #1a1a1a;
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  background-color: var(--red);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 5rem;
  text-align: center;
}

.hero-name {
  font-family: 'League Gothic', sans-serif;
  line-height: 0.88;
  letter-spacing: 0.02em;
}

.hero-name .first {
  display: block;
  font-size: clamp(4.5rem, 14vw, 10rem);
  color: var(--gold);
}

.hero-name .last {
  display: block;
  font-size: clamp(5.5rem, 18vw, 13rem);
  color: var(--white);
}

.office-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--red-dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(0.7rem, 2vw, 0.95rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.45rem 1.4rem;
  border-radius: 3px;
  margin-top: 0.9rem;
}

.hero-photo {
  width: clamp(190px, 28vw, 300px);
  height: clamp(190px, 28vw, 300px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 5px solid var(--gold);
  margin-top: 2.5rem;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}

.hero-tagline {
  font-weight: 700;
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 1.75rem;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about {
  padding: 5rem 2rem 6rem;
  background: var(--white);
}

.about-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo-wrap img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 8px 8px 0 var(--red);
  display: block;
}

.about-heading {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.about-heading span {
  color: var(--red);
  display: block;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}

/* ── ISSUES ────────────────────────────────────────── */
.issues {
  background: var(--red-dark);
  padding: 5rem 2rem 6rem;
}

.issues-inner {
  max-width: 960px;
  margin: 0 auto;
}

.issues-heading {
  font-family: 'League Gothic', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 3rem;
}

.issues-heading span {
  color: var(--white);
  display: block;
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.issue-card {
  border: 2px solid var(--red);
  border-radius: 6px;
  padding: 1.75rem 1.5rem;
}

.issue-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.issue-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ── DIVIDER ───────────────────────────────────────── */
.divider {
  height: 6px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 50%, var(--gold) 100%);
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--red-dark);
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 1.6rem 1rem;
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 660px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-photo-wrap {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}
