﻿:root {
  --bg: #f3eee6;
  --surface: #ffffff;
  --surface-alt: #ece4d6;
  --ink: #0b1620;
  --muted: #44505a;
  --accent: #022639;
  --accent-dark: #011a27;
  --teal: #1f6f8b;
  --olive: #022639;
  --glow: #c9a77a;
  --radius: 24px;
  --shadow: 0 20px 60px rgba(11, 22, 32, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
}

p {
  margin: 0 0 14px;
}

p:last-child {
  margin-bottom: 0;
}

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

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

.page-bg {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 12% 14%, rgba(201, 167, 122, 0.32), transparent 46%),
    radial-gradient(circle at 82% 16%, rgba(2, 38, 57, 0.22), transparent 56%),
    radial-gradient(circle at 30% 84%, rgba(31, 111, 139, 0.16), transparent 54%);
  z-index: -2;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(243, 238, 230, 0.86);
  border-bottom: 1px solid rgba(11, 22, 32, 0.08);
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.logo img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transform: scale(3);
  transform-origin: left center;
}
.nav {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: var(--muted);
}
.nav a:hover {
  color: var(--olive);
}
.btn,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(2, 38, 57, 0.24);
}
.btn:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
}

.ghost {
  border: 1px solid rgba(31, 36, 33, 0.18);
  color: var(--olive);
  background: transparent;
}

.ghost:hover {
  transform: translateY(-2px);
  border-color: var(--olive);
}

.hero {
  padding: 80px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1,
.section h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

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

.hero-facts div {
  background: var(--surface);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-facts p {
  margin: 0;
}

.hero-facts span {
  font-weight: 700;
  color: var(--olive);
}

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(240, 230, 218, 0.9));
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  max-width: 560px;
  justify-self: end;
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(31, 111, 139, 0.18);
  border-radius: 50%;
  top: -60px;
  right: -40px;
}

.hero-card h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.hero-lines {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-lines span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 139, 0.12);
  font-weight: 600;
  color: var(--teal);
}

.section {
  padding: 80px 0;
}

.section.muted {
  background: var(--surface-alt);
}

.section-head {
  margin-bottom: 44px;
  max-width: 700px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 900px;
}

.section-head p {
  color: var(--muted);
}

.about-text {
  max-width: 900px;
}

.about-text h3 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 20px;
  margin: 26px 0 12px;
}

.about-text h3:first-child {
  margin-top: 0;
}

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

.card {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-card {
  max-width: 900px;
  margin: 0 auto;
}

.policy-page .policy-card h3 {
  margin-top: 26px;
}

.policy-page .policy-card h3:first-child {
  margin-top: 0;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

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

.achievement-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 22, 32, 0.08);
  overflow: hidden;
}

.achievement-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 1px solid rgba(11, 22, 32, 0.08);
  background: #fff;
}

.achievement-card__text {
  padding: 20px 22px 22px;
}

.achievement-card__text h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

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

.community-cta {
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.community-cta .btn {
  margin-top: 18px;
}

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

.contact-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.contact-details p {
  margin: 0;
}

.contact-details span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.map-embed {
  margin-top: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(11, 22, 32, 0.1);
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  display: block;
}

.map-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(11, 22, 32, 0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  align-items: flex-start;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-meta p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .community,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .docs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
  }

  .hero {
    padding-top: 50px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
