:root {
    --navy: #0a1628;
    --deep-navy: #060e1c;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --cream: #f5f0e8;
    --red: #b8222a;
    --white: #ffffff;
    --text-muted: #8a9bb5;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Source Serif 4', serif; background: var(--navy); color: var(--cream); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(6,14,28,0.96); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.25);
    padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px;
  }
  .nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 3px; color: var(--gold); }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { color: var(--cream); text-decoration: none; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 300; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-donate-btn { background: var(--gold); color: var(--navy); border: none; padding: 0.5rem 1.4rem; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 2px; cursor: pointer; transition: background 0.2s; text-decoration: none; }
  .nav-donate-btn:hover { background: var(--gold-light); }

  /* HERO — two column: text left, full-bleed photo right */
  .hero { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; position: relative; padding-top: 64px; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background: var(--deep-navy); z-index: 0; }
  .hero-bg::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201,168,76,0.018) 2px, rgba(201,168,76,0.018) 4px); }
  .hero-content { position: relative; z-index: 2; padding: 5rem 3rem 5rem 5rem; display: flex; flex-direction: column; justify-content: center; }
  .hero-badge { display: inline-block; background: var(--red); color: white; font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; padding: 0.3rem 1rem; margin-bottom: 1.8rem; font-weight: 600; animation: fadeUp 0.6s ease both; }
  .hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5.5vw, 6rem); font-weight: 900; line-height: 0.9; color: var(--white); animation: fadeUp 0.6s 0.1s ease both; }
  .hero h1 span { color: var(--gold); display: block; }
  .hero-sub { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1rem, 2vw, 1.6rem); letter-spacing: 5px; color: var(--gold); margin: 1.5rem 0 1.8rem; animation: fadeUp 0.6s 0.2s ease both; }
  .hero-tagline { font-size: 1.05rem; font-weight: 300; font-style: italic; color: rgba(245,240,232,0.82); max-width: 460px; line-height: 1.75; margin-bottom: 2.5rem; animation: fadeUp 0.6s 0.3s ease both; }
  .hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.6s 0.4s ease both; }
  .hero-photo-col { position: relative; z-index: 2; overflow: hidden; min-height: calc(100vh - 64px); }
  .hero-photo-col img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
  .hero-photo-col::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, var(--deep-navy) 0%, rgba(6,14,28,0.1) 35%), linear-gradient(to top, var(--deep-navy) 0%, transparent 15%); }
  .hero-photo-col::after { content: 'BEAUFORT COUNTY · SHERIFF CANDIDATE 2026'; position: absolute; bottom: 2rem; right: 1.5rem; z-index: 2; font-family: 'Bebas Neue', sans-serif; font-size: 0.65rem; letter-spacing: 3px; color: rgba(201,168,76,0.6); writing-mode: vertical-rl; }

  /* BUTTONS */
  .btn-primary { background: var(--gold); color: var(--navy); padding: 1rem 2.5rem; text-decoration: none; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 3px; transition: transform 0.2s, background 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-outline { border: 1px solid rgba(245,240,232,0.5); color: var(--cream); padding: 1rem 2.5rem; text-decoration: none; font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 3px; transition: border-color 0.2s, color 0.2s; display: inline-block; }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  /* STAT BAR */
  .stat-bar { background: var(--gold); padding: 1.5rem 2rem; display: flex; justify-content: center; gap: 5rem; flex-wrap: wrap; }
  .stat-item { text-align: center; }
  .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--navy); line-height: 1; }
  .stat-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(10,22,40,0.65); font-weight: 600; }

  /* SHARED */
  section { padding: 6rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label { font-family: 'Bebas Neue', sans-serif; font-size: 0.82rem; letter-spacing: 4px; color: var(--gold); margin-bottom: 0.6rem; text-transform: uppercase; }
  .section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; margin-bottom: 1.5rem; color: var(--white); }
  .divider { width: 60px; height: 3px; background: var(--gold); margin-bottom: 3rem; }

  /* ABOUT */
  .about { background: var(--deep-navy); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .about-text p { color: rgba(245,240,232,0.8); line-height: 1.9; font-size: 1.02rem; margin-bottom: 1.5rem; font-weight: 300; }
  .about-text p strong { color: var(--gold); font-weight: 600; }
  .about-photo-wrap { position: relative; display: inline-block; width: 100%; max-width: 380px; }
  .about-photo-wrap img { width: 100%; display: block; position: relative; z-index: 1; filter: grayscale(8%) contrast(1.06); }
  .about-photo-wrap::before { content: ''; position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px; border: 2px solid var(--gold); z-index: 0; }
  .about-photo-caption { background: var(--gold); color: var(--navy); font-family: 'Bebas Neue', sans-serif; font-size: 0.72rem; letter-spacing: 3px; padding: 0.5rem 1rem; text-align: center; max-width: 380px; margin-bottom: 2.5rem; }
  .timeline { border-left: 2px solid rgba(201,168,76,0.3); padding-left: 2rem; }
  .timeline-item { margin-bottom: 2rem; position: relative; }
  .timeline-item::before { content: ''; position: absolute; left: -2.55rem; top: 6px; width: 10px; height: 10px; background: var(--gold); border-radius: 50%; }
  .timeline-year { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; letter-spacing: 3px; color: var(--gold); margin-bottom: 0.25rem; }
  .timeline-text { color: rgba(245,240,232,0.75); font-size: 0.92rem; font-weight: 300; line-height: 1.6; }
  .timeline-text strong { color: var(--cream); }

  /* PRIORITIES */
  .priorities { background: var(--navy); }
  .priority-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1rem; }
  .priority-card { border: 1px solid rgba(201,168,76,0.2); padding: 2rem; background: rgba(255,255,255,0.02); transition: border-color 0.3s, transform 0.3s; position: relative; overflow: hidden; }
  .priority-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
  .priority-card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
  .priority-card:hover::before { transform: scaleX(1); }
  .priority-icon { font-size: 2rem; margin-bottom: 1rem; }
  .priority-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: 0.75rem; }
  .priority-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }

  /* QUOTE */
  .quote-section { background: var(--gold); padding: 5rem 2rem; }
  .quote-inner { max-width: 800px; margin: 0 auto; text-align: center; }
  blockquote { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 2.1rem); font-style: italic; color: var(--navy); line-height: 1.5; margin-bottom: 1.5rem; }
  blockquote::before { content: '\201C'; font-size: 5rem; line-height: 0; vertical-align: -1.2rem; opacity: 0.22; margin-right: 0.2rem; }
  cite { font-family: 'Bebas Neue', sans-serif; font-size: 0.88rem; letter-spacing: 3px; color: rgba(10,22,40,0.55); }

  /* VIDEOS */
  .videos { background: var(--deep-navy); }
  .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2rem; }
  .video-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15); overflow: hidden; }
  .video-placeholder { aspect-ratio: 16/9; background: rgba(255,255,255,0.04); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; cursor: pointer; transition: background 0.3s; }
  .video-placeholder:hover { background: rgba(201,168,76,0.08); }
  .play-btn { width: 64px; height: 64px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: transform 0.2s, box-shadow 0.2s; }
  .video-placeholder:hover .play-btn { transform: scale(1.1); box-shadow: 0 0 30px rgba(201,168,76,0.4); }
  .play-btn svg { margin-left: 4px; }
  .video-embed { aspect-ratio: 16/9; width: 100%; display: none; border: none; }
  .video-embed.active { display: block; }
  .video-placeholder.hidden { display: none; }
  .video-label { color: rgba(245,240,232,0.45); font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; font-family: 'Bebas Neue', sans-serif; }
  .video-info { padding: 1.25rem; }
  .video-info h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 0.4rem; }
  .video-info p { font-size: 0.82rem; color: var(--text-muted); font-weight: 300; }
  .video-cta { text-align: center; margin-top: 3rem; padding: 2rem; border: 1px dashed rgba(201,168,76,0.3); background: rgba(201,168,76,0.03); }
  .video-cta p { color: var(--text-muted); font-style: italic; margin-bottom: 1.25rem; font-size: 0.95rem; }

  /* CONNECT */
  .connect { background: var(--navy); }
  .social-grid { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
  .social-card { flex: 1; min-width: 200px; border: 1px solid rgba(201,168,76,0.2); padding: 2rem; text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.02); transition: border-color 0.3s, background 0.3s, transform 0.3s; }
  .social-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-3px); }
  .social-icon { font-size: 2.2rem; }
  .social-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 3px; color: var(--white); text-align: center; }
  .social-handle { color: var(--gold); font-size: 0.82rem; font-weight: 600; }
  .social-card p { font-size: 0.78rem; color: var(--text-muted); text-align: center; line-height: 1.5; }
  .signup-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; padding-top: 4rem; border-top: 1px solid rgba(201,168,76,0.2); }
  .signup-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 1.5rem; }
  .form-row { display: flex; gap: 1rem; margin-bottom: 1rem; }
  .form-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); color: var(--cream); padding: 0.9rem 1rem; font-family: 'Source Serif 4', serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; width: 100%; }
  .form-input:focus { border-color: var(--gold); }
  .form-input::placeholder { color: rgba(245,240,232,0.28); }
  .form-btn { width: 100%; background: transparent; border: 2px solid var(--gold); color: var(--gold); padding: 1rem; cursor: pointer; font-family: 'Bebas Neue', sans-serif; font-size: 1rem; letter-spacing: 3px; transition: background 0.2s, color 0.2s; margin-top: 0.5rem; }
  .form-btn:hover { background: var(--gold); color: var(--navy); }

  /* DONATE */
  .donate { background: var(--deep-navy); }
  .donate-inner { max-width: 700px; margin: 0 auto; text-align: center; }
  .donate-inner .section-title { text-align: center; }
  .donate-inner .divider { margin: 0 auto 2rem; }
  .donate-inner > p { color: rgba(245,240,232,0.75); line-height: 1.9; font-size: 1.02rem; margin-bottom: 2.5rem; font-weight: 300; }
  .amount-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
  .amount-btn { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.3); color: var(--cream); padding: 1rem; cursor: pointer; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; letter-spacing: 2px; transition: all 0.2s; }
  .amount-btn:hover, .amount-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
  .custom-amount { margin-bottom: 1.5rem; }
  .custom-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2); color: var(--cream); padding: 1rem 1.5rem; font-family: 'Source Serif 4', serif; font-size: 1rem; outline: none; transition: border-color 0.2s; text-align: center; }
  .custom-input:focus { border-color: var(--gold); }
  .custom-input::placeholder { color: rgba(245,240,232,0.28); }
  .donate-btn-main { background: var(--red); color: white; border: none; padding: 1.25rem 4rem; font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 4px; cursor: pointer; transition: background 0.2s, transform 0.2s; width: 100%; }
  .donate-btn-main:hover { background: #d42830; transform: translateY(-2px); }
  .donate-disclaimer { font-size: 0.73rem; color: var(--text-muted); margin-top: 1.5rem; font-style: italic; line-height: 1.7; }

  /* FOOTER */
  footer { background: var(--deep-navy); border-top: 1px solid rgba(201,168,76,0.2); padding: 3rem 2rem; text-align: center; }
  .footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 5px; color: var(--gold); margin-bottom: 1rem; }
  footer p { color: var(--text-muted); font-size: 0.8rem; line-height: 1.8; }
  footer a { color: var(--gold); text-decoration: none; }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* MOBILE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-content { padding: 4rem 1.5rem 3rem; }
    .hero-photo-col { min-height: 65vw; }
    .about-grid, .signup-row { grid-template-columns: 1fr; gap: 3rem; }
    .nav-links { display: none; }
    .stat-bar { gap: 2rem; }
    .amount-grid { grid-template-columns: repeat(2, 1fr); }
  }