:root {
  --green:     #0a7a52;
  --green-d:   #065438;
  --gold:      #c99a0d;
  --ink:       #0f1c11;
  --muted:     #60706a;
  --white:     #ffffff;
  --off:       #f3f6f2;
  --border:    rgba(0,0,0,.09);
  --r:         12px;
  --tr:        .28s ease;
  --serif:     "Playfair Display", Georgia, serif;
  --sans:      "Inter", system-ui, sans-serif;
  --shadow-lg: 0 16px 48px rgba(0,0,0,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}

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

.page-hero {
  background: linear-gradient(140deg, #051c0f 0%, #0d5e3c 100%);
  padding: 24px 24px;
  text-align: center;
  color: #fff;
}

.ph-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ph-label::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.05;
  margin: 0;
}

.page-hero > p {
  max-width: 520px;
  margin: 8px auto 0;
  color: rgba(255,255,255,.74);
  font-size: 1rem;
  line-height: 1.72;
}

.cat-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 40px 80px;
}

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

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr);
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.cat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(10,122,82,.1);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cat-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
}

.cat-card:nth-child(1) .cat-icon::before { content: "\f70c"; }
.cat-card:nth-child(2) .cat-icon::before { content: "\f06d"; }
.cat-card:nth-child(3) .cat-icon::before { content: "\f004"; }
.cat-card:nth-child(4) .cat-icon::before { content: "\f025"; }

.cat-card h2 {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--ink);
  margin: 0;
}

.cat-card p {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

.cat-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: gap var(--tr);
}

.cat-card:hover .cat-arrow { gap: 11px; }

@media (max-width: 768px) {
  .cat-wrap { padding: 40px 20px 60px; }
  .cat-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .cat-card { padding: 32px 26px; }
}
