@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&family=Yellowtail&display=swap');

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

:root {
  --blue: #042857;
  --red: #c90015;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --text: #1a1a1a;
  --light-gray: #e5e5e5;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.display-accent {
  font-family: 'Playfair Display', serif;
  text-transform: none;
  font-style: italic;
  letter-spacing: 0;
}

.cursive-accent {
  font-family: 'Yellowtail', cursive;
  text-transform: none;
  color: var(--red);
  letter-spacing: 0;
  line-height: 1;
}

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  box-shadow: 0 2px 6px rgba(4,40,87,0.12);
  border-bottom: 3px solid var(--red);
}

.header-logo img {
  height: 44px;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  transition: background 0.15s, color 0.15s;
}

nav a:hover { background: var(--off-white); }

nav .btn-contribute {
  background: var(--red);
  color: var(--white);
  padding: 0.4rem 1rem;
}

nav .btn-contribute:hover { background: #a5000f; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: all 0.2s;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--blue);
  z-index: 99;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 2px solid var(--red);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a:last-child { border-bottom: none; }

.mobile-nav .btn-contribute-mobile {
  background: var(--red);
  margin: 1rem 2rem 0;
  text-align: center;
  border-bottom: none !important;
  padding: 0.75rem 1rem !important;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.15s;
}

.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a5000f; }

.btn-secondary { background: var(--blue); color: var(--white); }
.btn-secondary:hover { background: #031e42; }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--blue); }

.btn-lg { font-size: 1.15rem; padding: 0.9rem 2.25rem; }
.btn-full { width: 100%; text-align: center; }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

input:focus { border-color: var(--red); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue) 0%, #073580 100%);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 .cursive-accent {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--red);
  margin-bottom: -0.25rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Signup card */
.signup-card {
  background: var(--white);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.signup-card h3 {
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.signup-form { display: flex; flex-direction: column; gap: 0.85rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

.signup-form .btn { margin-top: 0.25rem; }

.signup-disclaimer {
  font-size: 0.72rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* ── SECTION BASE ── */
section { padding: 5rem 1.5rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.section-title .cursive-accent {
  font-size: 0.75em;
  display: inline;
}

/* ── MEET LAURA ── */
.meet-section { background: var(--off-white); }

.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.meet-img {
  position: relative;
}

.meet-img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.meet-img::before {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 3px solid var(--red);
  z-index: 0;
}

.meet-img img { position: relative; z-index: 1; }

.meet-text h2 { color: var(--blue); margin-bottom: 0.25rem; }

.meet-text p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.meet-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── DONATE + VOLUNTEER ── */
.action-section { background: var(--blue); }

.action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.action-col {
  padding: 3rem;
}

.action-col:first-child {
  border-right: 2px solid rgba(255,255,255,0.15);
}

.action-col h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.action-col p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.donate-btn {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.65rem;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.15s, color 0.15s;
}

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

.donate-other {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: underline;
  margin-top: 0.5rem;
  cursor: pointer;
}

/* ── PRIORITIES ── */
.priorities-section { background: var(--white); }

.priorities-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.priorities-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.priorities-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}

.priorities-carousel::-webkit-scrollbar { display: none; }

.priority-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--off-white);
  border-top: 4px solid var(--red);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.priority-card-img {
  width: 100%;
  height: 180px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.priority-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.priority-card-img .priority-icon {
  width: 3rem;
  height: 3rem;
  color: var(--white);
}

.priority-card-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; }

.priority-card-body h3 {
  font-size: 1.1rem;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.priority-card-body p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
}

.carousel-scroll-hint {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.75rem;
}

/* ── SECOND EMAIL SIGNUP ── */
.email-signup-section { background: var(--blue); padding-top: 3rem; padding-bottom: 3rem; }

.email-signup-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: center;
}

.email-signup-text h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 0.75rem; }
.email-signup-text p { color: rgba(255,255,255,0.8); font-size: 1rem; }

.email-signup-card { background: var(--white); padding: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 3rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-logo img { height: 48px; }

.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 0.5rem;
}

.footer-socials h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.social-link {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.85rem;
  transition: background 0.15s;
}

.social-link:hover { background: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── INTERIOR PAGE HERO ── */
.page-hero {
  background: var(--blue);
  padding: 3rem 1.5rem 2.4rem;
  text-align: center;
}

.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); }
.page-hero .cursive-accent { display: block; font-size: 0.7em; margin-bottom: -0.2rem; }

/* ── MEET LAURA PAGE ── */
.bio-page { padding: 4rem 1.5rem; }

.bio-page-inner {
  max-width: 860px;
  margin: 0 auto;
}

.bio-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 2.5rem;
  display: block;
}

.bio-page-inner h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 1.5rem; }

.bio-body p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.bio-body hr { border: none; border-top: 2px solid var(--light-gray); margin: 2rem 0; }

.bio-body .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ── STRENGTHS PAGE ── */
.strengths-body { padding: 4rem 1.5rem; }
.strengths-inner { max-width: 800px; margin: 0 auto; }
.strengths-inner h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 2rem; }

.strengths-inner .featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  margin-bottom: 2.5rem;
}

.strengths-inner p {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.strengths-inner strong { color: var(--blue); }

.strengths-inner .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }

.strengths-quote {
  border-left: 4px solid var(--red);
  background: var(--off-white);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blue);
  line-height: 1.6;
}

.strengths-subhead {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.35rem;
}

.strengths-subhead-sm {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

/* ── PRIORITIES PAGE ── */
.priorities-page { padding: 4rem 1.5rem; }

.priorities-page-inner { max-width: 1100px; margin: 0 auto; }

.priorities-page-intro {
  font-size: 1.05rem;
  color: #444;
  max-width: 680px;
  margin-bottom: 3rem;
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.priority-full-card {
  border-top: 4px solid var(--red);
  background: var(--off-white);
  overflow: hidden;
  scroll-margin-top: 72px;
}

.priority-card-body p a {
  color: var(--blue);
  font-weight: 600;
}

.priority-full-card-img {
  width: 100%;
  height: 200px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.priority-full-card-img .priority-icon { width: 3.5rem; height: 3.5rem; color: var(--white); }

.priority-full-card-body { padding: 1.5rem; }

.priority-full-card-body h3 {
  font-size: 1.25rem;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.priority-full-card-body p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.priority-tag {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.6rem;
  margin-right: 0.35rem;
  margin-bottom: 0.35rem;
}

/* ── VOLUNTEER PAGE ── */
.volunteer-page { padding: 4rem 1.5rem; }

.volunteer-inner {
  max-width: 640px;
  margin: 0 auto;
}

.volunteer-inner h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--blue); margin-bottom: 0.75rem; }

.volunteer-inner .lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 2.5rem;
}

.volunteer-form { display: flex; flex-direction: column; gap: 1rem; }
.volunteer-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.volunteer-form .form-group label { color: var(--blue); }

.volunteer-disclaimer {
  font-size: 0.75rem;
  color: #777;
  line-height: 1.5;
  margin-top: 0.25rem;
}

/* ── HOW TO HELP CHECKBOXES ── */
.how-to-help {
  border-top: 2px solid var(--light-gray);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
}

.how-to-help-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  line-height: 1.4;
}

.checkbox-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--blue);
  background: var(--white);
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.checkbox-item input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}

.checkbox-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 8px;
  height: 11px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.checkbox-item input[type="checkbox"]:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}

.checkbox-item span {
  font-size: 0.9rem;
  color: var(--text);
}

.how-to-help textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 2px solid var(--blue);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color 0.15s;
  margin-top: 0.25rem;
}

.how-to-help textarea:focus { border-color: var(--red); }

.yard-sign-fields {
  border-left: 3px solid var(--red);
  padding-left: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.how-to-help .form-group label {
  font-size: 0.85rem;
  color: var(--blue);
}

/* Lighter variant for use inside the dark hero signup card */
.signup-card .how-to-help { border-top-color: var(--light-gray); }
.signup-card .how-to-help-title { color: var(--blue); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 1rem;
  }

  .signup-card { max-width: 100%; }

  .meet-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .meet-img::before { display: none; }

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

  .action-col:first-child { border-right: none; border-bottom: 2px solid rgba(255,255,255,0.15); }

  .email-signup-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  nav ul { display: none; }
  .hamburger { display: flex; }

  .footer-top { flex-direction: column; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 1rem; }
  .email-signup-section { padding-top: 2.1rem; padding-bottom: 2.1rem; }

  .hero-content { padding: 1rem 1rem 2rem; }

  .donate-amounts { grid-template-columns: repeat(3, 1fr); }

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

  .priority-card { flex: 0 0 240px; }

  .priorities-header { flex-direction: column; align-items: flex-start; }

  .action-col { padding: 2rem 1.25rem; }

  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
}
