/* =========================================================
   PATRICK LAMB — Ultra-upscale R&B Urban Identity
   Palette: Onyx · Ivory · Champagne Brass · Cognac
   Type: Cormorant Garamond (display) · Inter (body)
   ========================================================= */

:root {
  /* Core palette */
  --onyx:        #0a0a0b;
  --obsidian:    #15141a;
  --graphite:    #1f1d24;
  --ink:         #2a2830;
  --ivory:       #f5f0e6;
  --linen:       #ede5d5;
  --pearl:       #ffffff;
  --brass:       #c9a96e;      /* signature accent */
  --brass-deep:  #a88853;
  --champagne:   #e0c898;
  --cognac:      #8b5a3c;
  --oxblood:     #5a2330;
  --smoke:       rgba(245, 240, 230, 0.08);
  --line:        rgba(245, 240, 230, 0.14);
  --line-dark:   rgba(10, 10, 11, 0.14);

  /* Type */
  --f-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --f-italic:  "Cormorant Garamond", serif;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* Scale */
  --shell: min(1440px, 92vw);
  --shell-narrow: min(1100px, 90vw);
  --radius: 2px;
  --radius-lg: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ivory);
  background: var(--onyx);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* ---------- typography ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}

.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
  color: var(--ivory);
}

h1, .h1 {
  font-size: clamp(3rem, 8.5vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 0.95;
}
h2, .h2 {
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  letter-spacing: -0.015em;
  line-height: 1;
}
h3, .h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}
.kicker {
  font-style: italic;
  font-weight: 400;
  color: var(--brass);
}

p.lead {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--linen);
  max-width: 56ch;
}

/* ---------- site shell / nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.78) 0%, rgba(10,10,11,0) 100%);
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.4s var(--ease), background 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,11,0.88);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-row {
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
}
.brand .brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--brass);
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-style: italic;
  color: var(--brass);
  font-size: 18px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--linen);
  position: relative;
  padding: 8px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ivory); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.35s var(--ease);
}
.nav-cta:hover {
  background: var(--brass);
  color: var(--onyx);
}

/* mobile nav */
.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  color: var(--ivory);
}
.nav-toggle svg { width: 100%; height: 100%; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  body.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--onyx);
    padding: 120px 40px 40px;
    gap: 28px;
    align-items: flex-start;
    font-size: 18px;
  }
  body.nav-open .nav-links a { font-size: 14px; letter-spacing: 0.3em; }
  body.nav-open .nav-cta {
    display: inline-flex;
    position: fixed;
    bottom: 40px; left: 40px; right: 40px;
    justify-content: center;
  }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--brass);
  color: var(--onyx);
}
.btn-primary:hover {
  background: var(--champagne);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 169, 110, 0.25);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ivory);
}
.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass);
}
.btn .arrow {
  width: 14px; height: 1px; background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.btn .arrow::after {
  content: ""; position: absolute; right: -1px; top: -3px;
  width: 7px; height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.btn:hover .arrow { width: 22px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  background: var(--onyx);
}
.hero-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.85;
  transform: scale(1.02);
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.55) 0%, rgba(10,10,11,0.2) 40%, rgba(10,10,11,0.95) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.65) 0%, rgba(10,10,11,0) 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
}
.hero-title {
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  margin: 28px 0 32px;
}
.hero-title .kicker {
  display: block;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  color: var(--brass);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: -8px;
  font-weight: 300;
}
.hero-sub {
  max-width: 48ch;
  color: var(--linen);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-marquee {
  position: absolute;
  right: 0; top: 40%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right top;
  z-index: 3;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: 0.7;
  display: none;
}
@media (min-width: 960px) { .hero-marquee { display: block; } }

.hero-stats {
  position: absolute;
  bottom: 80px; right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  padding: 32px 40px;
  border-top: 1px solid var(--line);
  display: none;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--f-display);
  font-size: 44px;
  color: var(--brass);
  line-height: 1;
  display: block;
}
.hero-stat .lbl {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--linen);
  margin-top: 8px;
}
@media (min-width: 1100px) { .hero-stats { display: grid; } }

/* inner-hero (non-home pages) */
.page-hero {
  padding: 200px 0 80px;
  position: relative;
  background: var(--obsidian);
  border-bottom: 1px solid var(--line);
}
.page-hero .shell { width: var(--shell); margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  margin-top: 16px;
}
.page-hero .lead { margin-top: 28px; }

/* ---------- sections ---------- */
section { position: relative; }
.section {
  padding: clamp(80px, 12vw, 180px) 0;
}
.section-light {
  background: var(--ivory);
  color: var(--onyx);
}
.section-light h1,.section-light h2,.section-light h3 { color: var(--onyx); }
.section-light p.lead { color: var(--ink); }
.section-light .eyebrow { color: var(--cognac); }
.section-light .eyebrow::before { background: var(--cognac); }

.shell { width: var(--shell); margin: 0 auto; }
.shell-narrow { width: var(--shell-narrow); margin: 0 auto; }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media (min-width: 900px) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
  }
}
.section-head .h2 { max-width: 14ch; }

/* ---------- marquee (moving gold line of credits) ---------- */
.marquee {
  background: var(--onyx);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: var(--ivory);
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 64px;
  white-space: nowrap;
  font-style: italic;
  font-weight: 300;
}
.marquee-item::after {
  content: "✦";
  color: var(--brass);
  font-style: normal;
  font-size: 0.6em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- featured split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.1fr 1fr; gap: 100px; }
  .split.reverse { grid-template-columns: 1fr 1.1fr; }
  .split.reverse .split-media { order: 2; }
}
.split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.split-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.split-media::before {
  content: "";
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--brass);
  z-index: -1;
  pointer-events: none;
}
.split-body h2 { margin-bottom: 28px; }
.split-body p {
  color: var(--linen);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 52ch;
}

/* ---------- tour list ---------- */
.tour-list { list-style: none; padding: 0; margin: 0; }
.tour-item {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
.tour-item:hover { padding-left: 24px; }
.tour-date {
  font-family: var(--f-display);
  font-size: 2rem;
  color: var(--brass);
  letter-spacing: 0.02em;
  line-height: 1;
}
.tour-date small {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--linen);
  margin-top: 8px;
}
.tour-info h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.tour-info p {
  margin: 0;
  color: var(--linen);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.tour-cta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  padding: 14px 24px;
  border: 1px solid var(--brass);
  transition: all 0.35s var(--ease);
}
.tour-cta:hover { background: var(--brass); color: var(--onyx); }

@media (max-width: 720px) {
  .tour-item { grid-template-columns: 1fr; gap: 16px; padding: 28px 0; }
  .tour-cta { justify-self: start; }
}

/* ---------- quotes / press ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 800px) {
  .quote-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
.quote-card {
  padding: 48px;
  background: var(--obsidian);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  transition: border-color 0.4s var(--ease), transform 0.5s var(--ease);
}
.quote-card:hover {
  border-color: var(--brass);
  transform: translateY(-4px);
}
.quote-card blockquote {
  margin: 0 0 32px;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--ivory);
  font-weight: 300;
  position: relative;
}
.quote-card blockquote::before {
  content: "“";
  position: absolute;
  top: -32px; left: -12px;
  font-size: 5rem;
  color: var(--brass);
  font-family: var(--f-display);
  line-height: 1;
}
.quote-card cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
}
.quote-card cite span {
  display: block;
  color: var(--linen);
  margin-top: 6px;
  font-size: 10px;
}

/* ---------- gallery ---------- */
.gallery {
  column-count: 1;
  column-gap: 16px;
}
@media (min-width: 640px)  { .gallery { column-count: 2; } }
@media (min-width: 960px)  { .gallery { column-count: 3; } }
@media (min-width: 1280px) { .gallery { column-count: 3; column-gap: 24px; } }
.gallery figure {
  margin: 0 0 16px;
  break-inside: avoid;
  overflow: hidden;
  position: relative;
  background: var(--obsidian);
}
.gallery figure img {
  width: 100%;
  height: auto;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
  filter: saturate(0.95);
}
.gallery figure:hover img {
  transform: scale(1.04);
  filter: saturate(1.1);
}
.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0);
  transition: box-shadow 0.4s var(--ease);
  pointer-events: none;
}
.gallery figure:hover::after {
  box-shadow: inset 0 0 0 1px rgba(201, 169, 110, 0.6);
}

/* ---------- music / album card ---------- */
.music-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) { .music-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.album-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.album-card img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 120px;
}
.album-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.album-card .meta {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.album-card p { color: var(--linen); margin: 0; font-size: 14px; }

/* ---------- stat strip ---------- */
.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 720px) {
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}
.stat .num {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--brass);
  line-height: 1;
  display: block;
}
.stat .lbl {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--linen);
  margin-top: 14px;
  display: block;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 100px; } }
.contact-block h3 { font-size: 1.25rem; margin-bottom: 8px; }
.contact-block .meta {
  font-family: var(--f-body);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.contact-block p { color: var(--linen); margin: 0 0 8px; }
.contact-block a { color: var(--ivory); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.contact-block a:hover { color: var(--brass); border-color: var(--brass); }

.form { display: flex; flex-direction: column; gap: 22px; }
.form label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 10px;
}
.form input, .form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 10px 0;
  transition: border-color 0.3s var(--ease);
}
.form input:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--brass);
}
.form textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */
.site-footer {
  background: #060608;
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.footer-brand p { color: var(--linen); max-width: 42ch; }
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--linen); font-size: 14px; }
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  width: var(--shell);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.45);
}
.footer-bottom a { color: rgba(245,240,230,0.65); }
.footer-bottom a:hover { color: var(--brass); }

/* ---------- reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- tiny util ---------- */
.mt-sm { margin-top: 24px; }
.mt-md { margin-top: 48px; }
.mt-lg { margin-top: 80px; }
.mx-auto { margin-inline: auto; }
.center { text-align: center; }
.brass { color: var(--brass); }
.italic { font-style: italic; }

/* serif pullquote */
.pull {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--ivory);
  max-width: 28ch;
  margin: 0;
}
.pull.light { color: var(--ink); }
