:root {
  --primary: #C4552E;
  --primary-dark: #A8451F;
  --primary-soft: #F5E6DE;

  --background: #FDFBF9;
  --surface: #F7F1EA;
  --surface-raised: #FFFFFF;

  --text-primary: #2B2420;
  --text-secondary: #8A7D74;
  --text-disabled: #BDB3AA;

  --success: #6B8E6F;
  --border: #EAE0D6;

  --cat-sport: #E07A5F;
  --cat-horse: #8B6F47;
  --cat-spa: #C48CA5;
  --cat-swimming: #5B9AA0;
  --cat-classes: #B08968;
  --cat-events: #9A7AA0;

  --section-pad: clamp(56px, 8vw, 110px);
  --side-pad: clamp(20px, 4vw, 40px);
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--background);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.wrap { max-width: var(--max-width); margin: 0 auto; padding-left: var(--side-pad); padding-right: var(--side-pad); }

.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section--surface { background: var(--surface); }
.section--tight { padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(40px, 6vw, 72px); }

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-head { text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section-head--wide { max-width: 720px; }
.section-head h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
  line-height: 1.15;
}
.section-head p { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 14px 0 0; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 251, 249, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 36, 32, 0.06);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-full { height: 56px; width: auto; }
.nav__logo-icon { display: none; height: 44px; width: 44px; }
.nav__right { display: flex; align-items: center; gap: 28px; }
.nav__links { display: flex; align-items: center; gap: 24px; }
.nav__links a { font-size: 14px; font-weight: 600; color: var(--text-primary); white-space: nowrap; }
.nav__links a:hover { color: var(--primary); }
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  border: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__toggle svg { width: 20px; height: 20px; color: var(--text-primary); }
.nav__mobile-menu { display: none; }

.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-pill:hover { color: #fff; background: var(--primary-dark); }

@media (max-width: 760px) {
  .nav__links { display: none; }
  /* The full wordmark is wide at its new larger size - swap to the icon
     mark on narrow screens so it doesn't crowd the toggle button. */
  .nav__logo-full { display: none; }
  .nav__logo-icon { display: block; }
  /* The pill moves into the dropdown below on mobile - with the toggle
     button, logo + pill + toggle don't all fit on narrow screens, and
     since none of them shrink (flex items default to min-width:auto),
     the overflow pushed the toggle button off-screen entirely. */
  .nav__right > .btn-pill { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile-menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px var(--side-pad) 18px;
    border-top: 1px solid rgba(43, 36, 32, 0.06);
  }
  .nav__mobile-menu a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    padding: 12px 0;
    border-bottom: 1px solid rgba(43, 36, 32, 0.06);
  }
  .nav__mobile-menu .btn-pill {
    padding: 12px 24px;
    border-bottom: none;
    justify-content: center;
    color: #fff;
    margin-top: 8px;
  }
}

/* ---------- Hero ---------- */
.hero { background: var(--surface); padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(48px, 8vw, 96px); }
.hero .wrap {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap;
}
.hero__copy { flex: 1 1 440px; min-width: 300px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-raised);
  border: 1px solid rgba(43, 36, 32, 0.08);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 22px;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.hero h1 {
  font-size: clamp(2.125rem, 5vw, 3.375rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero p.lead {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 34px;
}
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-primary);
  color: var(--background);
  padding: 12px 20px;
  border-radius: 14px;
  opacity: 0.92;
}
.store-badge:hover { color: var(--background); opacity: 1; }
.store-badge__icon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--text-secondary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-badge__icon svg { width: 14px; height: 14px; }
.store-badge__eyebrow { font-size: 9px; letter-spacing: 0.4px; text-transform: uppercase; opacity: 0.8; }
.store-badge__name { font-size: 15px; font-weight: 700; margin-top: 1px; }

/* Phone mockup */
.hero__phone-wrap { flex: 1 1 320px; min-width: 280px; display: flex; justify-content: center; }
.phone {
  width: 280px;
  border-radius: 44px;
  background: var(--text-primary);
  padding: 14px;
  box-shadow: 0 40px 70px -20px rgba(43, 36, 32, 0.35);
}
.phone__screen { border-radius: 32px; overflow: hidden; background: var(--background); }
.phone__status { padding: 34px 18px 10px; }
.phone__status .greeting { font-size: 11px; color: var(--text-secondary); font-weight: 600; }
.phone__status .headline { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-top: 2px; }
.phone__card { padding: 0 14px 12px; }
.phone__card-body { padding: 10px 2px 0; }
.phone__card-title { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.phone__card-meta { display: flex; justify-content: space-between; margin-top: 6px; }
.phone__card-price { font-size: 12px; font-weight: 700; color: var(--primary); }
.phone__card-distance { font-size: 11px; color: var(--text-secondary); }
.phone__card--second { padding: 0 14px 20px; }

/* ---------- Placeholder image tiles ---------- */
.ph-tile {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  background: var(--ph-tint, var(--surface));
  color: var(--ph-color, var(--text-secondary));
  padding: 12px;
}
.ph-tile svg { width: 30px; height: 30px; opacity: 0.85; }
.ph-tile span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.phone__card .ph-tile, .phone__card--second .ph-tile { border-radius: 16px; height: 150px; }
.phone__card--second .ph-tile { height: 110px; }

/* ---------- Category showcase ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.cat-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 8px 24px rgba(43, 36, 32, 0.08);
}
.cat-tile__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 36, 32, 0) 40%, rgba(43, 36, 32, 0.55) 100%);
}
.cat-tile__label {
  position: absolute;
  left: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-tile__dot { width: 9px; height: 9px; border-radius: 50%; }
.cat-tile__name { font-size: 16px; font-weight: 700; color: var(--background); }

/* Compact category list (used on content pages) */
.cat-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.cat-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.cat-list__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-list__icon svg { width: 20px; height: 20px; }
.cat-list__title { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 4px; }
.cat-list__item p { font-size: 13px; line-height: 1.55; color: var(--text-secondary); margin: 0; }

/* ---------- How it works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.step { text-align: center; padding: 0 12px; }
.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 14px rgba(43, 36, 32, 0.06);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.step__title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; max-width: 280px; margin-left: auto; margin-right: auto; }

/* ---------- Why Go Addis / feature cards ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.feature-card { background: var(--surface); border-radius: 20px; padding: 30px; }
.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 20px; height: 20px; color: var(--success); }
.feature-card__title { font-size: 16px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.feature-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

/* ---------- App preview gallery ---------- */
.preview-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(12px, 3vw, 28px);
  flex-wrap: wrap;
}
.preview-phone {
  width: 230px;
  border-radius: 38px;
  background: var(--text-primary);
  padding: 12px;
  box-shadow: 0 30px 60px -18px rgba(43, 36, 32, 0.3);
}
.preview-phone--offset { transform: translateY(24px); }
.preview-phone__screen { border-radius: 26px; overflow: hidden; height: 400px; }

/* ---------- Diaspora / split section ---------- */
.split {
  display: flex;
  align-items: center;
  gap: clamp(32px, 6vw, 72px);
  flex-wrap: wrap;
}
.split__copy { flex: 1 1 440px; min-width: 300px; }
.split__visual { flex: 1 1 320px; min-width: 280px; }
.split h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.375rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  line-height: 1.18;
}
.split p.lead { font-size: 16px; line-height: 1.65; color: var(--text-secondary); margin: 0 0 24px; max-width: 480px; }
.split--reverse { flex-direction: row-reverse; }

.check-list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--text-primary); }
.check-list svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; margin-top: 2px; }

.visual-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px -24px rgba(43, 36, 32, 0.2);
}
.visual-card__row { display: flex; align-items: center; gap: 14px; padding: 12px 0; }
.visual-card__row + .visual-card__row { border-top: 1px solid var(--border); }
.visual-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.visual-card__icon svg { width: 20px; height: 20px; }
.visual-card__row-title { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.visual-card__row-sub { font-size: 12.5px; color: var(--text-secondary); margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--surface); color: var(--primary);
  transition: transform 0.2s ease;
}
.faq-item summary .faq-icon svg { width: 12px; height: 12px; }
.faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-item__body { padding: 0 22px 20px; font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary); padding-top: clamp(56px, 8vw, 88px); padding-bottom: clamp(56px, 8vw, 88px); }
.cta-band .wrap { max-width: 900px; text-align: center; }
.cta-band h2 {
  font-size: clamp(1.625rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: var(--background);
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  text-wrap: balance;
}
.cta-band p { font-size: 16px; color: rgba(253, 251, 249, 0.85); margin: 0 0 34px; }
.cta-band .store-badges { justify-content: center; }
.cta-band .store-badge__icon { background: rgba(253, 251, 249, 0.5); }

/* ---------- Simple content pages (privacy/terms/things-to-do/diaspora) ---------- */
.content { max-width: 760px; margin: 0 auto; padding: clamp(48px, 8vw, 88px) var(--side-pad) 80px; }
.content h1 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 8px;
  line-height: 1.15;
}
.content .lead-sub { font-size: 16px; line-height: 1.6; color: var(--text-secondary); margin: 0 0 40px; }
.content .updated { font-size: 13px; color: var(--text-secondary); margin: 0 0 40px; }
.content h2 { font-size: 1.25rem; font-weight: 700; margin: 40px 0 12px; }
.content p, .content li { font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.content ul { padding-left: 20px; }
.placeholder-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ---------- Footer ---------- */
.footer { padding-top: clamp(48px, 6vw, 64px); padding-bottom: 40px; }
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(43, 36, 32, 0.08);
}
.footer__brand { max-width: 280px; }
.footer__brand img { height: 44px; width: auto; margin-bottom: 12px; }
.footer__brand p { font-size: 13px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.footer__cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.footer__col a { font-size: 14px; color: var(--text-primary); }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social svg { width: 16px; height: 16px; color: var(--text-secondary); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
}
.footer__bottom span { font-size: 12px; color: var(--text-secondary); }

@media (max-width: 640px) {
  .footer__top { flex-direction: column; }
  .split, .split--reverse { flex-direction: column; }
}
