:root {
  --color-primary: #4b1d95;
  --color-primary-soft: #6b38d1;
  --color-accent: #8b5cf6;
  --color-surface: #ffffff;
  --color-surface-soft: #f5f3ff;
  --color-border: rgba(107, 56, 209, 0.14);
  --color-text: #1f2937;
  --color-text-muted: #6b7280;
  --color-heading: #ffffff;
  --shadow-lg: 0 24px 60px rgba(47, 16, 96, 0.18);
  --shadow-md: 0 18px 40px rgba(55, 31, 113, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--color-text);
  background: #fcfbff;
  line-height: 1.65;
}

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

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

p,
h1,
h2,
h3,
h4,
ul {
  margin-top: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(900px, 100%);
}

.site-header {
  width: 100%;
  z-index: 10;
}

.site-header--overlay {
  position: absolute;
  inset: 0 0 auto 0;
}

.site-header--solid {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(75, 29, 149, 0.92);
  box-shadow: 0 10px 30px rgba(38, 12, 78, 0.18);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

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

.site-nav a {
  position: relative;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 115px;
  background:
    linear-gradient(135deg, rgba(75, 29, 149, 0.96), rgba(107, 56, 209, 0.82)),
    url("../images/hero-walking.jpg") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.1), transparent 28%);
}

.hero__content {
  position: relative;
  max-width: 780px;
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
}

.hero h1,
.page-hero h1 {
  margin-bottom: 24px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.hero__lead {
  max-width: 720px;
  margin-bottom: 36px;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button--primary {
  background: #ffffff;
  color: var(--color-primary);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  padding: 88px 0;
}

.section--intro {
  background: #ffffff;
}

.intro-copy {
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.95;
  color: #3a4252;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2rem, 3vw, 2.9rem);
  letter-spacing: -0.04em;
  color: #241b4a;
}

.section-heading p {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

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

.image-card,
.relief-card,
.feature,
.info-card,
.legal-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
}

.image-card__body {
  padding: 22px 22px 24px;
}

.image-card h3,
.feature h3,
.info-card h3,
.legal-card h2 {
  margin-bottom: 12px;
  font-family: "Poppins", "Inter", sans-serif;
  color: #221647;
  letter-spacing: -0.03em;
}

.section--soft {
  background: linear-gradient(180deg, #f8f5ff, #fcfbff);
}

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

.relief-card {
  padding: 26px;
}

.relief-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(75, 29, 149, 0.12), rgba(139, 92, 246, 0.24));
  color: var(--color-primary);
  font-weight: 800;
}

.relief-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.relief-card p {
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.feature-stack {
  display: grid;
  gap: 28px;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  overflow: hidden;
}

.feature:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
}

.feature img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.feature__content {
  padding: 34px;
}

.feature__tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--color-primary-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature__content p,
.info-card p,
.legal-card p,
.legal-card li {
  color: var(--color-text-muted);
}

.section--callout {
  background: linear-gradient(135deg, rgba(75, 29, 149, 0.08), rgba(139, 92, 246, 0.16));
}

.callout {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.callout h2 {
  margin-bottom: 16px;
  color: #241b4a;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: -0.04em;
}

.callout p {
  max-width: 840px;
  margin-bottom: 0;
  color: #4b5563;
  font-size: 1.05rem;
}

.page-hero {
  padding: 88px 0 70px;
  background:
    linear-gradient(135deg, rgba(75, 29, 149, 0.97), rgba(107, 56, 209, 0.9));
  color: #ffffff;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.info-stack {
  display: grid;
  gap: 22px;
}

.info-card {
  padding: 28px;
}

.info-card ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--color-text-muted);
}

.info-visual {
  overflow: hidden;
  min-height: 100%;
}

.info-visual img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.legal-layout {
  display: grid;
  gap: 22px;
}

.legal-card {
  padding: 30px;
}

.legal-card h2 {
  font-size: 1.45rem;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  padding: 36px 0 50px;
  background: #1f163d;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-brand {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.footer-note,
.footer-copy {
  color: rgba(255, 255, 255, 0.68);
  max-width: 800px;
}

@media (max-width: 1080px) {
  .relief-grid,
  .image-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature,
  .feature:nth-child(even),
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-visual img {
    min-height: 340px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0;
  }

  .site-nav {
    gap: 14px 18px;
    justify-content: flex-start;
  }

  .brand {
    font-size: 1.7rem;
  }

  .hero {
    padding: 190px 0 86px;
  }

  .section {
    padding: 68px 0;
  }

  .image-grid,
  .relief-grid {
    grid-template-columns: 1fr;
  }

  .feature__content,
  .callout,
  .legal-card,
  .info-card,
  .relief-card {
    padding: 24px;
  }

  .page-hero {
    padding: 62px 0 54px;
  }
}
