/* ─────────────────────────────────────────────────────────────────────────
   JOHAN & CO. LABELS LLC  —  Main Stylesheet
   ───────────────────────────────────────────────────────────────────────── */

/* ── TOKENS ───────────────────────────────────────────────────────────── */
:root {
  --black:   #0a0a0a;
  --off-black: #111111;
  --dark:    #161616;
  --mid:     #2a2a2a;
  --muted:   #555555;
  --light:   #c2bfb8;
  --cream:   #f0ece4;
  --white:   #fafaf8;
  --gold:    #d4607a;
  --gold-lt: #e88fa0;

  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Inter', system-ui, sans-serif;

  --ease:    cubic-bezier(0.16, 1, 0.3, 1);
  --trans:   0.7s var(--ease);
}

/* ── RESET ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── UTILITIES ────────────────────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: clamp(80px, 12vw, 160px);
}

.section--dark {
  background: var(--off-black);
}

.section-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 1.8rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  max-width: 640px;
  margin-bottom: clamp(48px, 8vw, 96px);
}

.body-text {
  font-size: 1.05rem;
  color: var(--light);
  max-width: 60ch;
  margin-bottom: 1.4rem;
}

/* split layout */
.split {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0 5%;
  align-items: start;
}

.split-label {
  padding-top: 0.4rem;
}

@media (max-width: 720px) {
  .split {
    grid-template-columns: 1fr;
  }
  .split-label { margin-bottom: 0.4rem; }
}

/* ── SCROLL REVEAL ────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal:nth-child(2)  { transition-delay: 0.1s; }
.reveal:nth-child(3)  { transition-delay: 0.2s; }
.reveal:nth-child(4)  { transition-delay: 0.3s; }
.reveal:nth-child(5)  { transition-delay: 0.4s; }
.reveal:nth-child(6)  { transition-delay: 0.5s; }

/* ── NAVIGATION ───────────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}

#nav.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(212, 96, 122, 0.12);
}

.nav-inner {
  width: min(1200px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  gap: 2.4rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%; height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 680px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.22em;
  }
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Subtle noise grain overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.35;
  pointer-events: none;
}

/* Radial gold glow */
#hero::after {
  content: '';
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 80vw; height: 80vw;
  max-width: 900px; max-height: 900px;
  background: radial-gradient(circle, rgba(212,96,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-text {
  position: absolute;
  font-family: var(--serif);
  font-size: clamp(12rem, 28vw, 28rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,96,122,0.06);
  user-select: none;
  line-height: 1;
  white-space: nowrap;
  bottom: -4vw;
  left: 50%;
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  transition-delay: 0.1s;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 13vw, 12rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-size: 0.72em;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--light);
  margin-bottom: 3rem;
  transition-delay: 0.2s;
}

.btn-outline {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.85em 2.6em;
  transition: background 0.3s, color 0.3s;
  transition-delay: 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── ABOUT STATS ──────────────────────────────────────────────────────── */
.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3.2rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-desc {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── MARQUEE ──────────────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  background: var(--gold);
  padding-block: 0.9rem;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--black);
  white-space: nowrap;
  padding-right: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES GRID ────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--mid);
}

.service-card {
  background: var(--off-black);
  padding: 2.8rem 2.4rem;
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--dark);
}

.service-icon {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1.4rem;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── ARTISTS GRID ─────────────────────────────────────────────────────── */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.artist-card {
  overflow: hidden;
  position: relative;
  cursor: default;
}

.artist-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  filter: grayscale(60%);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}

.artist-card:hover .artist-img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.artist-info {
  padding: 1.2rem 0.4rem 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.artist-info h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
}

.artist-info span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.artists-note {
  text-align: center;
  margin-top: 3.5rem;
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* ── PULL QUOTE ───────────────────────────────────────────────────────── */
.quote-section {
  padding-block: clamp(80px, 12vw, 140px);
  background: var(--dark);
  text-align: center;
}

.pull-quote p {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.4rem;
  max-width: 16ch;
  margin-inline: auto;
}

.pull-quote cite {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── CONTACT ──────────────────────────────────────────────────────────── */
.contact-links {
  margin-top: 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--mid);
  transition: border-color 0.3s;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-item:first-child { border-top: 1px solid var(--mid); }

.contact-item:hover {
  border-color: var(--gold);
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--cream);
  transition: color 0.3s;
}

.contact-item:hover .contact-value {
  color: var(--gold);
}

/* ── FOOTER ───────────────────────────────────────────────────────────── */
#footer {
  background: var(--black);
  border-top: 1px solid var(--mid);
  padding-block: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.8rem;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  text-align: right;
  font-size: 0.72rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand { align-items: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .footer-copy  { text-align: center; }
}

/* ── SCROLLBAR ────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--mid);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ── SELECTION ────────────────────────────────────────────────────────── */
::selection {
  background: var(--gold);
  color: var(--black);
}

