    :root {
      --bg: #f5f3ec;
      --primary: #2f5d50;
      --primary-light: #4f8a75;
      --accent: #e1a72b;
      --text: #2b2b2b;
      --card-bg: #ffffff;
      --muted: #757575;
      --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
      --radius-lg: 18px;
      --radius-md: 12px;
    }

    
            .page-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 32px 16px 48px;
    }

    header {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(240px, 2fr);
      gap: 28px;
      align-items: center;
      margin-bottom: 32px;
    }

    @media (max-width: 800px) {
      header {
        grid-template-columns: 1fr;
      }
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: 999px;
      background: rgba(47, 93, 80, 0.07);
      color: var(--primary);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
    }

    h1 {
      font-size: clamp(2.2rem, 3vw, 2.8rem);
      margin: 10px 0 8px;
      color: var(--primary);
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .subtitle {
      font-size: 15px;
      color: var(--muted);
      max-width: 480px;
    }

    .header-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
      font-size: 13px;
      color: var(--muted);
    }

    .meta-pill {
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.03);
    }

    .hero-card {
      background: linear-gradient(135deg, #2f5d50, #4f8a75);
      border-radius: var(--radius-lg);
      padding: 18px 18px 16px;
      color: #fff;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.36) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.18) 0, transparent 55%);
      opacity: 0.9;
      mix-blend-mode: screen;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
    }

    .hero-title {
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 4px;
      opacity: 0.9;
    }

    .hero-text {
      font-size: 14px;
      margin-bottom: 12px;
      opacity: 0.94;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .hero-tag {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(4px);
    }

    .hero-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      opacity: 0.9;
    }

    .hero-location {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .hero-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.7);
      position: relative;
    }

    .hero-dot::after {
      content: "";
      position: absolute;
      inset: 1px;
      border-radius: inherit;
      background: #e1f6e8;
    }

    .section {
      margin-bottom: 28px;
    }

    .section-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section-title::before {
      content: "";
      width: 22px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), transparent);
    }

    .section-lead {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 16px;
      margin-bottom: 4px;
    }

    .card {
      background: var(--card-bg);
      border-radius: var(--radius-md);
      padding: 14px 14px 12px;
      box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .card-header {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--primary);
    }

    .card-tagline {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .card-list {
      list-style: none;
      font-size: 13px;
      color: var(--text);
      padding-left: 0;
    }

    .card-list li {
      display: flex;
      gap: 6px;
      margin-bottom: 4px;
    }

    .card-list li::before {
      content: "•";
      color: var(--accent);
      font-weight: 700;
      margin-top: 1px;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 6px;
    }

    .pill {
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 12px;
      background: rgba(47, 93, 80, 0.06);
      color: var(--primary);
    }

    .highlight {
      background: rgba(225, 167, 43, 0.08);
      border-left: 3px solid var(--accent);
      padding: 8px 10px;
      border-radius: 10px;
      font-size: 13px;
      color: var(--text);
    }