:root {
  --ink: #172331;
  --muted: #617083;
  --line: #d8e2dc;
  --card: #ffffff;
  --soft: #f3faf6;
  --green: #2f6f5e;
  --green-dark: #1f5044;
  --gold: #d99a10;
  --coral: #c9654b;
  --blue: #265d85;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f3faf6 0%, #f7f8fb 48%, #ffffff 100%);
}

a { color: var(--green-dark); }

.hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 154, 16, .20), transparent 22%),
    linear-gradient(135deg, #f3faf6 0%, #ffffff 62%, #eef6f7 100%);
}

.hero-inner,
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner { padding: 18px 0 30px; }
.wrap { padding: 30px 0 54px; }

.top-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.top-links a,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #bdd0c8;
  border-radius: 8px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: none;
}

.top-links a:hover,
.btn:hover { border-color: var(--gold); }

.brand {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  width: 132px;
  height: 132px;
  justify-self: end;
}

.kicker {
  margin: 0 0 8px;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 880px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 6vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin: 26px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.section-title h2 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.45rem;
}

.section-title p {
  margin: 5px 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card,
.stat,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 10px 26px rgba(23, 35, 49, .08);
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
}

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

.card strong {
  display: block;
  margin-bottom: 9px;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.card span,
.line {
  color: var(--muted);
  line-height: 1.45;
}

.card em {
  margin-top: auto;
  padding-top: 16px;
  color: var(--coral);
  font-style: normal;
  font-weight: 700;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.stat { padding: 16px; }
.stat strong { display: block; color: var(--green-dark); font-size: 1.9rem; }
.stat span { color: var(--muted); }

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 11px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #f3faf6;
  color: var(--green-dark);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  border-radius: 8px;
  background: #fff5d8;
  color: #77530c;
  font-size: .78rem;
  font-weight: 700;
}

.empty {
  padding: 22px;
  border: 1px dashed #a9bdb4;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  line-height: 1.5;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo figcaption {
  padding: 12px;
  color: var(--muted);
  font-weight: 700;
}

footer {
  padding: 22px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

@media (max-width: 620px) {
  .hero-inner { padding: 12px 0 22px; }
  .top-links { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .brand { grid-template-columns: 1fr 88px; gap: 12px; }
  .brand-mark { width: 84px; height: 84px; }
  .section-title { display: block; }
}
