:root {
  --ink: #171615;
  --paper: #f8f5ee;
  --surface: #fffdf8;
  --line: #dfd7c8;
  --muted: #716b61;
  --green: #154c3a;
  --green-2: #21664c;
  --gold: #c58c30;
  --rose: #a94755;
  --blue: #355c7d;
  --shadow: 0 24px 70px rgba(32, 28, 22, 0.16);
  --soft: 0 14px 34px rgba(32, 28, 22, 0.1);
  --wrap: min(1160px, calc(100vw - 40px));
  color-scheme: light;
}

:root[data-theme="dark"] {
  --ink: #f3eee4;
  --paper: #101614;
  --surface: #18231f;
  --line: #314138;
  --muted: #b9b0a3;
  --green: #79c9a3;
  --green-2: #9bd8ba;
  --gold: #e0a642;
  --rose: #df7f8a;
  --blue: #8fb6d7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --soft: 0 14px 34px rgba(0, 0, 0, 0.22);
  color-scheme: dark;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(21, 76, 58, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 76, 58, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0, transparent 70%);
}

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

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

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 238, 0.88);
  border-bottom: 1px solid rgba(223, 215, 200, 0.9);
  backdrop-filter: blur(18px);
}

:root[data-theme="dark"] .topbar {
  background: rgba(16, 22, 20, 0.88);
}

.nav {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 700;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(197, 140, 48, 0.16);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #292621;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theme-toggle {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-links a:hover {
  background: var(--surface);
  border-color: var(--line);
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 38, 29, 0.94), rgba(12, 38, 29, 0.72) 45%, rgba(12, 38, 29, 0.28)),
    url("../wp-content/uploads/2017/11/Yamaha-Genos-Demo-No-Talking-2.jpg") center / cover;
}

:root[data-theme="dark"] .hero {
  background:
    linear-gradient(90deg, rgba(4, 14, 11, 0.96), rgba(4, 14, 11, 0.78) 45%, rgba(4, 14, 11, 0.38)),
    url("../wp-content/uploads/2017/11/Yamaha-Genos-Demo-No-Talking-2.jpg") center / cover;
}

.hero-inner {
  width: var(--wrap);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 42px) 0;
  color: #fff;
}

.kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.4vw, 5.55rem);
  line-height: 0.92;
}

.hero-copy {
  max-width: 580px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.button.primary {
  background: #fff;
  color: var(--green);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-panel {
  align-self: center;
  display: grid;
  align-content: end;
  gap: 12px;
}

.feature-link {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(10px);
}

.feature-link img {
  width: 82px;
  height: 62px;
  object-fit: cover;
  border-radius: 6px;
}

.feature-link span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-link strong {
  display: block;
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.1;
}

.section {
  width: var(--wrap);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 88px) 0;
}

.ad-band {
  width: var(--wrap);
  margin: 0 auto;
  padding: 24px 0 0;
}

.ad-slot {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  color: var(--muted);
  text-align: center;
}

.ad-slot span {
  display: block;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ad-slot strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.spotlight-slider {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.spotlight-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 56px);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.spotlight-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.spotlight-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
}

.spotlight-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-slide span,
.spotlight-slide strong {
  position: relative;
  z-index: 2;
}

.spotlight-slide span {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.spotlight-slide strong {
  max-width: 720px;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.slider-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.section h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--soft);
}

:root[data-theme="dark"] .post-card,
:root[data-theme="dark"] .feature-link,
:root[data-theme="dark"] .archive-link {
  border-color: rgba(255, 255, 255, 0.14);
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #e4ded3;
}

.post-body {
  padding: 18px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  line-height: 1.05;
}

.post-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split-band {
  background: var(--green);
  color: #fff;
}

.split-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 92px) 0;
}

.portrait {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(21, 76, 58, 0.06), rgba(21, 76, 58, 0.58)),
    url("../wp-content/uploads/2017/03/Joshua-DJ-Paul-Faith-Child.jpg") center / cover;
  box-shadow: var(--shadow);
}

.split-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.96;
}

.split-band p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.link-list a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
}

.link-list a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.archive-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.archive-link {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: var(--soft);
  overflow: hidden;
  position: relative;
}

.archive-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.62));
}

.archive-link:nth-child(1) {
  background: url("../wp-content/uploads/2017/09/Korg-PA1000-Professional-Arranger-1.jpg") center / cover;
}

.archive-link:nth-child(2) {
  background: url("../wp-content/uploads/2013/01/Dublin-1-scaled.jpg") center / cover;
}

.archive-link:nth-child(3) {
  background: url("../wp-content/uploads/2017/03/Who-is-Jesus-1.jpg") center / cover;
}

.archive-link:nth-child(4) {
  background: url("../wp-content/uploads/2014/03/Joshua-Music-Classes-2014-1-1-1.jpg") center / cover;
}

.archive-link span,
.archive-link strong {
  position: relative;
  z-index: 1;
}

.archive-link span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-link strong {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
}

.footer-inner {
  width: var(--wrap);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer a {
  color: var(--green);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero-inner,
  .split-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    align-self: auto;
  }

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

  .section-head {
    display: block;
  }

  .section-note {
    margin-top: 12px;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: min(100vw - 24px, 460px);
  }

  .brand {
    font-size: 1.55rem;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-links a {
    border-color: var(--line);
    background: var(--surface);
    text-align: center;
  }

  .theme-toggle {
    width: 100%;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 46px 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-panel {
    display: none;
  }

  .feature-link {
    grid-template-columns: 72px 1fr;
  }

  .spotlight-slider {
    min-height: 340px;
  }

  .slider-controls {
    left: 18px;
    right: auto;
  }

  .grid,
  .archive-strip,
  .link-list {
    grid-template-columns: 1fr;
  }

  .portrait {
    min-height: 320px;
  }

  .footer-inner {
    display: block;
  }
}
