
* {
  box-sizing: border-box;
}

:root {
  --green: rgb(81, 94, 58);
  --rust: #A04828;
  --cream: #f7f3eb;
  --light: #fbfaf7;
  --dark: #2d2a24;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: var(--light);
}

header {
  background: var(--cream);
  padding: 18px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 6px solid var(--green);
}

.site-logo {
  max-width: 280px;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

nav a {
  color: var(--green);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.85rem;
}

nav a:hover {
  color: var(--rust);
}

.donate-btn {
  background: var(--rust);
  color: white !important;
  padding: 10px 24px;
  border-radius: 999px;
}

.donate-btn:hover {
  background: var(--green);
  color: white !important;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  padding: 70px 8%;
  background:
    linear-gradient(rgba(247,243,235,0.88), rgba(247,243,235,0.88)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.hero-text h1 {
  font-size: 3.4rem;
  margin: 0 0 15px;
  color: var(--rust);
  line-height: 1.05;
}

.hero-text h2 {
  color: var(--green);
  font-size: 1.55rem;
  margin: 0 0 24px;
}

.tagline {
  font-weight: bold;
  color: var(--rust);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-text p {
  font-size: 1.18rem;
  line-height: 1.6;
  max-width: 650px;
}

.button-row {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

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

.btn-secondary {
  background: var(--green);
  color: white;
}

.hero-photo-card {
  background: white;
  padding: 14px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  border: 4px solid var(--green);
}

.family-photo {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.caption {
  text-align: center;
  margin-top: 10px;
  color: #555;
  font-size: 0.95rem;
}

.section {
  padding: 55px 8%;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--green);
}

.section p {
  max-width: 1560px;
  margin: 0 auto 25px;
  font-size: 1.08rem;
  line-height: 1.6;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.link-card {
  background: white;
  padding: 28px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border-top: 5px solid var(--rust);
  text-decoration: none;
  color: var(--dark);
}

.link-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--rust);
}

.statement {
  background: var(--green);
  color: white;
  padding: 48px 8%;
  text-align: center;
}

footer {
  background: var(--rust);
  color: white;
  text-align: center;
  padding: 24px 8%;
  font-size: 0.95rem;
}

footer p {
  margin: 6px 0;
}

@media (max-width: 850px) {
  header {
    justify-content: center;
    gap: 18px;
  }

  nav {
    gap: 16px;
  }

  nav a {
    font-size: 1.15rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 6%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .button-row {
    justify-content: center;
  }

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

/* ANNOUNCEMENT SECTION */

.announcement-section {
  padding: 65px 8%;
  background: var(--light);
}

.announcement-container {
  max-width: 2300px;
  margin: 0 auto;
  background: white;
  padding: 44px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  border-top: 6px solid var(--rust);
}

.section-label {
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0;
}

.announcement-container h2 {
  color: var(--rust);
  font-size: 2.3rem;
  line-height: 1.2;
  margin-top: 0;
}

.lead-quote {
  font-size: 1.35rem;
  color: var(--green);
  font-weight: bold;
  line-height: 1.5;
}

.announcement-container p {
  font-size: 1.12rem;
  line-height: 1.75;
}

.announcement-container h3 {
  color: var(--rust);
  font-size: 2rem;
  text-align: center;
  margin-top: 30px;
}

.announcement-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

@media (max-width: 850px) {
  .announcement-container {
    padding: 30px 24px;
  }

  .announcement-container h2 {
    font-size: 1.9rem;
  }
}

/* ANNOUNCEMENT SECTION */

.announcement-section {
  padding: 65px 8%;
  background: var(--light);
}

.announcement-container {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 44px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  border-top: 6px solid var(--rust);
}


.section-label {
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
}


.announcement-container h2 {
  color: var(--rust);
  font-size: 2.3rem;
  line-height: 1.2;
}

.lead-quote {
  font-size: 1.35rem;
  color: var(--green);
  font-weight: bold;
  line-height: 1.5;
}

.announcement-container p {
  font-size: 1.12rem;
  line-height: 1.75;
}

.announcement-container h3 {
  color: var(--rust);
  text-align: center;
  font-size: 2rem;
  margin-top: 30px;
}

.hidden-announcement {
  display: none;
}

.read-more-btn {
  margin-top: 20px;
  background: var(--rust);
  color: white;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

.read-more-btn:hover {
  background: var(--green);
}

/* MEET BRIAN HERO */

.meet-hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
  padding: 70px 8%;
  background:
    linear-gradient(rgba(247,243,235,0.92), rgba(247,243,235,0.92)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.meet-hero-text h1 {
  color: var(--rust);
  font-size: 3.3rem;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 24px;
}

.meet-intro {
  font-size: 1.35rem;
  color: var(--green);
  font-weight: bold;
}

.meet-hero-text p {
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 700px;
}

.meet-hero-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 14px 40px rgba(0,0,0,0.18);
  border: 5px solid white;
}

  
@media (max-width: 850px) {

  .meet-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 6%;
  }

  .meet-hero-text h1 {
    font-size: 2.4rem;
  }

}


/* WYOMING ROOTS SECTION */

.roots-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
  padding: 70px 8%;
  background: white;
}

.roots-image img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}

.roots-text h2 {
  color: var(--rust);
  font-size: 2.5rem;
  margin-top: 0;
}

.roots-text p {
  font-size: 1.12rem;
  line-height: 1.8;
}

.roots-closing {
  color: var(--green);
  font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 850px) {

  .roots-section {
    grid-template-columns: 1fr;
    padding: 50px 6%;
  }

  .roots-text {
    text-align: center;
  }

  .roots-text h2 {
    font-size: 2rem;
  }

}

.image-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}



/* CONTACT PAGE */

.contact-hero {
  background:
    linear-gradient(rgba(247,243,235,0.9), rgba(247,243,235,0.9)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
  padding: 75px 8%;
  text-align: center;
}

.contact-hero-content {
  max-width: 850px;
  margin: 0 auto;
}

.contact-hero h1 {
  color: var(--rust);
  font-size: 3.2rem;
  margin: 0 0 18px;
}

.contact-hero p {
  font-size: 1.25rem;
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 65px 8%;
  background: var(--light);
}

.contact-card {
  background: white;
  padding: 38px;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  border-top: 6px solid var(--rust);
}

.contact-card h2 {
  color: var(--green);
  font-size: 2rem;
  margin-top: 0;
}

.contact-card p {
  font-size: 1.12rem;
  line-height: 1.7;
}

.contact-info-box {
  margin-top: 24px;
  padding: 22px;
  background: var(--cream);
  border-radius: 14px;
  border-left: 5px solid var(--green);
}

.contact-info-box p {
  margin: 10px 0;
}

.contact-info-box a {
  color: var(--rust);
  font-weight: bold;
  text-decoration: none;
}

.contact-info-box a:hover {
  text-decoration: underline;
}

.survey-card {
  background:
    linear-gradient(rgba(81,94,58,0.94), rgba(81,94,58,0.94)),
    linear-gradient(135deg, var(--green), var(--rust));
  color: white;
  border-top: 6px solid var(--rust);
}

.survey-card h2 {
  color: white;
}

.survey-button {
  display: inline-block;
  margin-top: 18px;
  background: var(--rust);
  color: white;
  padding: 15px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.survey-button:hover {
  background: white;
  color: var(--green);
}

.contact-closing {
  background: var(--cream);
  text-align: center;
  padding: 50px 8%;
}

.contact-closing h2 {
  color: var(--rust);
  font-size: 2.4rem;
  margin-top: 0;
}

.contact-closing p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 850px) {
  .contact-hero h1 {
    font-size: 2.35rem;
  }

  .contact-section {
    grid-template-columns: 1fr;
    padding: 45px 6%;
  }

  .contact-card {
    padding: 30px 24px;
  }
}




/* FRIENDLY CONTACT PAGE OPTION */

.friendly-contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  padding: 65px 8%;
  background: white;
}

.friendly-contact-message h2 {
  color: var(--rust);
  font-size: 2.4rem;
  margin-top: 0;
}

.friendly-contact-message p {
  font-size: 1.15rem;
  line-height: 1.75;
}

.friendly-contact-panel {
  background: var(--cream);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  border-left: 7px solid var(--green);
}

.contact-method {
  display: flex;
  gap: 18px;
  align-items: center;
  background: white;
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 5px 14px rgba(0,0,0,0.06);
}

.contact-icon {
  background: var(--rust);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-method h3 {
  margin: 0 0 6px;
  color: var(--green);
}

.contact-method a {
  color: var(--rust);
  font-weight: bold;
  text-decoration: none;
  word-break: break-word;
}

.survey-wide-button {
  display: block;
  text-align: center;
  background: var(--green);
  color: white;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 24px;
}

.survey-wide-button:hover {
  background: var(--rust);
}

.listening-section {
  background:
    linear-gradient(rgba(81,94,58,0.94), rgba(81,94,58,0.94)),
    linear-gradient(135deg, var(--green), var(--rust));
  color: white;
  text-align: center;
  padding: 60px 8%;
}

.listening-section h2 {
  font-size: 2.35rem;
  margin-top: 0;
}

.listening-section p {
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.3;
}


.listening-tagline-large {
  color: white;
  font-weight: bold;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
  margin: 0 auto;
  max-width: 1400px;
}

@media (max-width: 850px) {

  .friendly-contact-section {
    grid-template-columns: 1fr;
    padding: 45px 6%;
  }

  .friendly-contact-message {
    text-align: center;
  }

  .friendly-contact-message h2,
  .listening-section h2 {
    font-size: 2rem;
  }

  .listening-tagline-large {
    font-size: 2rem;
  }

}

.centered-card {
  text-align: center;
}

.centered-text {
  text-align: center;
}

/* ENDORSEMENTS PAGE FIX */

.simple-page-card {
  text-align: center;
}

.simple-page-card .section-label,
.simple-page-card h1,
.simple-page-card p {
  text-align: center;
}

.simple-page-card .button-row {
  justify-content: center;
}



/* ENDORSEMENT LINKS */

.endorsement-links {
  margin-top: 35px;
}

.endorsement-links p {
  margin-bottom: 28px;
  font-size: 1.15rem;
  text-align: center;
}

.endorsement-links strong {
  color: var(--green);
  font-size: 1.25rem;
}

.endorsement-links a {
  color: var(--rust);
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
}

.endorsement-links a:hover {
  color: var(--green);
  text-decoration: underline;
}


/* ENDORSEMENTS PAGE */

.endorsement-hero {
  padding: 75px 8%;
  background:
    linear-gradient(rgba(247,243,235,0.9), rgba(247,243,235,0.9)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.endorsement-hero-card {
  max-width: 1350px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.14);
  border-top: 8px solid var(--rust);
  text-align: center;
}

.endorsement-hero-card h1 {
  color: var(--rust);
  font-size: 3.2rem;
  margin: 0 0 18px;
}

.endorsement-lead {
  color: var(--green);
  font-weight: bold;
  font-size: 1.35rem;
}

.endorsement-hero-card p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.endorsement-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.endorsement-action-card {
  display: block;
  background: var(--cream);
  border-radius: 18px;
  padding: 32px 26px;
  text-decoration: none;
  color: var(--dark);
  border-top: 6px solid var(--green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.endorsement-action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.13);
}

.endorsement-action-card span {
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.endorsement-action-card h2 {
  color: var(--rust);
  font-size: 1.8rem;
  margin: 12px 0;
}

.rust-card {
  border-top-color: var(--rust);
}

.endorsement-bottom {
  background: var(--green);
  color: white;
  text-align: center;
  padding: 45px 8%;
}

.endorsement-bottom h2 {
  font-size: 3rem;
  margin: 0;
}

@media (max-width: 850px) {
  .endorsement-hero-card {
    padding: 34px 24px;
  }

  .endorsement-hero-card h1 {
    font-size: 2.3rem;
  }

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

  .endorsement-bottom h2 {
    font-size: 2rem;
  }
}


/* PRIORITIES PAGE */

.priorities-hero {
  padding: 75px 8%;
  background:
    linear-gradient(rgba(247,243,235,0.92), rgba(247,243,235,0.92)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.priorities-card {
  max-width: 1300px;
  margin: 0 auto;
  background: white;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.14);
  border-top: 8px solid var(--green);
}

.priorities-card h1 {
  color: var(--rust);
  font-size: 3rem;
  margin-top: 0;
  text-align: center;
}

.priorities-intro {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 45px;
}

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

.priority-item {
  background: var(--cream);
  padding: 22px 24px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
  border-left: 6px solid var(--rust);
  box-shadow: 0 5px 14px rgba(0,0,0,0.06);
}

@media (max-width: 850px) {

  .priorities-card {
    padding: 34px 22px;
  }

  .priorities-card h1 {
    font-size: 2.2rem;
  }

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

}



/* DONATE PAGE */

.donate-hero {
  padding: 75px 8%;
  background:
    linear-gradient(rgba(247,243,235,0.92), rgba(247,243,235,0.92)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.donate-card {
  max-width: 1450px;
  margin: 0 auto;
  background: white;
  padding: 55px;
  border-radius: 24px;
  box-shadow: 0 14px 38px rgba(0,0,0,0.14);
  border-top: 8px solid var(--rust);
  text-align: center;
}

.donate-card h1 {
  color: var(--rust);
  font-size: 3.2rem;
  margin-top: 0;
}

.donate-statement {
  color: var(--green);
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 55px;
  line-height: 1.5;
}

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

.donation-option {
  background: var(--cream);
  border-radius: 22px;
  padding: 36px 28px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  border-top: 6px solid var(--green);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.donation-option:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

.donation-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.donation-option h2 {
  color: var(--rust);
  font-size: 2rem;
  margin-bottom: 14px;
}

.donation-option p {
  font-size: 1.08rem;
  line-height: 1.6;
}

@media (max-width: 950px) {

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

  .donate-card {
    padding: 34px 22px;
  }

  .donate-card h1 {
    font-size: 2.2rem;
  }

  .donate-statement {
    font-size: 1.3rem;
  }

}
/* COMPACT MEET BRIAN PAGE */

.bio-feature-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 24px 8%;
  background:
    linear-gradient(rgba(247,243,235,0.92), rgba(247,243,235,0.92)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}


.bio-feature-text {
  flex: 1;
  text-align: center;
}


.bio-feature-text h1 {
  color: var(--rust);
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0;
}



.bio-feature-image {
  flex-shrink: 0;
  text-align: center;
}

.bio-feature-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
  border: 3px solid white;
}

.image-caption {
  margin-top: 8px;
  font-size: 0.8rem;
}

@media (max-width: 950px) {
  .bio-feature-section {
    flex-direction: column;
    text-align: center;
    padding: 35px 6%;
  }

  .bio-feature-text h1 {
    font-size: 1.5rem;
  }

  .bio-feature-image img {
    max-width: 360px;
  }
}

.image-caption {
  margin-top: 8px;
  font-size: 0.8rem;
}

@media (max-width: 950px) {

  .bio-feature-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 35px 6%;
  }

  .bio-feature-text h1 {
    font-size: 1.5rem;
  }

  .bio-feature-image img {
    max-width: 260px;
  }

}


@media (max-width: 950px) {

  .bio-feature-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 50px 6%;
  }

  .bio-feature-text h1 {
    font-size: 2.3rem;
  }

}

/* REVERSE LAYOUT */

.reverse-layout {
  grid-template-columns: 1fr 1fr;
}

.reverse-layout .bio-feature-image {
  order: 1;
}

.reverse-layout .bio-feature-text {
  order: 2;
}

@media (max-width: 950px) {

  .reverse-layout .bio-feature-image,
  .reverse-layout .bio-feature-text {
    order: unset;
  }

}


.centered-disclaimer {
  text-align: center;
  max-width: 900px;
  margin: 35px auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}



.venmo-logo {
  max-width: 115px;
}


/* STRONGER SCROLL REVEAL ANIMATION */

.scroll-reveal {
  opacity: 0;
  transform: translateY(90px) scale(0.92);
  transition:
    opacity 1.1s ease,
    transform 1.1s ease;
}

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


/* PROPERTY TAX PAGE */

.property-tax-hero {
  padding: 60px 8% 30px;
  background:
    linear-gradient(rgba(247,243,235,0.92), rgba(247,243,235,0.92)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.property-tax-card {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.property-tax-card h1 {
  color: var(--rust);
  font-size: 3rem;
  margin-bottom: 20px;
}

.property-tax-intro {
  font-size: 1.35rem;
  line-height: 1.7;
  max-width: 950px;
  margin: 0 auto;
}

.tax-section {
  padding: 22px 8%;
  background: var(--light);
}

.tax-section-card {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  padding: 34px 38px;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  border-left: 8px solid var(--green);
}

.tax-section-card h2 {
  color: var(--rust);
  font-size: 2rem;
  margin-top: 0;
}

.tax-section-card p {
  font-size: 1.18rem;
  line-height: 1.7;
}

.tax-list {
  margin-top: 18px;
  padding-left: 24px;
}

.tax-list li {
  margin-bottom: 14px;
  font-size: 1.12rem;
  line-height: 1.6;
}

.tax-example {
  margin-top: 28px;
  background: var(--cream);
  padding: 22px;
  border-radius: 16px;
  font-size: 1.15rem;
  border-left: 6px solid var(--rust);
}

@media (max-width: 850px) {

  .property-tax-card h1 {
    font-size: 2.2rem;
  }

  .property-tax-intro {
    font-size: 1.1rem;
  }

  .tax-section-card {
    padding: 28px 22px;
  }

  .tax-section-card h2 {
    font-size: 1.6rem;
  }

}



.endorsement-hero-card h1,
.endorsement-hero-card p,
.endorsement-hero-card .section-label {
  text-align: center;
}



/* ENDORSEMENT QUOTES */

.endorsement-quote {
  color: var(--rust);
  text-align: center;
  font-style: italic;
  margin: 0;
}

/* STEVE HARSHMAN */

.harshman-quote {
  font-family: Georgia, serif;
  font-size: 0.1rem;
  line-height: 0.6;
}

/* BILL LANDEN */

.landen-quote {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 0.5rem;
  line-height: 0.4;
  font-style: normal;
}

/* LISA BURRIDGE */

.burridge-quote {
  font-family: Garamond, serif;
  font-size: 0.7rem;
  line-height: 0.5;
}

/* MOBILE */

@media (max-width: 950px) {

  .harshman-quote {
    font-size: 1.1rem;
  }

  .landen-quote {
    font-size: 1.7rem;
  }

  .burridge-quote {
    font-size: 1.4rem;
  }

}

/* ENDORSEMENT QUOTES */

.bio-feature-text h1.endorsement-quote {
  color: var(--rust);
  text-align: center;
  margin: 0;
}

/* STEVE HARSHMAN */

.bio-feature-text h1.harshman-quote {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.8;
  font-style: italic;
}

/* BILL LANDEN */

.bio-feature-text h1.landen-quote {
  font-family: "Trebuchet MS", sans-serif;
  font-size: 2.5rem;
  line-height: 1.45;
  font-style: normal;
}

/* LISA BURRIDGE */

.bio-feature-text h1.burridge-quote {
  font-family: Garamond, serif;
  font-size: 1.7rem;
  line-height: 1.6;
  font-style: italic;
}


/* SURVEY BANNER */

.survey-banner {
  width: 100%;
  padding: 18px 3%;
  background:
    linear-gradient(rgba(247,243,235,0.94), rgba(247,243,235,0.94)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.survey-banner-content {
  width: 100%;
  max-width: none;
  text-align: center;
  background: white;
  padding: 20px 3%;
}

.survey-eyebrow {
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.survey-banner-content h1 {
  color: var(--rust);
  font-size: 2.4rem;
  margin: 0 0 10px;
}

.survey-banner-content p {
  width: 100%;
  max-width: none;
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0 auto 10px;
}

.survey-button {
  display: inline-block;
  margin-top: 8px;
  background: var(--rust);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.survey-button:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

@media (max-width: 950px) {
  .survey-banner-content h1 {
    font-size: 2rem;
  }

  .survey-banner-content p {
    font-size: 1.08rem;
  }
}

/* SURVEY BANNER */

.survey-banner {
  width: 100%;
  padding: 18px 3%;
  background:
    linear-gradient(rgba(247,243,235,0.94), rgba(247,243,235,0.94)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.survey-banner-content {
  width: 100%;
  max-width: none;
  text-align: center;
  background: white;
  padding: 20px 3%;
}

.survey-eyebrow {
  color: var(--green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.survey-banner-content h1 {
  color: var(--rust);
  font-size: 2.4rem;
  margin: 0 0 10px;
}

.survey-banner-content p {
  width: 100%;
  max-width: none;
  font-size: 1.35rem;
  line-height: 1.45;
  margin: 0 auto 10px;
}

.survey-button {
  display: inline-block;
  margin-top: 8px;
  background: var(--rust);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: bold;
  transition: 0.3s ease;
}

.survey-button:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

@media (max-width: 950px) {
  .survey-banner-content h1 {
    font-size: 2rem;
  }

  .survey-banner-content p {
    font-size: 1.08rem;
  }
}

/* ENDORSEMENT QUOTES */

.bio-feature-text h1.endorsement-quote {
  font-family: Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.75;
  color: var(--rust);
  text-align: center;
  margin: 0;
}

/* MOBILE */

@media (max-width: 950px) {

  .bio-feature-text h1.endorsement-quote {
    font-size: 1.15rem;
    line-height: 1.6;
  }

}

/* LARGER SHORT ENDORSEMENT */

.bio-feature-text h1.larger-endorsement {
  font-size: 2.3rem;
  line-height: 1.5;
}


/* PRIORITY DETAILS SECTION */

.priority-item {
  display: block;
  text-decoration: none;
  color: var(--dark);
  transition: 0.25s ease;
}

.priority-item:hover {
  transform: translateY(-3px);
  color: var(--rust);
}

.priority-details-section {
  padding: 70px 8%;
  background: white;
}

.priority-detail {
  max-width: 1150px;
  margin: 0 auto 28px;
  padding: 30px 36px;
  background: var(--cream);
  border-radius: 20px;
  border-left: 8px solid var(--rust);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  scroll-margin-top: 120px;
}

.priority-detail h2 {
  color: var(--green);
  margin-top: 0;
  font-size: 2rem;
}

.priority-detail p {
  font-size: 1.18rem;
  line-height: 1.75;
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 850px) {

  .priority-detail {
    padding: 24px 20px;
  }

  .priority-detail h2 {
    font-size: 1.5rem;
  }

  .priority-detail p {
    font-size: 1.05rem;
  }

}


/* CAMPAIGN VIDEO */

.campaign-video-section {
  padding: 55px 8% 35px;
  background:
    linear-gradient(rgba(247,243,235,0.92), rgba(247,243,235,0.92)),
    linear-gradient(135deg, var(--green), #ffffff, var(--rust));
}

.campaign-video-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.campaign-video-container h1 {
  color: var(--rust);
  font-size: 3rem;
  margin-top: 0;
  margin-bottom: 28px;
}

.campaign-video {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
  border: 5px solid white;
}

@media (max-width: 850px) {

  .campaign-video-container h1 {
    font-size: 2rem;
  }

}


/* VIDEO CAPTION */

.video-caption {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
  text-align: center;
}

.campaign-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.18);
  border: 5px solid white;
}


