:root {
  color-scheme: light;
  --ink: #18202a;
  --muted: #5d6773;
  --line: #dbe1e8;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --brand: #28776d;
  --brand-dark: #195750;
  --accent: #c75146;
  --gold: #d7aa42;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

body {
  margin: 0;
}

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1040px;
  padding: 14px 22px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-weight: 700;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  border-radius: 8px;
  height: 34px;
  width: 34px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

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

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

.hero {
  background:
    linear-gradient(130deg, rgba(40, 119, 109, 0.14), rgba(215, 170, 66, 0.16) 48%, rgba(199, 81, 70, 0.12)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.content {
  margin: 0 auto;
  max-width: 940px;
  padding: 56px 22px;
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 108px minmax(0, 1fr);
}

.hero-icon {
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(24, 32, 42, 0.18);
  height: 108px;
  width: 108px;
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 8px;
}

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

h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
}

h2 {
  border-top: 1px solid var(--line);
  font-size: 1.55rem;
  margin-top: 38px;
  padding-top: 30px;
}

h2:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

h3 {
  font-size: 1.08rem;
  margin-top: 24px;
}

p {
  margin: 12px 0 0;
}

.lead {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 720px;
}

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

.button {
  align-items: center;
  background: var(--brand);
  border-radius: 8px;
  color: white;
  display: inline-flex;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 16px;
  text-decoration: none;
}

.button.secondary {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--brand-dark);
}

.page-title {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-title .content {
  padding-bottom: 40px;
  padding-top: 42px;
}

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

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.info-card h2,
.info-card h3 {
  border: 0;
  margin: 0;
  padding: 0;
}

.info-card p {
  color: var(--muted);
}

.list {
  margin: 12px 0 0;
  padding-left: 1.25em;
}

.list li + li {
  margin-top: 7px;
}

.note {
  background: #fff7e1;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  margin-top: 22px;
  padding: 16px 18px;
}

.meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  margin-top: 20px;
}

.site-footer .content {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-bottom: 28px;
  padding-top: 28px;
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

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

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

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