/* HARU OS — haruos.com */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0A0A0A;
  --cream: #F5F0E8;
  --red: #C8102E;
  --red-deep: #9d0c24;
  --gray: #141414;
  --gray2: #1E1E1E;
  --gray3: #2a2a2a;
  --muted: #6b6b6b;
  --muted2: #9a958c;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ──────────────────────────────────────────
   NAVIGATION
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,240,232,0.07);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 26px;
  width: auto;
  display: block;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-center a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--cream); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ↓'; font-size: 0.6rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.2rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray);
  border: 1px solid rgba(245,240,232,0.1);
  min-width: 180px;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
}

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  background: var(--red);
  padding: 0.65rem 1.4rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.82; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 6vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--cream);
  transition: color 0.2s;
  text-align: center;
  max-width: 100%;
  padding: 0 1.5rem;
}
.nav-overlay a:hover { color: var(--red); }
.nav-overlay-close {
  position: absolute;
  top: 1.4rem; right: 3rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-body);
}

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  padding: 0 3rem 5rem;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.45) 50%,
    rgba(10,10,10,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: min(960px, 100%);
  min-width: 0;
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(5rem, 11vw, 10.5rem);
  line-height: 0.88;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.6rem;
  overflow-wrap: break-word;
  max-width: 100%;
}
.hero-logo-img {
  width: min(44vw, 440px);
  height: auto;
  display: block;
}
.hero-logo-short {
  width: min(28vw, 260px);
}
@media (max-width: 900px) {
  .hero-logo-img { width: min(65vw, 340px); }
  .hero-logo-short { width: min(48vw, 220px); }
}

.hero-tagline {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  color: rgba(245,240,232,0.65);
  max-width: 440px;
  line-height: 1.6;
  margin-bottom: 2.75rem;
}

/* Short hero (interior pages) */
.hero-short {
  height: 42vh;
  min-height: 340px;
  padding-bottom: 3.5rem;
}

/* Page header — interior pages (no photo) */
.page-header {
  padding: 9rem 3rem 5rem;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  max-width: 100%;
  overflow: hidden;
}
.page-header .hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.0;
  margin-bottom: 1rem;
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.25rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.btn:hover { opacity: 0.82; }
.btn-red { background: var(--red); color: var(--cream); }
.btn-red:hover { background: var(--red-deep); opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,232,0.45);
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--black);
  opacity: 1;
}

/* ──────────────────────────────────────────
   SECTIONS
────────────────────────────────────────── */
section { padding: 5.5rem 3rem; }

.section-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.7vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 3.5rem;
}

.rule { width: calc(100% - 6rem); height: 1px; background: rgba(245,240,232,0.07); margin: 0 3rem; }

/* ──────────────────────────────────────────
   SHOWS GRID
────────────────────────────────────────── */
.shows-section { background: var(--gray); }

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

/* ── Show card — nuevo diseño editorial ── */
.show-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray2);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: var(--cream);
}
.show-card__flyer {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}
.show-card:hover .show-card__flyer { transform: scale(1.04); }

/* Meta: venue (top-left) + date chip (top-right) */
.show-card__meta {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}
.show-card__venue-top {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}
.show-card__date-chip {
  background: var(--red);
  padding: 5px 8px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}
.show-card__date-chip .d {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.show-card__date-chip .m {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Overlay — siempre visible, gradiente abajo */
.show-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0)    58%,
    rgba(10,10,10,0.72) 78%,
    rgba(10,10,10,0.96) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
  padding: 12px 14px;
  z-index: 1;
}
.show-card__city {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted2);
}
.show-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
  margin: 0;
  max-width: 90%;
}
.show-card__ticket {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  padding: 6px 11px;
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 2px;
  transition: background 0.2s, transform 0.2s, opacity 0.25s;
}
.show-card:hover .show-card__ticket { background: var(--red-deep); transform: translateY(-1px); }

/* En desktop (con hover real): botón oculto hasta hover del card */
@media (hover: hover) {
  .show-card__ticket { opacity: 0; transform: translateY(4px); }
  .show-card:hover .show-card__ticket { opacity: 1; transform: translateY(-1px); }
}

/* Estado vacío */
.shows-empty {
  border: 1px dashed var(--gray3);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  grid-column: 1 / -1;
  color: var(--muted);
}
.shows-empty__icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gray3);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted2);
}
.shows-empty__copy {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.shows-empty__sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ──────────────────────────────────────────
   SERVICES
────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--gray);
  padding: 2.75rem 2.5rem;
  border-top: 3px solid var(--red);
  transition: background 0.25s;
}
.service-card:hover { background: var(--gray2); }
.service-icon { font-size: 1.5rem; margin-bottom: 1.25rem; }
.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.service-desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.75;
}

/* ──────────────────────────────────────────
   FORM SECTION
────────────────────────────────────────── */
.form-section {
  background: var(--gray);
  text-align: center;
}
.form-section .section-title { margin-bottom: 0.5rem; }
.form-section .section-subtitle { margin-bottom: 2.75rem; }

/* ──────────────────────────────────────────
   DOWNLOADS
────────────────────────────────────────── */
.downloads-section { background: var(--black); }
.downloads-row {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.download-card {
  flex: 1;
  min-width: 220px;
  background: var(--gray);
  padding: 2.25rem;
  border-bottom: 3px solid var(--red);
}
.download-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.download-card p {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

/* ──────────────────────────────────────────
   BIO
────────────────────────────────────────── */
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.bio-text p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.95;
  margin-bottom: 1.5rem;
}
.bio-photo {
  position: sticky;
  top: 6rem;
}
.bio-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

/* ──────────────────────────────────────────
   PROJECTS
────────────────────────────────────────── */
.projects-section { background: var(--gray); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.project-card {
  background: var(--black);
  padding: 2.25rem;
  border-left: 3px solid var(--red);
}
.project-year {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.project-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.project-desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.project-link {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  transition: color 0.2s;
}
.project-link:hover { color: var(--cream); }
.project-link::after { content: ' →'; }

/* ──────────────────────────────────────────
   GALLERY
────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  background: var(--gray2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-download {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid var(--cream);
  padding: 0.65rem 1.35rem;
  transition: background 0.2s, color 0.2s;
}
.gallery-download:hover { background: var(--cream); color: var(--black); }

/* ──────────────────────────────────────────
   MUSIC
────────────────────────────────────────── */
.music-section { background: var(--gray); }
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.music-embed { overflow: hidden; }
.music-embed-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 0.75rem;
}
.music-embed iframe { width: 100%; border: none; display: block; }

/* ──────────────────────────────────────────
   FORM EMBED
────────────────────────────────────────── */
.form-embed-wrapper {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  background: var(--black);
  border: 1px solid rgba(245,240,232,0.08);
}
.form-embed-wrapper iframe {
  width: 100%;
  height: 780px;
  border: none;
  display: block;
  filter: invert(1) hue-rotate(180deg);
}

/* ──────────────────────────────────────────
   TOOLKIT EMBED
────────────────────────────────────────── */
.toolkit-embed-wrapper {
  width: 100%;
  background: var(--black);
}
.toolkit-embed-wrapper iframe {
  width: 100%;
  height: calc(100vh - 80px);
  min-height: 600px;
  border: none;
  display: block;
}

/* ──────────────────────────────────────────
   MARQUEE
────────────────────────────────────────── */
.marquee {
  border-top: 1px solid rgba(245,240,232,0.07);
  border-bottom: 1px solid rgba(245,240,232,0.07);
  overflow: hidden;
  padding: 18px 0;
  background: var(--black);
}
.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marq 18s linear infinite;
  -webkit-animation: marq 18s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}
.marquee__set {
  display: flex;
  flex-shrink: 0;
  gap: 52px;
  padding-right: 52px;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.01em;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 52px;
  flex-shrink: 0;
}
.marquee__item::after {
  content: "✺";
  color: var(--red);
  font-size: 1.4rem;
  display: inline-block;
  transform: translateY(-3px);
}
@keyframes marq {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ──────────────────────────────────────────
   ABOUT TEASER (index.html)
────────────────────────────────────────── */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-teaser__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray2);
}
.about-teaser__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.55s cubic-bezier(.2,.7,.2,1);
}
.about-teaser__photo:hover img { transform: scale(1.03); }
.about-teaser__eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.about-teaser__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.5vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.about-teaser__body {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.25rem;
}
.about-teaser__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sobre-haru-section {
  padding: 5.5rem 3rem;
}

/* ──────────────────────────────────────────
   HOME SERVICIOS
────────────────────────────────────────── */
.home-servicios {
  text-align: center;
}
.home-servicios__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.home-servicio-card {
  border: 1px solid rgba(245,240,232,0.1);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
  transition: border-color 0.2s;
}
.home-servicio-card:hover {
  border-color: rgba(245,240,232,0.3);
}
.home-servicio-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.home-servicio-card__desc {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .home-servicios__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .home-servicios__grid { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   PRENSA RECURSOS
────────────────────────────────────────── */
.prensa-recursos {
  text-align: center;
  padding: 4rem 3rem;
}
.prensa-recursos__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ──────────────────────────────────────────
   PRENSA BIO
────────────────────────────────────────── */
.prensa-bio__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  margin-top: 0;
}
.prensa-bio__text p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(245,240,232,0.75);
  margin-bottom: 1rem;
}
.prensa-bio__text p:last-child { margin-bottom: 0; }
.prensa-bio__text strong { color: var(--cream); font-weight: 700; }
.prensa-links-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.prensa-links-list a {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,240,232,0.15);
  padding-bottom: 0.75rem;
  display: block;
  transition: color 0.2s, border-color 0.2s;
}
.prensa-links-list a:hover {
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}
.prensa-links-list li:last-child a { border-bottom: none; }
@media (max-width: 768px) {
  .prensa-bio__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ──────────────────────────────────────────
   TEASER SECTION (home — legacy, unused)
────────────────────────────────────────── */
.teaser-section {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.teaser-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 2.5rem;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(245,240,232,0.07);
  padding: 3rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-logo-img {
  height: 40px;
  width: auto;
  display: block;
}
.footer-aka {
  font-size: 0.67rem;
  color: rgba(245,240,232,0.28);
  line-height: 1.8;
}
.footer-aka strong {
  color: rgba(245,240,232,0.5);
  font-weight: 400;
}
.footer-right { text-align: right; }
.footer-social {
  display: flex;
  gap: 1.75rem;
  justify-content: flex-end;
  margin-bottom: 1rem;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--cream); }
.footer-social a svg { display: block; }
.footer-copy {
  font-size: 0.62rem;
  color: rgba(245,240,232,0.18);
}

/* ──────────────────────────────────────────
   CLIENTES BAND
────────────────────────────────────────── */
.clientes-band {
  text-align: center;
  padding: 3.5rem 3rem;
  background: var(--gray);
}
.clientes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.clientes-list span {
  font-family: var(--font-body);
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.28);
  transition: color 0.2s;
}
.clientes-list span:hover { color: rgba(245,240,232,0.6); }

/* ──────────────────────────────────────────
   RESPONSIVE — TABLET / MOBILE ≤ 900px
────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Nav */
  .nav { padding: 1.2rem 1.5rem; }
  .nav-center, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Hero */
  .hero { padding: 0 1.5rem 3.5rem; min-height: 100svh; min-height: 100vh; }
  .hero-short { padding: 0 1.5rem 3rem; min-height: 45vh; }
  .page-header { padding: 7rem 1.5rem 3.5rem; }
  .page-header .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-title { font-size: clamp(1rem, 6.5vw, 4.5rem); }

  /* Sections */
  section { padding: 3.5rem 1.5rem; }
  .section-title { font-size: clamp(1rem, 3.3vw, 1.65rem); }

  /* Layouts → 1 column */
  .services-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { position: static; order: -1; }
  .bio-photo img { aspect-ratio: 3/4; }
  .projects-grid { grid-template-columns: 1fr; }
  .music-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre-haru-section { padding: 4rem 1.5rem; }

  /* Misc */
  .rule { margin: 0 1.5rem; width: calc(100% - 3rem); }
  footer { padding: 2.5rem 1.5rem; }
  .footer-right { text-align: left; }
  .footer-social { justify-content: flex-start; }
  .modal-box { width: 96vw; height: 85vh; }
}

/* ── MOBILE ≤ 480px ── */
@media (max-width: 480px) {
  .section-title { font-size: clamp(0.85rem, 3.6vw, 1.2rem); }
  .gallery-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: 1fr; }
  .downloads-row { flex-direction: column; }
  .service-card { padding: 2rem 1.5rem; }
  .download-card { min-width: unset; }
  .projects-grid { gap: 1rem; }
  .footer-social { gap: 1.25rem; flex-wrap: wrap; }
}
