/* =========================================================================
   Decibel Shop Home — Static Clone
   Extracted from http://47.243.157.31:5519/
   Font stack: PMingLiU (body), Montserrat (headings)
   ========================================================================= */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.88;
  color: var(--color-text);
  background: var(--color-page-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-accent); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; margin: 0; color: var(--color-heading); }
body :where(p, li, span, a, button, input, select, textarea, label, small, time, address, td, th, figcaption, blockquote) {
  font-family: var(--font-body);
}
h1 :where(a, span),
h2 :where(a, span),
h3 :where(a, span),
h4 :where(a, span),
h5 :where(a, span),
h6 :where(a, span),
:where(.section-heading, .hero__title, .page-hero__title, .product-card__title, .post-card__title, .gallery-card__title, .feature__title, .who-we-are__title, .contact__heading, .contact-card__title, .footer-widget__title, .about-me__title, .tuition__title, .band-row__title) :where(a, span) {
  font-family: inherit;
}

/* ---------- Design tokens ---------- */
:root {
  /* Color palette */
  --color-page-bg: #f6f6f6;
  --color-surface: #ffffff;
  --color-surface-alt: #fafafa;
  --color-text: #444444;
  --color-text-muted: #676767;
  --color-heading: #444444;
  --color-heading-strong: #0d0d0d;
  --color-accent: #c74735;
  --color-accent-hover: #b13d2d;
  --color-dark: #232323;
  --color-darker: #1d1d1d;
  --color-footer-bg: #0e0e0e;
  --color-promo-bg: #1d2733;
  --color-border: #e6e6e6;
  --color-border-light: rgba(0,0,0,0.07);
  --color-border-dark: rgba(255,255,255,0.07);
  --color-on-dark: #ffffff;
  --color-on-dark-muted: #bdbdbd;
  --color-sale: #c74735;

  /* Typography */
  --font-body: "PMingLiU", "新細明體", "MingLiU", "細明體", serif;
  --font-heading: "Montserrat", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-nav: var(--font-body);
  --font-display: "Oswald", "Noto Sans SC", sans-serif;

  --text-body: 16px;
  --text-small: 14px;
  --text-xs: 12px;
  --text-nav: 13px;
  --text-h2: 32px;
  --text-h2-hero: 56px;
  --text-h3: 18px;
  --text-h-promo: 64px;
  --text-product-title: 15px;
  --text-product-price: 17.6px;
  --text-post-title: 22px;

  /* Layout */
  --container: 1170px;
  --container-wide: 1440px;
  --gutter: 30px;
  --section-pad-y: 90px;
  --section-pad-y-sm: 60px;
  --header-height: 100px;

  /* Effects */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-pill: 999px;
  --shadow-card: 0 6px 24px rgba(0,0,0,0.06);
  --shadow-header: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-product-hover: 0 14px 30px rgba(0,0,0,0.12);
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding: var(--section-pad-y) 0; }
.section--tight { padding: var(--section-pad-y-sm) 0; }
.section--light { background: var(--color-page-bg); }
.section--white { background: var(--color-surface); }
.section--dark { background: var(--color-dark); color: var(--color-on-dark); }
.section--dark h2, .section--dark h3 { color: var(--color-on-dark); }
.section-heading {
  text-align: center;
  font-size: var(--text-h2);
  line-height: 1.5;
  margin: 0 0 50px;
  font-weight: 700;
}
.section-heading::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: var(--color-accent);
  margin: 18px auto 0;
}
.section-subheading {
  margin: -34px 0 48px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  padding: 18px 32px;
  border-radius: 0;
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-base);
  cursor: pointer;
}
.btn--accent { background: var(--color-accent); color: #fff; }
.btn--accent:hover { background: var(--color-accent-hover); color: #fff; transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--color-heading); border: 2px solid var(--color-heading); }
.btn--outline:hover { background: var(--color-heading); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border: 2px solid #fff; }
.btn--outline-light:hover { background: #fff; color: var(--color-heading); }
.btn--ghost { color: var(--color-text-muted); font-weight: 700; font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 1px; }
.btn--ghost:hover { color: var(--color-accent); }
.btn--block { display: flex; width: 100%; }

/* ---------- Animation: fade-up on scroll ---------- */
/* Initial hidden state only applies when JS has booted, so no-JS users still see content. */
body.has-js .fx-fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
body.has-js .fx-fade-up.is-in-view { opacity: 1; transform: translateY(0); }
body.has-js .fx-zoom-in { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s ease; }
body.has-js .fx-zoom-in.is-in-view { opacity: 1; transform: scale(1); }
@media (prefers-reduced-motion: reduce) {
  body.has-js .fx-fade-up,
  body.has-js .fx-zoom-in { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Section sub-files appended below ====================================== */

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #f6f6f6;
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}
body.not-attop .site-header { box-shadow: var(--shadow-header); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-height);
}
.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo img { width: 60px; height: auto; }

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}
.site-nav__item > a {
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  padding: 0 18px;
  font-family: var(--font-nav);
  font-size: var(--text-nav);
  font-weight: 700;
  color: var(--color-heading-strong);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.site-nav__item > a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 32px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition-base);
}
.site-nav__item > a:hover,
.site-nav__item--current > a { color: var(--color-accent); }
.site-nav__item > a:hover::after,
.site-nav__item--current > a::after { transform: scaleX(1); }

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.site-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--color-heading-strong);
  position: relative;
}
.site-header__icon:hover { color: var(--color-accent); }
.site-header__cart { padding-right: 4px; }
.site-header__cart-count {
  position: absolute;
  top: 4px;
  right: -2px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0 5px;
  line-height: 1;
}
.site-header__menu {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.site-header__menu span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-heading-strong);
  transition: transform var(--transition-base), opacity var(--transition-base);
}
body.nav-open .site-header__menu span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .site-header__menu span:nth-child(2) { opacity: 0; }
body.nav-open .site-header__menu span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 960px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: rgba(15, 15, 15, 0.97);
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 0;
    overflow-y: auto;
  }
  body.nav-open .site-nav { transform: translateY(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__item > a {
    width: 100%;
    height: auto;
    padding: 16px 24px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav__item > a::after { display: none; }
  .site-header__menu { display: inline-flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: #0d0d0d;
  color: #fff;
  overflow: hidden;
  min-height: 495px;
}
.hero__slides { position: relative; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.hero__slide:first-child { position: relative; }
.hero__slide.is-active { opacity: 1; pointer-events: auto; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}
.hero__bg--soft-blur {
  background-position: center 46%;
  filter: brightness(0.62) blur(6px);
  transform: scale(1.06);
}
.hero__bg--mirror-right {
  background-position: center;
  transform: scaleX(-1);
}
.hero__bg--abrsm-hands {
  background-position: center right;
}
.hero__bg--studio-crop {
  background-position: 68% 52%;
  transform: scale(1.08);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: 495px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__content { max-width: 540px; }
.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 22px;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 32px;
  color: #fff;
  text-transform: none;
}
.hero__title-line { display: block; }
.hero__title-line--nowrap { white-space: nowrap; }
.hero__title-line--alt { color: rgba(255,255,255,0.92); }
.hero__cta { padding: 18px 36px; }
.hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.hero__media img {
  max-height: 540px;
  width: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background var(--transition-base), transform var(--transition-base);
}
.hero__dot.is-active { background: var(--color-accent); transform: scale(1.25); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: none; }
  .hero__title { font-size: 48px; }
  .hero__media { justify-content: center; }
  .hero__media img { max-height: 360px; }
}

/* ---------- Sales / product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.product-card:hover { box-shadow: var(--shadow-product-hover); transform: translateY(-4px); }
.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f1f1f1;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.product-card__media--alt {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__media--alt { opacity: 1; }
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.product-card__link {
  display: block;
  height: 100%;
  position: relative;
}
.product-card__link::before,
.product-card__link::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.product-card__link::before {
  content: "";
  background: rgba(0,0,0,0.46);
  transition: background var(--transition-base);
}
.product-card__link::after {
  content: attr(data-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.product-card:hover .product-card__link::before {
  background: rgba(0,0,0,0.72);
}
.product-card:hover .product-card__link::after {
  opacity: 1;
  transform: translateY(0);
}
.product-card__body {
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.product-card__info { flex: 1; min-width: 0; }
.product-card__title {
  font-size: var(--text-product-title);
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--color-heading);
}
.product-card__title a { color: inherit; }
.product-card__title a:hover { color: var(--color-accent); }
.product-card__price {
  font-family: var(--font-body);
  font-size: var(--text-product-price);
  font-weight: 700;
  color: var(--color-text-muted);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.product-card__price del {
  color: rgba(103, 103, 103, 0.55);
  text-decoration: line-through;
  font-size: 15px;
}
.product-card__price ins { text-decoration: none; color: var(--color-accent); }
.product-card__actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateX(0); }
.product-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: #fff;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}
.product-card__action:hover,
.product-card__action--primary {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.sales__more {
  text-align: center;
  margin-top: 50px;
}
.sales__more a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-heading-strong);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
}
.sales__more a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---------- Studio intro ---------- */
.studio-intro {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.studio-intro__inner {
  max-width: 920px;
  text-align: center;
}
.studio-intro__title {
  font-size: 34px;
  line-height: 1.25;
  margin: 0 0 24px;
  color: #ffffff;
}
.studio-intro__text {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: #ffffff;
}

/* ---------- Promo banner ---------- */
.promo {
  position: relative;
  background-color: var(--color-promo-bg);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  color: #fff;
  min-height: 480px;
  display: flex;
  align-items: center;
}
.promo--piano {
  background-position: center left;
}
@media (min-width: 901px) and (hover: hover) {
  .promo { background-attachment: fixed; }
}
.promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.38) 42%, rgba(0,0,0,0.76) 100%);
}
.promo__inner {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  justify-content: flex-end;
}
.promo__content {
  max-width: 600px;
  text-align: left;
}
.promo__title {
  font-family: var(--font-heading);
  font-size: var(--text-h-promo);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 32px;
  color: #fff;
}
.promo__title span { display: block; }
.promo__cta { padding: 18px 38px; }

@media (max-width: 900px) {
  .promo { background-attachment: scroll; min-height: 380px; }
  .promo__inner { justify-content: center; text-align: center; padding: 70px 24px; }
  .promo__content { text-align: center; }
  .promo__title { font-size: 40px; }
}

/* ---------- Releases ---------- */
.release-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
}
.release-card { text-align: center; }
.release-disc {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  max-width: 320px;
  margin: 0 auto;
}
.release-disc__disc {
  position: absolute;
  inset: 0;
  background: #111 url('../images/cd-disc-circular-text.png') center/cover no-repeat;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), inset 0 0 0 2px rgba(255,255,255,0.05);
  transform: translateX(0);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.release-disc__disc::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18%;
  height: 18%;
  background: #e6e6e6;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 0 6px #111;
}
.release-disc__cover {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xs);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  z-index: 2;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.release-disc__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-card:hover .release-disc__disc { transform: translateX(28%) rotate(8deg); }
.release-card:hover .release-disc__cover { transform: translateX(-2%); }
.release-card__title {
  margin-top: 22px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  text-transform: lowercase;
}
.releases__more {
  text-align: center;
  margin-top: 60px;
}
.releases__more a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-heading-strong);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
}
.releases__more a:hover { color: var(--color-accent); }

@media (max-width: 900px) {
  .release-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 520px) {
  .release-grid { grid-template-columns: 1fr; }
}

/* ---------- Features ---------- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.feature {
  padding: 24px 20px;
}
.feature__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 71, 53, 0.08);
  color: var(--color-accent);
}
.feature__title {
  font-size: var(--text-h3);
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--color-heading);
}
.feature__desc {
  font-size: var(--text-small);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0;
}

@media (max-width: 900px) {
  .features__grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
}
@media (max-width: 540px) {
  .features__grid { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.post-card {
  background: #fff;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}
.post-card:hover { box-shadow: var(--shadow-product-hover); transform: translateY(-4px); }
.post-card__cover {
  position: relative;
  display: block;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.post-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.post-card:hover .post-card__cover img { transform: scale(1.06); }
.post-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
}
.post-card__body { padding: 24px; }
.post-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-post-title);
  line-height: 1.4;
  margin: 0 0 12px;
  color: var(--color-heading);
}
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--color-accent); }
.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}
.post-card__meta a { color: var(--color-text-muted); }
.post-card__meta a:hover { color: var(--color-accent); }
.post-card__meta-sep { color: rgba(0,0,0,0.2); }
.post-card__author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.post-card__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.post-card__tag {
  color: rgba(0,0,0,0.4);
  font-style: italic;
}
.post-card__excerpt {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin: 0 0 18px;
}
.post-card__more { font-size: var(--text-xs); }

@media (max-width: 900px) {
  .blog__grid { grid-template-columns: 1fr; }
}

/* ---------- Logo strip ---------- */
.logo-strip__row {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 24px;
  align-items: center;
  padding: 30px 0;
}
.logo-strip__item {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-strip__item img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%) brightness(0.6);
  opacity: 0.55;
  transition: filter var(--transition-base), opacity var(--transition-base);
}
.logo-strip__item img:hover { filter: grayscale(0%) brightness(1); opacity: 1; }

@media (max-width: 1100px) {
  .logo-strip__row { grid-template-columns: repeat(6, 1fr); gap: 20px 30px; }
}
@media (max-width: 600px) {
  .logo-strip__row { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ---------- Newsletter ---------- */
.newsletter {
  position: relative;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  color: #fff;
}
.newsletter--piano {
  background-position: center left;
}
.newsletter__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.46));
}
.newsletter__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.newsletter__title {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.newsletter__form {
  display: flex;
  gap: 0;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px;
}
.newsletter__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  padding: 14px 16px;
  color: #fff;
  font-size: 14px;
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter__form .btn {
  padding: 14px 28px;
  height: auto;
}
.newsletter__status {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  margin: 8px 0 0;
  color: rgba(255,255,255,0.78);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 800px) {
  .newsletter__inner { grid-template-columns: 1fr; text-align: center; }
  .newsletter__form { flex-direction: column; gap: 8px; }
  .newsletter__form .btn { width: 100%; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-footer-bg);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.site-footer__widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 50px;
  border-bottom: 3px solid var(--color-border-dark);
}
.footer-widget__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  text-transform: capitalize;
}
.footer-widget__list li { margin: 0 0 8px; }
.footer-widget__list a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition-base);
}
.footer-widget__list a:hover { color: var(--color-accent); }
.footer-widget--brand {
  align-self: center;
  text-align: right;
}
.footer-brand {
  font-family: "Special Elite", "Oswald", var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  gap: 16px;
}
.site-footer__copy {
  margin: 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.site-footer__payments img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .site-footer__widgets {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-widget--brand { grid-column: 1 / -1; text-align: left; }
  .site-footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 500px) {
  .site-footer__widgets { grid-template-columns: 1fr; }
}

/* ---------- Sub-page hero banner ---------- */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.55));
}
.page-hero__inner {
  position: relative;
  padding: 70px 0;
}
.page-hero__title {
  font-family: "Special Elite", var(--font-heading);
  font-size: 56px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  margin: 0;
}
@media (max-width: 700px) {
  .page-hero { min-height: 240px; }
  .page-hero__title { font-size: 40px; }
}

/* Light section heading variant (dark backgrounds) */
.section-heading--light { color: #fff; }
.section-heading--light::after { background: var(--color-accent); }

/* Header overlay variant for about-me */
.site-header--overlay {
  position: absolute;
  inset: 0 0 auto 0;
  background: transparent !important;
  border-bottom: 0 !important;
  z-index: 10;
}
.site-header--overlay .site-nav__item > a,
.site-header--overlay .site-header__icon,
.site-header--overlay .site-header__menu span {
  color: #fff;
}
.site-header--overlay .site-header__menu span { background: #fff; }
.site-header--overlay .site-nav__item--current > a { color: var(--color-accent); }
body.page-about-me { background: #ffffff; }
body.page-about-me .page-hero__title { font-family: var(--font-heading); font-weight: 700; }
body.page-about-me .about-me { color: #222; min-height: auto; padding: 50px 0 80px; }
body.page-about-me .about-me__tint { display: none; }
body.page-about-me .about-me__title { color: #1a1a1a; }
body.page-about-me .about-me__text { color: #444; }
body.page-about-me .about-me__signature { display: none; }

/* ---------- photoslist gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
body.page-photoslist .gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}
.gallery-card {
  background: #fff;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}
.gallery-card:hover { box-shadow: var(--shadow-product-hover); transform: translateY(-4px); }
.gallery-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-card:hover .gallery-card__media img { transform: scale(1.05); }
.gallery-card__body {
  padding: 22px 24px;
  text-align: center;
}
.gallery-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 10px;
}
.gallery-card__title a { color: inherit; }
.gallery-card__title a:hover { color: var(--color-accent); }
.gallery-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gallery-card__meta a { color: var(--color-text-muted); }
.gallery-card__meta a:hover { color: var(--color-accent); }
.gallery-card__sep { color: rgba(0,0,0,0.2); }
.gallery__more {
  text-align: center;
  margin-top: 60px;
}
.gallery__more a {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-heading-strong);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
}

/* ---------- studio environment detail ---------- */
.studio-detail__intro {
  color: #fff;
  text-align: center;
  margin: 14px auto 0;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  max-width: 680px;
}
.studio-detail__back {
  margin-bottom: 24px;
}
.studio-detail__back a {
  color: var(--color-heading-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
}
.studio-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.studio-detail__item {
  margin: 0;
  background: #fff;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.studio-detail__item--wide {
  grid-column: 1 / -1;
}
.studio-detail__item img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 760px) {
  .studio-detail__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.gallery__more a:hover { color: var(--color-accent); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 900px) { body.page-photoslist .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; } }
@media (max-width: 540px) { body.page-photoslist .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- About Us: Who We Are + Members ---------- */
.who-we-are { padding: 0; }
.who-we-are__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.who-we-are__text {
  padding: 80px max(40px, 8vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.who-we-are__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--color-heading);
}
.who-we-are__text p {
  font-size: var(--text-small);
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0;
}
.who-we-are__media { position: relative; }
.who-we-are__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (max-width: 900px) {
  .who-we-are__grid { grid-template-columns: 1fr; }
  .who-we-are__media { min-height: 320px; }
}

.members {
  background: #2a2e36;
  color: #fff;
  padding: var(--section-pad-y) 0;
}
.members__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.member-card {
  background: transparent;
  text-align: center;
}
.member-card__media {
  display: block;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}
.member-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.member-card:hover .member-card__media img { transform: scale(1.06); }
.member-card__name {
  margin: 20px 0 4px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.member-card__role {
  margin: 0 0 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.member-card__social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.member-card__social a {
  color: rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: color var(--transition-base), background var(--transition-base);
}
.member-card__social a:hover { color: var(--color-accent); }
@media (max-width: 900px) { .members__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .members__grid { grid-template-columns: 1fr; } }

.about-copy {
  background: #000000;
  color: #ffffff;
}
.about-copy__inner {
  max-width: 920px;
}
.about-copy__block + .about-copy__block {
  margin-top: 54px;
}
.about-copy__block h2 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.3;
  margin: 0 0 18px;
}
.about-copy__block p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.9;
  margin: 0;
}
.about-copy__block p + p {
  margin-top: 16px;
}

/* ---------- The Band: alternating rows ---------- */
.band-rows .container > .band-row + .band-row { margin-top: 80px; }
.band-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.band-row--reverse .band-row__text { order: 2; }
.band-row--reverse .band-row__media { order: 1; }
.band-row__number {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 800;
  color: var(--color-text-muted);
  margin: 0 0 10px;
  letter-spacing: -2px;
}
.band-row__role {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0 0 24px;
  color: var(--color-heading);
}
.band-row__desc {
  font-size: var(--text-small);
  line-height: 1.85;
  color: var(--color-text-muted);
  margin: 0 0 24px;
}
.band-row__social {
  display: flex;
  gap: 14px;
}
body.page-the-band .band-row__social { display: none; }
.band-row__social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}
.band-row__social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.band-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (max-width: 800px) {
  .band-row { grid-template-columns: 1fr; gap: 24px; }
  .band-row--reverse .band-row__text,
  .band-row--reverse .band-row__media { order: initial; }
  .band-row__number { font-size: 48px; }
}

/* ---------- Tuition tables ---------- */
.tuition {
  background: #ffffff;
  color: #111111;
}
.tuition__panel + .tuition__panel {
  margin-top: 44px;
}
.tuition__heading {
  color: #111111;
  font-size: 28px;
  line-height: 1.35;
  margin: 0 0 20px;
  text-align: center;
}
.tuition-table-wrap {
  overflow-x: auto;
  background: #ffffff;
  border: 1px solid #d9d9d9;
}
.tuition-table-wrap--narrow {
  max-width: 760px;
  margin: 0 auto;
}
.tuition-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  color: #111111;
  font-size: 14px;
  line-height: 1.65;
}
.tuition-table-wrap--narrow .tuition-table {
  min-width: 560px;
}
.tuition-table th,
.tuition-table td {
  padding: 16px 18px;
  border: 1px solid #d9d9d9;
  text-align: center;
  vertical-align: middle;
}
.tuition-table thead th {
  background: #111111;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.tuition-table tbody th {
  color: #111111;
  font-weight: 700;
  text-align: left;
  background: #f7f7f7;
}
.tuition-table tbody td:last-child {
  text-align: left;
}
.tuition__cta {
  margin-top: 42px;
  text-align: center;
}
.tuition__button {
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}
.tuition__button:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-1px);
}

/* ---------- About Me: full-bleed hero ---------- */
.about-me {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: var(--header-height) 0 60px;
}
.about-me__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.about-me__tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(176,142,31,0.55), rgba(40,30,8,0.6));
  mix-blend-mode: multiply;
}
.about-me__inner {
  position: relative;
}
.about-me__copy {
  max-width: 1000px;
  padding: 40px 0;
}
.about-me__title {
  font-family: "Special Elite", var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: 1px;
}
.about-me__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
  margin: 0 0 32px;
}
.about-me__signature {
  width: 220px;
  height: auto;
  opacity: 0.9;
}
@media (max-width: 600px) {
  .about-me__title { font-size: 40px; }
  .about-me__copy { padding: 30px 0; }
}

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}
.contact__heading {
  font-family: var(--font-heading);
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--color-heading);
}
.contact__intro {
  font-size: var(--text-small);
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0 0 32px;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form__field { display: block; margin-bottom: 16px; }
.contact-form__row .contact-form__field { margin-bottom: 0; }
.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text);
  transition: border-color var(--transition-base);
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.contact-form__field textarea {
  resize: vertical;
  font-family: var(--font-body);
}
.contact-form__status {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--color-accent);
}

.contact__sidebar { display: flex; flex-direction: column; gap: 32px; }
.contact-card { padding: 0; }
.contact-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 16px;
}
.contact-card__button {
  width: 100%;
  padding: 14px 20px;
  font-size: 12px;
}
.contact-list { font-size: var(--text-small); line-height: 1.85; color: var(--color-text-muted); }
.contact-list li { margin: 0 0 6px; }
.contact-list strong { color: var(--color-heading); margin-right: 4px; font-weight: 700; }
.contact-list a { color: var(--color-text-muted); }
.contact-list a:hover { color: var(--color-accent); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  transition: background var(--transition-base), border-color var(--transition-base), color var(--transition-base);
}
.contact-social a:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
@media (max-width: 800px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form__row { grid-template-columns: 1fr; }
}

/* ---------- 5.21: black theme except tuition and study progress ---------- */
body:not(.page-the-band):not(.page-about-me) {
  --color-page-bg: #000000;
  --color-surface: #000000;
  --color-surface-alt: #050505;
  --color-text: #ffffff;
  --color-text-muted: rgba(255,255,255,0.76);
  --color-heading: #ffffff;
  --color-heading-strong: #ffffff;
  --color-border: rgba(255,255,255,0.28);
  --color-border-light: rgba(255,255,255,0.18);
  --shadow-card: none;
  --shadow-header: 0 1px 0 rgba(255,255,255,0.16);
  background: #000000;
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) h1,
body:not(.page-the-band):not(.page-about-me) h2,
body:not(.page-the-band):not(.page-about-me) h3,
body:not(.page-the-band):not(.page-about-me) h4,
body:not(.page-the-band):not(.page-about-me) h5,
body:not(.page-the-band):not(.page-about-me) h6,
body:not(.page-the-band):not(.page-about-me) p,
body:not(.page-the-band):not(.page-about-me) li,
body:not(.page-the-band):not(.page-about-me) span,
body:not(.page-the-band):not(.page-about-me) strong {
  color: inherit;
}

body:not(.page-the-band):not(.page-about-me) [style*="color"] {
  color: #ffffff !important;
}

body:not(.page-the-band):not(.page-about-me) a:hover {
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .site-header,
body:not(.page-the-band):not(.page-about-me) .section--white,
body:not(.page-the-band):not(.page-about-me) .section--light,
body:not(.page-the-band):not(.page-about-me) .product-card,
body:not(.page-the-band):not(.page-about-me) .post-card,
body:not(.page-the-band):not(.page-about-me) .gallery-card,
body:not(.page-the-band):not(.page-about-me) .who-we-are__text {
  background: #000000;
  color: #ffffff;
  border-color: rgba(255,255,255,0.28);
}

body:not(.page-the-band):not(.page-about-me) .site-nav__item > a,
body:not(.page-the-band):not(.page-about-me) .site-header__icon,
body:not(.page-the-band):not(.page-about-me) .site-nav__item--current > a,
body:not(.page-the-band):not(.page-about-me) .product-card__title,
body:not(.page-the-band):not(.page-about-me) .release-card__title,
body:not(.page-the-band):not(.page-about-me) .feature__title,
body:not(.page-the-band):not(.page-about-me) .post-card__title,
body:not(.page-the-band):not(.page-about-me) .gallery-card__title,
body:not(.page-the-band):not(.page-about-me) .who-we-are__title,
body:not(.page-the-band):not(.page-about-me) .contact__heading,
body:not(.page-the-band):not(.page-about-me) .contact-card__title,
body:not(.page-the-band):not(.page-about-me) .contact-list strong {
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .site-header__menu span,
body:not(.page-the-band):not(.page-about-me) .site-nav__item > a::after,
body:not(.page-the-band):not(.page-about-me) .section-heading::after {
  background: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .product-card__media,
body:not(.page-the-band):not(.page-about-me) .feature__icon,
body:not(.page-the-band):not(.page-about-me) .newsletter__form,
body:not(.page-the-band):not(.page-about-me) .contact-form__field input,
body:not(.page-the-band):not(.page-about-me) .contact-form__field textarea {
  background: #050505;
  color: #ffffff;
  border-color: rgba(255,255,255,0.32);
}

body:not(.page-the-band):not(.page-about-me) .product-card__price,
body:not(.page-the-band):not(.page-about-me) .feature__desc,
body:not(.page-the-band):not(.page-about-me) .post-card__meta,
body:not(.page-the-band):not(.page-about-me) .post-card__excerpt,
body:not(.page-the-band):not(.page-about-me) .gallery-card__meta,
body:not(.page-the-band):not(.page-about-me) .who-we-are__text p,
body:not(.page-the-band):not(.page-about-me) .contact__intro,
body:not(.page-the-band):not(.page-about-me) .contact-list,
body:not(.page-the-band):not(.page-about-me) .contact-list a {
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .btn,
body:not(.page-the-band):not(.page-about-me) .btn--accent,
body:not(.page-the-band):not(.page-about-me) .btn--outline,
body:not(.page-the-band):not(.page-about-me) .btn--outline-light,
body:not(.page-the-band):not(.page-about-me) .btn--ghost,
body:not(.page-the-band):not(.page-about-me) .product-card__action,
body:not(.page-the-band):not(.page-about-me) .product-card__action--primary,
body:not(.page-the-band):not(.page-about-me) .contact-social a,
body:not(.page-the-band):not(.page-about-me) .member-card__social a,
body:not(.page-the-band):not(.page-about-me) .site-header__cart-count,
body:not(.page-the-band):not(.page-about-me) .product-card__badge,
body:not(.page-the-band):not(.page-about-me) .post-card__category {
  background: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .btn:hover,
body:not(.page-the-band):not(.page-about-me) .btn--accent:hover,
body:not(.page-the-band):not(.page-about-me) .btn--outline:hover,
body:not(.page-the-band):not(.page-about-me) .btn--outline-light:hover,
body:not(.page-the-band):not(.page-about-me) .btn--ghost:hover,
body:not(.page-the-band):not(.page-about-me) .product-card__action:hover,
body:not(.page-the-band):not(.page-about-me) .contact-social a:hover,
body:not(.page-the-band):not(.page-about-me) .member-card__social a:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

body:not(.page-the-band):not(.page-about-me) .product-card__price ins,
body:not(.page-the-band):not(.page-about-me) .post-card__tag {
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .product-card__price del,
body:not(.page-the-band):not(.page-about-me) .post-card__meta-sep,
body:not(.page-the-band):not(.page-about-me) .gallery-card__sep {
  color: rgba(255,255,255,0.45);
}

body:not(.page-the-band):not(.page-about-me) .contact-form__field input::placeholder,
body:not(.page-the-band):not(.page-about-me) .contact-form__field textarea::placeholder,
body:not(.page-the-band):not(.page-about-me) .newsletter__form input::placeholder {
  color: rgba(255,255,255,0.58);
}

body:not(.page-the-band):not(.page-about-me) .newsletter__form .btn--accent {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
}

body:not(.page-the-band):not(.page-about-me) .newsletter__form .btn--accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #ffffff;
}
