/* ============================================================
   BASE & VARIABLES
   ============================================================ */
:root {
  --red: #c8102e;
  --red-dark: #9e0b22;
  --red-light: #f0e4e7;
  --navy: #0a1628;
  --navy-mid: #122040;
  --gold: #c9a84c;
  --white: #ffffff;
  --off-white: #f8f6f2;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;

  --max-w: 1100px;
  --section-py: 5rem;
  --radius: 12px;
  --radius-sm: 6px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.15);

  --transition: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: var(--section-py);
}

.section--alt {
  background: var(--off-white);
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.center {
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.35);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.45);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn--nav {
  background: var(--red);
  color: var(--white);
  padding: 0.5rem;
  font-size: 0.875rem;
  border-color: var(--red);
}
.btn--nav:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 8px;
}
.btn--xl {
  padding: 1.2rem 2.6rem;
  font-size: 1.2rem;
  border-radius: 8px;
}

.btn__icon {
  font-size: 1.1em;
  line-height: 1;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.navbar__links > a:not(.btn) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.navbar__links > a:not(.btn):hover {
  color: var(--white);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    #0a1628 0%,
    #1a2e50 40%,
    #0f1f3d 70%,
    #1a0a10 100%
  );
  padding-top: 64px; /* navbar offset */
}

/* Stars / subtle texture */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(201, 168, 76, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(200, 16, 46, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Subtle diagonal stripe overlay */
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.012) 60px,
    rgba(255, 255, 255, 0.012) 61px
  );
  pointer-events: none;
}

/* Red accent bar on left */
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--red), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 4rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero__headline--sub {
  display: block;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  margin-top: 0.15em;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.25rem;
  margin-bottom: 2.5rem;
  letter-spacing: 0.01em;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Scroll cue */
.hero__scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 2;
  cursor: pointer;
}

.hero__scroll-cue span {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  transform: rotate(45deg);
  animation: scroll-bounce 1.4s ease infinite;
}
.hero__scroll-cue span:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.6;
}
.hero__scroll-cue span:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0.3;
}

@keyframes scroll-bounce {
  0%,
  60%,
  100% {
    transform: rotate(45deg) translate(0, 0);
  }
  30% {
    transform: rotate(45deg) translate(4px, 4px);
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.about__photo-wrap {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about__badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.about__text p {
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: 1.025rem;
}

.about__why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* ============================================================
   ISSUES
   ============================================================ */
.issues__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.issue-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

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

.issue-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.issue-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.issue-card__body {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================================================
   PETITION
   ============================================================ */
.petition {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Decorative star field */
.petition::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 80%,
      rgba(200, 16, 46, 0.25) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(201, 168, 76, 0.12) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.petition__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
}

.petition__badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.petition__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.petition__intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.petition__eligibility {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.petition__eligibility-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6em;
  height: 1.6em;
  background: var(--red);
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.petition__requirements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.petition__requirements li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.req-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.05em;
}

.petition__mvd-box {
  background: rgba(255, 255, 255, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
}

.petition__mvd-box p {
  color: rgba(255, 255, 255, 1);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.petition__mvd-box p:last-of-type {
  margin-bottom: 1rem;
}

.petition__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.petition__cta-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.petition__cta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  max-width: 420px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060e1a;
  color: rgba(255, 255, 255, 0.4);
  padding-block: 2rem;
  text-align: center;
  font-size: 0.8rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer__name {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--transition);
  font-size: 0.8rem;
}
.footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --section-py: 3.5rem;
  }

  .navbar__links > a:not(.btn) {
    display: none;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero__buttons .btn--lg {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__photo-wrap {
    max-width: 260px;
    margin-inline: auto;
  }

  .petition__inner {
    text-align: left;
  }
  .petition__badge {
    /* keep centered */
    display: block;
    text-align: center;
  }
  .petition__title {
    text-align: center;
  }
  .petition__intro {
    text-align: center;
  }
  .petition__cta {
    align-items: stretch;
  }
  .petition__cta .btn--xl {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-tag {
    display: none;
  }
}
