/* ===========================
   Variables & Reset
   =========================== */
:root {
  --red: #BF0A30;
  --red-dark: #9A0826;
  --blue: #002868;
  --blue-dark: #001A44;
  --blue-light: #003C8F;
  --white: #FFFFFF;
  --off-white: #F5F5F7;
  --gray-light: #E8E8EA;
  --gray: #6B7280;
  --text: #1A1A2E;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-heading: Georgia, 'Times New Roman', serif;
  --max-width: 1100px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===========================
   Utility
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--blue);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 12px auto 0;
}

/* ===========================
   Buttons
   =========================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  text-align: center;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-light) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(191, 10, 48, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 720px;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 8px;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-office {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  opacity: 0.9;
  margin-bottom: 24px;
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 28px;
}

.hero-taglines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 40px;
}

.hero-taglines li {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
}

/* ===========================
   About
   =========================== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.candidate-photo {
  width: 100%;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
  color: #444;
  line-height: 1.75;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ===========================
   Priorities
   =========================== */
.priorities {
  background: var(--off-white);
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.priority-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 3px solid var(--red);
}

.priority-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.priority-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--blue);
}

.priority-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 12px;
}

.priority-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===========================
   Contact
   =========================== */
.contact {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.contact .section-title {
  color: var(--white);
}

.contact .section-title::after {
  background: var(--red);
}

.contact-message {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0.9;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.contact .btn-primary {
  background: var(--red);
  border-color: var(--red);
}

.contact .btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.contact .btn-outline {
  color: var(--white);
  border-color: var(--white);
}

.contact .btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}

.contact-note {
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 32px 0;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
  .priorities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 220px 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 300px;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 32px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .candidate-photo {
    max-width: 220px;
    margin: 0 auto;
  }

  .priorities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .priority-card {
    padding: 28px 24px;
  }

  .hero-taglines {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}
