/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  padding-bottom: 3rem;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 2px solid #e6e6e6;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.logo img {
  max-height: 56px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.main-nav::-webkit-scrollbar {
  display: none;
}

.main-nav a {
  padding: 0.5rem 1rem;
  color: #333;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.2s, border-bottom-color 0.2s;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: #B35A3C;
}

.main-nav a.active {
  color: #B35A3C;
  border-bottom-color: #B35A3C;
  font-weight: 600;
}

.header-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  max-width: 100%;
  white-space: normal;
  line-height: 1.2;
}

.btn-primary {
  background-color: #2c5f2d;
  color: #fff;
}

.btn-primary:hover {
  background-color: #234c24;
}

.btn-secondary {
  background-color: #fff;
  color: #2c5f2d;
  border: 2px solid #2c5f2d;
}

.btn-secondary:hover {
  background-color: #2c5f2d;
  color: #fff;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-accent {
  background-color: #B35A3C;
  border: 2px solid #B35A3C;
  color: #fff;
}

.btn-accent:hover {
  background-color: #8E432A;
  border-color: #8E432A;
}

.btn-outline-accent {
  background-color: #fff;
  border: 2px solid #B35A3C;
  color: #B35A3C;
}

.btn-outline-accent:hover {
  background-color: #B35A3C;
  border-color: #B35A3C;
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.hero-with-image {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2rem);
  color: #2c5f2d;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subhead {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-image {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 280px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-image:empty {
  display: none;
}

.hero-image img {
  width: 100%;
  max-width: 600px;
  border-radius: inherit;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-image--no-shadow img {
  box-shadow: none;
}

.hero-image--no-shadow {
  box-shadow: none;
}

/* Trust Strip */
.trust-strip {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  text-align: center;
}

.trust-point {
  min-width: 160px;
}

.trust-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777;
  margin-bottom: 0.25rem;
}

.trust-point strong {
  font-size: 1.1rem;
  color: #2c5f2d;
}

/* Benefit Bar */
.benefit-bar {
  padding: clamp(2rem, 5vw, 3rem) 0;
  background-color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.benefit-tile {
  background-color: #f9f9f9;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  border-left: 3px solid #2c5f2d;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
}

.benefit-icon {
  width: 36px;
  height: 36px;
  margin: 0;
  flex-shrink: 0;
}

.benefit-tile h3 {
  font-size: 1.05rem;
  color: #2c5f2d;
  margin-bottom: 0.25rem;
}

.benefit-tile p {
  color: #555;
  font-size: 0.9rem;
  margin: 0;
}

/* Who We Help */
.who-we-help {
  padding: clamp(2.25rem, 5vw, 3rem) 0;
  background-color: #f5f5f5;
}

.who-we-help h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c5f2d;
  margin-bottom: 2rem;
}

.help-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.help-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.help-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.help-card > h3,
.help-card > p {
  padding: 0 2rem;
}

.help-card > h3 {
  padding-top: 2rem;
}

.help-card > a {
  display: block;
  width: fit-content;
  margin: 0 auto 2rem;
}

.help-card h3 {
  font-size: 1.4rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.help-card p {
  margin-bottom: 1.5rem;
  color: #555;
}

/* Proof Strip */
.proof-strip {
  padding: 2rem 0;
  background-color: #2c5f2d;
  color: #fff;
}

.proof-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
}

.proof-item strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.proof-item p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* Services */
.services {
  padding: clamp(2.25rem, 5vw, 3rem) 0;
  background-color: #fff;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  color: #2c5f2d;
  margin-bottom: 2rem;
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  border-top: 4px solid #2c5f2d;
  overflow: hidden;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card > h3,
.service-card > p {
  padding: 0 2rem;
}

.service-card > h3 {
  padding-top: 2rem;
}

.service-card h3 {
  font-size: 1.4rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: #555;
}

.service-card .btn {
  margin: 0 auto 2rem;
  display: inline-block;
}

/* Generic Content Sections */
.content-section {
  padding: clamp(2.25rem, 5vw, 3rem) 0;
  background-color: #fff;
}

.content-section.alt-bg {
  background-color: #f5f5f5;
}

.content-section h2 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: #2c5f2d;
  margin-bottom: 2rem;
  text-align: center;
}

.intro-text {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.content-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  border-left: 4px solid #2c5f2d;
  overflow: hidden;
}

.content-item-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content-item > h3,
.content-item > p,
.content-item > ul {
  padding: 0 2rem;
}

.content-item > h3 {
  padding-top: 2rem;
}

.content-item > a.btn {
  margin: 0 2rem 2rem;
}

.content-item h3 {
  font-size: 1.3rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.content-item p {
  color: #555;
  margin-bottom: 1rem;
}

.content-item ul {
  margin: 1rem 0 1.5rem;
}

.content-item ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #555;
}

.content-item ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5f2d;
  font-weight: bold;
}

/* Image/Text Split */
.image-text-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.split-text {
  text-align: left;
}

/* Comparison Cards */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.comparison-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.comparison-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.comparison-card > h3,
.comparison-card > p,
.comparison-card > ul {
  padding: 0 2rem;
}

.comparison-card > h3 {
  padding-top: 2rem;
}

.comparison-card > ul {
  padding-bottom: 2rem;
}

.comparison-card h3 {
  font-size: 1.4rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.comparison-card p {
  color: #555;
  margin-bottom: 1.5rem;
}

.comparison-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #555;
}

.comparison-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2c5f2d;
  font-weight: bold;
}

/* Steps / Process */
.steps-list,
.next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.step-item,
.next-step-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #2c5f2d;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h3 {
  font-size: 1.2rem;
  color: #2c5f2d;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #555;
}

.next-step-item {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

/* Feature List */
.feature-list {
  max-width: 700px;
  margin: 2rem auto;
}

.feature-list li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  color: #555;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5f2d;
  font-weight: bold;
}

/* Services Grid (Fulfillment page) */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-box {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
  border-top: 4px solid #2c5f2d;
  text-align: center;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
}

.service-box h3 {
  font-size: 1.3rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.service-box p {
  color: #555;
}

/* Values, Capabilities, etc. */
.values-list,
.capabilities-list,
.service-list,
.faq-list,
.contact-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.value-item,
.capability-item,
.service-item,
.faq-item,
.contact-detail-card {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
}

.value-item h3,
.capability-item h3,
.service-item h3,
.faq-item h3,
.contact-detail-card h3 {
  font-size: 1.3rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.contact-detail-card a {
  color: #B35A3C;
  font-weight: 600;
}

.contact-detail-card a:hover {
  text-decoration: underline;
}

/* Featured content (fundraising page) */
.featured-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.featured-image {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  margin: 0 auto 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-benefits {
  text-align: left;
  margin: 2rem 0;
}

.featured-benefits ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: #555;
}

.featured-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5f2d;
  font-weight: bold;
}

/* Contact Wedge & Forms */
.contact-wedge {
  padding: clamp(2.25rem, 5vw, 3rem) 0;
  background-color: #f5f5f5;
  text-align: center;
}

.contact-wedge h2 {
  font-size: 2rem;
  color: #2c5f2d;
  margin-bottom: 1rem;
}

.contact-wedge > p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  text-align: left;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-wedge .contact-form {
  margin-top: 1.5rem;
}

.contact-form.full-width {
  max-width: 800px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #2c5f2d;
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.contact-alternative {
  margin-top: 1.5rem;
}

.contact-alternative p {
  margin-bottom: 1rem;
  color: #555;
}

.contact-alternative .btn {
  margin: 0 0.5rem;
}

/* Footer */
.site-footer {
  background-color: #2c5f2d;
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.footer-section a {
  color: #fff;
  text-decoration: underline;
}

.footer-section a:hover {
  opacity: 0.85;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
}

/* Catalog Cards (Fundraising page) */
.catalog-actions {
  padding: 0 2rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catalog-actions .btn {
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
}

.catalog-note {
  margin-top: 1.25rem;
  text-align: center;
  color: #666;
  font-size: 0.95rem;
}

/* Bullet glyph consistency */
.content-item ul li::before,
.comparison-card ul li::before,
.feature-list li::before,
.featured-benefits ul li::before {
  content: "✓";
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .main-nav a {
    padding: 0.45rem 0.75rem;
    font-size: 0.9rem;
  }

  .header-ctas .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
  }

  .hero-image {
    min-height: 220px;
  }

  .content-item > h3,
  .content-item > p,
  .content-item > ul {
    padding: 0 1.25rem;
  }

  .content-item > h3 {
    padding-top: 1.5rem;
  }

  .content-item > a.btn {
    margin: 0 1.25rem 1.5rem;
  }

  .contact-form {
    padding: 1.25rem;
  }
}

@media (min-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .main-nav {
    order: 2;
    flex: 1;
    justify-content: center;
  }

  .header-ctas {
    order: 3;
  }

  .hero-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-items {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-text-split {
    grid-template-columns: 1fr 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-list,
  .capabilities-list,
  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-text {
    text-align: left;
    margin: 0;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-image {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  .hero,
  .hero-with-image {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .benefit-bar,
  .who-we-help,
  .services,
  .content-section,
  .contact-wedge {
    padding: 4rem 0;
  }
}


