:root {
  --black: #141414;
  --black-deep: #000000;
  --gold: #d8aa34;
  --gold-dark: #b8891f;
  --gold-light: #f0d896;
  --cream: #faf6ec;
  --white: #ffffff;
  --text: #2a2620;
  --text-soft: #6b6558;
  --max-w: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: "Exo 2", "Segoe UI", system-ui, sans-serif;
  color: var(--black);
  line-height: 1.2;
  margin: 0 0 .6em;
}

p { margin: 0 0 1em; }

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: var(--gold-dark); }

/* Top bar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 10px 24px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.logo-img {
  height: 118px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 3px 10px rgba(20,20,20,.18));
}

/* Main nav */
.main-nav {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-weight: 700;
  font-size: .92rem;
  color: var(--text);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.main-nav a:hover {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}
@media (max-width: 640px) {
  .main-nav { order: 3; width: 100%; gap: 16px; justify-content: center; padding-top: 8px; }
}

/* Language switch */
.lang-switch {
  flex: none;
  display: flex;
  gap: 6px;
  background: var(--cream);
  border: 1px solid #eee2c6;
  border-radius: 999px;
  padding: 4px;
}
.lang-btn {
  font-family: inherit;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .03em;
  border: none;
  background: transparent;
  color: var(--text-soft);
  padding: 8px 14px;
  min-height: 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-btn:hover { color: var(--black); }
.lang-btn.active {
  background: var(--black);
  color: var(--gold-light);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  padding: 56px 0 48px;
  text-align: center;
}
.badge {
  display: inline-block;
  background: var(--black);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: 2.1rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero .lead {
  max-width: 640px;
  margin: 0 auto 8px;
  font-size: 1.08rem;
  color: var(--text-soft);
}
.hero .stat {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: .95rem;
  color: var(--text-soft);
  border-top: 1px solid #eee2c6;
  padding-top: 18px;
}

/* Founders photo block */
.founders {
  padding: 0 0 8px;
}
.founders img {
  display: block;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: 14px;
}
.founders .caption {
  text-align: center;
  font-size: .92rem;
  color: var(--text-soft);
  margin-top: 14px;
}
.founders .photo-credit {
  text-align: center;
  font-size: .82rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 6px;
}

/* Media strip */
.media-strip {
  padding: 28px 24px 40px;
  text-align: center;
}
.media-strip-label {
  max-width: 600px;
  margin: 0 auto 18px;
  font-size: .95rem;
  color: var(--text-soft);
  font-style: italic;
}
.media-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.media-list li a,
.media-list li span {
  display: inline-block;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .02em;
  color: var(--black);
  background: var(--cream);
  border: 1px solid #eee2c6;
  border-radius: 999px;
  padding: 8px 16px;
  text-decoration: none;
}
.media-list li a {
  color: var(--gold-dark);
  transition: background .15s ease, color .15s ease;
}
.media-list li a:hover {
  background: var(--black);
  color: var(--gold-light);
}

/* Sections */
section.block {
  padding: 44px 0;
}
section.block.alt {
  background: var(--cream);
}
section.block h2 {
  font-size: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}
section.block h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 2px;
}

/* How it works */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 16px;
}
.steps li {
  counter-increment: step;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid #eee2c6;
  border-radius: 12px;
  padding: 16px 18px;
}
section.block.alt .steps li { background: var(--white); }
.steps li::before {
  content: counter(step);
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black-deep);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.steps li p { margin: 0; padding-top: 4px; }

/* Why buy list */
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.why-list li .dot {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black-deep);
  font-weight: 800;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.why-list strong { color: var(--black); }

/* Gallery */
.gallery-intro {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.gallery-embed { min-height: 120px; }
.gallery-caption {
  text-align: center;
  font-size: .85rem;
  color: var(--text-soft);
  margin-top: 10px;
  font-style: italic;
}

/* Facebook widget */
.fb-intro {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.fb-card {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #eee2c6;
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.fb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20,20,20,.08);
}
.fb-card-icon {
  flex: none;
  width: 40px;
  height: 40px;
}
.fb-card-icon svg { width: 100%; height: 100%; }
.fb-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.fb-card-title {
  font-weight: 700;
  color: var(--black);
  font-size: .98rem;
}
.fb-card-sub {
  font-size: .85rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Shelters list (fb-card grid) */
.shelters-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.shelters-list .fb-card { margin: 0; }

/* Our projects */
.projects-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.projects-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
}
.projects-list img {
  max-height: 58px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
  filter: grayscale(40%);
  opacity: .85;
  transition: filter .15s ease, opacity .15s ease, transform .15s ease;
}
.projects-list a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-1px);
}
.projects-list li.self { height: auto; }
.project-self {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.project-self-logo {
  max-height: 58px;
  max-width: 150px;
  width: auto;
  height: auto;
  display: block;
}
.project-self-badge {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--cream);
  border: 1px solid #eee2c6;
  color: var(--gold-dark);
  padding: 3px 10px;
  border-radius: 999px;
}

/* CTA */
.cta {
  background: var(--black);
  color: #f4ede0;
  text-align: center;
  padding: 52px 24px;
}
.cta h2 { color: var(--white); }
.cta p { color: #cfc6b3; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta .btn {
  display: inline-block;
  margin-top: 12px;
  background: var(--gold);
  color: var(--black-deep);
  font-weight: 700;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  transition: background .15s ease;
}
.cta .btn:hover { background: var(--gold-light); }

/* Footer */
footer {
  padding: 28px 24px 36px;
  text-align: center;
  font-size: .85rem;
  color: var(--text-soft);
}
footer a { color: var(--text-soft); text-decoration: underline; }
footer .foot-brand { color: var(--black); font-weight: 700; margin-bottom: 4px; }

@media (max-width: 768px) {
  .hero { padding: 40px 0 36px; }
  .hero h1 { font-size: 1.75rem; }
  .hero .lead { font-size: 1rem; }
  section.block { padding: 36px 0; }
  section.block h2 { font-size: 1.3rem; }
  .founders img { border-radius: 0; }
  .cta { padding: 40px 20px; }
}

@media (max-width: 560px) {
  .wrap { padding: 0 18px; }
  .topbar { padding: 10px 16px; }
  .logo-img { height: 64px; }
  .lang-btn { padding: 8px 12px; font-size: .8rem; }
  .badge { font-size: .72rem; padding: 6px 12px; }
  .hero h1 { font-size: 1.45rem; }
  .hero .lead { font-size: .95rem; }
  .hero .stat { font-size: .88rem; }
  .steps li { padding: 14px; gap: 12px; }
  .why-list li { gap: 10px; }
  .cta .btn { width: 100%; }
}

@media (max-width: 380px) {
  .topbar { flex-direction: column; gap: 8px; }
  .logo-img { height: 56px; }
}
