@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+3:wght@400;500;600;700&display=swap");

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --bg: #faf6f0;
  --bg-soft: #f3ebe1;
  --surface: #fffcf8;
  --text: #3d3429;
  --muted: #73665a;
  --accent: #8b7355;
  --accent-hover: #6f5c44;
  --btn: #c9a227;
  --btn-hover: #a67c00;
  --btn-light: #e8c878;
  --btn-shadow: rgba(166, 124, 0, 0.24);
  --gold: #c9a227;
  --gold-light: #e8c878;
  --warm: #d4b896;
  --border: #e8ddd0;
  --shadow: rgba(61, 52, 41, 0.08);
  --shadow-lg: rgba(61, 52, 41, 0.12);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
}

body {
  font-family: var(--serif);
  background:
    radial-gradient(circle at top left, rgba(201, 162, 39, 0.1), transparent 30%),
    radial-gradient(circle at top right, rgba(125, 155, 118, 0.1), transparent 28%),
    radial-gradient(circle at bottom center, rgba(212, 184, 150, 0.12), transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, #f5efe6 100%);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

header {
  background: rgba(255, 252, 248, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px var(--shadow);
}

header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--btn-light), var(--warm));
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.1rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.logo:hover {
  color: var(--btn-hover);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px var(--shadow);
}

.hamburger:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
  background: rgba(255, 252, 248, 0.98);
  border-top: 1px solid var(--border);
}

.nav-menu.open {
  display: block;
}

.nav-menu ul {
  list-style: none;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.nav-menu a {
  display: block;
  padding: 1rem 1.75rem;
  min-height: 48px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-menu li:last-child a {
  border-bottom: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--bg-soft);
  color: var(--btn-hover);
  padding-left: 2rem;
}

main {
  flex: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.75rem 4.5rem;
  width: 100%;
}

.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1rem 0;
}

.page-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 0 auto;
}

.ministry-logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 1.75rem;
  display: block;
  filter: drop-shadow(0 10px 24px var(--shadow));
}

.hero {
  text-align: center;
}

.hero-cover {
  position: relative;
  width: 100%;
  margin: 0;
  line-height: 0;
  overflow: hidden;
}

.hero-cover-image {
  width: 100%;
  height: clamp(360px, 62vh, 720px);
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: sepia(0.06) saturate(1.05) brightness(1.02);
}

.hero-cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: clamp(1.5rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(52, 42, 32, 0.48) 0%, transparent 28%),
    linear-gradient(0deg, rgba(52, 42, 32, 0.78) 0%, transparent 42%),
    linear-gradient(
      90deg,
      rgba(52, 42, 32, 0.68) 0%,
      rgba(52, 42, 32, 0.38) 42%,
      rgba(52, 42, 32, 0.04) 72%
    );
  line-height: 1.2;
}

.hero-cover-top {
  max-width: 720px;
}

.hero-cover-description {
  max-width: 620px;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.75;
  margin-top: auto;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-cover-eyebrow {
  font-family: var(--sans);
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero-cover-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-cover-tagline {
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 600;
  color: #f5e6c8;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
  padding-top: 0.5rem;
}

.hero-intro p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.12rem;
  line-height: 1.8;
  margin: 0;
}

.hero-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 239, 0.92));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 20px 50px var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 2px solid rgba(184, 146, 46, 0.35);
  border-radius: 20px;
  z-index: 0;
}

.hero-image {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
  position: relative;
  z-index: 1;
  border: 4px solid #fff;
  box-shadow: 0 18px 40px var(--shadow-lg);
}

.hero-content {
  text-align: left;
  padding: 0.5rem 0;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.hero-content p {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.12rem;
  max-width: none;
  margin: 0 0 1.75rem;
  line-height: 1.8;
}

.hero-divider {
  width: 72px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  border-radius: 999px;
  margin: 0 auto 1.75rem;
}

.section-intro {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 252, 248, 0.75);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 8px 24px var(--shadow);
}

.section-intro h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: var(--text);
}

.section-intro p {
  color: var(--muted);
  font-family: var(--sans);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--btn), var(--btn-light));
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 2rem;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  box-shadow: 0 8px 20px var(--btn-shadow);
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(166, 124, 0, 0.32);
  background: linear-gradient(135deg, var(--btn-hover), var(--btn));
}

.btn-outline {
  background: transparent;
  color: var(--btn-hover);
  border: 2px solid var(--btn);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--btn);
  color: #fff;
}

.content-section {
  margin-top: 2.5rem;
  padding: 2.25rem;
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 10px 28px var(--shadow);
}

.content-section h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--accent);
}

.content-section p {
  color: var(--muted);
  font-family: var(--sans);
  margin-bottom: 1rem;
}

.about-copy {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.about-copy p {
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-cta {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.whats-next-section {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.whats-next-section h2 {
  color: var(--text);
}

.whats-next-section p {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.whats-next-image {
  width: 100%;
  max-width: 820px;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px var(--shadow);
  display: block;
  margin: 1.5rem auto 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a .whats-next-image:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px var(--shadow-lg);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: 22px;
  padding: 2.1rem 1.9rem;
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-light), var(--btn-light), var(--warm));
  opacity: 0.9;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.3);
}

.card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
}

.card p {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.card .btn {
  font-size: 0.875rem;
  padding: 0.65rem 1.35rem;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 10px 28px var(--shadow);
  align-items: center;
}

.product-cover {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #2d5a8e 0%, #1a1a2e 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.1rem;
  text-align: center;
  padding: 1.5rem;
  line-height: 1.4;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.product-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 12px 28px var(--shadow-lg);
}

.product-info h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-info .price {
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.product-info p {
  color: var(--muted);
  font-family: var(--sans);
  margin-bottom: 1.5rem;
}

.donate-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.donate-amount {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.donate-amount:hover,
.donate-amount.selected {
  border-color: var(--btn);
  background: #faf3e0;
  transform: translateY(-2px);
}

.donate-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 10px 28px var(--shadow);
  max-width: 520px;
  margin: 0 auto;
}

.donate-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.donate-form input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--sans);
  margin-bottom: 1rem;
  background: var(--bg-soft);
  transition: border-color 0.2s, background 0.2s;
}

.donate-form input:focus {
  outline: 2px solid rgba(201, 162, 39, 0.22);
  border-color: var(--btn);
  background: #fff;
}

.donate-form .btn {
  width: 100%;
  text-align: center;
}

.contact-section {
  text-align: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-block;
  font-family: var(--sans);
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--btn-hover);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 14px;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.28);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  word-break: break-word;
  max-width: 100%;
}

.contact-email:hover {
  background: rgba(201, 162, 39, 0.2);
  color: var(--btn-hover);
  transform: translateY(-1px);
}

.contact-details {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--muted);
}

.contact-details p {
  margin-bottom: 0.75rem;
}

.contact-details p:last-child {
  margin-bottom: 0;
}

.contact-details strong {
  color: var(--text);
  font-weight: 600;
}

.contact-details a {
  color: var(--btn-hover);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  text-decoration: underline;
}

.thank-you-section {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: center;
}

.thank-you-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.thank-you-section h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
}

.thank-you-lead {
  font-size: 1.1rem;
  line-height: 1.85;
}

.thank-you-section a:not(.btn) {
  color: var(--btn-hover);
  font-weight: 600;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.ebook-email-form-wrap {
  max-width: 480px;
  margin: 2rem auto 0;
  text-align: left;
}

.ebook-email-form label {
  display: block;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.ebook-email-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--sans);
  margin-bottom: 1.25rem;
  background: var(--bg-soft);
}

.ebook-email-form input[type="email"]:focus {
  outline: 2px solid rgba(201, 162, 39, 0.22);
  border-color: var(--btn);
  background: #fff;
}

.ebook-email-form .btn {
  width: 100%;
  text-align: center;
}

.email-success {
  margin-top: 2rem;
}

.success-message {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  line-height: 1.8;
}

.thank-you-help {
  margin-top: 2rem;
  margin-bottom: 0;
  font-family: var(--sans);
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  text-align: center;
  padding: 2.25rem 1.75rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 252, 248, 0.92);
}

@media (max-width: 900px) {
  .header-inner {
    padding: 1rem 1.25rem;
  }

  .logo {
    font-size: 1.25rem;
    max-width: calc(100% - 56px);
    line-height: 1.2;
  }

  main {
    padding: 2rem 1.25rem 3.5rem;
  }

  .hero-cover-image {
    height: clamp(340px, 58vh, 560px);
  }

  .hero-cover-overlay {
    align-items: center;
    text-align: center;
    justify-content: space-between;
    padding: 1.25rem 1rem 1.5rem;
    background:
      linear-gradient(180deg, rgba(52, 42, 32, 0.5) 0%, transparent 30%),
      linear-gradient(0deg, rgba(52, 42, 32, 0.85) 0%, rgba(52, 42, 32, 0.45) 45%, transparent 70%);
  }

  .hero-cover-top,
  .hero-cover-description {
    max-width: 100%;
  }

  .hero-cover-title {
    font-size: clamp(1.85rem, 7vw, 3rem);
  }

  .hero-cover-tagline {
    font-size: clamp(1.05rem, 4vw, 1.5rem);
  }

  .hero-cover-description {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-intro {
    padding: 1.75rem 1.25rem;
    margin-bottom: 2rem;
  }

  .product {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .product-cover {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-banner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.25rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-divider {
    margin: 0 auto 1.75rem;
  }

  .hero-image {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.9rem 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  main {
    padding: 1.5rem 1rem 3rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .hero-cover-image {
    height: clamp(380px, 65vh, 520px);
  }

  .hero-cover-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.5rem;
  }

  .hero-cover-title {
    font-size: clamp(1.65rem, 8vw, 2.4rem);
    margin-bottom: 0.35rem;
  }

  .hero-cover-tagline {
    font-size: clamp(1rem, 4.5vw, 1.35rem);
  }

  .hero-cover-description {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .page-header {
    padding: 1rem 0.25rem 0;
    margin-bottom: 2rem;
  }

  .page-header h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .page-header p {
    font-size: 1rem;
    padding: 0 0.25rem;
  }

  .ministry-logo {
    max-width: 280px;
  }

  .content-section {
    padding: 1.5rem 1.25rem;
    margin-top: 2rem;
    border-radius: 20px;
  }

  .card {
    padding: 1.75rem 1.5rem;
  }

  .card .btn,
  .content-section .btn,
  .contact-section .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .about-actions {
    flex-direction: column;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

  .section-intro h2 {
    font-size: 1.65rem;
  }

  .section-intro p {
    font-size: 0.98rem;
  }

  .donate-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .donate-amount {
    padding: 0.85rem 0.5rem;
    font-size: 0.95rem;
    min-height: 48px;
  }

  .donate-form {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .donate-form input {
    font-size: 16px;
  }

  .contact-email {
    display: block;
    text-align: center;
    padding: 1rem;
  }

  .contact-details {
    font-size: 1rem;
  }

  .product-info h2 {
    font-size: 1.45rem;
  }

  footer {
    padding: 1.75rem 1rem;
    padding-bottom: max(1.75rem, env(safe-area-inset-bottom));
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .hero-cover-image {
    height: clamp(400px, 70vh, 540px);
  }

  .hero-cover-overlay {
    padding: 1rem 0.85rem 1.25rem;
  }

  .donate-options {
    grid-template-columns: 1fr;
  }

  .logo {
    font-size: 1.1rem;
  }
}
