/* templates/css/style.css */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800;900&family=Heebo:wght@300;400;500;700&display=swap');

:root {
  --bg: #0f0f12;
  --bg-soft: #141418;
  --paper: #e9e9e9;
  --paper-alt: #efefef;
  --text: #090909;
  --muted: #6e6e6e;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(255, 255, 255, 0.15);
  --white: #ffffff;
  --accent: #ff2c61;
  --max: 1400px;
  --bar-h: 92px;
  --btn-h: 54px;
  --easing: cubic-bezier(0.2, 0.7, 0.3, 1);
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form label {
  display: block;
  min-width: 0;
}

html {
  font-size: 56.25%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: 'Heebo', Arial, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page {
  padding-top: var(--bar-h);
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

/* Topbar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--bar-h);
  background: var(--bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.topbar-inner {
  position: relative;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo {
  flex: 0 0 auto;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2.3rem, 2.3vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
}

.site-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: .16em;
  white-space: nowrap;
  text-transform: uppercase;
}

.site-wordmark > span { display: inline-block; }
.site-wordmark-blur { opacity: .92; filter: blur(1.8px); }
.site-wordmark-header { letter-spacing: -.045em; }

.topnav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.25vw, 26px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
}

.topnav a {
  position: relative;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  padding: 15px 12px;
}

.topnav a::after {
  display: none;
}

.topnav a::before {
  content: '';
  position: absolute;
  inset: 4px -3px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 50%;
  opacity: 0;
  transform: rotate(-6deg) scale(.88);
  transition: opacity .24s var(--easing), transform .34s var(--easing);
  pointer-events: none;
}

.topnav a:hover::before,
.topnav a:focus-visible::before,
.topnav a.is-current::before {
  opacity: 1;
  transform: rotate(-6deg) scale(1);
}

.top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-orb {
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.menu-orb span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
}

.menu-orb-icon {
  width: 38px;
  height: 38px;
  display: block;
  color: #fff;
  transform-origin: center;
  transition: transform .75s cubic-bezier(.2,.75,.2,1);
}

.menu-orb:hover .menu-orb-icon,
.menu-orb:focus-visible .menu-orb-icon {
  transform: rotate(360deg);
}

.menu-orb-ring,
.menu-orb-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-orb-star { fill: currentColor; }

/* Sidebar */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--easing);
  z-index: 85;
}

.sidebar {
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg);
  color: var(--white);
  transform: translateX(102%);
  transition: transform 0.35s var(--easing);
  z-index: 90;
  display: flex;
  flex-direction: column;
  padding: 30px 24px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.45);
}

.sidebar.is-open {
  transform: translateX(0);
}

.sidebar-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sidebar-logo {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.sidebar-close {
  appearance: none;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 480px) {
  .sidebar { padding: 24px 20px 18px; }
  .sidebar-logo { max-width: calc(100vw - 100px); font-size: 2.6rem; }
}

.sidebar-nav {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sidebar-nav a {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.84);
}

.sidebar-nav a:hover {
  color: var(--white);
}

.sidebar-nav .sidebar-sep {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.sidebar-social {
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.sidebar-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Hero */
.hero {
  position: relative;
  height: min(760px, calc(100vh - var(--bar-h)));
  min-height: 520px;
}

.hero-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 0.55s var(--easing), transform 0.85s var(--easing);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.33) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7vh 28px 9vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  color: var(--white);
}

.hero-content-center {
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(4.8rem, 8vw, 10.6rem);
  line-height: 0.87;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.hero-sub {
  margin: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(1.45rem, 1.3vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  color: var(--white);
  font-size: 3.7rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.hero-nav.prev {
  left: 16px;
}

.hero-nav.next {
  right: 16px;
}

/* Sections */
.section,
.brand-strip {
  position: relative;
  padding: 82px 0;
}

section[id] {
  scroll-margin-top: calc(var(--bar-h) + 18px);
}

.section-alt {
  background: var(--paper-alt);
}

.section-dark {
  background: var(--bg);
  color: var(--white);
}

.section-watermark {
  overflow: hidden;
}

.section-watermark::before {
  content: attr(data-watermark);
  position: absolute;
  left: 50%;
  top: 34px;
  transform: translateX(-50%);
  width: max-content;
  max-width: none;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(7.5rem, 12vw, 18rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.045);
  letter-spacing: 0.02em;
  line-height: 0.78;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.section-watermark.is-marquee::before {
  left: 0;
  top: 26px;
  transform: translate3d(0, 0, 0);
  animation: watermark-marquee 22s linear infinite;
}

.section-dark.section-watermark::before,
#eventslist.section-watermark::before {
  color: rgba(255, 255, 255, 0.04);
}

@keyframes watermark-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-38%, 0, 0);
  }
}

.container {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(3.2rem, 3.9vw, 5.8rem);
  line-height: 0.88;
}

.section-head p {
  margin: 12px 0 0;
  max-width: 900px;
  color: #6b6b6b;
  font-size: clamp(1.45rem, 1vw, 1.75rem);
}

.section-dark .section-head p {
  color: #c9c9c9;
}

.center {
  text-align: center;
}

.mt-24 {
  margin-top: 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Cards */
.card,
.poster,
.album,
.post {
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.card-img,
.poster > img,
.album-cover,
.post-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card-img img,
.poster > img,
.album-cover img,
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--easing);
}

.card:hover img,
.poster:hover > img,
.album:hover img,
.post:hover img {
  transform: scale(1.06);
}

.card-body,
.album-body,
.post h3,
.poster-body {
  padding: 18px 4px 0;
}

.card-body h3,
.album-body h3,
.poster-body h3,
.post h3 {
  font-size: clamp(2.6rem, 2.2vw, 3.6rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.card-meta,
.album-meta {
  margin-top: 10px;
  color: #2f2f2f;
  font-size: clamp(1.4rem, 0.95vw, 1.7rem);
}

.card-meta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-meta-split span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-meta-split strong {
  color: #b8b8b8;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2.2rem, 1.8vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.read-more {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Poster date */
.poster {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.poster-date {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 88px;
  background: var(--bg);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.poster-date .day {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.84;
}

.poster-date .mon {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.9;
}

.poster-body {
  padding: 22px 0 0;
}

/* Promo blocks */
.promo {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.promo + .promo {
  margin-top: 70px;
}

.promo-reverse .promo-copy {
  order: 2;
}

.promo-reverse .promo-media {
  order: 1;
}

.promo-copy h2 {
  font-size: clamp(3.8rem, 4.6vw, 6.2rem);
  margin-bottom: 14px;
}

.promo-copy p {
  margin: 0 0 22px;
  color: #2c2c2c;
  font-size: clamp(1.5rem, 1vw, 1.85rem);
  max-width: 760px;
}

.promo-media {
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.promo-media img {
  height: 100%;
  object-fit: cover;
}

.lineup-section {
  padding-top: 92px;
  padding-bottom: 96px;
}

.lineup-text {
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.lineup-head {
  color: rgba(0, 0, 0, 0.45);
}

/* Bandas / Artistas sliders */
.marquee-slider-section {
  background: var(--paper-alt);
  padding-top: 38px;
  padding-bottom: 34px;
  overflow: hidden;
}

.marquee-slider-section + .marquee-slider-section {
  padding-top: 34px;
}

.slider-shell {
  position: relative;
  z-index: 2;
  width: min(1720px, 100%);
  margin: 0 auto;
  padding: 0 18px;
}

.media-slider {
  position: relative;
  margin-top: 100px;
}

#artists-showcase .media-slider {
  margin-top: 100px;
}

.media-slider-viewport {
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.media-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s var(--easing);
  will-change: transform;
}

.media-slide-card {
  position: relative;
  flex: 0 0 clamp(250px, 22vw, 338px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  background: #d8d8d8;
}

.media-slide-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--easing), filter 0.45s var(--easing);
}

.media-slide-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  gap: 8px;
  padding: 24px 22px 82px;
  color: #fff;
  background: linear-gradient(180deg, rgba(9, 9, 12, 0.12) 22%, rgba(9, 9, 12, 0.8) 100%);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s var(--easing), transform 0.35s var(--easing);
}

.media-slide-overlay h3 {
  font-size: clamp(3.2rem, 2.5vw, 5rem);
  line-height: 0.92;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.35s var(--easing), opacity 0.35s var(--easing);
}

.media-slide-overlay p {
  margin: 0;
  font-size: clamp(1.55rem, 1.08vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.35s var(--easing), opacity 0.35s var(--easing);
}

.media-slide-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 64px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--bg);
  color: #fff;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s var(--easing), opacity 0.35s var(--easing);
}

.media-slide-card:hover > img,
.media-slide-card:focus-within > img {
  transform: scale(1.08);
  filter: brightness(0.72);
}

.media-slide-card:hover .media-slide-overlay,
.media-slide-card:focus-within .media-slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.media-slide-card:hover .media-slide-overlay h3,
.media-slide-card:focus-within .media-slide-overlay h3,
.media-slide-card:hover .media-slide-overlay p,
.media-slide-card:focus-within .media-slide-overlay p {
  transform: translateY(0);
  opacity: 1;
}

.media-slide-card:hover .media-slide-link,
.media-slide-card:focus-within .media-slide-link {
  transform: translateY(0);
  opacity: 1;
}

.media-slider-nav {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border: 0;
  background: rgba(15, 15, 18, 0.92);
  color: #fff;
  font-size: 4.4rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.25s var(--easing), filter 0.25s var(--easing);
}

.media-slider-nav.prev {
  left: 0;
}

.media-slider-nav.next {
  right: 0;
}

.media-slider-nav:hover {
  filter: brightness(1.08);
}

/* Events list */
#eventslist {
  overflow: hidden;
}

#eventslist::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(255, 255, 255, 0.05), transparent 42%),
    radial-gradient(circle at 90% 72%, rgba(255, 255, 255, 0.04), transparent 36%),
    repeating-linear-gradient(120deg, transparent 0 28px, rgba(255, 255, 255, 0.02) 28px 33px);
  opacity: 0.8;
  pointer-events: none;
}

.events-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-row {
  display: grid;
  grid-template-columns: 108px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.event-left {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 11px;
}

.event-day {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(4rem, 3.9vw, 6.4rem);
  font-weight: 900;
  line-height: 0.8;
  color: #fff;
}

.event-mon {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 0.96;
  color: rgba(255, 255, 255, 0.95);
}

.event-mon span {
  display: block;
  margin-top: 2px;
  opacity: 0.78;
}

.event-title {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2.4rem, 2.2vw, 3.9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.event-sub {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.5rem, 0.95vw, 1.8rem);
}

.event-right {
  min-width: 214px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.badge {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge.soldout {
  color: rgba(255, 255, 255, 0.46);
}

.badge.free {
  color: rgba(255, 255, 255, 0.82);
}

/* Albums */
.album {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.album-cover {
  position: relative;
}

.album-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: rgba(15, 15, 18, 0.94);
  color: #fff;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.album-meta {
  font-size: clamp(1.5rem, 1.05vw, 1.85rem);
}

/* Blog */
.post {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.post-img {
  position: relative;
}

.post-date {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 88px;
  background: var(--bg);
  color: #fff;
  display: grid;
  place-content: center;
}

.post-date span {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 4rem;
  line-height: 0.84;
  text-align: center;
}

.post-date small {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.8rem;
  text-align: center;
  text-transform: uppercase;
}

/* Buttons */
.btn {
  height: var(--btn-h);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s var(--easing), filter 0.2s var(--easing);
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn-dark {
  background: var(--bg);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111;
}

.btn-sm {
  height: 44px;
  padding: 0 24px;
  font-size: 1.55rem;
}

.btn span {
  font-size: 1.85rem;
  line-height: 1;
}

/* Brand strip */
.brand-strip {
  background: var(--bg);
  color: #fff;
  padding: 36px 0;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.brand-grid span {
  text-align: center;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(1.9rem, 1.35vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.95;
}

/* Map stage */
.map-stage {
  padding: 0 0 28px;
  background: var(--paper-alt);
}

.map-stage-box {
  position: relative;
  height: 310px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 214, 111, 0.35), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(255, 214, 111, 0.28), transparent 32%),
    linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 1px solid rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.map-stage-box::before,
.map-stage-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 180px 180px;
  pointer-events: none;
}

.map-stage-box::before {
  background-image:
    linear-gradient(90deg, rgba(255, 214, 111, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 214, 111, 0.16) 1px, transparent 1px);
  opacity: 0.24;
}

.map-stage-box::after {
  background-image:
    linear-gradient(30deg, transparent 46%, rgba(255, 214, 111, 0.2) 46% 54%, transparent 54%),
    linear-gradient(-22deg, transparent 46%, rgba(255, 214, 111, 0.14) 46% 54%, transparent 54%);
  opacity: 0.2;
}

.map-stage-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: clamp(2.4rem, 1.8vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.map-stage-pin::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -38px;
  width: 28px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.contact-title {
  font-size: clamp(3.9rem, 4.4vw, 5.8rem);
  margin-bottom: 16px;
}

.contact-sub {
  margin: 0;
  color: #2f2f2f;
  font-size: clamp(1.5rem, 0.95vw, 1.75rem);
  max-width: 560px;
}

.social-big {
  margin-top: 26px;
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: #fff;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background: transparent;
  border-radius: 0;
  padding: 10px 4px;
  color: var(--text);
  font-family: inherit;
  font-size: 1.6rem;
  outline: 0;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.notice {
  padding: 10px 12px;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.notice.ok {
  background: #e4ffe7;
  border: 1px solid #99f5a0;
}

.notice.err {
  background: #ffe8e8;
  border: 1px solid #f3a0a0;
}

.map-hint {
  margin-top: 20px;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.map-box {
  margin-top: 12px;
  height: 320px;
  background: #161616;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.map-fake {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 206, 84, 0.5), transparent 26%),
    radial-gradient(circle at 81% 72%, rgba(255, 206, 84, 0.44), transparent 28%),
    linear-gradient(180deg, #2a2a2a, #0f0f0f);
}

/* Footer */
.footer {
  background: var(--bg);
  color: #fff;
  padding: 72px 0 76px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  text-align: center;
}

.footer-brand {
  font-size: clamp(6.2rem, 7vw, 9.8rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.footer-social {
  margin: 30px 0 28px;
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 40px);
}

.footer-social a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.25s var(--easing), color 0.25s var(--easing);
}

.footer-social a i {
  font-size: 3.2rem;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: #fff;
}

.footer-sep {
  height: 1px;
  margin: 0 auto 26px;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.2);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.3rem, 1.1vw, 1.7rem);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
}

.footer-copy a {
  display: inline-block;
  margin-left: .45em;
  padding-bottom: .08em;
  border-bottom: 1px solid currentColor;
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--easing);
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: #d9ff43;
}

/* Floating */
.float-actions {
  position: fixed;
  right: 14px;
  top: 58%;
  transform: translateY(-50%);
  z-index: 75;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-btn {
  width: 48px;
  height: 48px;
  border: 0;
  cursor: default;
  font-size: 2rem;
}

.float-btn:first-child {
  background: var(--accent);
  color: #fff;
}

.float-btn:last-child {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.to-top {
  position: fixed;
  right: 14px;
  bottom: 96px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: #fff;
  font-size: 1.9rem;
  cursor: pointer;
  z-index: 75;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--easing);
}

.to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

.floating-phone {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 78;
  width: 64px;
  min-width: 64px;
  height: 64px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid #050505;
  border-radius: 50%;
  background: #d9ff43;
  color: #050505;
  box-shadow: 0 0 0 4px rgba(217,255,67,.18), 0 12px 34px rgba(0,0,0,.45), 0 0 30px rgba(217,255,67,.58);
  font: 800 1.05rem/1 'Heebo', Arial, sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: transform .2s var(--easing), background .2s var(--easing), color .2s var(--easing), box-shadow .2s var(--easing);
}

.floating-phone i {
  color: currentColor;
  font-size: 2rem;
  line-height: 1;
}

.floating-phone span {
  display: none;
}

.floating-phone:hover,
.floating-phone:focus-visible {
  background: #ecff9c;
  color: #050505;
  box-shadow: 0 0 0 5px rgba(217,255,67,.24), 0 14px 38px rgba(0,0,0,.46), 0 0 38px rgba(217,255,67,.78);
  transform: translateY(-3px) scale(1.04);
}

/* Reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s var(--easing), transform 0.65s var(--easing);
}

.js-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Galeria artistas */
.artists-section {
  padding-top: 44px;
}

.artists-container {
  display: block;
}

.artists-head {
  margin-bottom: 18px;
}

.artists-grid {
  margin-top: 100px;
  grid-template-columns: repeat(3, minmax(260px, 360px));
  justify-content: center;
  column-gap: 56px;
  row-gap: 52px;
}

.artists-grid .card {
  width: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.artists-grid .card-img {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
  transition: transform 0.35s var(--easing), box-shadow 0.35s var(--easing);
}

.artists-grid .card:hover img {
  transform: scale(1.07);
}

.artists-grid .card-body {
  padding: 12px 2px 0;
}

.artists-grid .card-body h3 {
  font-size: clamp(2.4rem, 2vw, 3.4rem);
}

.artists-grid .card-meta {
  font-size: clamp(1.35rem, 0.88vw, 1.6rem);
}

/* Portfolio (detalhe por artista) */
.portfolio-page {
  padding-top: 42px;
  padding-bottom: 86px;
}

.portfolio-container {
  max-width: 1280px;
}

.portfolio-title-main {
  font-size: clamp(5.2rem, 5vw, 9rem);
  margin-bottom: 26px;
}

.portfolio-showcase {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  background: #121212;
  aspect-ratio: 16 / 8;
}

.portfolio-showcase-wide {
  aspect-ratio: 16 / 9;
}

.portfolio-gallery-slide {
  display: none;
  margin: 0;
  width: 100%;
  height: 100%;
}

.portfolio-gallery-slide.is-active {
  display: block;
}

.portfolio-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #121212;
}

.portfolio-gallery-nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  margin-top: -27px;
  border: 0;
  background: rgba(10, 10, 12, 0.72);
  color: #fff;
  font-size: 4.8rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}

.portfolio-gallery-nav.prev {
  left: 12px;
}

.portfolio-gallery-nav.next {
  right: 12px;
}

.portfolio-about-row {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 56px;
  margin-top: 38px;
}

.portfolio-about-row h2,
.portfolio-side h2 {
  font-size: clamp(3.8rem, 3vw, 5.6rem);
  margin-bottom: 10px;
}

.portfolio-about-row p,
.portfolio-side p {
  margin: 0;
  max-width: 880px;
  color: #242424;
  font-size: clamp(1.7rem, 1vw, 2rem);
  line-height: 1.6;
}

.portfolio-meta-list {
  margin: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}

.portfolio-meta-list div {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.portfolio-meta-list dt {
  margin: 0;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.portfolio-meta-list dd {
  margin: 0;
  font-size: clamp(1.65rem, 0.96vw, 1.95rem);
  color: #1d1d1d;
}

.portfolio-share {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.portfolio-share span {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
}

.portfolio-share a {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  font-size: 1.9rem;
  color: #000;
}

.portfolio-grid-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.portfolio-static-main {
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.portfolio-static-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-thumb-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.portfolio-thumb-grid figure {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-thumb-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-extra {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.portfolio-source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  color: #111;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.portfolio-video-section { display: grid; gap: 18px; }

.portfolio-video-head span {
  display: block;
  margin-bottom: 4px;
  color: #666;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.portfolio-video-head h2 {
  margin: 0;
  font-size: clamp(4rem, 5vw, 7rem);
  line-height: .9;
}

.portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.portfolio-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.external-media-consent {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 14px;
  padding: 24px;
  background: radial-gradient(circle at 50% 35%, #222 0, #0b0b0b 68%);
  color: #fff;
  text-align: center;
}

.external-media-consent p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
  line-height: 1.45;
}

.external-media-consent button {
  min-height: 42px;
  border: 1px solid #d9ff2f;
  border-radius: 999px;
  padding: 0 20px;
  background: #d9ff2f;
  color: #080808;
  font: 900 .9rem/1 inherit;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ui-arrow {
  width: 1em;
  height: 1em;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  line-height: 0;
  vertical-align: -.12em;
}

.ui-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-audio audio {
  width: min(640px, 100%);
}

.portfolio-nav-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.portfolio-nav-link {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.portfolio-nav-row .portfolio-nav-link:last-child {
  text-align: right;
}

.portfolio-nav-grid {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
}

body.is-lightbox-open {
  overflow: hidden;
}

.portfolio-zoomable-image,
img.js-portfolio-zoomable {
  cursor: zoom-in;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px clamp(14px, 3vw, 48px);
  background: rgba(7, 7, 10, 0.92);
}

.portfolio-lightbox.is-open {
  display: flex;
}

.portfolio-lightbox-image {
  width: auto;
  max-width: min(1500px, 96vw);
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.portfolio-lightbox-close,
.portfolio-lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  line-height: 1;
  transition: background-color 0.15s ease;
}

.portfolio-lightbox-close:hover,
.portfolio-lightbox-nav:hover {
  background: rgba(0, 0, 0, 0.78);
}

.portfolio-lightbox-close {
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  font-size: 3.4rem;
}

.portfolio-lightbox-nav {
  top: 50%;
  margin-top: -28px;
  width: 56px;
  height: 56px;
  font-size: 4.2rem;
}

.portfolio-lightbox-nav.prev {
  left: 16px;
}

.portfolio-lightbox-nav.next {
  right: 16px;
}

/* Responsive */
@media (max-width: 1200px) {
  :root {
    --bar-h: 82px;
    --btn-h: 50px;
  }

  .topbar-inner,
  .container,
  .footer-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-right {
    justify-content: flex-start;
    min-width: 0;
  }

  .contact-wrap,
  .promo {
    grid-template-columns: 1fr;
  }

  .artists-container {
    display: block;
  }

  .artists-grid {
    margin-top: 40px;
    grid-template-columns: repeat(2, minmax(250px, 360px));
    column-gap: 36px;
    row-gap: 40px;
  }

  .portfolio-about-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .portfolio-grid-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-video-grid {
    grid-template-columns: 1fr;
  }

  .media-slider {
    margin-top: 44px;
  }

  .media-slide-card {
    flex-basis: clamp(230px, 40vw, 330px);
  }

  .promo-reverse .promo-copy,
  .promo-reverse .promo-media {
    order: initial;
  }

  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }

  .map-stage-box {
    height: 300px;
  }
}

@media (max-width: 860px) {
  .to-top {
    right: 15px;
    bottom: 78px;
  }

  .floating-phone {
    right: 12px;
    bottom: 12px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }

  .floating-phone span { display: none; }

  .floating-phone i { font-size: 2.1rem; }

  .topnav {
    display: none;
  }

  .hero {
    min-height: 440px;
  }

  .hero-nav {
    width: 46px;
    height: 46px;
    font-size: 4rem;
  }

  .hero-nav.prev {
    left: 12px;
  }

  .hero-nav.next {
    right: 12px;
  }

  .grid-3,
  .brand-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .artists-grid {
    margin-top: 30px;
    grid-template-columns: minmax(0, 420px);
    row-gap: 30px;
  }

  .portfolio-page {
    padding-top: 26px;
    padding-bottom: 58px;
  }

  .portfolio-title-main {
    margin-bottom: 16px;
    font-size: clamp(4.2rem, 13vw, 6.8rem);
  }

  .portfolio-showcase,
  .portfolio-showcase-wide,
  .portfolio-static-main {
    aspect-ratio: 16 / 11;
  }

  .portfolio-thumb-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-share span {
    font-size: 2.8rem;
  }

  .portfolio-nav-link {
    font-size: 2.4rem;
  }

  .portfolio-nav-grid {
    width: 44px;
    height: 44px;
  }

  .portfolio-lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 3rem;
  }

  .portfolio-lightbox-nav {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    font-size: 3.6rem;
  }

  .marquee-slider-section {
    padding-top: 34px;
    padding-bottom: 20px;
  }

  .marquee-slider-section + .marquee-slider-section {
    padding-top: 24px;
  }

  .slider-shell {
    padding: 0 10px;
  }

  .media-slider {
    margin-top: 44px;
  }

  #artists-showcase .media-slider {
    margin-top: 100px;
  }

  .media-slider-track {
    gap: 10px;
  }

  .media-slide-card {
    flex-basis: min(78vw, 352px);
  }

  .media-slider-nav {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    font-size: 3.6rem;
  }

  .footer {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .footer-brand {
    font-size: clamp(4.6rem, 13vw, 7rem);
  }

  .footer-social a {
    width: 48px;
    height: 48px;
  }

  .footer-social a i {
    font-size: 2.7rem;
  }

  .footer-copy {
    font-size: 1.25rem;
    line-height: 1.55;
  }

  .poster-date,
  .post-date {
    width: 64px;
    height: 80px;
  }

}

.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 22px 0 12px;
}

.footer-legal a,
.footer-legal button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #aaa;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover { color: #d9ff2f; }

.cookie-consent[hidden] { display: none !important; }

.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 22px;
  bottom: 22px;
  width: min(580px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: 26px;
  border: 1px solid #3a3a3f;
  border-radius: 22px;
  background: rgba(15, 15, 17, .97);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
  color: #fff;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-consent.is-open { opacity: 1; transform: translateY(0); }
.cookie-consent-copy span { color: #ff3159; font-size: 1rem; font-weight: 900; letter-spacing: .16em; }
.cookie-consent-copy h2 { margin: 7px 0 8px; font-size: 2.5rem; line-height: 1; }
.cookie-consent-copy p { margin: 0; color: #bdbdc2; font-size: 1.35rem; line-height: 1.5; }
.cookie-consent-actions { display: grid; gap: 8px; min-width: 150px; }
.cookie-btn { min-height: 42px; border: 1px solid #505057; border-radius: 999px; padding: 0 16px; font-size: 1.05rem; font-weight: 900; text-transform: uppercase; cursor: pointer; }
.cookie-btn-essential { background: transparent; color: #fff; }
.cookie-btn-all { border-color: #d9ff2f; background: #d9ff2f; color: #070707; }
.cookie-consent-actions a { padding-top: 4px; color: #aaa; font-size: 1.05rem; font-weight: 800; text-align: center; text-decoration: underline; }

@media (max-width: 680px) {
  .cookie-consent {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 14px 12px;
    border-radius: 18px;
    background: rgba(15, 15, 17, .94);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .42);
  }
  .cookie-consent-copy span { font-size: .78rem; letter-spacing: .13em; }
  .cookie-consent-copy h2 { margin: 4px 0 6px; font-size: 1.65rem; line-height: 1.02; }
  .cookie-consent-copy p { font-size: .98rem; line-height: 1.4; }
  .cookie-consent-actions { grid-template-columns: 1fr 1fr; gap: 7px; }
  .cookie-btn { min-height: 38px; padding: 0 10px; font-size: .82rem; }
  .cookie-consent-actions a { grid-column: 1 / -1; padding-top: 1px; font-size: .82rem; }
  .external-media-consent { gap: 10px; padding: 18px; }
  .external-media-consent p { font-size: .9rem; }
  .external-media-consent button { min-height: 38px; font-size: .8rem; }
}

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