/*
Theme Name: MyTheme
Author: Jamie
Description: Minimal custom WordPress theme
Version: 1.7
*/

/* --------------------------------------------------
   Base
-------------------------------------------------- */

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: #eee;
  background-color: #111;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: #9ecbff;
  text-decoration: none;
}

a:hover {
  color: #cde4ff;
}

/* --------------------------------------------------
   Background / Shell
-------------------------------------------------- */

.site-background {
  position: relative;
  min-height: 100vh;
}

.site-background::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/img/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.site-background::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.2);
}

.site-shell {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  color: #eee;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-inner {
  width: 100%;
  padding: 0 16px;
}

/* --------------------------------------------------
   Main / Footer
-------------------------------------------------- */

.site-main {
  padding: 10px 0 40px;
}

.page-content h1,
.site-main h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 1.1;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 40px;
}

/* --------------------------------------------------
   Header / Hero
-------------------------------------------------- */

.site-header {
  position: relative;
  padding: 0 0 20px;
}

.hero-header {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 80px;
  background: #000;
}

.hero-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 230px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  top: 16px;
  left: 32px;
  z-index: 3;
}

.hero-logo img {
  display: block;
  width: 220px;
  max-width: 42vw;
  height: auto;
}

.hero-band-image {
  height: 500px;
  overflow: hidden;
}

.hero-band-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header right area */
.hero-header-right {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Tagline */
.hero-tagline {
  margin: 0;
  color: #ccc;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: right;
}

/* Social icons */
.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-socials img {
  width: 28px;
  height: 28px;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-socials a:hover img {
  opacity: 1;
  transform: translateY(-2px);
}

/* Hero tour promo */

.hero-tour-promo {
  position: absolute;
  left: 50%;
  bottom: 48px;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  text-align: center;
}

.hero-tour-kicker {
  margin: 0 0 6px;
  color: #d0b27a;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-tour-title {
  margin: 0 0 6px;
  color: #d4af6a;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.75),
    0 0 18px rgba(0, 0, 0, 0.45);
}

.hero-tour-locations {
  margin: 0 0 12px;
  color: #f0e6d2;
  font-size: 1rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-tour-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 106, 0.5);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

@media (hover: hover) {
  .hero-tour-link:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 106, 0.8);
    background: rgba(0, 0, 0, 0.42);
  }
}

/* --------------------------------------------------
   Nav strip under hero
-------------------------------------------------- */

.hero-nav-strip {
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-nav {
  max-width: 100%;
}

.hero-nav-menu {
  list-style: none;
  margin: 0;
  padding: 12px 24px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.hero-nav-menu li {
  margin: 0;
  padding: 0;
}

.hero-nav-menu a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.hero-nav-menu a:hover {
  color: #d4af6a;
}

/* --------------------------------------------------
   Burger / Drawer
-------------------------------------------------- */

.menu-toggle {
  position: absolute;
  top: 18px;
  right: 32px;
  z-index: 4;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  padding: 100px 28px 28px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  overflow-y: auto;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.site-drawer.is-open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-menu li {
  margin-bottom: 18px;
}

.drawer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.site-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9998;
}

.site-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --------------------------------------------------
   About Section
-------------------------------------------------- */

.band-intro-section {
  padding: 20px 0 24px;
}

.band-intro-panel {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.band-intro-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.band-intro-text {
  max-width: 950px;
  margin: 0 auto;
}

.band-intro-text p {
  margin: 0 0 18px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.8;
}

.band-intro-text p:last-child {
  margin-bottom: 0;
}

.band-intro-text strong {
  color: #fff;
  font-weight: 700;
}

.band-intro-text em {
  color: #f0f0f0;
  font-style: italic;
}

/* --------------------------------------------------
   Release Section
-------------------------------------------------- */

.release-section {
  padding: 8px 0 32px;
}

.release-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.release-media {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.release-media img {
  display: block;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.release-content {
  min-width: 0;
}

.release-kicker {
  margin: 0 0 8px;
  color: #bcbcbc;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-track {
  margin: 0 0 12px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
}

.release-description {
  margin: 0 0 20px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 40rem;
}

.release-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.release-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.release-btn.youtube {
  border-color: rgba(255, 0, 0, 0.35);
}

.release-btn.spotify {
  border-color: rgba(30, 215, 96, 0.35);
}

.release-btn.apple {
  border-color: rgba(255, 255, 255, 0.25);
}

@media (hover: hover) {
  .release-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.04);
  }

  .release-media img {
    transition: transform 0.3s ease;
  }

  .release-panel:hover .release-media img {
    transform: scale(1.02);
  }
}

/* --------------------------------------------------
   Band Section
-------------------------------------------------- */

.band-section {
  padding: 20px 0 40px;
}

.band-section-title {
  margin: 0 0 24px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.band-member {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.band-member-image {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.band-member-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-member-content {
  flex: 1;
  min-width: 0;
}

.band-member-name {
  margin: 0 0 4px;
  font-size: 1.25rem;
  line-height: 1.1;
  color: #fff;
}

.band-member-role {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: #b9b9b9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.band-member-real-name {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #c8a96b;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.band-member-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
}

.band-member-instagram img {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.85;
}

@media (hover: hover) {
  .band-member {
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .band-member:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
  }

  .band-member-instagram:hover {
    color: #fff;
  }

  .band-member-instagram:hover img {
    opacity: 1;
  }
}

/* --------------------------------------------------
   Tour Section
-------------------------------------------------- */

.tour-section {
  padding: 20px 0 40px;
}

.tour-title {
  text-align: center;
  margin: 0 0 24px;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tour-card {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.tour-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.tour-australia::before {
  background: rgba(205, 170, 110, 0.45);
}

.tour-japan::before {
  background: rgba(170, 40, 40, 0.45);
}

.tour-europe::before {
  background: rgba(210, 210, 210, 0.35);
}

.tour-latm::before {
  background: rgba(120, 120, 120, 0.3);
}

.tour-card-header {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.tour-poster {
  width: 110px;
}

.tour-poster img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.tour-region {
  margin: 0;
  font-size: 1.9rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.03em;
}

.tour-shows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tour-show {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tour-show:first-child {
  border-top: 0;
  padding-top: 0;
}

.tour-show-info {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.55;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.tour-coming-text {
  margin: 0;
  color: #aaa;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
}

@media (hover: hover) {
  .tour-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .tour-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .tour-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* --------------------------------------------------
   Latest News Section
-------------------------------------------------- */

.latest-news-section {
  padding: 16px 0 24px;
}

.latest-news-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.latest-news-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.latest-news-image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.latest-news-image img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.latest-news-content {
  min-width: 0;
}

.latest-news-meta {
  margin: 0 0 8px;
  color: #bcbcbc;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.latest-news-post-title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.latest-news-post-title a {
  color: #fff;
  text-decoration: none;
}

.latest-news-post-title a:hover {
  color: #d4af6a;
}

.latest-news-excerpt {
  margin: 0 0 16px;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
}

.latest-news-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.latest-news-empty {
  margin: 0;
  text-align: center;
  color: #aaa;
}

.latest-news-all {
  text-align: center;
  margin-top: 20px;
}

.latest-news-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 106, 0.5);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.28);
  transition: all 0.25s ease;
}

.latest-news-all-link:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 106, 0.8);
  background: rgba(255, 255, 255, 0.05);
}

@media (hover: hover) {
  .latest-news-card {
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .latest-news-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.14);
  }

  .latest-news-link:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 106, 0.5);
    background: rgba(255, 255, 255, 0.04);
  }
}

/* --------------------------------------------------
   Standard pages / posts / news archive
-------------------------------------------------- */

.standard-page,
.single-post,
.news-archive {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.entry-title,
.archive-title {
  margin: 0 0 20px;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.1;
}

.entry-meta,
.news-card-meta {
  color: #bcbcbc;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.entry-content,
.news-card-excerpt {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.8;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
  max-width: none;
}

.single-post-header {
  margin-bottom: 20px;
}

.entry-featured-image {
  margin: 20px 0 28px;
  max-width: 900px;
}

.entry-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}

/* News archive cards */

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 22px;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
}

.news-card-image {
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.news-card-image img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.news-card-title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.news-card-title a {
  color: #fff;
  text-decoration: none;
}

.news-card-title a:hover {
  color: #d4af6a;
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.pagination-wrap {
  margin-top: 20px;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media (max-width: 767px) {
  .hero-header {
    padding-top: 16px;
  }

  .hero-header::after {
    height: 150px;
  }

  .hero-logo {
    position: static;
    text-align: center;
    margin-bottom: 10px;
    padding: 0 56px;
  }

  .hero-logo img {
    width: 160px;
    max-width: 62%;
    margin: 0 auto;
  }

  .hero-header-right {
    position: static;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-bottom: 12px;
  }

  .hero-tagline {
    text-align: center;
    margin: 0;
    padding: 0 20px;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: #aaa;
    white-space: normal;
  }

  .hero-socials {
    justify-content: center;
    gap: 16px;
  }

  .hero-socials img {
    width: 26px;
    height: 26px;
  }

  .hero-band-image {
    height: 250px;
  }

  .hero-band-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero-tour-promo {
    left: 16px;
    right: 16px;
    bottom: 34px;
    transform: none;
    width: auto;
    max-width: none;
    padding: 0;
    text-align: center;
  }

  .hero-tour-kicker {
    font-size: 0.68rem;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
  }

  .hero-tour-title {
    font-size: 1.15rem;
    margin-bottom: 4px;
    line-height: 1.05;
  }

  .hero-tour-locations {
    font-size: 0.8rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .hero-tour-link {
    min-width: 126px;
    padding: 8px 14px;
    font-size: 0.82rem;
  }

  .menu-toggle {
    display: inline-flex;
    top: 14px;
    right: 18px;
  }

  .hero-nav-strip {
    display: none;
  }

  .band-intro-panel {
    padding: 20px;
  }

  .band-intro-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .band-intro-text p {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .release-panel {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }

  .release-media {
    max-width: 180px;
  }

  .release-track {
    font-size: 1.6rem;
  }

  .release-description {
    margin-left: auto;
    margin-right: auto;
  }

  .release-links {
    justify-content: center;
  }

  .release-btn {
    min-width: 120px;
  }

  .band-member {
    padding: 18px;
  }

  .band-member-instagram img {
    width: 18px;
    height: 18px;
  }

  .tour-card {
    padding: 20px;
  }

  .tour-card-header {
    grid-template-columns: 78px 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .tour-poster {
    width: 78px;
  }

  .tour-region {
    font-size: 1.4rem;
  }

  .tour-show {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tour-btn {
    justify-self: start;
  }

  .latest-news-card,
  .news-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .latest-news-image img,
  .news-card-image img {
    height: 180px;
  }

  .latest-news-title {
    font-size: 1.6rem;
  }

  .latest-news-post-title,
  .news-card-title {
    font-size: 1.35rem;
  }

  .entry-title,
  .archive-title {
    font-size: 1.8rem;
  }

  .entry-featured-image {
    max-width: 100%;
  }

  .entry-featured-image img {
    max-height: 320px;
  }
}

@media (min-width: 768px) {
  .site-inner {
    padding: 0 24px;
  }

  .site-main {
    padding: 10px 0 56px;
  }

  .menu-toggle {
    display: none;
  }
}

@media (min-width: 992px) {
  .band-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
  }

  .band-member {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 22px 16px;
  }

  .band-member-image {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    margin-bottom: 14px;
  }

  .band-member-content {
    width: 100%;
  }

  .band-member-name {
    font-size: 1.35rem;
  }

  .band-member-role {
    margin-bottom: 12px;
  }

  .band-member-instagram {
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .site-inner {
    padding: 0 32px;
  }
}

/* --------------------------------------------------
   Contact Form
-------------------------------------------------- */

.contact-page {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-top: 8px;
}

.contact-intro {
  margin-bottom: 24px;
}

.contact-form {
  margin-top: 10px;
  padding: 28px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.contact-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

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

.form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #d8d8d8;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 106, 0.6);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.08);
}

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

.form-captcha {
  margin-top: 6px;
}

.form-actions {
  margin-top: 24px;
  text-align: center;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 106, 0.5);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 106, 0.8);
  background: rgba(0, 0, 0, 0.42);
}

.form-success,
.form-error {
  margin: 0 0 22px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.98rem;
}

.form-success {
  background: rgba(40, 120, 60, 0.22);
  border: 1px solid rgba(80, 180, 100, 0.35);
  color: #d8ffd8;
}

.form-error {
  background: rgba(120, 40, 40, 0.22);
  border: 1px solid rgba(180, 80, 80, 0.35);
  color: #ffd8d8;
}

@media (max-width: 767px) {
  .contact-page {
    max-width: 100%;
  }

  .contact-form {
    padding: 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form textarea {
    min-height: 180px;
  }

  .contact-submit-btn {
    width: 100%;
    min-width: 0;
  }
}