:root {
  --logo-video-width: 500px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f0;
  color: #1f2933;
}

.hero {
  background: linear-gradient(135deg, #111827, #263238);
  color: white;
  text-align: center;
  padding: 36px 20px 52px;
}

.page-hero {
  background: linear-gradient(135deg, #111827, #374151);
  color: white;
  text-align: center;
  padding: 64px 20px 58px;
}

.hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.logo-video {
  display: block;
  width: min(var(--logo-video-width), 70vw);
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.eyebrow {
  font-size: 1.25rem;
  font-weight: bold;
  color: #facc15;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin: 0 auto 20px;
  max-width: 900px;
}

.hero-text {
  font-size: 1.35rem;
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
}

.primary {
  background: #facc15;
  color: #111827;
}

.secondary {
  background: white;
  color: #111827;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px;
}

.section {
  background: white;
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

h2 {
  font-size: 2rem;
  margin-top: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.cards div {
  background: #f4f4f0;
  padding: 20px;
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: bold;
}

.service-area {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.service-copy .dark {
  color: #b45309;
}

.small-note {
  font-weight: bold;
  color: #374151;
}

.map-wrap {
  min-width: 0;
}

#service-map {
  width: 100%;
  height: 390px;
  min-height: 390px;
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

.map-caption {
  margin: 10px 0 0;
  color: #374151;
  font-size: .95rem;
  font-weight: bold;
  text-align: center;
}

.leaflet-container {
  font-family: Arial, sans-serif;
  position: relative;
  outline-offset: 1px;
  touch-action: pan-x pan-y;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  user-select: none;
  -webkit-user-drag: none;
}

.leaflet-tile {
  border: 0;
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-control-container .leaflet-top,
.leaflet-control-container .leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  position: relative;
  z-index: 1000;
  pointer-events: auto;
  float: left;
  clear: both;
  margin: 10px;
}

.leaflet-control-zoom a {
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  background: #fff;
  color: #111827;
  border-bottom: 1px solid #ccc;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
}

.leaflet-control-attribution {
  background: rgba(255, 255, 255, .85);
  font-size: 11px;
  padding: 2px 6px;
}

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .25);
  padding: 1px;
}

.leaflet-popup-content {
  margin: 12px 16px;
  line-height: 1.4;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  background: white;
  transform: rotate(45deg);
  box-shadow: 0 3px 14px rgba(0, 0, 0, .25);
}

.watch-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.watch-copy p {
  font-size: 1.1rem;
  line-height: 1.55;
}

.video-showcase {
  display: grid;
  gap: 20px;
  justify-items: center;
  min-width: 0;
}

.video-card {
  width: 100%;
  text-align: center;
}

.featured-video {
  display: block;
  width: min(100%, 420px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 18px;
  background: #111827;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.video-caption {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: .95rem;
  font-weight: bold;
}

.tiktok-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.tiktok-wrap .tiktok-embed {
  margin: 0 !important;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .14);
}

.why ul {
  margin-bottom: 0;
}

.why li {
  margin: 8px 0;
}

.free-stuff-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: #263238;
  color: white;
}

.free-stuff-preview .dark {
  color: #facc15;
}

.free-stuff-preview p {
  font-size: 1.1rem;
  line-height: 1.55;
}

.blessing-intro p,
.request-section p {
  font-size: 1.08rem;
  line-height: 1.6;
}

.request-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 7px;
  font-weight: bold;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: #111827;
}

.request-form input:focus,
.request-form textarea:focus,
.request-form select:focus {
  outline: 3px solid rgba(250, 204, 21, .35);
  border-color: #b45309;
}

.request-form textarea {
  resize: vertical;
}

.checkbox-line {
  grid-template-columns: auto 1fr;
  align-items: center;
  font-weight: normal;
}

.checkbox-line input {
  width: auto;
}

.final-cta {
  text-align: center;
  padding: 40px 20px;
}

footer {
  text-align: center;
  padding: 24px;
  background: #111827;
  color: white;
}

@media (max-width: 750px) {
  :root {
    --logo-video-width: 480px;
  }

  .hero {
    padding-top: 28px;
  }

  .service-area {
    grid-template-columns: 1fr;
  }

  .free-stuff-preview,
  .watch-section,
  .request-section {
    grid-template-columns: 1fr;
  }

  .free-stuff-preview .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 24px;
  }

  #service-map {
    height: 330px;
    min-height: 330px;
  }
}

