/* No Hungry Child — programme site */
:root {
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --paper: #f6f5f2;
  --white: #ffffff;
  --line: #e4e1db;
  --brand: #c0392b;
  --brand-dark: #9b2c20;
  --brand-soft: #f8e9e6;
  --forest: #1f4d3a;
  --shadow: 0 18px 50px rgba(20, 20, 20, 0.12);
  --radius: 14px;
  --max: 1120px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --header-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.05rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--brand); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 245, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 64px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; }
.brand-text em { font-style: normal; font-size: 0.78rem; color: var(--muted); font-weight: 500; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.site-nav ul {
  display: flex;
  gap: 0.15rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a:hover,
.site-nav a.is-active { color: var(--brand); }
.site-nav a.btn-primary,
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:focus,
.site-nav a.btn-primary:visited {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.site-nav a.btn-primary:hover,
.site-nav a.btn-primary:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 600;
  font-family: inherit;
  font-size: 0.98rem;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-dark); color: #fff; border-color: var(--brand-dark); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--brand-soft); color: var(--brand-dark); border-color: var(--brand-soft); }
.btn-nav { padding: 0.65rem 1.1rem; font-size: 0.9rem; white-space: nowrap; }
.nobreak { white-space: nowrap; }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  gap: 0.45rem;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}
.icon-whatsapp {
  flex-shrink: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(20, 20, 20, 0.22);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}
.whatsapp-float:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { transition: none; }
}

.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #1a1210 center / cover no-repeat;
}
.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  animation: heroIn 1.2s ease-out both;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,12,10,0.35) 0%, rgba(20,12,10,0.72) 55%, rgba(20,12,10,0.9) 100%),
    linear-gradient(90deg, rgba(192,57,43,0.28), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 4.5rem 1.25rem 3.5rem;
}
.hero-brand {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.02;
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
  max-width: 12ch;
  animation: rise 0.8s ease both;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 500;
  margin: 0 0 1rem;
  max-width: none;
  animation: rise 0.9s 0.08s ease both;
}
.hero h1 .nobreak {
  display: inline-block;
  max-width: 100%;
}
.hero-lead {
  max-width: 38rem;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
  margin: 0 0 1.5rem;
  animation: rise 1s 0.14s ease both;
}
.hero .btn-group { animation: rise 1s 0.2s ease both; }

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroIn {
  from { transform: scale(1.08); opacity: 0.7; }
  to { transform: scale(1.02); opacity: 1; }
}

.section {
  padding: 4.5rem 1.25rem;
}
.section-tight { padding: 3rem 1.25rem; }
.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-brand {
  background: var(--brand-soft);
}
.wrap {
  max-width: var(--max);
  margin: 0 auto;
}
.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.75rem;
}
.section-dark .section-kicker { color: #f0b4ab; }
.section h2,
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 42rem;
}
.section-dark .lead { color: rgba(255,255,255,0.84); }

.page-hero {
  padding: 3.5rem 1.25rem 2rem;
  background:
    radial-gradient(circle at top right, rgba(192,57,43,0.12), transparent 40%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero .wrap { max-width: var(--max); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.card p { margin: 0; color: var(--ink-soft); }
.card-soft { background: var(--white); box-shadow: var(--shadow); border: none; }

.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4.2rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.notice {
  border-left: 4px solid var(--brand);
  background: var(--brand-soft);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--ink-soft);
}
.notice strong { color: var(--ink); }

.cta-band {
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1.4fr 1fr;
  background: var(--forest);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  overflow: hidden;
}
.cta-band h2 { margin: 0 0 0.5rem; color: #fff; }
.cta-band p { margin: 0; color: rgba(255,255,255,0.86); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
}
.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-placeholder {
  margin-top: 0.75rem;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background:
    linear-gradient(135deg, rgba(192,57,43,0.06), rgba(20,20,20,0.04)),
    #eee;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 600;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--brand);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--ink-soft);
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 100%;
}
.doc-card .meta {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.doc-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin: 0.35rem 0; }

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.35rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.92rem; }
.form-field .hint { font-size: 0.82rem; color: var(--muted); font-weight: 400; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(192,57,43,0.35);
  border-color: var(--brand);
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.checkbox-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  grid-column: 1 / -1;
}
.checkbox-field input { margin-top: 0.3rem; }
.alert {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.alert-error { background: #fdecea; color: #8a1f14; border: 1px solid #f5c2bc; }
.alert-success { background: #e8f6ef; color: #145a3a; border: 1px solid #b7e0c8; }

.site-footer {
  background: #111;
  color: rgba(255,255,255,0.82);
  padding: 3.5rem 1.25rem 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand img { margin-bottom: 0.85rem; width: 96px; filter: brightness(1.05); }
.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 0.85rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a,
.site-footer .footer-address a,
.footer-legal a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}
.footer-links a:hover,
.site-footer .footer-address a:hover,
.footer-legal a:hover { color: #fff; }
.footer-links li { margin: 0.35rem 0; }
.footer-address { font-style: normal; line-height: 1.7; }

.contact-details {
  font-style: normal;
  line-height: 1.8;
  color: var(--ink-soft);
}
.contact-details a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}
.contact-details a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.founder-split {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.25rem;
}
.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  background: #ddd;
  box-shadow: var(--shadow);
}
.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.footer-legal { display: flex; gap: 1rem; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 0.35rem; }
  .site-nav .btn-nav { width: 100%; margin-top: 0.5rem; }
  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .video-grid,
  .footer-grid,
  .form-grid,
  .cta-band,
  .founder-split {
    grid-template-columns: 1fr;
  }
  .gallery-grid img { height: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
