:root {
  --ink: #16211f;
  --muted: #5d6965;
  --paper: #fffaf1;
  --surface: #ffffff;
  --teal: #0d7c73;
  --teal-dark: #075a54;
  --coral: #e65f4f;
  --mango: #f0b947;
  --line: #dfe7e1;
  --shadow: 0 18px 48px rgba(19, 39, 35, 0.12);
}

* {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 241, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-size: 13px;
}

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

.nav a {
  padding: 8px 10px;
  text-decoration: none;
  color: var(--muted);
  border-radius: 8px;
  font-size: 15px;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--teal-dark);
  background: #eaf4ef;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 72px) clamp(32px, 5vw, 64px);
}

.hero h1,
.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  background: #f9e9c1;
  color: #493814;
}

.hero-media {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.section,
.page-hero {
  padding: clamp(48px, 7vw, 88px) clamp(20px, 5vw, 72px);
}

.page-hero {
  background: #edf8f4;
  border-bottom: 1px solid var(--line);
}

.intro,
.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: start;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

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

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

.card,
.article-card,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(19, 39, 35, 0.07);
}

.card,
.article-card {
  padding: 24px;
}

.card h2,
.card h3,
.article-card h2 {
  margin: 10px 0 10px;
  line-height: 1.15;
}

.card p,
.article-card p,
.article p,
.notice span {
  color: var(--muted);
}

.card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 3px 8px;
  border-radius: 6px;
  color: var(--teal-dark);
  background: #e4f4ef;
  font-size: 12px;
  font-weight: 900;
}

.notice {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-left: 5px solid var(--mango);
}

.checklist {
  display: grid;
  gap: 12px;
}

.checklist div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checklist span {
  color: var(--coral);
  font-weight: 900;
}

.checklist p {
  margin: 0;
}

.article {
  max-width: 920px;
}

.article h2 {
  margin-top: 32px;
}

.small {
  font-size: 14px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #132723;
}

.site-footer p {
  margin: 0;
  color: #d9e6df;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .intro,
  .split,
  .contact-layout,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .actions,
  .button {
    width: 100%;
  }

  .brand {
    width: 100%;
  }

  .nav a {
    padding-left: 8px;
    padding-right: 8px;
  }
}
