:root {
  --red-950: #3b0712;
  --red-800: #8f1530;
  --red-650: #c72a48;
  --red-500: #e9415f;
  --red-100: #ffe8ee;
  --ink: #25151a;
  --muted: #75545e;
  --line: #f3d6dd;
  --white: #ffffff;
  --rose: #b41636;
  --gold: #f3a53f;
  --shadow: 0 20px 60px rgba(59, 7, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background: #fff7f9;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(243, 214, 221, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--red-950);
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-800), var(--red-500));
  font-size: 0.9rem;
}

.nav-link {
  min-width: 72px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--red-800);
  font-weight: 700;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--red-950);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(59, 7, 18, 0.92) 0%, rgba(59, 7, 18, 0.72) 42%, rgba(59, 7, 18, 0.08) 76%),
    linear-gradient(0deg, rgba(59, 7, 18, 0.3), rgba(59, 7, 18, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 72px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red-500);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffd5de;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6vw, 5.35rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  color: var(--red-950);
}

h3 {
  font-size: 1.2rem;
  color: var(--red-950);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #fff0f3;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red-500);
  box-shadow: 0 14px 30px rgba(233, 65, 95, 0.34);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.trust-strip {
  max-width: 760px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.trust-strip span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 12px;
  text-align: center;
  font-weight: 750;
  color: #fff5f7;
}

.trust-strip span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.section-pad {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
}

.intro .section-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro-grid {
  max-width: 1160px;
  margin: 0 auto;
  justify-content: center;
}

.intro-grid > div:first-child {
  text-align: left;
}

.intro-grid,
.community {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 34px;
  align-items: center;
}

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

.intro-grid p,
.community-copy p,
.cta p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.03rem;
}

.stat-panel {
  min-height: 220px;
  padding: 30px;
  border-radius: 8px;
  background: var(--red-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.stat-panel strong {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.05;
}

.stat-panel span {
  color: #ffdbe3;
}

.features {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background: var(--white);
}

.feature-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.story-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffafb;
}

.feature-card p,
.story-card p {
  color: var(--muted);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: var(--red-800);
  background: var(--red-100);
  font-weight: 900;
}

.community {
  width: min(1160px, calc(100% - 32px));
}

.community-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.steps {
  border-top: 1px solid var(--line);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-grid article {
  min-height: 250px;
  padding: 26px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.step-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--rose);
  font-weight: 850;
}

.step-grid p {
  color: var(--muted);
}

.stories {
  border-top: 1px solid var(--line);
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
}

.story-card strong {
  color: var(--red-800);
}

.local {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background: #fff0f3;
}

.city-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.city-links a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #f0c7d1;
  border-radius: 8px;
  color: var(--red-800);
  font-weight: 750;
  background: var(--white);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.cta .button {
  min-width: 156px;
}

.site-footer {
  padding: 58px max(16px, calc((100% - 1160px) / 2)) 26px;
  color: #ffdce4;
  background: var(--red-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: 32px;
}

.footer-brand {
  color: var(--white);
  font-size: 1.1rem;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer p {
  margin: 14px 0 0;
  color: #f2bbc8;
}

.site-footer a:not(.footer-brand) {
  display: block;
  margin: 8px 0;
  color: #ffdce4;
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(59, 7, 18, 0.86) 0%, rgba(59, 7, 18, 0.76) 56%, rgba(59, 7, 18, 0.94) 100%),
      rgba(59, 7, 18, 0.35);
  }

  .hero-image {
    object-position: 62% center;
  }

  .trust-strip,
  .intro-grid,
  .community,
  .cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .step-grid,
  .story-grid,
  .city-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta .button {
    width: max-content;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    width: min(100% - 24px, 1160px);
    min-height: 64px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: calc(100svh - 64px);
    align-items: stretch;
  }

  .hero-content {
    width: min(100% - 24px, 1160px);
    min-height: calc(100svh - 64px);
    display: flex;
    flex-direction: column;
    padding: clamp(62px, 10svh, 92px) 0 28px;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 2.35rem);
  }

  .hero-copy {
    margin-top: 24px;
    line-height: 1.6;
  }

  .hero-actions {
    order: 4;
    margin-top: 18px;
  }

  .trust-strip {
    order: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: auto;
  }

  .trust-strip span {
    min-height: 56px;
    padding: 8px 6px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-actions,
  .button,
  .cta .button {
    width: 100%;
  }

  .feature-grid,
  .step-grid,
  .story-grid,
  .city-links {
    grid-template-columns: 1fr;
  }

  .section-pad {
    width: min(100% - 24px, 1160px);
    padding: 64px 0;
  }

  .features,
  .local,
  .site-footer {
    padding-inline: 12px;
  }

  .feature-card,
  .step-grid article,
  .story-card,
  .stat-panel {
    padding: 22px;
  }
}
