/* Help Your Helper — shared-link page. Palette v2. Mobile-first, large legible text. */
:root {
  --cream: #f8f2e9;
  --linen: #eee6d8;
  --forest: #3d4a3e;
  --espresso: #3a1c08;
  --sage: #7a9e7e;
  --charcoal: #2e2820;
  --muted: #7d7165;
  --stone: #a8947e;
  --sand: #d8ccba;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px 22px 40px;
}

.loading,
.notice {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
  padding: 60px 12px;
}

.hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: var(--sage);
  display: block;
  margin-bottom: 22px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 10px;
}

/* Tagalog is the product — the primary title. English sits under it. */
.title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: var(--espresso);
  margin: 0;
}

.title-alt {
  font-size: 17px;
  color: var(--muted);
  margin: 6px 0 0;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 16px 0 4px;
}

.meta-time {
  font-size: 14px;
  color: var(--muted);
}

.pill {
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid var(--stone);
  color: var(--muted);
  white-space: nowrap;
}

.pill.topic {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--cream);
}

.lang-toggle {
  display: inline-flex;
  gap: 4px;
  background: var(--linen);
  border-radius: 6px;
  padding: 4px;
  margin: 22px 0 8px;
}

.lang-toggle button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.lang-toggle button[aria-pressed='true'] {
  background: var(--forest);
  color: var(--cream);
}

.intro {
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 18px 0 6px;
}

.section-h {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--sage);
  margin: 26px 0 12px;
}

ul.list,
ol.list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

ul.list li,
ol.list li {
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
}

ul.list li::before {
  content: '•';
  color: var(--sage);
  flex: none;
}

ol.list {
  counter-reset: step;
}

ol.list li {
  counter-increment: step;
}

ol.list li::before {
  content: counter(step);
  flex: none;
  width: 26px;
  height: 26px;
  border: 1px solid var(--sage);
  border-radius: 50%;
  color: var(--sage);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.note {
  background: var(--linen);
  border-radius: 8px;
  padding: 16px;
  margin-top: 22px;
}

.note-h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 6px;
}

.note-body {
  font-size: 15px;
  line-height: 1.5;
  color: var(--charcoal);
  margin: 0;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding: 8px 0 28px;
}
