/*
Theme Name: Fundación FASS
Theme URI: https://fundacionanimalshelterstandards.org
Author: Fundación FASS
Description: Landing page institucional de la Fundación FASS (Fundación para el Bienestar Animal / Animal Shelter Standards). Tema estático de una sola página basado en el diseño aprobado.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: fass-landing
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a18;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* VARIABLES */
:root {
  --gold: #A08B5B;
  --gold-dark: #7A6840;
  --gold-light: #F7F4EE;
  --gold-border: #D4C49A;
  --text: #1a1a18;
  --text-mid: #4a4a46;
  --text-muted: #7a7a74;
  --border: #e8e4da;
}

/* LAYOUT */
.wrap { max-width: 900px; margin: 0 auto; padding: 0 2.5rem; }

/* NAV */
nav {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
nav .wrap { display: flex; align-items: center; }
nav img { height: 160px; width: auto; }

/* HERO */
.hero {
  padding: 5rem 0 4.5rem;
  border-bottom: 1px solid var(--border);
}
.hero h1 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 680px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

/* SECTIONS */
section { padding: 4.5rem 0; border-bottom: 1px solid var(--border); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 580px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* MISSION */
.mission-text {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 740px;
  font-weight: 300;
}

/* METHOD GRID */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.method-module {
  padding: 2rem 2rem 2rem 0;
  border-top: 2px solid var(--gold);
}
.method-module + .method-module {
  padding-left: 2rem;
  border-left: 1px solid var(--border);
}
.method-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.method-module h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.method-module p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* INITIATIVES */
.init-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.init-card {
  background: var(--gold-light);
  border-radius: 4px;
  padding: 1.75rem;
  border-top: 3px solid var(--gold);
}
.init-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.init-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.85rem;
  line-height: 1.35;
}
.init-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-mid);
}

/* VISION */
.vision-text {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.8;
  color: var(--text);
  max-width: 740px;
  font-weight: 300;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
}

/* CONTACT */
.contact { padding: 5.5rem 0 4rem; text-align: center; border-bottom: 1px solid var(--border); }
.contact h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.contact-guide {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}
.btn {
  display: inline-block;
  background: var(--gold);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem 3rem;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.btn:hover { background: var(--gold-dark); }
.contact-info {
  margin-top: 2rem;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-info a {
  color: var(--gold);
  text-decoration: none;
}
.contact-info a:hover { text-decoration: underline; }
.context-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* FOOTER */
footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .wrap { padding: 0 1.5rem; }
  nav { padding: 1.5rem 0; }
  nav img { height: 120px; }
  .hero { padding: 3rem 0 2.5rem; }
  section { padding: 3rem 0; }
  .method-grid { grid-template-columns: 1fr; gap: 2rem; }
  .method-module { padding: 1.5rem 0 0 0 !important; border-left: none !important; }
  .init-grid { grid-template-columns: 1fr; }
  .contact { padding: 3.5rem 0 2.5rem; }
  .vision-text { padding-left: 1.25rem; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 1.25rem; }
  nav img { height: 100px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
