/*
Theme Name: SoundBasher Touring
Theme URI: https://soundbasher.com/
Author: SoundBasher
Author URI: https://soundbasher.com/
Description: A cinematic touring, production management, and FOH engineering theme for SoundBasher.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: soundbasher
Tags: one-page, custom-logo, custom-menu, featured-images
*/

:root {
  --ink: #050607;
  --paper: #f1eee7;
  --fire: #ff5722;
  --ember: #f89029;
  --steel: #6cbcd0;
  --line: rgba(255, 255, 255, 0.14);
  --mx: 50vw;
  --my: 20vh;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--ink);
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.cursor-light {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background: radial-gradient(
    500px circle at var(--mx) var(--my),
    rgba(255, 98, 29, 0.08),
    transparent 70%
  );
  mix-blend-mode: screen;
}
.nav-shell {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(#050607dd, #05060755);
  backdrop-filter: blur(12px);
}
.mini-brand {
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 21px;
}
.mini-brand span {
  color: var(--fire);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.nav a {
  transition: 0.2s;
}
.nav a:hover {
  color: var(--ember);
}
.nav-cta {
  border: 1px solid var(--fire);
  padding: 14px 20px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: white;
  width: 38px;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 7vw 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
      circle at 70% 42%,
      rgba(111, 181, 204, 0.12),
      transparent 24%
    ),
    radial-gradient(circle at 14% 64%, rgba(255, 75, 18, 0.14), transparent 25%),
    linear-gradient(rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0.96)),
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(255, 255, 255, 0.04) 80px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 79px,
      rgba(255, 255, 255, 0.035) 80px
    );
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto -10% -20% -10%;
  height: 48%;
  background: radial-gradient(
    ellipse at center,
    rgba(247, 74, 12, 0.18),
    transparent 65%
  );
  filter: blur(40px);
}
.beam {
  position: absolute;
  top: -20%;
  height: 130%;
  width: 10vw;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 91, 25, 0.18),
    transparent
  );
  filter: blur(8px);
  transform: rotate(17deg);
  animation: sweep 8s ease-in-out infinite alternate;
}
.beam-a {
  left: 69%;
}
.beam-b {
  left: 79%;
  animation-delay: -3s;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 191, 215, 0.12),
    transparent
  );
}
@keyframes sweep {
  to {
    transform: translateX(16vw) rotate(8deg);
    opacity: 0.35;
  }
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1080px;
}
.eyebrow,
.section-label {
  font:
    800 10px/1.2 Arial,
    sans-serif;
  letter-spacing: 3px;
  color: #a9a9a9;
}
.eyebrow span {
  display: inline-block;
  width: 38px;
  height: 2px;
  background: var(--fire);
  vertical-align: middle;
  margin-right: 12px;
}
.logo-lockup {
  margin: 40px 0 22px;
  width: min(700px, 82vw);
}
.logo-lockup img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 0 26px rgba(255, 83, 25, 0.3));
}
.logo-lockup p {
  text-align: right;
  margin: -5px 3% 0 0;
  font: 900 15px Arial;
  letter-spacing: 16px;
  color: #adbcc0;
}
.hero h1,
.manifesto h2,
.section-head h2,
.impact h2,
.work h2,
.stage-copy h2,
.contact h2 {
  font-family: Impact, "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.9;
  margin: 0;
}
.hero h1 {
  font-size: clamp(42px, 7.8vw, 114px);
}
em {
  font-style: normal;
  color: var(--fire);
}
.hero-lede {
  max-width: 620px;
  margin: 28px 0 32px;
  font-size: 17px;
  line-height: 1.65;
  color: #b7b9b9;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  padding: 17px 22px;
  background: var(--fire);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
}
.button:hover {
  background: #ff7647;
}
.text-link {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #aaa;
}
.scroll-cue {
  position: absolute;
  right: 5vw;
  bottom: 32px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 2px;
  color: #888;
}
.scroll-cue span {
  display: inline-block;
  height: 54px;
  width: 1px;
  margin-top: 12px;
  background: linear-gradient(var(--fire), transparent);
}
.manifesto,
.services,
.work,
.stageplot,
.contact {
  padding: 130px 7vw;
}
.manifesto {
  background: #0b0d0f;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10vw;
  align-items: end;
  margin-top: 38px;
}
.manifesto h2 {
  font-size: clamp(53px, 8.6vw, 125px);
}
.manifesto h2 span {
  color: transparent;
  -webkit-text-stroke: 1px #7f8587;
}
.manifesto-grid > div > p:first-child {
  font-size: 17px;
  line-height: 1.8;
  color: #aeb2b3;
}
.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 45px;
}
.stat b {
  font: 900 44px Impact;
  color: var(--fire);
}
.stat span {
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.5;
}
.services {
  background: #070809;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(50px, 7vw, 92px);
  margin-top: 20px;
}
.section-head > p {
  max-width: 360px;
  color: #999;
  line-height: 1.6;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  position: relative;
  min-height: 330px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.025), transparent);
  transition: 0.3s;
}
.service-card:hover {
  background: linear-gradient(150deg, rgba(255, 87, 34, 0.18), transparent);
  transform: translateY(-8px);
}
.service-card > span {
  font-size: 10px;
  color: var(--fire);
  letter-spacing: 2px;
}
.service-card h3 {
  margin: 115px 0 18px;
  font-size: 21px;
  text-transform: uppercase;
}
.service-card p {
  color: #999;
  line-height: 1.6;
  font-size: 14px;
}
.service-card i {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-style: normal;
  color: var(--fire);
}
.impact {
  min-height: 80svh;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.94),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.94)
    ),
    radial-gradient(circle at center, rgba(244, 78, 17, 0.35), transparent 37%),
    repeating-linear-gradient(100deg, #090a0b 0 4px, #141312 5px 9px);
  border-block: 1px solid #2b1a14;
}
.impact-text p {
  font-size: 9px;
  letter-spacing: 4px;
  color: #aaa;
}
.impact h2 {
  font-size: clamp(66px, 11vw, 170px);
  text-shadow: 0 10px 55px black;
}
.impact-text span {
  display: block;
  margin-top: 28px;
  color: #aaa;
  font-style: italic;
}
.work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  align-items: center;
  background: #0b0d0e;
}
.work h2 {
  font-size: clamp(62px, 9vw, 130px);
  margin: 25px 0;
}
.work-copy > p:not(.section-label) {
  max-width: 560px;
  color: #aaa;
  line-height: 1.7;
}
.work ul {
  list-style: none;
  padding: 25px 0 0;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 2px;
}
.work li:before {
  content: "+";
  color: var(--fire);
  margin-right: 12px;
}
.road-case {
  min-height: 480px;
  position: relative;
  border: 16px solid #303437;
  background: repeating-linear-gradient(90deg, #111 0 13px, #151719 14px 27px);
  box-shadow:
    inset 0 0 0 3px #080808,
    20px 30px 70px #000;
  transform: rotate(2deg);
}
.road-case:before,
.road-case:after {
  content: "";
  position: absolute;
  top: 42%;
  width: 48px;
  height: 82px;
  border: 6px solid #676b6c;
  background: #222;
}
.road-case:before {
  left: -29px;
}
.road-case:after {
  right: -29px;
}
.case-label {
  position: absolute;
  inset: 12% 10%;
  border: 2px solid #ddd;
  background: #e4e0d7;
  color: #111;
  padding: 8%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.case-label small {
  font-weight: bold;
  letter-spacing: 2px;
}
.case-label strong {
  font: 900 150px/0.8 Impact;
  color: #141414;
}
.case-label span {
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 2px;
}
.stageplot {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 8vw;
  align-items: center;
  background: radial-gradient(
      circle at 80% 50%,
      rgba(55, 157, 188, 0.14),
      transparent 32%
    ),
    #05090c;
}
.stage-copy h2 {
  font-size: clamp(66px, 9vw, 125px);
  margin: 25px 0;
}
.stage-copy em {
  color: var(--steel);
}
.stage-copy > p:not(.section-label) {
  color: #9ca9ad;
  line-height: 1.7;
}
.button-blue {
  background: #2d9cbc;
  margin-top: 24px;
}
.plot-ui {
  border: 1px solid #356475;
  background: #071116;
  box-shadow: 0 0 80px rgba(72, 176, 206, 0.13);
  transform: perspective(1000px) rotateY(-5deg);
}
.ui-top {
  height: 48px;
  border-bottom: 1px solid #31515d;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #7faebb;
}
.ui-top b {
  color: #81cf98;
}
.ui-body {
  display: grid;
  grid-template-columns: 90px 1fr;
  height: 410px;
}
.ui-body aside {
  border-right: 1px solid #24434e;
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  gap: 22px;
  font-size: 8px;
  color: #65838d;
}
.plot-grid {
  position: relative;
  background: repeating-linear-gradient(
      90deg,
      transparent 0 38px,
      rgba(93, 176, 199, 0.1) 39px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0 38px,
      rgba(93, 176, 199, 0.1) 39px
    );
}
.plot-grid > b {
  position: absolute;
  font-size: 8px;
  color: #417281;
}
.plot-grid > b:first-of-type {
  left: 10px;
  bottom: 8px;
}
.plot-grid > b:last-of-type {
  right: 10px;
  top: 8px;
}
.mic,
.amp,
.drums {
  position: absolute;
}
.mic {
  width: 14px;
  height: 14px;
  border: 2px solid #54b9d4;
  border-radius: 50%;
  top: 18%;
}
.mic:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 30px;
  background: #54b9d4;
  top: 12px;
  left: 5px;
}
.m1 {
  left: 30%;
}
.m2 {
  left: 66%;
}
.amp {
  padding: 18px 10px;
  border: 1px solid #bf603a;
  top: 47%;
  font-size: 7px;
  font-style: normal;
  color: #e58b66;
}
.a1 {
  left: 18%;
}
.a2 {
  right: 18%;
}
.drums {
  left: 46%;
  top: 52%;
  width: 80px;
  height: 70px;
  border: 1px solid #57a8c0;
  border-radius: 50%;
}
.drums span {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid #57a8c0;
  border-radius: 50%;
}
.drums span:nth-child(1) {
  left: -16px;
}
.drums span:nth-child(2) {
  right: -16px;
}
.drums span:nth-child(3) {
  left: 25px;
  top: 30px;
}
.contact {
  text-align: center;
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
      circle at center,
      rgba(255, 81, 21, 0.12),
      transparent 34%
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0 79px,
      rgba(255, 255, 255, 0.025) 80px
    ),
    #08090a;
}
.contact h2 {
  font-size: clamp(74px, 12vw, 180px);
  margin: 24px 0;
}
.contact > p:not(.section-label) {
  color: #999;
  line-height: 1.7;
}
.mail {
  display: inline-flex;
  gap: 25px;
  margin-top: 42px;
  padding: 18px 0;
  border-bottom: 2px solid var(--fire);
  font-weight: bold;
  font-size: clamp(18px, 2.4vw, 32px);
}
.mail span {
  color: var(--fire);
}
footer {
  min-height: 100px;
  padding: 35px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 9px;
  letter-spacing: 2px;
  color: #7f8587;
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .nav-shell {
    height: 70px;
  }
  .menu {
    display: block;
    position: relative;
  }
  .menu i {
    display: block;
    height: 2px;
    background: white;
    margin: 7px;
  }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 30px 5vw;
    background: #070809;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open {
    display: flex;
  }
  .hero {
    padding: 130px 6vw 70px;
  }
  .manifesto,
  .services,
  .work,
  .stageplot,
  .contact {
    padding: 90px 6vw;
  }
  .manifesto-grid,
  .work,
  .stageplot {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 28px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .road-case {
    min-height: 360px;
  }
  .case-label strong {
    font-size: 110px;
  }
  .plot-ui {
    transform: none;
  }
  .ui-body {
    height: 330px;
  }
  footer {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-lede {
    font-size: 15px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 260px;
  }
  .service-card h3 {
    margin-top: 75px;
  }
  .manifesto h2,
  .section-head h2 {
    letter-spacing: -1px;
  }
  .road-case {
    min-height: 310px;
  }
  .case-label strong {
    font-size: 84px;
  }
  .stageplot {
    overflow: hidden;
  }
  .plot-ui {
    width: 130%;
    transform: scale(0.77);
    transform-origin: left center;
    margin-right: -30%;
  }
  .contact h2 {
    font-size: 23vw;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .cursor-light {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .beam {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.logo-lockup {
  margin: 18px 0 10px;
  width: min(530px, 72vw);
}
.logo-lockup img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 0 34px rgba(255, 83, 25, 0.35));
}
.nav li {
  list-style: none;
}
.admin-bar .nav-shell {
  top: 32px;
}
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.screen-reader-text:focus {
  position: fixed !important;
  z-index: 100000;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 14px 18px;
  clip: auto;
  background: #fff;
  color: #111;
  font-weight: 700;
}
.wp-content {
  min-height: 80vh;
  padding: 150px 7vw 100px;
  background: #0b0d0f;
}
.wp-entry {
  max-width: 900px;
  margin: auto;
}
.wp-entry h1 {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.9;
}
.entry-content {
  font-size: 17px;
  line-height: 1.8;
  color: #c1c4c4;
}
.entry-content a {
  color: var(--fire);
  text-decoration: underline;
}
@media (max-width: 782px) {
  .admin-bar .nav-shell {
    top: 46px;
  }
}
