:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5d6875;
  --line: #dfe5ea;
  --paper: #ffffff;
  --soft: #f4f7f6;
  --green: #1c6b5a;
  --teal: #38a3a5;
  --gold: #c28a31;
  --navy: #1f3446;
  --shadow: 0 18px 45px rgba(23, 32, 42, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(31, 52, 70, 0.1);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  width: min(1120px, calc(100% - 40px));
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
}

.brand {
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--green);
}

.hero,
.page-hero {
  position: relative;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.84) 50%, rgba(31, 52, 70, 0.24) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='1000' viewBox='0 0 1600 1000'%3E%3Crect width='1600' height='1000' fill='%23edf3f1'/%3E%3Cg opacity='0.78'%3E%3Cpath d='M0 745 L395 590 L740 710 L1180 480 L1600 585 L1600 1000 L0 1000 Z' fill='%23d9e7e3'/%3E%3Cpath d='M0 310 L320 420 L690 265 L1045 360 L1600 205 L1600 0 L0 0 Z' fill='%23f8faf8'/%3E%3Cpath d='M118 678 L366 574 L606 653 L821 536 L1066 580 L1325 440' fill='none' stroke='%2338a3a5' stroke-width='9' stroke-linecap='round'/%3E%3Cpath d='M194 344 L412 415 L631 319 L858 377 L1126 298 L1390 226' fill='none' stroke='%23c28a31' stroke-width='7' stroke-linecap='round' opacity='0.9'/%3E%3Cg fill='%231c6b5a'%3E%3Ccircle cx='118' cy='678' r='16'/%3E%3Ccircle cx='366' cy='574' r='16'/%3E%3Ccircle cx='606' cy='653' r='16'/%3E%3Ccircle cx='821' cy='536' r='16'/%3E%3Ccircle cx='1066' cy='580' r='16'/%3E%3Ccircle cx='1325' cy='440' r='16'/%3E%3C/g%3E%3Cg fill='%23c28a31'%3E%3Ccircle cx='194' cy='344' r='12'/%3E%3Ccircle cx='412' cy='415' r='12'/%3E%3Ccircle cx='631' cy='319' r='12'/%3E%3Ccircle cx='858' cy='377' r='12'/%3E%3Ccircle cx='1126' cy='298' r='12'/%3E%3Ccircle cx='1390' cy='226' r='12'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--paper));
  pointer-events: none;
}

.hero-inner,
.section-inner,
.page-hero-inner,
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 76vh;
  align-content: center;
  padding: 96px 0 120px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 92px 0 86px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.lead {
  width: min(720px, 100%);
  margin-top: 28px;
  color: #344352;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
}

.section {
  padding: 76px 0;
}

.section.soft {
  background: var(--soft);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.section-heading h2,
.prose h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-heading p,
.prose p,
.prose li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.cards {
  margin-top: 36px;
}

.card,
.info-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(23, 32, 42, 0.07);
}

.card {
  min-height: 220px;
  padding: 26px;
}

.card small,
.detail-label {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card h3,
.info-panel h3 {
  color: var(--navy);
  font-size: 1.18rem;
}

.card p,
.info-panel p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.68;
}

.split {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 44px;
  align-items: start;
}

.info-panel {
  padding: 30px;
}

.detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.detail-row {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.detail-row dt {
  color: var(--navy);
  font-weight: 900;
}

.detail-row dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.prose {
  display: grid;
  max-width: 840px;
  gap: 22px;
}

.prose h2 {
  margin-top: 24px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.prose h3 {
  margin-top: 10px;
  color: var(--navy);
  font-size: 1.2rem;
}

.prose ul {
  margin: 0;
  padding-inline-start: 22px;
}

.contact-card {
  padding: 30px;
}

.contact-link {
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px 0;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: #ffffff;
}

.footer-brand span,
.footer-links a {
  font-size: 0.94rem;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

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

@media (max-width: 860px) {
  .nav,
  .footer-inner,
  .split,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .nav {
    display: grid;
    align-items: start;
    padding: 18px 0;
  }

  .nav-links,
  .footer-links {
    justify-content: flex-start;
  }

  .hero-inner {
    min-height: auto;
    padding: 80px 0 96px;
  }

  .section {
    padding: 58px 0;
  }

  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 520px) {
  .hero-inner,
  .page-hero-inner,
  .section-inner,
  .footer-inner,
  .nav {
    width: min(100% - 32px, 1120px);
  }

  .nav-links {
    gap: 8px 14px;
  }

  .card,
  .info-panel,
  .contact-card {
    padding: 22px;
  }
}
