:root {
  --maroon: #7b1c3a;
  --maroon-dark: #5a1429;
  --blue: #1a5dab;
  --blue-light: #2a6dbb;
  --white: #ffffff;
  --off-white: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-600: #52525b;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Source Serif 4', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --section-padding: 100px;
  --container-max: 1140px;
  --transition: 0.25s ease;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 6px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--gray-900);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.9375rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8125rem;
}

.btn-accent {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.btn-accent:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
}

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

.btn-primary:hover {
  background: var(--gray-800);
}

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

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

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.logo-img {
  height: 60px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gray-900);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--maroon);
  transition: width 0.2s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    background 0.3s ease;
}

.mobile-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(0) rotate(45deg);
  background: var(--maroon);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(0) rotate(-45deg);
  background: var(--maroon);
}

.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--gray-900) 0%, #2d2d32 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--maroon) 100%);
  opacity: 0.15;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-image img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-content {
  color: var(--white);
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.hero-position {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 500;
  color: var(--maroon);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-angle {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--maroon);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.stats-bar {
  background: var(--maroon);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  color: var(--white);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.about-section {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.about-intro {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 24px;
}

.about-highlights {
  margin: 0 0 32px 0;
  padding-left: 0;
}

.about-highlights li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.about-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 2px;
  background: var(--maroon);
}

.issues-section {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
  position: relative;
}

.issues-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.issues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.issue-card {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.issue-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.issue-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--maroon);
}

.issue-icon svg {
  width: 100%;
  height: 100%;
}

.issue-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.issue-summary {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.issue-details {
  display: none;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  margin-top: 16px;
}

.issue-details.active {
  display: block;
}

.issue-details p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.issue-toggle {
  background: none;
  border: none;
  color: var(--maroon);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.issue-toggle:hover {
  color: var(--maroon-dark);
}

.issue-toggle.active {
  color: var(--gray-600);
}

.message-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.message-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center bottom;
  filter: grayscale(30%);
}

.message-bg--corliss {
  background-image: url('https://res.cloudinary.com/dy4kgrxiy/image/upload/v1769821224/scott_08.jpg');
}

.message-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(24, 24, 27, 0.82) 0%,
    rgba(24, 24, 27, 0.75) 100%
  );
}

.message-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  padding: 20px 0;
}

.message-content blockquote {
  margin: 0;
}

.message-content blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(1.125rem, 2.4vw, 1.375rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.message-closing {
  color: var(--white) !important;
  margin-top: 24px !important;
}

.message-content cite {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: normal;
  color: #d86a86;
  letter-spacing: 0.04em;
  margin-top: 24px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  position: relative;
  padding-top: 14px;
}

.message-content cite::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.75);
}

.contact-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.contact-wrapper {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-intro {
  font-size: 1rem;
  color: var(--gray-600);
}

.contact-form {
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123, 28, 58, 0.1);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--gray-400);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field-full {
  margin-bottom: 16px;
}

.checkbox-field {
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--maroon);
  flex-shrink: 0;
}

.checkbox-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.contact-form .btn {
  width: 100%;
}

.contact-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-links > a {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

.contact-links > a:hover {
  color: var(--maroon);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 50%;
  color: var(--gray-600);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--maroon);
  color: var(--white);
}

.footer {
  padding: 48px 0;
  background: var(--gray-900);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  height: 70px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  color: var(--gray-400);
  font-size: 0.8125rem;
}

.footer-legal p {
  margin-bottom: 4px;
}

.footer-legal a {
  color: var(--gray-400);
}

.footer-legal a:hover {
  color: var(--white);
}

.page-header {
  padding: 140px 0 60px;
  background: var(--gray-900);
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-header p {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.privacy-content {
  padding: 80px 0;
}

.privacy-text {
  max-width: 720px;
  margin: 0 auto;
}

.privacy-text h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
}

.privacy-text h2:first-child {
  margin-top: 0;
}

.privacy-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

.privacy-text ul {
  margin: 16px 0 24px 24px;
  list-style: disc;
}

.privacy-text ul li {
  color: var(--gray-600);
  margin-bottom: 8px;
  line-height: 1.6;
}

.privacy-text strong {
  color: var(--gray-800);
}

.privacy-disclaimer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.875rem;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    width: 280px;
    height: 350px;
    margin: 0 auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-angle {
    height: 60px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

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

  .about-image img {
    height: 360px;
  }

  .issues-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px;
  }

  .message-section {
    padding-bottom: var(--section-padding);
  }

  .message-bg {
    background-position: center;
  }

  .message-content {
    text-align: center;
  }

  .message-content cite::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 0 24px;
    border-bottom: 1px solid transparent;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      padding 0.35s ease,
      border-color 0.35s ease;
  }

  .nav-menu.active {
    max-height: 300px;
    padding: 16px 24px;
    opacity: 1;
    gap: 8px;
    border-bottom-color: var(--gray-200);
  }

  .nav-menu .nav-item {
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

  .nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.05s;
  }
  .nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }
  .nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.15s;
  }
  .nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.2s;
  }

  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    width: 240px;
    height: 300px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .btn-lg {
    padding: 14px 28px;
  }

  .issue-card {
    padding: 24px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.5s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--maroon);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

*:focus-visible {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline-offset: 4px;
  box-shadow: 0 0 0 4px rgba(123, 28, 58, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}

.issue-card {
  transform: translateY(0);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.issue-card:hover {
  transform: translateY(-4px);
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.05);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
