/*
Theme Name: NLO — Not Like Others
Theme URI: https://nlomusic.com/
Author: NLO
Description: Авторская WordPress-тема музыкальной группы NLO: релизы, видео и концерты.
Version: 1.0.6
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: nlo
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Unbounded:wght@400;500;600;700&display=swap');

:root {
  --ink: #0a0a0a;
  --paper: #f1f0ec;
  --white: #fff;
  --acid: #c7ff18;
  --acid-deep: #a9dd08;
  --violet: #7653ff;
  --line: rgba(10, 10, 10, .18);
  --line-dark: rgba(255, 255, 255, .18);
  --display: "Unbounded", Arial, sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --container: min(100% - 48px, 1440px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--violet); outline-offset: 4px; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--acid);
  color: var(--ink);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  color: var(--white);
}
.brand { display: flex; align-items: center; gap: 12px; width: max-content; }
.brand-mark { font: 700 28px/1 var(--display); letter-spacing: -.1em; }
.brand-note { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.45); font: 600 8px/1.2 var(--display); letter-spacing: .09em; }
.desktop-nav { display: flex; gap: 42px; }
.desktop-nav a, .header-social { position: relative; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; }
.desktop-nav a::after, .header-social::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 2px;
  background: var(--acid);
  transition: right .2s ease-out;
}
.desktop-nav a:hover::after, .header-social:hover::after { right: 0; }
.header-social { justify-self: end; }
.menu-toggle, .mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  max-height: 1040px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity .35s ease-out, transform .45s ease-out, visibility .35s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.4) 42%, rgba(0,0,0,.05) 72%), linear-gradient(0deg, rgba(0,0,0,.38), transparent 45%); }
.hero-copy { position: relative; z-index: 2; width: var(--container); margin: 46px auto 0; }
.eyebrow, .section-kicker {
  display: block;
  margin: 0 0 24px;
  font: 600 11px/1 var(--display);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before { content: ""; display: inline-block; width: 34px; height: 2px; margin: 0 12px 3px 0; background: var(--acid); }
.hero h1, .hero h2 {
  width: 100%;
  max-width: 900px;
  margin: 0 0 28px;
  font: 600 clamp(56px, 7vw, 112px)/.88 var(--display);
  letter-spacing: -.065em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.hero h1.hero-title--long, .hero h2.hero-title--long {
  max-width: 820px;
  font-size: clamp(48px, 5.2vw, 84px);
  line-height: .92;
}
.hero h1.hero-title--xlong, .hero h2.hero-title--xlong {
  max-width: 760px;
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: .94;
}
.hero blockquote { margin: 0 0 36px; max-width: 470px; font-size: clamp(18px, 2vw, 25px); font-weight: 500; line-height: 1.35; }
.primary-button, .outline-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  background: var(--acid);
  color: var(--ink);
  border: 1px solid var(--acid);
  font: 700 12px/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: background .2s, color .2s, transform .2s;
}
.primary-button:hover { background: var(--white); border-color: var(--white); transform: translateY(-2px); }
.play-icon { font-size: 11px; }
.hero-controls {
  position: absolute;
  z-index: 5;
  right: max(24px, calc((100vw - 1440px) / 2 + 24px));
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.slider-arrow {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.slider-arrow:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.slider-arrow svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.slider-count { display: flex; gap: 5px; align-items: baseline; font: 500 12px/1 var(--display); }
.slider-count b { font-size: 20px; }
.slider-progress { width: 90px; height: 1px; background: rgba(255,255,255,.3); }
.slider-progress i { display: block; width: calc(100% / var(--slides-count, 3)); height: 2px; margin-top: -1px; background: var(--acid); transition: transform .3s ease-out; }
.hero-scroll { position: absolute; z-index: 5; left: max(24px, calc((100vw - 1440px) / 2 + 24px)); bottom: 63px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.hero-scroll span { display: inline-block; margin-left: 8px; color: var(--acid); }

.section { padding: 140px max(24px, calc((100vw - 1440px) / 2 + 24px)); }
.section-kicker { margin-bottom: 28px; color: #61615d; }
.section-kicker::before { background: var(--violet); }
.section-heading { display: grid; grid-template-columns: .55fr 1fr .75fr; gap: 40px; align-items: start; margin-bottom: 90px; }
.section-heading > .section-kicker { grid-column: 1; }
.section-heading h2 { grid-column: 2; grid-row: 1 / span 2; }
.section-heading .section-intro { grid-column: 3; grid-row: 1 / span 2; }
.section-heading h2, .section-topline h2, .concerts-head h2 {
  margin: 0;
  font: 600 clamp(48px, 6vw, 92px)/.95 var(--display);
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.section-heading h2 em { color: var(--violet); font-style: normal; }
.section-intro { max-width: 480px; margin: 8px 0 0; font-size: 18px; line-height: 1.65; }
.members { display: grid; gap: 110px; }
.member-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8vw; align-items: center; }
.member-card--reverse .member-photo { order: 2; }
.member-card--reverse .member-info { order: 1; padding-left: 8vw; }
.member-photo {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: end;
  justify-content: center;
  overflow: hidden;
  background: #d9d6e3;
}
.member-card--reverse .member-photo { background: #d8e4b7; }
.member-photo::before { content: ""; position: absolute; width: 65%; aspect-ratio: 1; top: 12%; left: 18%; border: 1px solid rgba(0,0,0,.2); border-radius: 50%; }
.member-photo::after { content: "NLO"; position: absolute; right: -24px; bottom: 12px; color: rgba(255,255,255,.34); font: 700 100px/1 var(--display); letter-spacing: -.1em; }
.member-photo img { position: relative; z-index: 1; height: 95%; width: auto; object-fit: contain; filter: saturate(.8); }
.member-index { position: absolute; z-index: 3; top: 26px; left: 26px; font: 600 12px/1 var(--display); }
.member-role { margin: 0 0 18px; color: #62625e; font: 600 10px/1 var(--display); text-transform: uppercase; letter-spacing: .1em; }
.member-info h3 { margin: 0 0 28px; font: 600 clamp(40px, 4.5vw, 72px)/.92 var(--display); text-transform: uppercase; letter-spacing: -.055em; }
.member-info > p:not(.member-role) { max-width: 480px; margin: 0 0 28px; font-size: 17px; line-height: 1.65; color: #4e4e4b; }
.social-row { display: flex; flex-wrap: wrap; gap: 22px; }
.social-row a, .text-link { padding-bottom: 4px; border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; transition: color .2s; }
.social-row a:hover, .text-link:hover { color: var(--violet); }
.meta-note { margin: 50px 0 0; font-size: 10px; color: #74746f; }

.releases { background: var(--ink); color: var(--white); }
.releases .section-kicker, .videos .section-kicker { color: #989892; }
.section-topline { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 70px; }
.section-topline > p { margin: 0; color: #989892; line-height: 1.6; }
.release-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 58px 24px; }
.release-card--feature { grid-row: span 1; }
.cover { position: relative; aspect-ratio: 1; overflow: hidden; background: #202020; }
.cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease-out, filter .35s; }
.cover--video img { filter: saturate(.75); }
.cover-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  transform: translate(-50%, -45%) scale(.75);
  opacity: 0;
  transition: opacity .2s, transform .25s ease-out;
}
.release-card:hover .cover img { transform: scale(1.035); filter: saturate(.65); }
.release-card:hover .cover-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.release-meta { display: flex; justify-content: space-between; gap: 16px; align-items: baseline; padding-top: 17px; }
.release-meta h3 { margin: 0; font: 500 clamp(16px, 1.5vw, 22px)/1.2 var(--display); }
.release-meta span { color: #8b8b86; font-size: 11px; text-transform: uppercase; white-space: nowrap; }
.center-action { display: flex; justify-content: center; margin-top: 76px; }
.outline-button { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.outline-button:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }

.videos { background: #151515; color: var(--white); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 68px 24px; }
.video-cover { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #222; }
.video-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease-out, opacity .25s; }
.video-play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-play i { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: rgba(0,0,0,.7); border: 1px solid rgba(255,255,255,.5); font-style: normal; font-size: 13px; transition: background .2s, color .2s, transform .2s; }
.video-card:hover .video-cover img { transform: scale(1.025); opacity: .8; }
.video-card:hover .video-play i { background: var(--acid); color: var(--ink); border-color: var(--acid); transform: scale(1.08); }
.video-card h3 { margin: 18px 0 12px; font: 500 clamp(18px, 2vw, 27px)/1.15 var(--display); }
.video-card h3 small { color: #8d8d88; font: inherit; }
.video-card p { display: flex; justify-content: space-between; gap: 16px; margin: 0; color: #8d8d88; font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }

.concerts { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; background: var(--acid); }
.concerts .section-kicker { color: #4d5a20; }
.concerts .section-kicker::before { background: var(--ink); }
.concerts-head > p:last-child { margin: 28px 0 0; font-size: 18px; line-height: 1.45; }
.concert-list { border-top: 2px solid var(--ink); }
.concert-row { min-height: 166px; display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 26px; border-bottom: 1px solid rgba(0,0,0,.35); transition: background .2s, padding .2s; }
.concert-row:hover { background: rgba(255,255,255,.32); padding: 0 18px; }
.concert-row time { display: flex; align-items: center; gap: 14px; }
.concert-row time b { font: 500 54px/1 var(--display); letter-spacing: -.07em; }
.concert-row time span { font-size: 10px; font-weight: 700; line-height: 1.35; text-transform: uppercase; letter-spacing: .06em; }
.concert-place h3 { margin: 0 0 8px; font: 500 clamp(20px, 2.2vw, 31px)/1 var(--display); text-transform: uppercase; }
.concert-place p { margin: 0; font-size: 13px; }
.ticket { min-width: 0; display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.ticket i { width: 42px; height: 42px; flex: 0 0 42px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-style: normal; line-height: 1; }

.site-footer { padding: 100px max(24px, calc((100vw - 1440px) / 2 + 24px)) 28px; background: var(--ink); color: var(--white); }
.footer-logo { display: flex; justify-content: space-between; align-items: end; padding-bottom: 70px; border-bottom: 1px solid var(--line-dark); }
.footer-logo > span { font: 700 clamp(90px, 18vw, 280px)/.7 var(--display); letter-spacing: -.12em; }
.footer-logo p { margin: 0; max-width: 260px; font-size: 18px; line-height: 1.4; }
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; padding: 70px 0 80px; }
.footer-columns > div { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-columns h2 { margin: 0 0 13px; color: #777772; font: 600 10px/1 var(--display); text-transform: uppercase; letter-spacing: .11em; }
.footer-columns a { font-size: 14px; transition: color .2s; }
.footer-columns a:hover { color: var(--acid); }
.booking .booking-phone { color: var(--acid); font: 500 clamp(18px, 2vw, 26px)/1.2 var(--display); }
.booking p { margin: 4px 0 0; color: #85857f; font-size: 12px; line-height: 1.5; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid var(--line-dark); color: #777772; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom a { color: var(--white); }
.footer-legal {
  max-width: 760px;
  margin: 22px 0 0;
  color: #777772;
  font-size: 11px;
  line-height: 1.55;
}

/* WordPress integration */
.admin-bar .site-header { top: 32px; }
.site-header--solid { background: linear-gradient(180deg, rgba(0,0,0,.58), transparent); }
.release-card-link, .video-card-link { display: block; }
.concert-row-wrap { display: contents; }
.concerts-all-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font: 700 10px/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: background .2s, color .2s;
}
.concerts-all-link:hover { background: var(--ink); color: var(--acid); }
.concert-empty {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(0,0,0,.35);
}
.concert-empty p { margin: 0; font: 500 clamp(23px,3vw,38px)/1.1 var(--display); text-transform: uppercase; }
.concert-empty span { font-size: 13px; }

/* Concerts archive */
.concerts-page { background: var(--paper); }
.concerts-page-hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 170px max(24px, calc((100vw - 1440px) / 2 + 24px)) 90px;
  background: #0a0a0a;
  color: var(--white);
}
.concerts-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to right, transparent, #000 40%, #000);
}
.concerts-orbit {
  position: absolute;
  top: 50%;
  right: -10vw;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(199,255,24,.35);
  border-radius: 50%;
  transform: translateY(-48%) rotate(-12deg);
}
.concerts-orbit::before, .concerts-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(199,255,24,.2);
  border-radius: 50%;
}
.concerts-orbit::after { inset: 27%; }
.concerts-orbit span {
  position: absolute;
  top: 12%;
  left: 24%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 40px rgba(199,255,24,.8);
}
.concerts-page-hero-copy { position: relative; z-index: 2; width: 100%; }
.back-link {
  position: absolute;
  top: -80px;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.concerts-page-hero h1 {
  max-width: 100%;
  margin: 0;
  font: 600 clamp(70px, 12vw, 178px)/.82 var(--display);
  letter-spacing: -.085em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  hyphens: auto;
}
.tour-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 65px;
}
.tour-summary > p { margin: 0; font-size: 20px; line-height: 1.4; }
.tour-summary > div { display: flex; align-items: end; gap: 15px; }
.tour-summary strong { color: var(--acid); font: 500 60px/.8 var(--display); letter-spacing: -.07em; }
.tour-summary span { max-width: 120px; color: #aaa; font-size: 11px; line-height: 1.3; text-transform: uppercase; }
.tour-section {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 7vw;
  padding: 135px max(24px, calc((100vw - 1440px) / 2 + 24px));
}
.tour-section-head { position: sticky; top: 40px; align-self: start; }
.tour-section-head h2, .tour-booking h2 {
  margin: 0;
  font: 600 clamp(45px, 5.2vw, 78px)/.95 var(--display);
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.tour-section-head h2 em { color: var(--violet); font-style: normal; }
.tour-list {
  min-width: 0;
  border-top: 2px solid var(--ink);
  container-name: nlo-tour-list;
  container-type: inline-size;
}
.past-tour-list {
  container-name: nlo-tour-list;
  container-type: inline-size;
}
.tour-month {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 24px 0 14px;
  border-bottom: 1px solid var(--ink);
  text-transform: uppercase;
}
.tour-month span { font: 600 11px/1 var(--display); letter-spacing: .1em; }
.tour-month small { color: #696964; font-size: 10px; }
.tour-card {
  min-width: 0;
  min-height: 178px;
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr) 100px 170px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}
.tour-card > * { min-width: 0; }
.tour-card-date time { display: grid; grid-template-columns: auto 1fr; align-items: end; column-gap: 10px; }
.tour-card-date strong { grid-row: 1 / span 2; font: 500 55px/.85 var(--display); letter-spacing: -.07em; }
.tour-card-date span { font-size: 10px; font-weight: 700; text-transform: uppercase; }
.tour-card-date small { color: #777772; font-size: 10px; }
.tour-card-label { margin: 0 0 10px; color: var(--violet); font: 600 9px/1 var(--display); letter-spacing: .1em; text-transform: uppercase; }
.tour-card-main h3 {
  margin: 0 0 8px;
  font: 500 clamp(21px, 2.4vw, 34px)/1 var(--display);
  letter-spacing: -.035em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.tour-card-main > p:last-child { margin: 0; color: #666661; font-size: 12px; overflow-wrap: anywhere; }
.tour-card-time { display: flex; flex-direction: column; gap: 6px; }
.tour-card-time span { color: #777772; font-size: 9px; text-transform: uppercase; }
.tour-card-time strong { font: 500 18px/1 var(--display); }
.tour-card-action a, .ticket-soon {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  font: 700 9px/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  transition: background .2s, color .2s;
}
.tour-card-action a:hover { background: var(--ink); color: var(--acid); }
.ticket-soon { color: #777772; border-color: rgba(0,0,0,.25); }
.tour-empty {
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 45px;
  background: #e5e4de;
}
.tour-empty-mark { color: rgba(10,10,10,.08); font: 700 clamp(80px, 12vw, 180px)/.7 var(--display); letter-spacing: -.1em; }
.tour-empty h3 { margin: 55px 0 12px; font: 600 clamp(26px,4vw,50px)/1 var(--display); text-transform: uppercase; }
.tour-empty p { max-width: 430px; margin: 0 0 25px; color: #686863; }
.tour-empty a { padding-bottom: 4px; border-bottom: 1px solid; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.past-tour-section {
  padding: 0 max(24px, calc((100vw - 1440px) / 2 + 24px)) 120px;
}
.past-tour-toggle {
  width: 100%;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  font: 600 12px/1 var(--display);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.past-tour-toggle i { font-size: 25px; font-style: normal; font-weight: 400; }
.past-tour-list[hidden] { display: none; }
.past-tour-list .tour-card { grid-template-columns: 125px 1fr 100px 170px; opacity: .6; }
.tour-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: end;
  padding: 110px max(24px, calc((100vw - 1440px) / 2 + 24px));
  background: var(--acid);
}
.tour-booking > div:last-child { justify-self: end; }
.tour-booking > div:last-child p { margin: 0 0 20px; font-size: 13px; }
.tour-booking > div:last-child a { font: 500 clamp(21px,3vw,38px)/1 var(--display); letter-spacing: -.04em; }

/* Generic WordPress content */
.content-page { min-height: 70vh; padding: 180px max(24px, calc((100vw - 1100px) / 2 + 24px)) 120px; }
.content-page-header { margin-bottom: 70px; }
.content-page-header h1 { margin: 0; font: 600 clamp(48px,8vw,110px)/.9 var(--display); letter-spacing: -.07em; text-transform: uppercase; }
.content-list { border-top: 2px solid var(--ink); }
.content-card a { min-height: 130px; display: grid; grid-template-columns: 130px 1fr 40px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); }
.content-card span { color: #777772; font-size: 11px; }
.content-card h2 { margin: 0; font: 500 clamp(20px,3vw,36px)/1.1 var(--display); }
.content-card i { font-style: normal; }
.prose-content { max-width: 760px; font-size: 18px; line-height: 1.75; }
.prose-content img { height: auto; }
.single-cover { max-width: 1100px; margin-bottom: 60px; }
.single-cover img { width: 100%; height: auto; }
.nav-links { display: flex; gap: 8px; margin-top: 40px; }
.page-numbers { min-width: 44px; min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); }
.page-numbers.current { background: var(--ink); color: var(--white); }

@media (max-width: 980px) {
  :root { --container: min(100% - 40px, 900px); }
  .desktop-nav, .header-social { display: none; }
  .site-header { grid-template-columns: 1fr auto; height: 78px; }
  .menu-toggle { position: absolute; z-index: 61; right: 0; top: 15px; width: 48px; height: 48px; display: grid !important; place-content: center; gap: 7px; padding: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; background: rgba(0,0,0,.18); cursor: pointer; }
  .menu-toggle span { display: block; width: 25px; height: 2px; background: currentColor; transition: transform .2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 60; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 24px; background: var(--ink); color: var(--white); opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
  .mobile-nav.is-open { opacity: 1; visibility: visible; }
  .mobile-nav a { font: 500 clamp(25px, 6vw, 46px)/1 var(--display); text-transform: uppercase; }
  .hero-copy { margin-top: 20px; }
  .section { padding-top: 100px; padding-bottom: 100px; }
  .section-heading { grid-template-columns: 1fr; margin-bottom: 65px; }
  .section-heading > *, .section-heading h2, .section-heading .section-intro { grid-column: 1; grid-row: auto; }
  .section-intro { margin-top: 0; }
  .member-card { grid-template-columns: 1fr 1fr; gap: 40px; }
  .member-card--reverse .member-info { padding-left: 0; }
  .member-photo { min-height: 500px; }
  .release-grid { grid-template-columns: repeat(2, 1fr); }
  .concerts { grid-template-columns: 1fr; gap: 60px; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .admin-bar .site-header { top: 46px; }
  .tour-section { grid-template-columns: 1fr; }
  .tour-section-head { position: static; }
  .tour-card, .past-tour-list .tour-card { grid-template-columns: 110px minmax(0, 1fr) 80px 150px; }
}

@media (max-width: 1180px) {
  .tour-section { grid-template-columns: 1fr; }
  .tour-section-head { position: static; }
  .tour-card, .past-tour-list .tour-card {
    min-height: 0;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "date main"
      "date time"
      "date action";
    align-items: start;
    column-gap: 20px;
    row-gap: 16px;
    padding: 28px 0;
  }
  .tour-card-date { grid-area: date; }
  .tour-card-date time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .tour-card-date strong {
    grid-row: auto;
    font-size: 46px;
  }
  .tour-card-main {
    grid-area: main;
    width: 100%;
  }
  .tour-card-main h3 {
    max-width: 100%;
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .tour-card-time {
    grid-area: time;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
  .tour-card-action {
    grid-area: action;
    justify-self: start;
  }
  .tour-card-action a, .ticket-soon {
    width: auto;
    min-width: 160px;
    min-height: 46px;
  }
}

@media (max-width: 820px) {
  .tour-card, .past-tour-list .tour-card {
    min-height: 0;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "date main"
      "date time"
      "date action";
    align-items: start;
    column-gap: 20px;
    row-gap: 16px;
    padding: 28px 0;
  }
  .tour-card-date { grid-area: date; }
  .tour-card-date time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .tour-card-date strong {
    grid-row: auto;
    font-size: 46px;
  }
  .tour-card-main {
    grid-area: main;
    width: 100%;
  }
  .tour-card-main h3 {
    max-width: 100%;
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .tour-card-time {
    grid-area: time;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
  .tour-card-action {
    grid-area: action;
    justify-self: start;
  }
  .tour-card-action a, .ticket-soon {
    width: auto;
    min-width: 160px;
    min-height: 46px;
  }
}

@container nlo-tour-list (max-width: 900px) {
  .tour-card, .past-tour-list .tour-card {
    min-height: 0;
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas:
      "date main"
      "date time"
      "date action";
    align-items: start;
    column-gap: 20px;
    row-gap: 16px;
    padding: 28px 0;
  }
  .tour-card-date { grid-area: date; }
  .tour-card-date time {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .tour-card-date strong {
    grid-row: auto;
    font-size: 46px;
  }
  .tour-card-main {
    grid-area: main;
    width: 100%;
  }
  .tour-card-main h3 {
    max-width: 100%;
    font-size: clamp(20px, 4vw, 28px);
    line-height: 1.08;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .tour-card-time {
    grid-area: time;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
  .tour-card-action {
    grid-area: action;
    justify-self: start;
  }
  .tour-card-action a, .ticket-soon {
    width: auto;
    min-width: 160px;
    min-height: 46px;
  }
}

@media (max-width: 640px) {
  :root { --container: calc(100% - 32px); }
  .hero { min-height: 700px; max-height: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.12)), linear-gradient(0deg, rgba(0,0,0,.6), transparent 55%); }
  .hero-slide { background-position: 62% center; }
  .hero-copy { width: calc(100% - 32px); max-width: calc(100% - 32px); }
  .hero h1, .hero h2 {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 50px);
    line-height: .92;
    letter-spacing: -.075em;
  }
  .hero h1.hero-title--long, .hero h2.hero-title--long {
    max-width: 100%;
    font-size: clamp(28px, 8vw, 36px);
    line-height: .96;
  }
  .hero h1.hero-title--xlong, .hero h2.hero-title--xlong {
    max-width: 100%;
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1;
  }
  .hero blockquote { max-width: 85%; font-size: 17px; }
  .hero-scroll { display: none; }
  .hero-controls { left: 16px; right: 16px; bottom: 24px; display: grid; grid-template-columns: 46px auto minmax(44px, 1fr) 46px; gap: 12px; }
  .slider-progress { width: auto; max-width: none; }
  .slider-arrow.next { position: absolute; right: 0; }
  .slider-arrow { width: 46px; height: 46px; }
  .section { padding: 78px 16px; }
  .section-heading h2, .section-topline h2, .concerts-head h2 { font-size: clamp(38px, 12vw, 58px); }
  .section-intro { font-size: 16px; }
  .members { gap: 78px; }
  .member-card { grid-template-columns: 1fr; gap: 28px; }
  .member-card--reverse .member-photo, .member-card--reverse .member-info { order: initial; }
  .member-photo { min-height: 450px; }
  .member-info h3 { font-size: clamp(38px, 12vw, 56px); }
  .release-grid { grid-template-columns: 1fr 1fr; gap: 38px 12px; }
  .release-meta { display: block; }
  .release-meta h3 { font-size: 14px; margin-bottom: 7px; }
  .release-meta span { font-size: 9px; }
  .section-topline { align-items: start; margin-bottom: 48px; }
  .section-topline > p { display: none; }
  .video-grid { grid-template-columns: 1fr; gap: 46px; }
  .video-card h3 { font-size: 19px; }
  .video-card p { font-size: 9px; }
  .concerts { gap: 45px; }
  .concert-row { min-width: 0; min-height: 150px; grid-template-columns: 78px minmax(0, 1fr) 44px; gap: 10px; }
  .concert-row > * { min-width: 0; }
  .concert-row:hover { padding: 0; }
  .concert-row time { align-items: flex-start; flex-direction: column; gap: 6px; }
  .concert-row time b { font-size: 40px; }
  .concert-row time span br { display: block; }
  .concert-place h3 { font-size: 15px; overflow-wrap: anywhere; }
  .concert-place p { font-size: 10px; line-height: 1.4; overflow-wrap: anywhere; }
  .ticket { font-size: 0; }
  .ticket i { width: 40px; height: 40px; flex-basis: 40px; font-size: 13px; }
  .site-footer { padding: 80px 16px 24px; }
  .footer-logo { display: block; padding-bottom: 50px; }
  .footer-logo > span { font-size: 34vw; }
  .footer-logo p { margin-top: 38px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 52px 20px; padding: 55px 0; }
  .booking { grid-column: 1 / -1; }
  .footer-bottom span:nth-child(2) { display: none; }
  .concerts-all-link { margin-top: 28px; }
  .concerts-page-hero { min-height: 680px; padding: 150px 16px 55px; }
  .concerts-page-hero::before { background-size: 45px 45px; }
  .concerts-orbit { top: 30%; right: -45vw; width: 105vw; }
  .back-link { top: -70px; }
  .concerts-page-hero-copy { min-width: 0; }
  .concerts-page-hero h1 {
    width: 100%;
    font-size: clamp(38px, 12.5vw, 60px);
    line-height: .9;
    letter-spacing: -.075em;
  }
  .tour-summary { align-items: start; margin-top: 55px; }
  .tour-summary > p { font-size: 16px; }
  .tour-summary strong { font-size: 44px; }
  .tour-summary span { max-width: 80px; font-size: 8px; }
  .tour-section { gap: 48px; padding: 80px 16px; }
  .tour-card, .past-tour-list .tour-card {
    min-height: 0;
    grid-template-columns: 68px minmax(0, 1fr);
    grid-template-areas:
      "date main"
      "date time"
      "date action";
    align-items: start;
    column-gap: 14px;
    row-gap: 14px;
    padding: 24px 0;
  }
  .tour-card-date { grid-area: date; }
  .tour-card-date time { display: flex; flex-direction: column; align-items: flex-start; gap: 5px; }
  .tour-card-date strong { grid-row: auto; font-size: 39px; }
  .tour-card-date span, .tour-card-date small { font-size: 9px; }
  .tour-card-main { grid-area: main; }
  .tour-card-main h3 { font-size: clamp(16px, 5vw, 21px); line-height: 1.08; }
  .tour-card-main > p:last-child { font-size: 11px; line-height: 1.45; }
  .tour-card-time {
    grid-area: time;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }
  .tour-card-time strong { font-size: 15px; }
  .tour-card-action { grid-area: action; justify-self: start; }
  .tour-card-action a, .ticket-soon {
    width: auto;
    min-width: 140px;
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    font-size: 9px;
  }
  .tour-card-action a span { font-size: 13px; }
  .ticket-soon::after { content: none; }
  .tour-empty { min-height: 380px; padding: 28px; }
  .tour-empty h3 { margin-top: 45px; }
  .past-tour-section { padding: 0 16px 80px; }
  .tour-booking { grid-template-columns: 1fr; align-items: start; padding: 78px 16px; }
  .tour-booking > div:last-child { justify-self: start; }
  .content-page { padding: 140px 16px 80px; }
  .content-card a { grid-template-columns: 80px 1fr 24px; gap: 12px; }
}

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
