/* ============================================================
   NOMADIC COWORKING STUDIO — style.css
   Tabla de contenidos:
   1. Tokens        2. Base / resets     3. Componentes (badge, btn)
   4. Nav           5. Hero              6. Cifras (stats)
   7. Comunidad     8. Encabezados (shead) 9. Espacios
   10. Beneficios   11. Testimonios      12. Footer
   13. Responsive   14. Print
   ============================================================ */

/* 1 · Tokens */
:root {
  --ink: rgb(24, 18, 8);
  --ink-deep: rgb(48, 36, 14);
  --accent: rgb(184, 140, 50);
  --accent-deep: rgb(148, 110, 35);
  --accent-soft: rgb(205, 165, 80);
  --brown: rgb(92, 72, 40);
  --text-clear: rgb(236, 232, 230);
  --text-mid: rgb(228, 205, 160);
  --text-faint: rgb(214, 206, 190);
  --surface-light: rgb(236, 232, 230);
  --surface-lighter: rgb(244, 241, 240);
  --line: rgba(184, 140, 50, 0.5);
  --line-strong: rgba(184, 140, 50, 0.8);
  --font-sans: Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: Geist, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius: 6px;
  --pad-x: 64px;
  --maxw: 1920px;
}

/* 2 · Base */
* { box-sizing: border-box; }
html:not(.lenis) { scroll-behavior: smooth; } /* nativo solo si Lenis no tomó el control */
body {
  margin: 0;
  background: var(--ink);
  color: var(--text-clear);
  font-family: var(--font-sans);
  overflow-x: hidden;
}
body.lenis-active { scroll-behavior: auto; }
img { max-width: 100%; display: block; }
p { text-wrap: pretty; }
a { color: var(--text-clear); }
a:hover { color: var(--text-mid); }
::selection { background: var(--accent); color: var(--text-clear); }
:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: var(--text-clear);
  padding: 12px 20px; font-family: var(--font-mono); text-transform: uppercase; font-size: 14px;
}
.skip-link:focus { left: 0; }

/* 3 · Componentes */
.badge {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 6px 20px 6px 13px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 16px; line-height: 21px; text-transform: uppercase;
}
.badge__dot { width: 5px; height: 5px; border-radius: 3px; background: var(--accent-soft); flex: none; }
.badge--dark { background: rgba(184, 140, 50, 0.2); box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.3); color: var(--text-clear); }
.badge--light { background: rgba(184, 140, 50, 0.1); box-shadow: inset 0 0 0 1px rgba(228, 205, 160, 0.9); color: var(--brown); }
.badge--light .badge__dot { background: var(--accent); }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  min-height: 44px; padding: 11px 20px; border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 16px; letter-spacing: -0.32px; text-transform: uppercase;
  color: var(--text-clear); text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translate(3px, -1px); }
.btn--solid { background: var(--accent); }
.btn--solid:hover { background: var(--accent-deep); color: var(--text-clear); }
.btn--glass { background: rgba(184, 140, 50, 0.4); backdrop-filter: blur(10px); box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.3); }
.btn--glass:hover { background: var(--accent); color: var(--text-clear); }

.section--mesh { position: relative; overflow: hidden; }
.section--mesh::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/img/mesh-fondo-nomadic.jpg") 50% 50% / cover no-repeat;
}
.section--mesh::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(24, 18, 8, 0.55) 20%, rgba(24, 18, 8, 0.55) 80%, var(--ink) 100%);
}
.section--mesh > * { position: relative; z-index: 1; }

/* 4 · Nav */
.nav {
  position: fixed; left: 0; right: 0; top: 0; z-index: 50;
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 15px var(--pad-x) 0;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav__tag {
  margin: 6px 0 0; font-family: var(--font-mono); font-size: 12.8px; line-height: 15.4px;
  text-transform: uppercase; color: var(--text-clear); opacity: 0.8;
}
.nav__pill {
  display: flex; align-items: center; gap: 2px; padding: 4px;
  border-radius: var(--radius); background: rgba(184, 140, 50, 0.08);
  backdrop-filter: blur(20px); box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.25);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.nav__logo { text-decoration: none; padding: 9px 14px; display: flex; align-items: center; }
.nav__logo-img { width: auto; height: 26px; }
.nav__brand { font-weight: 700; font-size: 17.6px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--text-clear); }
.nav__links { display: flex; gap: 2px; }
.nav__link {
  text-decoration: none; padding: 11px 14px; border-radius: var(--radius);
  font-size: 15px; color: var(--text-mid); transition: background 0.25s ease, color 0.25s ease;
}
.nav__link:hover { background: rgba(184, 140, 50, 0.25); color: var(--text-clear); }
.nav__cta {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 44px; margin-left: 6px; border-radius: var(--radius);
  background: var(--accent); color: var(--text-clear); transition: background 0.3s ease;
}
.nav__cta:hover { background: var(--accent-deep); color: var(--text-clear); }
.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 0 10px; margin-left: 4px; border-radius: var(--radius);
  background: none; border: 0; cursor: pointer; box-sizing: border-box;
}
.nav__burger span { display: block; height: 1px; background: var(--surface-lighter); transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease; }
/* Contraste del nav sobre secciones claras */
.nav__logo-img, .nav__tag, .nav__link { transition: filter 0.35s ease, color 0.35s ease; }
body.nav-on-light .nav__logo-img { filter: invert(1); }
body.nav-on-light .nav__tag { color: var(--brown); }
body.nav-on-light .nav__link { color: var(--brown); }
body.nav-on-light .nav__link:hover { background: rgba(184, 140, 50, 0.2); color: var(--ink); }
body.nav-on-light .nav__pill { background: rgba(244, 241, 240, 0.55); box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.35); }
body.nav-on-light .nav__burger span { background: var(--ink); }

/* 5 · Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  overflow: hidden; padding-top: 96px;
}
.hero__bg { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.6s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__tint { position: absolute; inset: 0; mix-blend-mode: multiply; background: rgba(48, 36, 14, 0.5); opacity: 0.775; }
.hero__grad { position: absolute; inset: 0; mix-blend-mode: multiply; background: linear-gradient(0deg, var(--ink) 8%, rgba(24, 18, 8, 0) 40%, rgba(24, 18, 8, 0) 82%, var(--ink) 100%); }
.hero__badge { position: relative; align-self: flex-start; margin: 48px 0 0 var(--pad-x); z-index: 2; }
.hero__body {
  position: relative; z-index: 2; margin-top: auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 48px var(--pad-x) 72px;
}
.hero__title { margin: 0; text-transform: uppercase; color: var(--text-clear); }
.hero__title-sm { display: block; font-weight: 500; font-size: clamp(30px, 2.8vw, 54px); line-height: 0.9; }
.hero__title-lg { display: block; font-weight: 500; font-size: clamp(48px, 4.6vw, 92px); line-height: 0.9; margin-top: 2px; }
.hero__hl { font-style: normal; color: rgb(205, 165, 80); }
.hero__sub {
  margin: 22px 0 0; max-width: 62ch; font-size: 18px; line-height: 27px;
  text-transform: uppercase; color: var(--text-mid); opacity: 0.85;
}
.hero__actions { display: flex; align-items: center; gap: 32px; margin-top: 36px; }
.hero__alt {
  text-decoration: none; padding-bottom: 4px; border-bottom: 1px dashed rgba(228, 205, 160, 0.4);
  font-weight: 300; font-size: 20px; color: var(--text-faint); transition: color 0.3s ease, border-color 0.3s ease;
}
.hero__alt:hover { color: var(--text-clear); border-bottom-color: var(--text-mid); }
.hero__foot {
  display: flex; justify-content: center; align-items: center; width: 100%;
  margin-top: 64px; border-top: 1px solid var(--line); padding-top: 20px;
  font-family: var(--font-mono); font-size: 16px; line-height: 17.6px; text-transform: uppercase; color: var(--text-mid);
}

/* 6 · Cifras */
.stats { padding: 96px var(--pad-x); }
.stats__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.stats__card {
  border-radius: var(--radius); background: rgba(244, 241, 240, 0.12);
  backdrop-filter: blur(15px); box-shadow: inset 0 0 0 1px rgba(244, 241, 240, 0.2);
  padding: 33px; display: flex; flex-direction: column; min-height: 346px;
}
.stats__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.stats__num { font-weight: 200; font-size: clamp(64px, 6vw, 108px); line-height: 1; color: var(--text-clear); }
.stats__label { font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; color: var(--text-clear); margin-top: 80px; }
.stats__rule { border: 0; height: 1px; background: rgba(244, 241, 240, 0.24); margin: 24px 0; width: 100%; }
.stats__bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: auto; }
.stats__bottom p { margin: 0; max-width: 52ch; font-weight: 300; font-size: 18px; line-height: 27px; color: var(--text-faint); }
.stats__thumb { margin: 0; flex: none; border-radius: var(--radius); overflow: hidden; }
.stats__thumb img { width: 154px; height: 96px; object-fit: cover; }

/* 7 · Comunidad */
.community { position: relative; background: var(--ink-deep); padding: 96px 0 112px; overflow: hidden; }
.community::before {
  content: ""; position: absolute; inset: 0;
  background: url("assets/img/mesh-fondo-nomadic.jpg") 50% 50% / cover no-repeat;
}
.community::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(24, 18, 8, 0.4) 100%);
}
.community__marquee, .community__body { position: relative; z-index: 1; }
.community__marquee { overflow: hidden; }
.community__track { display: flex; gap: 16px; width: max-content; }
.community__track img { border-radius: var(--radius); object-fit: cover; width: 520px; height: 340px; }
.community__body {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin-top: 80px; padding: 0 var(--pad-x);
}
.community__title {
  margin: 32px 0 0; font-weight: 500; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1;
  text-transform: uppercase; color: var(--text-clear); max-width: 24ch; text-wrap: balance;
}
.community__body .btn { margin-top: 44px; }

/* 8 · Encabezados de sección */
.shead { color: var(--brown); }
.shead__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; margin-top: 32px; }
.shead__title { margin: 0; font-weight: 500; font-size: clamp(28px, 2.6vw, 40px); line-height: 1; letter-spacing: -0.8px; text-transform: uppercase; max-width: 24ch; }
.shead__aside { font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; }
.shead__rule { border: 0; height: 1px; width: 100%; background: var(--line-strong); margin: 28px 0 16px; transform-origin: left center; }
.shead__sub { margin: 0; max-width: 52ch; font-size: 18px; line-height: 27px; text-transform: uppercase; opacity: 0.85; }
.shead--dark { color: var(--text-clear); }

/* 9 · Espacios */
.spaces { background: var(--surface-light); padding: 128px var(--pad-x); }
.spaces__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 56px; }
.space {
  position: relative; display: block; text-decoration: none;
  border-radius: var(--radius); overflow: hidden; min-height: 480px; background: var(--accent);
}
.space__media { position: absolute; inset: 0; margin: 0; overflow: hidden; }
.space__media img { width: 100%; height: 100%; object-fit: cover; }
.space::after {
  content: ""; position: absolute; inset: 0; mix-blend-mode: multiply;
  background: linear-gradient(180deg, rgba(24, 18, 8, 0) 30%, var(--ink) 85%);
}
.space__head {
  position: absolute; left: 16px; right: 16px; bottom: 86px; z-index: 1;
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 1px solid rgba(228, 205, 160, 0.4); padding-bottom: 14px;
}
.space__name { font-weight: 400; font-size: 32px; line-height: 38.4px; color: var(--text-mid); }
.space__num { font-family: var(--font-mono); font-size: 16px; color: var(--text-mid); }
.space__btn { position: absolute; left: 16px; bottom: 16px; z-index: 1; }
.space--wide { grid-column: 1 / -1; }
.space__sub { font-size: 16px; color: var(--text-mid); opacity: 0.8; margin-left: 12px; }

/* 9b · Tabs de espacios */
.tabs { margin-top: 56px; }
.tabs__nav { display: flex; flex-wrap: wrap; gap: 8px; }
.tabs__tab {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  min-height: 44px; padding: 11px 20px; border: 0; border-radius: var(--radius);
  background: rgba(184, 140, 50, 0.1); box-shadow: inset 0 0 0 1px rgba(228, 205, 160, 0.9);
  font-family: var(--font-mono); font-size: 16px; letter-spacing: -0.32px; text-transform: uppercase;
  color: var(--brown); transition: background 0.3s ease, color 0.3s ease;
}
.tabs__tab:hover { background: rgba(184, 140, 50, 0.25); }
.tabs__tab.is-active { background: var(--accent); color: var(--text-clear); box-shadow: none; }
.tabs__num { opacity: 0.6; }
.tabs__panel {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 48px;
  align-items: stretch; margin-top: 24px;
}
.tabs__panel[hidden] { display: none; }
.tabs__media { margin: 0; border-radius: var(--radius); overflow: hidden; height: 560px; }
.tabs__media img { width: 100%; height: 100%; object-fit: cover; }
.tabs__info { display: flex; flex-direction: column; align-items: flex-start; padding: 16px 0; }
.tabs__kicker { font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; color: var(--accent); }
.tabs__name { margin: 14px 0 0; font-weight: 500; font-size: clamp(28px, 2.4vw, 40px); line-height: 1; letter-spacing: -0.8px; text-transform: uppercase; color: var(--brown); }
.tabs__desc { margin: 20px 0 0; font-size: 18px; line-height: 28px; color: var(--brown); opacity: 0.85; max-width: 48ch; }
.tabs__feats { list-style: none; margin: 28px 0 36px; padding: 0; width: 100%; }
.tabs__feats li { border-top: 1px solid rgba(184, 140, 50, 0.4); padding: 14px 0; font-size: 17px; color: var(--brown); }
.tabs__feats li:last-child { border-bottom: 1px solid rgba(184, 140, 50, 0.4); }
.tabs__info .btn { margin-top: auto; }

/* 10 · Beneficios */
.benefits { background: var(--surface-lighter); padding: 128px var(--pad-x); }
.benefits__media { margin: 48px 0 0; border-radius: var(--radius); overflow: hidden; }
.benefits__media img { width: 100%; height: 640px; object-fit: cover; }
.benefits__list {
  list-style: none; margin: 16px 0 0; padding: 48px 32px;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px 32px;
  background: var(--surface-light); border-radius: var(--radius);
}
.benefits__item { display: flex; flex-direction: column; gap: 14px; }
.benefits__item::after { content: ""; order: 2; }
.benefits__num { font-family: var(--font-mono); font-size: 16px; color: var(--accent); order: 1; }
.benefits__num::after { content: ""; display: block; height: 1px; background: var(--ink); margin-top: 14px; }
.benefits__name { font-weight: 500; font-size: 24px; line-height: 1.25; color: var(--brown); order: 3; }

/* 10b · FAQ */
.faq { background: var(--surface-light); padding: 128px var(--pad-x); }
.faq__list { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  border-radius: var(--radius); background: var(--surface-lighter);
  box-shadow: inset 0 0 0 1px rgba(228, 205, 160, 0.9);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.faq__item:hover { box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.6); }
.faq__item[open] { background: rgb(250, 248, 245); box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.6); }
.faq__q {
  display: flex; align-items: baseline; gap: 24px; cursor: pointer; list-style: none;
  padding: 24px 28px; font-weight: 500; font-size: clamp(19px, 1.5vw, 24px); color: var(--brown);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__num { font-family: var(--font-mono); font-size: 16px; color: var(--accent); flex: none; }
.faq__text { flex: 1; }
.faq__icon { position: relative; width: 16px; height: 16px; flex: none; align-self: center; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 0; top: 7px; width: 16px; height: 2px;
  background: var(--accent); transition: transform 0.3s ease;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item[open] .faq__icon::after { transform: rotate(0deg); }
.faq__a { margin: 0; padding: 0 28px 26px 68px; max-width: 75ch; font-size: 18px; line-height: 28px; color: var(--brown); opacity: 0.85; overflow: hidden; }
.faq__more { margin: 40px 0 0; font-size: 17px; color: var(--brown); }
.faq__more a { color: var(--accent); }

/* 11 · Testimonios */
.voices { background: var(--ink); padding: 128px var(--pad-x); }
.voices__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 56px; }
.voice {
  margin: 0; border-radius: var(--radius); background: rgba(244, 241, 240, 0.12);
  backdrop-filter: blur(15px); box-shadow: inset 0 0 0 1px rgba(244, 241, 240, 0.2);
  padding: 33px; display: flex; flex-direction: column; gap: 28px;
}
.voice__quote { margin: 0; font-weight: 300; font-size: 20px; line-height: 32px; color: var(--text-faint); }
.voice__who { display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(244, 241, 240, 0.24); padding-top: 24px; margin-top: auto; }
.voice__avatar {
  display: flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: var(--radius); background: var(--accent);
  font-family: var(--font-mono); font-size: 16px; color: var(--text-clear); flex: none;
}
.voice__meta { display: flex; flex-direction: column; gap: 2px; font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; color: var(--text-clear); }
.voice__org { font-size: 13px; color: var(--text-faint); opacity: 0.72; }
.voices__cta { display: flex; flex-direction: column; align-items: center; text-align: center; margin-top: 112px; }
.voices__kicker { font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; color: var(--text-mid); }
.voices__title {
  margin: 20px 0 0; font-weight: 500; font-size: clamp(28px, 2.6vw, 40px); line-height: 1.1;
  text-transform: uppercase; color: var(--text-clear); max-width: 22ch; text-wrap: balance;
}
.voices__cta .btn { margin-top: 44px; }

/* 12 · Footer */
.footer { position: relative; border-top: 1px solid rgb(112, 86, 32); overflow: hidden; }
.footer__bg {
  position: absolute; inset: 0;
  background: url("assets/img/oficina-ejecutiva-nomadic-torreon.jpg") 50% 50% / cover no-repeat;
}
.footer__bg::after {
  content: ""; position: absolute; inset: 0; mix-blend-mode: multiply; opacity: 0.9;
  background: linear-gradient(180deg, rgba(24, 18, 8, 0) 0%, var(--ink) 100%), linear-gradient(rgba(184, 140, 50, 0.8), rgba(184, 140, 50, 0.8));
}
.footer > :not(.footer__bg) { position: relative; z-index: 1; }
.footer__panels { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; padding: 16px var(--pad-x) 0; }
.footer__panel { border-radius: var(--radius); padding: 30px 32px 32px; }
.footer__panel--dark { background: rgba(48, 36, 14, 0.3); }
.footer__panel--rust { background: rgba(184, 140, 50, 0.5); }
.footer__kicker { font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; color: var(--text-clear); }
.footer__rule { border: 0; height: 1px; background: rgba(228, 205, 160, 0.3); margin: 16px 0 56px; }
.footer__links-big { margin: 0; display: flex; align-items: baseline; gap: 24px; flex-wrap: wrap; }
.footer__links-big a {
  text-decoration: none; font-weight: 300; font-size: clamp(24px, 1.8vw, 32px); line-height: 1.4;
  color: var(--text-faint); border-bottom: 1px dashed rgba(228, 205, 160, 0.4);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer__links-big a:hover { color: var(--text-clear); border-bottom-color: var(--text-mid); }
.footer__or { font-family: var(--font-mono); font-size: 16px; text-transform: uppercase; }
.footer__address { font-style: normal; font-weight: 300; font-size: clamp(20px, 1.4vw, 24px); line-height: 1.4; color: var(--text-faint); }
.footer__address a { color: var(--text-faint); text-decoration: none; }
.footer__nav-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 48px; padding: 64px var(--pad-x) 0; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: flex-start; gap: 48px; }
.footer__logo { font-weight: 700; font-size: 17.6px; letter-spacing: 1.6px; text-transform: uppercase; }
.footer__logo-img { width: auto; height: 34px; }
.footer__tag { font-family: var(--font-mono); font-size: 12.8px; line-height: 15.4px; text-transform: uppercase; color: var(--text-faint); }
.footer__nav { display: grid; grid-template-columns: repeat(2, auto); gap: 10px 48px; font-size: 15px; }
.footer__nav a { text-decoration: none; color: var(--text-mid); transition: color 0.25s ease; }
.footer__nav a:hover { color: var(--text-clear); }
.footer__social { display: flex; gap: 20px; }
.footer__social a { color: var(--text-clear); opacity: 0.7; transition: opacity 0.25s ease; }
.footer__social a:hover { opacity: 1; }
.footer__bar {
  margin: 56px var(--pad-x) 0; border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 24px 32px;
  font-family: var(--font-mono); font-size: 16px; text-transform: uppercase;
}
.footer__legal {
  margin: 16px var(--pad-x) 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-size: 11.2px; line-height: 20.8px; text-transform: uppercase;
}
.footer__legal > * { opacity: 0.7; }
.footer__legal a { color: var(--text-clear); text-decoration: none; }
.footer__legal a:hover { opacity: 1; }

/* 13 · Responsive */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; }
  .stats__grid, .spaces__grid, .voices__grid, .footer__panels, .tabs__panel { grid-template-columns: 1fr; }
  .tabs__media { height: 340px; }
  .benefits__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav__tag { display: none; }
}
@media (max-width: 760px) {
  :root { --pad-x: 20px; }
  .nav { padding-top: 10px; }
  .nav__links {
    position: absolute; top: 64px; right: 0; left: 0;
    flex-direction: column; padding: 12px;
    background: rgba(24, 18, 8, 0.96); backdrop-filter: blur(20px);
    border-radius: var(--radius); box-shadow: inset 0 0 0 1px rgba(184, 140, 50, 0.3);
    display: none;
  }
  .nav__pill { position: relative; flex: 1; justify-content: flex-start; }
  .nav__pill .nav__logo { margin-right: auto; }
  .nav__pill.is-open .nav__links { display: flex; }
  .nav__burger { display: flex; }
  .nav__cta { width: 40px; height: 36px; margin-left: 4px; }
  .nav__cta svg { width: 15px; height: 15px; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero__actions { flex-direction: column; gap: 20px; }
  .hero__foot { flex-direction: column; gap: 8px; align-items: flex-start; }
  .benefits__list { grid-template-columns: 1fr; }
  .benefits__media img { height: 380px; }
  .community__track img { width: 320px; height: 210px; }
  .stats__label { margin-top: 24px; }
  .stats__bottom { flex-direction: column; align-items: flex-start; }
  .footer__bar, .footer__legal { flex-direction: column; align-items: flex-start; }
}

/* 15 · Página legal */
.page-legal { background: var(--ink); }
.legal__top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px var(--pad-x); border-bottom: 1px solid var(--line);
}
.legal__back { text-decoration: none; font-family: var(--font-mono); font-size: 15px; text-transform: uppercase; color: var(--text-mid); }
.legal__back:hover { color: var(--text-clear); }
.legal__logo { width: auto; height: 28px; }
.legal { max-width: 880px; margin: 0 auto; padding: 80px var(--pad-x) 96px; }
.legal__section { margin-top: 56px; }
.legal__section h2 { font-weight: 500; font-size: 22px; letter-spacing: -0.4px; text-transform: uppercase; color: var(--text-clear); margin: 0 0 16px; }
.legal__section p, .legal__section li { font-size: 17px; line-height: 28px; color: var(--text-faint); }
.legal__section a { color: rgb(205, 165, 80); }
.legal__note { font-size: 14px; opacity: 0.7; }
.legal__card { width: 100%; border-collapse: collapse; margin-top: 8px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.legal__card th, .legal__card td { text-align: left; padding: 14px 18px; border-bottom: 1px solid rgba(184, 140, 50, 0.25); font-size: 16px; }
.legal__card tr:last-child th, .legal__card tr:last-child td { border-bottom: 0; }
.legal__card th { font-family: var(--font-mono); font-weight: 400; text-transform: uppercase; font-size: 13px; color: var(--text-mid); width: 220px; vertical-align: top; }
.legal__card td { color: var(--text-clear); }
.legal__foot {
  display: flex; justify-content: space-between; gap: 24px; max-width: 880px; margin: 0 auto;
  padding: 24px var(--pad-x) 40px; border-top: 1px solid var(--line);
  font-size: 12px; text-transform: uppercase; color: var(--text-faint);
}
.legal__foot a { color: var(--text-faint); text-decoration: none; }
@media print {
  .page-legal { background: #fff; }
  .legal__section p, .legal__section li, .legal__card td { color: #000; }
  .legal__section h2, .legal__card th { color: #000; }
  .legal__top, .legal__foot { display: none !important; }
}

/* 14 · Print */
@media print {
  body { background: #fff; color: #000; }
  .nav, .btn, .nav__cta, .community__marquee, .footer__bar { display: none !important; }
}
