@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600&family=DM+Sans:wght@400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,500;1,6..72,500&family=Spectral:wght@300;400;600&display=swap');

:root {
  --ink: #2f2422;
  --ink-soft: #685653;
  --paper: #faf5e9;
  --paper-deep: #efe5d2;
  --white: #fffdf8;
  --brand: #12403c;
  --brand-soft: #dce8e4;
  --terracotta: #b4552d;
  --terracotta-dark: #8f3f1e;
  --gold: #f1bf00;
  --line: rgba(77, 37, 34, .16);
  --shadow: 0 22px 60px rgba(18, 64, 60, .12);
  --radius: 22px;
  --sans: "DM Sans", system-ui, sans-serif;
  --serif: "Newsreader", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.6; }
a { color: inherit; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--ink); color: white; padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 30; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header-inner { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 42px; background: url('logo-directorio-asociaciones.svg') center / contain no-repeat; }
.brand-copy { display: grid; line-height: 1; }
.brand-name { font-family: 'Spectral', Georgia, serif; font-size: 20px; font-weight: 400; letter-spacing: -.01em; text-transform: lowercase; }
.brand small { margin-top: 5px; color: var(--terracotta); font-family: 'Archivo', var(--sans); font-size: 9px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { text-decoration: none; font-size: 14px; font-weight: 600; }
.nav a:not(.button):hover, .nav a[aria-current="page"] { color: var(--terracotta); }
.menu-button { display: none; border: 0; background: transparent; color: var(--ink); font-weight: 700; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 48px; padding: 0 21px; border: 1px solid var(--brand); border-radius: 999px; background: var(--brand); color: white; font-weight: 700; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); background: #0b312e; }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 13px; }
.button--light { border-color: var(--line); background: var(--white); color: var(--ink); }
.button--light:hover { background: white; }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--terracotta); font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold); }

.site-footer { padding: 65px 0 24px; background: #102723; color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 50px; }
.site-footer .brand-mark { background-image: url('logo-negativo-directorio-asociaciones.svg'); }
.site-footer .brand-name { color: #f4eee4; }
.site-footer .brand small { color: #e08a5b; }
.site-footer p, .site-footer a { color: #9fb2ad; }
.site-footer h3 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .1em; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 8px 0; }
.site-footer a { text-decoration: none; font-size: 13px; }
.site-footer a:hover { color: white; }
.legal { margin-top: 55px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #81958f; font-size: 11px; }

@media (max-width: 860px) {
  .menu-button { display: block; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 70px; padding: 22px; flex-direction: column; align-items: stretch; gap: 15px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .legal { flex-direction: column; gap: 8px; }
}

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