:root{
  --green:#0f5132;
  --green-dark:#052e16;
  --green-light:#dcfce7;
  --ink:#0a0a0a;
  --text:#1f2937;
  --text-2:#374151;
  --text-3:#6b7280;
  --text-4:#9ca3af;
  --bg:#f4f5f7;
  --surface:#fff;
  --border:#e0e3e8;
  --border-soft:#e5e7eb;
  --radius:6px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Source Sans Pro','Inter',system-ui,sans-serif;background:var(--bg);color:var(--text);line-height:1.55;-webkit-font-smoothing:antialiased;min-height:100vh;display:flex;flex-direction:column}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.wrap{max-width:1100px;margin:0 auto;padding:0 24px;width:100%}
@media(max-width:700px){.wrap{padding:0 16px}}

/* HEADER */
header.site{background:var(--surface);border-bottom:1px solid var(--border);position:sticky;top:0;z-index:50}
.nav{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:1rem;flex-wrap:wrap}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{width:36px;height:36px;background:var(--green);border-radius:6px;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:15px;flex-shrink:0}
.brand-name{font-size:16px;font-weight:700;color:var(--ink);letter-spacing:-.01em;line-height:1}
.brand-sub{font-size:11px;color:var(--text-3);margin-top:2px}
.nav-links{display:flex;gap:22px;font-size:13px;color:var(--text-2);font-weight:500}
.nav-links a{padding:6px 0;transition:color .15s}
.nav-links a:hover,.nav-links a.active{color:var(--green)}
.cta-nav{background:var(--green);color:#fff !important;padding:7px 14px;border-radius:5px;font-size:12px;font-weight:600}
.cta-nav:hover{background:var(--green-dark) !important}
@media(max-width:700px){.nav-links{gap:12px;font-size:12px}}

/* HERO */
.hero{background:var(--green);color:#fff;padding:44px 0}
.hero h1{font-size:clamp(22px,3.5vw,32px);font-weight:700;margin-bottom:12px;letter-spacing:-.02em;text-align:center;line-height:1.15}
.hero p{font-size:15px;color:rgba(255,255,255,.85);margin:0 auto 24px;text-align:center;max-width:600px;line-height:1.5}
.search-box{display:flex;max-width:520px;margin:0 auto;background:#fff;border-radius:6px;overflow:hidden;box-shadow:0 4px 20px rgba(0,0,0,.1)}
.search-box input{flex:1;padding:12px 16px;border:none;font-size:14px;color:var(--ink);outline:none;font-family:inherit}
.search-box input::placeholder{color:var(--text-3)}
.search-box button{background:var(--ink);color:#fff;border:none;padding:12px 26px;font-size:13px;font-weight:600;letter-spacing:.03em;cursor:pointer;font-family:inherit;transition:background .15s;text-transform:uppercase}
.search-box button:hover{background:#374151}

/* REGION TABS */
.region-tabs{background:var(--surface);border-bottom:1px solid var(--border)}
.region-tabs-inner{display:flex;overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:1100px;margin:0 auto;padding:0 24px}
.region-tab{padding:12px 20px;font-size:13px;color:var(--text-3);font-weight:500;border-bottom:2px solid transparent;white-space:nowrap;transition:color .15s,border-color .15s;display:block}
.region-tab:hover,.region-tab.active{color:var(--green);border-bottom-color:var(--green)}
.region-tab-count{color:var(--text-4);margin-left:3px;font-size:12px}

/* MAIN */
main{flex:1;padding:28px 0 60px;background:var(--bg)}

/* SECTION HEAD */
.section-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:18px;gap:12px;flex-wrap:wrap}
.section-label{font-size:11px;color:var(--text-3);letter-spacing:.1em;text-transform:uppercase;font-weight:700;margin-bottom:4px}
.section-title{font-size:22px;font-weight:700;color:var(--ink);letter-spacing:-.01em}
.section-meta{font-size:13px;color:var(--text-3)}

/* PROFILE GRID */
.profile-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-bottom:18px}
@media(max-width:700px){.profile-grid{grid-template-columns:1fr}}
.profile-card{background:var(--surface);border:1px solid var(--border);padding:18px 20px;border-radius:var(--radius);transition:transform .15s,box-shadow .15s,border-color .15s;display:block;color:inherit}
.profile-card:hover{transform:translateY(-2px);box-shadow:0 4px 14px rgba(0,0,0,.07);border-color:#c7d2d8}
.profile-head{display:flex;align-items:center;gap:12px;margin-bottom:12px}
.profile-avatar{width:42px;height:42px;background:#dbeafe;border-radius:6px;display:flex;align-items:center;justify-content:center;color:#1e3a8a;font-weight:700;font-size:14px;flex-shrink:0;text-transform:uppercase}
.profile-info{flex:1;min-width:0}
.profile-name-row{display:flex;align-items:center;gap:6px;margin-bottom:2px}
.profile-name{font-size:15px;font-weight:700;color:var(--ink);letter-spacing:-.01em}
.profile-verified{color:var(--green);font-size:11px;font-weight:700;background:var(--green-light);border-radius:50%;width:16px;height:16px;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.profile-location{font-size:12px;color:var(--text-3)}
.profile-desc{font-size:13px;color:var(--text-2);line-height:1.5;margin-bottom:12px}
.profile-tags{display:flex;gap:6px;flex-wrap:wrap}
.tag-primary{font-size:11px;padding:3px 9px;border-radius:3px;font-weight:600;color:var(--green);background:var(--green-light)}
.tag-secondary{font-size:11px;padding:3px 9px;border-radius:3px;font-weight:500;color:var(--text-3);background:#f3f4f6}
.edit-note{background:#fffbeb;border:1px solid #fde68a;border-radius:var(--radius);padding:10px 14px;display:flex;gap:10px;align-items:flex-start}
.edit-note-label{font-size:11px;font-weight:700;color:#92400e;white-space:nowrap;padding-top:1px}
.edit-note-text{font-size:12px;color:#78350f;line-height:1.55}

/* PROFILE PAGE */
.profile-page{max-width:820px;margin:0 auto}
.profile-page-hero{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px 26px;margin-bottom:16px}
.profile-page-head{display:flex;align-items:flex-start;gap:16px}
.profile-page-avatar{width:56px;height:56px;background:#dbeafe;border-radius:8px;display:flex;align-items:center;justify-content:center;color:#1e3a8a;font-weight:700;font-size:20px;flex-shrink:0;text-transform:uppercase}
.profile-page-title{flex:1;min-width:0}
.profile-page-name-row{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin-bottom:4px}
.profile-page-name{font-size:26px;font-weight:700;color:var(--ink);letter-spacing:-.02em;line-height:1.15}
.profile-page-location{font-size:13px;color:var(--text-3);margin-bottom:10px}
.profile-page-tags{display:flex;gap:6px;flex-wrap:wrap}
.badge-verified{display:inline-flex;align-items:center;gap:4px;padding:4px 10px;background:var(--green-light);color:var(--green);border-radius:3px;font-size:11px;font-weight:700}
.badge-verified::before{content:"✓ "}
.profile-hero-img{width:100%;height:240px;object-fit:cover;border-radius:var(--radius);margin-bottom:16px;display:block}
.profile-section{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);padding:24px 26px;margin-bottom:14px}
.profile-section h2{font-size:17px;font-weight:700;color:var(--ink);margin-bottom:14px;padding-bottom:12px;border-bottom:1px solid var(--border-soft);letter-spacing:-.01em}
.profile-section p{font-size:15px;color:var(--text);line-height:1.7;margin-bottom:12px}
.profile-section p:last-child{margin-bottom:0}
.profile-section strong{font-weight:600;color:var(--ink)}
.detail-table{width:100%;border-collapse:collapse;font-size:14px}
.detail-table dt,.detail-table dd{padding:9px 0;border-bottom:1px solid var(--border-soft);vertical-align:top;line-height:1.5}
.detail-table dt{font-size:11px;color:var(--text-3);font-weight:700;text-transform:uppercase;letter-spacing:.05em;width:36%;padding-right:16px}
.detail-table dd{color:var(--text)}
.detail-table dd a{color:var(--green)}
.detail-table dd a:hover{text-decoration:underline}
.verif-box{background:#f0fdf4;border:1px solid #bbf7d0;border-left:3px solid var(--green);border-radius:0 var(--radius) var(--radius) 0;padding:14px 18px}
.verif-label{font-size:11px;font-weight:700;color:var(--green);letter-spacing:.08em;text-transform:uppercase;margin-bottom:5px}
.verif-text{font-size:13px;color:var(--text-2);line-height:1.55}
.verif-text a{color:var(--green)}

/* FOOTER */
footer.site{background:var(--ink);color:var(--text-4);padding:18px 0;font-size:12px;margin-top:auto}
.foot-inner{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;align-items:center}
.foot-inner a{color:var(--text-4);transition:color .15s}
.foot-inner a:hover{color:#fff}

/* PROSE */
.prose{max-width:720px;margin:0 auto;font-size:15px;line-height:1.75;padding:2rem 0}
.prose h1{font-size:26px;font-weight:700;margin-bottom:20px;color:var(--ink);letter-spacing:-.02em}
.prose h2{font-size:19px;font-weight:700;margin:24px 0 12px;color:var(--ink);padding-bottom:8px;border-bottom:1px solid var(--border-soft)}
.prose p{margin-bottom:14px;color:var(--text)}
.prose ul,.prose ol{margin:10px 0 14px 24px}
.prose li{margin-bottom:6px;color:var(--text)}
.prose strong{font-weight:600;color:var(--ink)}
.prose a{color:var(--green)}
.prose a:hover{text-decoration:underline}

/* PAGE HEAD */
.page-head{padding:1.5rem 0 1rem}
.page-head .crumb{font-size:11px;color:var(--green);letter-spacing:.1em;text-transform:uppercase;margin-bottom:8px;font-weight:700}
.page-head h1{font-size:clamp(22px,3vw,30px);font-weight:700;letter-spacing:-.02em;color:var(--ink);line-height:1.2}
.page-head p{font-size:14px;color:var(--text-2);margin-top:8px;max-width:640px;line-height:1.6}

/* EMPTY STATE */
.empty-state{text-align:center;padding:3rem 1rem;font-size:14px;color:var(--text-3);background:var(--surface);border:1px solid var(--border);border-radius:var(--radius)}.page-title{font-size:22px;font-weight:700;letter-spacing:-.02em;color:var(--ink);line-height:1.2;margin-bottom:8px}
.crumb{font-size:11px;color:var(--green);letter-spacing:.1em;text-transform:uppercase;margin-bottom:8px;font-weight:700;display:block}
