@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;700&display=swap');

:root {
  --bg: #0d0d0d;
  --bg-alt: #141414;
  --card: #1e1e1e;
  --text: #f5f2ed;
  --text-dim: #a8a29b;
  --accent: #ffce00;
  --accent-text: #0d0d0d;
  --border: #2a2a2a;
  --max-width: 780px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

header {
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo {
  height: 64px;
  width: auto;
  display: block;
}

.hero-photo-wrap {
  position: relative;
  margin: 0 0 24px;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  max-height: 360px;
}

.hero-photo {
  width: 100%;
  height: auto;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: center 25%;
}

.result-card {
  display: flex;
  gap: 14px;
  align-items: center;
}

.card-photo {
  width: 150px;
  height: 204px;
  object-fit: cover;
  object-position: top center;
  border-radius: 4px;
  flex-shrink: 0;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

nav a:hover, nav a.active {
  color: var(--accent);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6em;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 0.4em;
}

h1 .highlight { color: var(--accent); }

h2 {
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
  margin-top: 2.2em;
  margin-bottom: 0.5em;
  color: var(--text);
}

h3 {
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 0.3em;
  font-weight: 700;
}

p { color: var(--text-dim); }

.tagline {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1.5em;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-text);
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  padding: 12px 30px;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 1em;
}

.cta:hover { opacity: 0.9; }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.card p { color: var(--text); margin: 0; }

.card strong { color: var(--accent); }

body.page-who-i-help h2 { color: var(--accent); }

.section-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}

.ig-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  max-width: fit-content;
}

.ig-link:hover { border-color: var(--accent); }

.ig-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.ig-link strong { color: var(--accent); }

.about-photo {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 6px;
  margin-bottom: 16px;
  display: block;
}

@media (max-width: 600px) {
  .section-photo { max-height: 150px; }
  .about-photo { max-width: 220px; margin-left: auto; margin-right: auto; }
  .ig-link { max-width: 100%; }
}

.result {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.result:last-child { border-bottom: none; }

.result h3 { color: var(--text); }

.result-photo {
  width: 280px;
  max-width: 100%;
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  display: block;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h2 {
  margin-top: 0;
  font-size: 1.3rem;
  color: var(--accent);
}

.note {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

.photo-slot {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 6px;
  padding: 40px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  header { padding: 14px 16px; gap: 10px; }
  .logo { height: 44px; }
  nav { gap: 12px 16px; }
  nav a { font-size: 0.78rem; }

  main { padding: 32px 16px 64px; }

  .hero-photo-wrap { max-height: 140px; width: 100%; margin-bottom: 18px; }
  .hero-photo { max-height: 140px; }

  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; margin-top: 1.8em; }
  .tagline { font-size: 0.95rem; }

  .cta { display: block; width: 100%; text-align: center; }

  .result-card { flex-direction: row; align-items: center; gap: 12px; }
  .card-photo { width: 70px; height: 96px; max-height: none; }

  .result-photo { width: 240px; max-width: 100%; }

  .faq-item h2 { font-size: 1.1rem; }

  .photo-slot { padding: 28px 16px; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.45rem; }
  .logo { height: 38px; }
}
