:root {
  --bg: #000000;
  --bg-alt: #0a0a0a;
  --accent: #35b8f0;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --border: rgba(255, 255, 255, 0.12);
  --max-width: 1180px;
  --font: "Poppins", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- Keyboard focus ---------- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.link-pill:focus-visible,
.lang-btn:focus-visible,
.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 999px;
}

h1, h2, h3 { font-family: var(--font); font-weight: 700; }

.link-pill {
  display: inline-block;
  background: var(--accent);
  color: #001018;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.55em 1.3em;
  border-radius: 999px;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: 0 0 0 0 rgba(53, 184, 240, 0);
}
.link-pill:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px -4px rgba(53, 184, 240, 0.55);
}
.link-pill:active { transform: translateY(0) scale(0.98); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Header (floating island) ---------- */
.site-header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  max-width: 1240px;
  border-radius: 999px;
  background: rgba(12, 14, 18, 0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), top 0.4s var(--ease), width 0.4s var(--ease);
}
.header-inner {
  margin: 0 auto;
  padding: 0.85rem 0.9rem 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  top: 0.75rem;
  width: calc(100% - 3rem);
  background: rgba(8, 9, 12, 0.82);
  box-shadow: 0 16px 44px -10px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Language text crossfade */
[data-i18n] { transition: opacity 0.18s ease; }
[data-i18n].i18n-fade { opacity: 0; }
.logo {
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.logo:hover .logo-mark { transform: scale(1.08) rotate(-4deg); }
.logo:hover .logo-text em { color: #6cd2ff; }
.logo-mark { width: 42px; height: auto; flex-shrink: 0; transition: transform 0.35s var(--ease); }
.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  line-height: 1.3;
  display: block;
  white-space: nowrap;
}
.logo-text em {
  display: block;
  font-style: normal;
  color: var(--accent);
  font-size: 0.78em;
  letter-spacing: 0.14em;
  transition: color 0.35s var(--ease);
}
.logo-text--sm { font-size: 0.6rem; }

.lang-toggle {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.lang-pill {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--accent);
  border-radius: 999px;
  transition: transform 0.4s var(--ease);
}
.lang-toggle:has([data-lang-btn="en"].is-active) .lang-pill {
  transform: translateX(100%);
}
.lang-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.55rem 1.15rem;
  font: inherit;
  font-weight: inherit;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.2s var(--ease);
  border-radius: 999px;
}
.lang-btn:hover:not(.is-active) {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}
.lang-btn:active { transform: scale(0.94); }
.lang-btn.is-active { color: #001018; }
.lang-btn.is-active:hover { transform: scale(1.05); }

@media (max-width: 560px) {
  .site-header { top: 0.75rem; width: calc(100% - 1.5rem); }
  .header-inner { padding: 0.6rem 0.6rem 0.6rem 1rem; gap: 0.75rem; }
  .logo { gap: 0.55rem; }
  .logo-mark { width: 30px; }
  .logo-text { font-size: 0.72rem; letter-spacing: 0.06em; }
  .lang-btn { padding: 0.45rem 0.8rem; }
}

/* ---------- Full-bleed sections ---------- */
.bleed {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  overflow: hidden;
}
@media (max-width: 900px) {
  .bleed { background-attachment: scroll; }
}
.bleed-scrim { position: absolute; inset: 0; pointer-events: none; }
.bleed-scrim--bottom {
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.92) 100%);
}
.bleed-scrim--corner {
  background:
    linear-gradient(115deg, transparent 40%, rgba(0,0,0,0.55) 68%, rgba(0,0,0,0.9) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 30%);
}
.bleed-scrim--center { background: rgba(0, 0, 0, 0.5); }

/* On mobile, tall narrow crops cut band members out of wide group photos.
   Show the full uncropped photo instead, with text flowing below it. */
.mobile-full-photo { display: none; }

@media (max-width: 640px) {
  .hero, .endorsement-bleed, .bio-bleed, .contacto {
    display: block;
    min-height: 0;
    background-image: none !important;
  }
  .hero .bleed-scrim,
  .endorsement-bleed .bleed-scrim,
  .bio-bleed .bleed-scrim,
  .contacto .bleed-scrim {
    display: none;
  }
  .mobile-full-photo {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 5.25rem;
  }
  .hero-content,
  .endorsement-overlay,
  .bio-text,
  .contacto-inner {
    background: var(--bg);
  }
  .contacto-inner { max-width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 92vh;
  align-items: flex-end;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
.hero-headline {
  font-size: clamp(1.2rem, 3.6vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  max-width: 42ch;
  margin: 0;
  line-height: 1.32;
  letter-spacing: 0.01em;
}
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 30px;
  z-index: 1;
}
.scroll-cue-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
}
.scroll-cue-arrow path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.scroll-cue-arrow--1 { animation: cue-chevron 1.6s var(--ease) infinite; }
.scroll-cue-arrow--2 { animation: cue-chevron 1.6s var(--ease) infinite 0.35s; }
@keyframes cue-chevron {
  0%   { opacity: 0;   transform: translateY(-6px); }
  35%  { opacity: 1;   transform: translateY(3px); }
  70%  { opacity: 0.35; transform: translateY(10px); }
  100% { opacity: 0;   transform: translateY(14px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue-arrow { animation: none; opacity: 0.6; }
}
@media (max-width: 640px) {
  .hero-content { padding: 1.75rem 1.25rem 3rem; gap: 1.1rem; }
  .hero-headline { max-width: none; }
}

/* ---------- Endorsement (full bleed) ---------- */
.endorsement-bleed {
  min-height: 78vh;
  align-items: flex-end;
  justify-content: flex-end;
}
.endorsement-overlay {
  position: relative;
  z-index: 1;
  max-width: 480px;
  padding: 2rem 1.5rem 3.5rem;
  margin-right: min(6vw, 6rem);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1rem;
}
.endorsement-overlay p {
  font-size: 1.05rem;
  margin: 0;
}
.endorsement-overlay strong { color: var(--accent); }
.endorsement-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.logo-fundacion { height: 52px; width: auto; }
.logos-divider { width: 1px; height: 40px; background: var(--border); }
.mini-mark-lockup { display: flex; align-items: center; gap: 0.5rem; }
.mini-mark { width: 22px; height: auto; }

@media (max-width: 700px) {
  .endorsement-overlay {
    max-width: 100%;
    margin-right: 0;
    padding: 1.75rem 1.25rem 2.5rem;
    text-align: left;
    align-items: flex-start;
  }
  .endorsement-overlay p { font-size: 0.95rem; }
  .endorsement-logos { flex-wrap: wrap; row-gap: 0.75rem; }
  .logo-fundacion { height: 38px; }
  .logos-divider { height: 30px; }
}

/* ---------- Section shell ---------- */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
.section-dark { background: var(--bg-alt); max-width: none; padding-left: 0; padding-right: 0; }
.section-dark .section-title,
.section-dark .albums-grid { max-width: var(--max-width); margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }

@media (max-width: 640px) {
  .section { padding: 3.5rem 1.25rem; }
  .section-dark .section-title,
  .section-dark .albums-grid { padding-left: 1.25rem; padding-right: 1.25rem; }
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 4rem;
}
.section-title span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.35em;
  color: var(--accent);
  padding-left: 0.35em;
}
.title-mark {
  width: 130px;
  height: auto;
  opacity: 0.16;
}

@media (max-width: 640px) {
  .section-title { margin-bottom: 2.25rem; gap: 0.5rem; }
  .section-title span { font-size: clamp(1.15rem, 6.2vw, 1.8rem); letter-spacing: 0.18em; padding-left: 0.18em; }
  .title-mark { width: 84px; }
}

/* ---------- Nosotros / members (full-bleed photo, title + tags overlaid) ---------- */
.members-bleed {
  display: block;
  min-height: 0;
}
.members-bg-img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 22%;
}
.bleed-scrim--top {
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.25) 30%, transparent 55%);
}
.section-title--overlay {
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 0;
  width: 100%;
  margin: 0;
}
.section-title--overlay .title-mark { width: 100px; opacity: 0.5; }

.member-tag {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(2px);
  white-space: nowrap;
}
.member-tag .member-name { font-weight: 700; font-size: 0.85rem; }
.member-tag .member-instrument { color: var(--accent); font-size: 0.62rem; letter-spacing: 0.07em; text-transform: uppercase; }

.member-tag--tl { left: 3%; top: 24%; }
.member-tag--tr { right: 3%; top: 24%; }
.member-tag--bl { left: 3%; bottom: 10%; }
.member-tag--br { right: 3%; bottom: 10%; }
.member-tag--bc { left: 50%; bottom: 4%; transform: translateX(-50%); }

@media (max-width: 700px) {
  .members-bg-img { aspect-ratio: 3 / 4.6; object-position: center 16%; }
  .section-title--overlay { top: 1.25rem; }
  .section-title--overlay .title-mark { width: 60px; }
  .member-tag { padding: 0.35rem 0.55rem; white-space: normal; max-width: 40%; line-height: 1.25; }
  .member-tag .member-name { font-size: 0.66rem; }
  .member-tag .member-instrument { font-size: 0.5rem; }
  .member-tag--tl, .member-tag--tr { top: 26%; }
  .member-tag--bl, .member-tag--br { bottom: 30%; }
  .member-tag--bc { bottom: 3%; max-width: 48%; }
}
@media (max-width: 420px) {
  .member-tag { padding: 0.3rem 0.45rem; max-width: 44%; }
  .member-tag .member-name { font-size: 0.6rem; }
  .member-tag .member-instrument { font-size: 0.46rem; }
}

/* ---------- Bio (full bleed) ---------- */
.bio-bleed {
  min-height: 62vh;
  align-items: flex-end;
  justify-content: center;
}
.bio-text {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  padding: 2rem 1.5rem 3.5rem;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .bio-text { padding: 1.5rem 1.25rem 2.5rem; font-size: 1rem; }
}

/* ---------- Albums ---------- */
.albums-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
.album-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
.album-art { border-radius: 6px; overflow: hidden; }
.album-art img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.album-card:hover .album-art img { transform: scale(1.06); }
.album-info { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-start; }
.album-info h3 { margin: 0; font-size: 1.6rem; }
.album-info h3 .year { color: var(--text-dim); font-weight: 400; }
.album-sub { margin: 0; color: var(--accent); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.album-desc { margin: 0; color: var(--text-dim); }

@media (min-width: 800px) {
  .album-card { grid-template-columns: 320px 1fr; }
  .album-card--reverse { grid-template-columns: 1fr 320px; }
  .album-card--reverse .album-art { order: 2; }
  .album-card--reverse .album-info { order: 1; align-items: flex-end; text-align: right; }
}
@media (max-width: 640px) {
  .albums-grid { gap: 2.75rem; }
  .album-card { gap: 1.1rem; }
  .album-info h3 { font-size: 1.3rem; }
}

/* ---------- Colaboraciones ---------- */
.collabs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.collab-card {
  margin: 0;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
.collab-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  filter: grayscale(1);
  transform: scale(1.01);
  transition: filter 0.6s var(--ease), transform 0.7s var(--ease);
}
.collab-card:hover img { transform: scale(1.06); }
.collab-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.1rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.9), transparent);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .collabs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .collabs-grid { gap: 1.1rem; }
  .collab-card figcaption { font-size: 0.85rem; padding: 0.85rem; }
}

/* ---------- Videos ---------- */
.videos-layout {
  display: grid;
  grid-template-columns: 1fr;
}
.videos-photo { overflow: hidden; }
.videos-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}
.videos-content {
  padding: 3rem 1.5rem;
}
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.video-card { display: flex; flex-direction: column; gap: 0.7rem; align-items: flex-start; }
.video-card h3 { margin: 0; font-size: 1.15rem; }
.video-composer { margin: 0; color: var(--accent); font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 600; }
.video-desc { margin: 0; color: var(--text-dim); font-size: 0.92rem; }

@media (min-width: 700px) {
  .videos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .videos-photo img { aspect-ratio: 5 / 4; }
  .videos-content { padding: 2rem 1.25rem; }
  .videos-grid { gap: 2rem; }
}
@media (min-width: 1000px) {
  .videos-layout { grid-template-columns: minmax(280px, 34%) 1fr; align-items: stretch; }
  .videos-photo img { aspect-ratio: auto; }
  .videos-content {
    display: flex;
    align-items: center;
    padding: 3rem 1.5rem 3rem 3rem;
    padding-right: max(1.5rem, calc((100vw - var(--max-width)) / 2));
  }
  .videos-content .videos-grid { width: 100%; }
}

/* ---------- Prensa ---------- */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 780px;
  margin: 0 auto;
}
.press-list blockquote {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
}
.press-list blockquote::before {
  content: "\201C";
  position: absolute;
  left: -0.15em;
  top: -0.6em;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
  line-height: 1;
}
.press-list cite {
  display: block;
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.press-list p { margin: 0; color: var(--text-dim); }

@media (max-width: 640px) {
  .press-list { gap: 2.25rem; }
  .press-list blockquote { padding-left: 1.1rem; }
  .press-list blockquote::before { font-size: 2.75rem; left: -0.05em; top: -0.5em; }
}

/* ---------- Revolucionario Filarmonico ---------- */
.filarmonico {
  min-height: 68vh;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.filarmonico-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.filarmonico-content h2 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin: 0;
}
.filarmonico-content p {
  margin: 0;
  font-size: 1.05rem;
}

@media (max-width: 640px) {
  .filarmonico { min-height: 0; }
  .filarmonico-content { padding: 3rem 1.25rem; gap: 1.1rem; }
  .filarmonico-content p { font-size: 0.95rem; }
}

/* ---------- Contacto (full bleed) ---------- */
.contacto {
  min-height: 85vh;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center top;
}
.contacto .bleed-scrim { background: rgba(0, 0, 0, 0.66); }
.contacto-inner {
  position: relative;
  z-index: 1;
  padding: 3rem 1.5rem;
  max-width: 640px;
}
.contacto-fundacion {
  margin: 2rem auto 0;
  opacity: 0.85;
}
@media (max-width: 640px) {
  .contacto { min-height: 0; }
  .contacto-inner { padding: 3.5rem 1.25rem; }
}
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
}
.contact-list a {
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.4s var(--ease), color 0.4s var(--ease);
  padding-bottom: 0.15rem;
  overflow-wrap: anywhere;
}
.contact-list a:hover { color: var(--accent); background-size: 100% 2px; }

@media (max-width: 400px) {
  .contact-list { font-size: 0.95rem; gap: 1.25rem; }
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%) translateY(20px);
  z-index: 200;
  background: rgba(15, 17, 21, 0.95);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 34px -8px rgba(0, 0, 0, 0.6);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  max-width: calc(100% - 2.5rem);
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.toast::before {
  content: "\2713";
  color: var(--accent);
  margin-right: 0.5em;
  font-weight: 800;
}
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.25rem;
  color: var(--text-dim);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer-mark { width: 60px; height: auto; opacity: 0.3; }
.site-footer p { margin: 0; }
