/* ============================================================
   SMOOCHKNOB — smoochknob.com
   Design language inspired by modern legacy-artist sites:
   dark, cinematic, huge imagery, clean grotesque type,
   signature pink double-underline accents.
   ============================================================ */

:root {
  --bg: #0c0c0e;
  --bg-2: #131316;
  --bg-3: #1a1a1f;
  --ink: #f5f4f2;
  --ink-dim: #b9b7b3;
  --ink-faint: #7c7a76;
  --pink: #ff2d78;
  --pink-soft: #ff5c96;
  --line: rgba(255, 255, 255, 0.1);
  --max: 1200px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection { background: var(--pink); color: #fff; }

/* ---------- Header / Nav ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 72px;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  height: 60px;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand .knob { color: var(--pink); }

.nav-desktop {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-desktop a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.nav-desktop a:hover, .nav-desktop a.active { color: #fff; }

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  border-bottom: 2px solid var(--pink);
  transition: right 0.3s ease;
}

.nav-desktop a:hover::after, .nav-desktop a.active::after { right: 0; }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  margin: 6px auto;
  transition: transform 0.3s, opacity 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.98);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.open { opacity: 1; pointer-events: auto; }

.nav-overlay a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 6px 18px;
  transition: color 0.2s;
}

.nav-overlay a:hover, .nav-overlay a.active { color: var(--pink); }

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero.short { min-height: 62vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.1) 35%, rgba(12,12,14,0.55) 70%, var(--bg) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px 90px;
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  max-width: 900px;
}

.hero-sub {
  margin-top: 18px;
  font-size: clamp(15px, 2vw, 19px);
  color: var(--ink-dim);
  max-width: 640px;
}

.hero-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn:hover { background: #fff; color: #0c0c0e; }

.btn.primary {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.btn.primary:hover {
  background: #fff;
  border-color: #fff;
  color: var(--pink);
}

/* ---------- Sections ---------- */

section.block {
  padding: 96px 28px;
}

section.block.tight { padding: 64px 28px; }

section.block.alt { background: var(--bg-2); }

.wrap { max-width: var(--max); margin: 0 auto; }

.sec-head { margin-bottom: 48px; }

.sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 46px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-block;
  position: relative;
  padding-bottom: 16px;
}

/* signature double pink underline */
.sec-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  border-top: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  padding-top: 4px;
}

.sec-sub { color: var(--ink-dim); max-width: 720px; margin-top: 12px; }

/* ---------- News cards ---------- */

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
  border-color: rgba(255, 45, 120, 0.45);
}

.news-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #000;
}

.news-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-card:hover .thumb img { transform: scale(1.06); }

.news-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }

.news-tag {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 10px;
}

.news-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.news-card p { color: var(--ink-dim); font-size: 15px; flex: 1; }

.news-card .more {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid var(--pink);
  align-self: flex-start;
  padding-bottom: 3px;
}

/* ---------- Feature split (album promo) ---------- */

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-split .art {
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.55);
}

.feature-split .copy .hero-kicker { margin-bottom: 10px; }

.feature-split h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
  margin-bottom: 20px;
}

.feature-split p { color: var(--ink-dim); margin-bottom: 16px; }

/* ---------- Video ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.video-card { background: var(--bg-3); border: 1px solid var(--line); }

.video-card .frame { aspect-ratio: 16/9; background: #000; }

.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }

.video-card .cap {
  padding: 16px 20px 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card .cap small {
  display: block;
  font-family: var(--font-body);
  color: var(--ink-faint);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: none;
  margin-top: 4px;
}

.video-feature { max-width: 960px; margin: 0 auto; }

.video-feature .frame {
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.video-feature iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Albums ---------- */

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px;
}

.album-card { text-align: left; }

.album-card .cover {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-card:hover .cover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.album-card .cover img { width: 100%; height: 100%; object-fit: cover; }

.album-card .cover .type-cover {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding: 20px;
  line-height: 1.2;
}

.album-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 18px 0 4px;
}

.album-card .meta { color: var(--ink-faint); font-size: 13px; letter-spacing: 0.06em; }

.album-card .links { margin-top: 10px; display: flex; gap: 14px; flex-wrap: wrap; }

.album-card .links a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.album-card .links a:hover { border-color: var(--pink-soft); }

/* gradient covers for out-of-print records */
.cover.g1 { background: linear-gradient(135deg, #3a0d26, #ff2d78); }
.cover.g2 { background: linear-gradient(135deg, #101b3f, #3d6bff); }
.cover.g3 { background: linear-gradient(135deg, #2c1a04, #ff9d2d); }
.cover.g4 { background: linear-gradient(135deg, #0f2b18, #2dff8a); }

/* ---------- Photos ---------- */

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 12px 26px;
  cursor: pointer;
  transition: all 0.25s;
}

.tab-btn:hover { color: #fff; border-color: #fff; }

.tab-btn.active {
  background: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.masonry {
  columns: 4 260px;
  column-gap: 14px;
}

.masonry a {
  display: block;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line);
  break-inside: avoid;
}

.masonry img {
  width: 100%;
  transition: transform 0.5s ease, opacity 0.5s;
  opacity: 0.92;
}

.masonry a:hover img { transform: scale(1.05); opacity: 1; }

.gallery-pane { display: none; }
.gallery-pane.active { display: block; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5,5,7,0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 30px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  box-shadow: 0 30px 90px rgba(0,0,0,0.8);
}

.lightbox .lb-close {
  position: absolute;
  top: 22px; right: 30px;
  font-size: 34px;
  color: #fff;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}

.lightbox .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 46px;
  color: rgba(255,255,255,0.7);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s;
}

.lightbox .lb-nav:hover { color: var(--pink); }
.lightbox .lb-prev { left: 10px; }
.lightbox .lb-next { right: 10px; }

/* ---------- Tour / list rows ---------- */

.tour-rows { border-top: 1px solid var(--line); }

.tour-row {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px 8px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}

.tour-row:hover { background: rgba(255,255,255,0.03); }

.tour-row .date {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-soft);
}

.tour-row .what {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tour-row .what small {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--ink-faint);
  text-transform: none;
  letter-spacing: 0;
  margin-top: 4px;
}

.tour-row .where { color: var(--ink-dim); font-size: 14px; text-align: right; }

/* ---------- Quote band ---------- */

.quote-band {
  text-align: center;
  padding: 110px 28px;
  background:
    linear-gradient(rgba(12,12,14,0.82), rgba(12,12,14,0.82)),
    var(--quote-img, none) center/cover fixed;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto;
}

.quote-band blockquote em { color: var(--pink); font-style: normal; }

.quote-band cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: normal;
  color: var(--ink-dim);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Spotify ---------- */

.spotify-embed {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  margin: 0 auto;
}

.spotify-embed iframe { display: block; width: 100%; height: 420px; border: 0; }

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

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.contact-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 40px 34px;
  transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover { transform: translateY(-4px); border-color: rgba(255,45,120,0.45); }

.contact-card .ico { font-size: 30px; margin-bottom: 16px; }

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact-card p { color: var(--ink-dim); font-size: 15px; }

.contact-card a { color: var(--pink-soft); }
.contact-card a:hover { text-decoration: underline; }

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

.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 28px 40px;
  background: #09090b;
}

.foot-wrap {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.foot-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.foot-brand .knob { color: var(--pink); }

.foot-tag {
  margin-top: 8px;
  color: var(--ink-faint);
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 400;
}

.social-row {
  margin: 34px 0 26px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.social-row a {
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}

.social-row a:hover {
  border-color: var(--pink);
  background: var(--pink);
  transform: translateY(-3px);
}

.social-row svg { width: 19px; height: 19px; fill: #fff; }

.foot-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-bottom: 30px;
}

.foot-nav a {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.foot-nav a:hover { color: var(--pink-soft); }

.foot-legal { color: var(--ink-faint); font-size: 12.5px; }
.foot-legal a { color: var(--ink-dim); }
.foot-legal a:hover { color: var(--pink-soft); }

/* ---------- Reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ---------- Page hero (interior pages) ---------- */

.page-hero {
  position: relative;
  padding: 190px 28px 90px;
  overflow: hidden;
}

.page-hero .ph-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: grayscale(35%);
}

.page-hero .ph-shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,0.5), var(--bg));
}

.page-hero .wrap { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 7vw, 76px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.page-hero .lede { margin-top: 16px; color: var(--ink-dim); max-width: 680px; font-size: 17px; }

/* ---------- Marquee strip ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg-2);
}

.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.marquee-track span b { color: var(--pink); font-weight: 500; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

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

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .burger { display: block; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .tour-row { grid-template-columns: 1fr; gap: 6px; }
  .tour-row .where { text-align: left; }
  section.block { padding: 70px 20px; }
  .hero-inner { padding: 0 20px 70px; }
}
