:root {
  --bg: #f5f3ee;
  --surface: #ffffff;
  --ink: #112433;
  --muted: #5a6b78;
  --brand: #173247;
  --accent: #c9a05b;
  --line: #d8dee3;
  --shadow: 0 18px 40px rgba(18, 40, 57, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 90% -20%, rgba(201, 160, 91, 0.25), transparent 65%),
    linear-gradient(180deg, #faf8f4 0%, #f2efea 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  padding: 8px 14px;
  z-index: 999;
}

.skip-link:focus {
  left: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(245, 243, 238, 0.8);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 210px;
  height: auto;
}

.nav-toggle {
  display: none;
  border: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--brand);
  color: #f8f5ee;
}

.hero {
  padding: 72px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: center;
}

.kicker {
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #5d7385;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.9rem, 4.8vw, 3.6rem);
  margin-bottom: 14px;
  letter-spacing: 0.4px;
}

h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.8vw, 2.45rem);
}

.hero p {
  margin: 0 0 14px;
  color: #405766;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 20px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 38, 56, 0.18);
}

.btn-primary {
  background: linear-gradient(120deg, #173247, #225170);
  color: #f8f5ef;
}

.btn-secondary {
  border-color: var(--brand);
  color: var(--brand);
  background: #ffffffc8;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.glow-ring {
  position: absolute;
  inset: auto auto -22px -22px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(23, 50, 71, 0.25);
  animation: pulse 5.4s ease-in-out infinite;
}

.section {
  padding: 60px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(23, 50, 71, 0.05), rgba(255, 255, 255, 0));
}

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

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

.process-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 14px 30px rgba(11, 30, 45, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(15, 35, 51, 0.12);
}

.card img.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}

.stat-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  border-radius: 14px;
  background: #16344a;
  color: #f8f6f0;
  padding: 18px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
  font-family: "Cinzel", Georgia, serif;
}

.pill-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-row span {
  border-radius: 999px;
  border: 1px solid #b8c6d1;
  background: #ffffffd4;
  color: #16364d;
  padding: 8px 12px;
  font-size: 0.83rem;
  font-weight: 700;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  color: #3f5564;
}

.feature-list li {
  margin-bottom: 10px;
}

.dark-panel {
  border-radius: var(--radius);
  padding: 24px;
  background: linear-gradient(145deg, #133147, #2c5a74);
  color: #f7f3e8;
  box-shadow: 0 16px 34px rgba(14, 36, 52, 0.24);
}

.dark-panel p,
.dark-panel h3 {
  color: #f6f1e2;
}

.dark-panel .kicker {
  color: #ecd9b2;
}

.dark-panel .btn-secondary {
  border-color: #e4cf9f;
  color: #f6ebd2;
  background: transparent;
}

.timeline {
  border-left: 2px solid #173247;
  padding-left: 18px;
  display: grid;
  gap: 18px;
}

.timeline article {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid #d3dde4;
}

.timeline article::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: -24px;
  top: 18px;
  background: #c9a05b;
  border: 2px solid #173247;
}

.contact-band {
  border-radius: 22px;
  background: linear-gradient(120deg, #173247, #355e79);
  color: #f7f2e6;
  padding: 28px;
}

.contact-band p,
.contact-band li {
  color: #f2e9d5;
}

.site-footer {
  margin-top: 32px;
  border-top: 1px solid #d4dce2;
  background: #eff1ef;
}

.footer-grid {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.footer-links a {
  font-weight: 700;
  color: #143045;
}

.footer-links a:hover {
  color: #90692c;
}

.footer-meta {
  margin: 6px 0;
  color: #3f5564;
  font-size: 0.92rem;
}

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

.page-hero h1 {
  margin-bottom: 8px;
}

.hero-banner {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #cedae2;
  box-shadow: var(--shadow);
}

.policy h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.policy ul {
  padding-left: 18px;
}

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

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { transform: scale(0.98); opacity: 0.28; }
  50% { transform: scale(1.08); opacity: 0.6; }
  100% { transform: scale(0.98); opacity: 0.28; }
}

@media (max-width: 980px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .process-grid,
  .footer-grid,
  .stat-wrap {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    right: 4vw;
    background: #f8f4ec;
    border: 1px solid #d4d9df;
    border-radius: 12px;
    padding: 8px;
    display: none;
    flex-direction: column;
    min-width: 220px;
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
