:root {
  --green: #1B4332;
  --green2: #2D6A4F;
  --gold: #D4A853;
  --cream: #F9F6F0;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E7E1D6;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
body.am { font-family: "Noto Sans Ethiopic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }

a { color: var(--green2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ---------- NAV ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; color: var(--green); }
.brand:hover { text-decoration: none; }
.bmark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(160deg, var(--green2), var(--green));
  color: var(--cream); font-weight: 800; font-size: 20px; position: relative;
}
.bmark sup { color: var(--gold); font-size: 11px; font-family: "Noto Sans Ethiopic", sans-serif; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { font-weight: 600; color: var(--muted); }
.lang-toggle {
  border: 1.5px solid var(--green); background: transparent; color: var(--green);
  font-weight: 700; padding: 7px 14px; border-radius: 999px; cursor: pointer;
  font-family: "Noto Sans Ethiopic", inherit; transition: all .15s;
}
.lang-toggle:hover { background: var(--green); color: #fff; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--green) 0%, var(--green2) 100%);
  color: #fff;
  padding: 56px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
}
.hero-inner { max-width: 560px; }
.eyebrow { color: var(--gold); font-weight: 700; letter-spacing: .5px; text-transform: uppercase; font-size: 13px; margin: 0 0 12px; }
.hero h1 { font-size: 46px; line-height: 1.08; margin: 0 0 18px; font-weight: 800; }
.lead { font-size: 18px; color: rgba(255,255,255,.9); margin: 0 0 28px; }
.cta-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: var(--green); font-weight: 800;
  padding: 13px 24px; border-radius: 999px; font-size: 16px;
}
.btn-primary:hover { text-decoration: none; filter: brightness(1.05); }
.badge { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 600; }

/* ---------- PHONE MOCKUP ---------- */
.phone {
  width: 300px; height: 600px; background: #0d231a; border-radius: 42px;
  padding: 12px; box-shadow: 0 30px 70px rgba(0,0,0,.4); position: relative;
  justify-self: center; border: 2px solid rgba(255,255,255,.1);
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 120px; height: 24px; background: #0d231a; border-radius: 0 0 16px 16px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; background: var(--cream); border-radius: 32px; overflow: hidden; display: flex; flex-direction: column; }
.app-header { background: var(--green); padding: 40px 16px 16px; color: #fff; }
.app-loc { font-size: 12px; color: var(--gold); font-weight: 600; }
.app-greet { font-size: 20px; font-weight: 800; margin: 2px 0 12px; }
.app-search { background: rgba(255,255,255,.15); border-radius: 10px; padding: 9px 12px; font-size: 12px; color: rgba(255,255,255,.8); }
.app-body { flex: 1; overflow: hidden; padding: 12px; }
.pf-chips { display: flex; gap: 6px; margin-bottom: 12px; }
.pf-chip { font-size: 10px; font-weight: 700; padding: 5px 10px; border-radius: 999px; background: #fff; color: var(--muted); border: 1px solid var(--border); white-space: nowrap; }
.pf-chip.on { background: var(--green); color: #fff; border-color: var(--green); }
.pf-card { height: 88px; border-radius: 14px; margin-bottom: 10px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.pf-card-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.7), transparent 70%); }
.pf-card-txt { position: absolute; left: 10px; bottom: 8px; color: #fff; display: flex; flex-direction: column; }
.pf-card-txt strong { font-size: 13px; }
.pf-card-txt span { font-size: 10px; color: var(--gold); font-weight: 600; }

/* ---------- SECTION HEAD ---------- */
.section-head { text-align: center; max-width: 600px; margin: 0 auto 28px; }
.section-head h2 { color: var(--green); font-size: 32px; margin: 0 0 6px; }
.section-head p { color: var(--muted); margin: 0; font-size: 17px; }

/* ---------- EXPLORE ---------- */
.explore { max-width: 1100px; margin: 64px auto 0; padding: 0 24px; }
.controls { max-width: 760px; margin: 0 auto 24px; }
.search-input {
  width: 100%; padding: 14px 18px; border-radius: 14px; border: 1.5px solid var(--border);
  font-size: 16px; background: var(--surface); margin-bottom: 14px; font-family: inherit;
}
.search-input:focus { outline: none; border-color: var(--green2); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 9px 16px; border-radius: 999px; border: 1.5px solid var(--border);
  background: var(--surface); color: var(--text); font-weight: 600; font-size: 14px;
  font-family: inherit; transition: all .15s;
}
.chip:hover { border-color: var(--green2); }
.chip.active { background: var(--green); color: #fff; border-color: var(--green); }
.chip-emoji { font-size: 14px; }

.venue-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.vcard {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: transform .18s, box-shadow .18s; cursor: pointer;
}
.vcard:hover, .vcard:focus { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(27,67,50,.14); outline: none; }
.vcard-img { height: 150px; background-size: cover; background-position: center; position: relative; }
.vstatus { position: absolute; top: 10px; left: 10px; font-size: 11px; font-weight: 700; color: #fff; padding: 4px 9px; border-radius: 999px; }
.vstatus.open { background: rgba(45,106,79,.92); }
.vstatus.closed { background: rgba(220,38,38,.92); }
.vcard-body { padding: 14px; }
.vname { margin: 0; font-size: 17px; color: var(--text); }
.vsub { margin: 2px 0 8px; color: var(--muted); font-size: 13px; }
.vmeta { display: flex; align-items: center; gap: 5px; flex-wrap: wrap; font-size: 12px; color: var(--muted); font-weight: 600; }
.vstar { color: #B8860B; font-weight: 700; }
.vdot { color: var(--border); }
.vtags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px; }
.vtag { font-size: 11px; color: var(--green2); background: rgba(45,106,79,.08); border: 1px solid rgba(45,106,79,.18); padding: 3px 9px; border-radius: 999px; }
.empty { text-align: center; color: var(--muted); padding: 40px 0; font-size: 16px; }

/* ---------- PILLARS ---------- */
.pillars { max-width: 1100px; margin: 80px auto 0; padding: 0 24px; }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; text-align: center; }
.pillar-ico { font-size: 30px; margin-bottom: 10px; }
.pillar h3 { margin: 0 0 6px; color: var(--green); font-size: 18px; }
.pillar p { margin: 0; color: var(--muted); font-size: 14px; }
.pillar em { color: var(--gold); font-style: normal; font-weight: 700; }

/* ---------- LEGAL ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 40px 24px 80px; background: var(--surface); }
.legal h1 { color: var(--green); font-size: 34px; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.legal h2 { color: var(--green); font-size: 21px; margin-top: 34px; }
.legal p, .legal li { color: #2c2c2c; }

/* ---------- VENUE FORM ---------- */
.form-wrap { max-width: 680px; margin: 0 auto; padding: 32px 24px 64px; }
.form-head { text-align: center; margin-bottom: 28px; }
.form-head h1 { color: var(--green); font-size: 34px; margin: 6px 0 10px; }
.form-sub { color: var(--muted); font-size: 16px; margin: 0; }
.venue-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; color: var(--text); font-size: 14px; }
.field input, .field select, .field textarea {
  padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--border);
  font-size: 16px; background: var(--cream); font-family: inherit; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green2); background: #fff; }
.field textarea { resize: vertical; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-rule { border: none; border-top: 1px solid var(--border); margin: 4px 0; }
.hint { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.form-submit { border: none; cursor: pointer; font-size: 16px; margin-top: 4px; align-self: flex-start; }
.form-submit:disabled { opacity: .6; cursor: default; }
.form-msg { margin: 4px 0 0; padding: 12px 14px; border-radius: 12px; font-weight: 600; font-size: 15px; }
.form-msg.ok { background: rgba(45,106,79,.1); color: var(--green); border: 1px solid rgba(45,106,79,.3); }
.form-msg.err { background: rgba(220,38,38,.08); color: #b91c1c; border: 1px solid rgba(220,38,38,.3); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--border); margin-top: 80px; padding: 24px; }
.foot-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 14px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-bottom: 56px; }
  .hero-inner { margin: 0 auto; }
  .cta-row { justify-content: center; }
  .venue-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hero h1 { font-size: 34px; }
  .venue-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr; }
  .nav-links a[href="#explore"] { display: none; }
}
