/* ══════════════════════════════════════════════════════════
   Frekans Creative Media — Stylesheet
   ══════════════════════════════════════════════════════════ */

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

:root {
  /* Colors */
  --cream:      #f0e6d0;
  --parchment:  #d9c9a8;
  --tobacco:    #b5712a;
  --rust:       #8c3a1c;
  --espresso:   #1e1008;
  --ink:        #110904;
  --gold:       #c8922a;
  --gold-light: #e0b55a;
  --steel:      #2a2a35;
  --accent:     #d4601a;

  /* Design tokens */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 100px;
  --nav-height: 72px;
  --nav-height-scrolled: 56px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Special Elite', monospace;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--espresso);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* Film grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1.5rem;
  z-index: 10000;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: top var(--transition-base);
}

.skip-link:focus {
  top: 1rem;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  background: rgba(17,9,4,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(181,113,42,0.12);
  transition: padding var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  will-change: padding, background;
}

.nav-scrolled {
  padding: 0.8rem 4rem;
  background: rgba(17,9,4,0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 42px;
  width: auto;
  transition: opacity var(--transition-base);
  mix-blend-mode: lighten;
  border-radius: var(--radius-sm);
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,230,208,0.55);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 500;
  position: relative;
}

.nav-links a:hover { color: var(--cream); }

.nav-links a.active {
  color: var(--cream);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 0.5rem 1.3rem;
  font-weight: 600 !important;
  border-radius: var(--radius-sm);
  transition: background 0.25s !important;
}

.nav-cta:hover { background: var(--tobacco) !important; color: var(--cream) !important; }
.nav-cta.active::after { display: none; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 210;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}

body.menu-open { overflow: hidden; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 35%, #341508 0%, #160a02 55%, var(--ink) 100%);
}

/* Grid lines */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(181,113,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(181,113,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  transform: translateY(var(--parallax-y, 0));
}

.vinyl-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vinyl-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin linear infinite;
  will-change: transform;
}

.vr1 { width: 720px; height: 720px; border: 1px solid rgba(200,146,42,0.08); animation-duration: 40s; }
.vr2 { width: 560px; height: 560px; border: 1px solid rgba(181,113,42,0.06); animation-duration: 32s; animation-direction: reverse; }
.vr3 { width: 400px; height: 400px; border: 1px solid rgba(140,58,28,0.1); animation-duration: 24s; }
.vr4 { width: 220px; height: 220px; border: 1px solid rgba(200,146,42,0.12); animation-duration: 16s; animation-direction: reverse; }

.vinyl-grooves {
  position: absolute;
  width: 720px; height: 720px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.025;
  background: repeating-radial-gradient(circle at 50%, transparent 0px, transparent 7px, var(--gold) 7px, var(--gold) 8px);
  animation: spin 60s linear infinite;
  will-change: transform;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Page load orchestration — hero elements wait for body.loaded */
.hero-badge,
.hero-title,
.hero-divider,
.hero-genres,
.hero-actions {
  opacity: 0;
  transform: translateY(25px);
}

body.loaded .hero-badge   { animation: fadeUp 0.8s 0.3s ease both; }
body.loaded .hero-title   { animation: fadeUp 0.8s 0.5s ease both; }
body.loaded .hero-divider { animation: fadeUp 0.8s 0.7s ease both; }
body.loaded .hero-genres  { animation: fadeUp 0.8s 0.9s ease both; }
body.loaded .hero-actions { animation: fadeUp 0.8s 1.1s ease both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(181,113,42,0.1);
  border: 1px solid rgba(181,113,42,0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin-bottom: 2rem;
  position: relative; z-index: 1;
}

.hero-badge::before { content: '\25CF'; color: var(--gold); font-size: 0.45rem; animation: blink 2s infinite; }

@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.9;
  color: var(--cream);
  position: relative; z-index: 1;
  letter-spacing: -0.01em;
}

.hero-title em { font-style: italic; color: var(--gold); }

.hero-title .line2 {
  display: block;
  font-size: clamp(1.8rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240,230,208,0.45);
  letter-spacing: 0.05em;
  margin-top: 0.15em;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  width: 280px;
  position: relative; z-index: 1;
}

.hero-divider::before, .hero-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(181,113,42,0.5), transparent);
}

.hero-divider span { color: var(--tobacco); font-size: 0.7rem; letter-spacing: 0.3em; }

.hero-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative; z-index: 1;
}

.genre-pill {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,230,208,0.5);
  border: 1px solid rgba(181,113,42,0.2);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: border-color var(--transition-base), color var(--transition-base);
}

.genre-pill:hover {
  border-color: rgba(181,113,42,0.5);
  color: rgba(240,230,208,0.8);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  position: relative; z-index: 1;
}

.btn-primary {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  background: var(--gold);
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover { background: var(--tobacco); color: var(--cream); transform: translateY(-1px); }
.btn-primary:hover::after { transform: translateX(100%); }

.btn-ghost {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  background: transparent;
  padding: 0.9rem 2rem;
  text-decoration: none;
  border: 1px solid rgba(240,230,208,0.2);
  cursor: pointer;
  transition: all 0.25s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.tape { height: 2px; background: linear-gradient(to right, var(--rust), var(--gold), var(--tobacco), var(--gold), var(--rust)); }

.ticker-wrap { overflow: hidden; background: rgba(17,9,4,0.9); padding: 0.65rem 0; white-space: nowrap; border-top: 1px solid rgba(181,113,42,0.15); border-bottom: 1px solid rgba(181,113,42,0.15); }

.ticker-inner { display: inline-block; animation: ticker 28s linear infinite; will-change: transform; }

.ticker-inner span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,230,208,0.4);
  padding: 0 2rem;
  font-weight: 500;
}

.ticker-inner span.gold { color: var(--gold); }

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

/* ── SHARED ── */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--tobacco);
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--cream);
}

.section-title em { font-style: italic; color: var(--gold); }

/* ── STATS BAR ── */
#stats {
  background: var(--ink);
  padding: 0;
  border-top: 1px solid rgba(181,113,42,0.12);
  border-bottom: 1px solid rgba(181,113,42,0.12);
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(181,113,42,0.1);
}

.stat-block:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(240,230,208,0.4);
  display: block;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* ── ABOUT ── */
#about {
  background: linear-gradient(135deg, #1a0a03 0%, var(--espresso) 50%, #200e04 100%);
  position: relative;
  overflow: hidden;
}

#about::after {
  content: 'FCM';
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 22vw;
  color: rgba(181,113,42,0.03);
  position: absolute;
  right: -2rem; bottom: -3rem;
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
  transform: translateY(var(--parallax-y, 0));
}

.about-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(240,230,208,0.65);
  margin-bottom: 1.4rem;
  font-weight: 300;
}

.about-body p.lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.7;
}

.about-body p.lead em { color: var(--gold); font-style: normal; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.about-tag {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--tobacco);
  background: rgba(181,113,42,0.1);
  border: 1px solid rgba(181,113,42,0.2);
  padding: 0.4rem 0.85rem;
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative; z-index: 1;
}

.aside-card {
  background: rgba(22,12,4,0.6);
  border: 1px solid rgba(181,113,42,0.15);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.aside-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.aside-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.aside-card p {
  font-size: 0.82rem;
  color: rgba(240,230,208,0.5);
  line-height: 1.6;
}

.aside-card .card-icon {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  display: block;
}

/* ── LABELS ── */
#labels {
  background: var(--ink);
  position: relative;
}

.labels-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.labels-header-desc {
  font-size: 0.82rem;
  color: rgba(240,230,208,0.4);
  max-width: 260px;
  line-height: 1.6;
  text-align: right;
}

.labels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.label-card {
  background: rgba(30,16,8,0.8);
  border: 1px solid rgba(181,113,42,0.12);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
  cursor: default;
  will-change: transform;
}

.label-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--rust), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.label-card:hover { border-color: rgba(181,113,42,0.3); transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.label-card:hover::before { transform: scaleX(1); }

.label-card--coming {
  grid-column: span 2;
  background: rgba(181,113,42,0.04);
  border-style: dashed;
}

.label-card--coming .label-number { color: rgba(181,113,42,0.05); }
.label-card--coming .label-genre-dot { background: rgba(181,113,42,0.3); }
.label-card--coming .label-name { color: rgba(240,230,208,0.35); }
.label-card--coming .label-focus { color: rgba(181,113,42,0.4); }

.label-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(181,113,42,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.2rem;
}

.label-genre-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 1rem;
}

.dot-accent { background: var(--accent); }
.dot-parchment { background: var(--parchment); }
.dot-green { background: #a8c070; }

.label-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.label-focus {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tobacco);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.label-desc {
  font-size: 0.82rem;
  color: rgba(240,230,208,0.45);
  line-height: 1.65;
}

/* ── SERVICES ── */
#services {
  background: linear-gradient(180deg, var(--espresso) 0%, #1a0a03 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(181,113,42,0.1);
  border: 1px solid rgba(181,113,42,0.1);
  margin-top: 3rem;
}

.service-cell {
  background: var(--espresso);
  padding: 2.2rem;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  will-change: transform;
}

.service-cell:hover {
  background: rgba(30,16,8,0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.service-cell-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.service-cell h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.service-cell p {
  font-size: 0.83rem;
  color: rgba(240,230,208,0.45);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

#contact::after {
  content: '';
  position: absolute;
  bottom: 0; right: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140,58,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-left p {
  font-size: 0.95rem;
  color: rgba(240,230,208,0.55);
  line-height: 1.8;
  margin-top: 1.2rem;
  margin-bottom: 2.5rem;
}

.contact-meta { display: flex; flex-direction: column; gap: 0; }

.meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(181,113,42,0.1);
}

.meta-row:last-child { border-bottom: none; }

.meta-icon {
  width: 36px; height: 36px;
  border: 1px solid rgba(181,113,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  color: var(--gold);
}

.meta-info small {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin-bottom: 2px;
}

.meta-info span { font-size: 0.88rem; color: var(--cream); }

/* Form */
.contact-form-wrap {
  background: rgba(30,16,8,0.6);
  border: 1px solid rgba(181,113,42,0.15);
  padding: 2.5rem;
  position: relative; z-index: 1;
}

.form-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.form-subheading {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin-bottom: 2rem;
}

.fg { margin-bottom: 1.2rem; }

.fg label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(181,113,42,0.7);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.fg input, .fg select, .fg textarea {
  width: 100%;
  background: rgba(17,9,4,0.7);
  border: 1px solid rgba(181,113,42,0.2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  border-radius: 0;
  min-height: 44px;
}

.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200,146,42,0.15);
}

.fg select option { background: var(--espresso); }
.fg textarea { resize: vertical; min-height: 100px; }

.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-btn {
  width: 100%;
  background: var(--gold);
  border: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.5rem;
  min-height: 44px;
  position: relative;
  overflow: hidden;
}

.form-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.form-btn:hover { background: var(--tobacco); color: var(--cream); }
.form-btn:hover::after { transform: translateX(100%); }

.form-btn:disabled {
  cursor: default;
}

/* ── FOOTER ── */
footer {
  background: #0a0501;
  padding: 3.5rem 2rem 2rem;
  border-top: 1px solid rgba(181,113,42,0.1);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(181,113,42,0.08);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--cream);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand-name span { color: var(--gold); }

.footer-brand-type {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--tobacco);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand-desc {
  font-size: 0.82rem;
  color: rgba(240,230,208,0.35);
  line-height: 1.7;
}

.footer-col h5 {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--tobacco);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: rgba(240,230,208,0.35);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
}

.footer-copy {
  font-size: 0.62rem;
  color: rgba(240,230,208,0.2);
  letter-spacing: 0.1em;
}

.footer-llc {
  font-size: 0.62rem;
  color: rgba(181,113,42,0.4);
  letter-spacing: 0.15em;
}

/* ── WHY FREKANS ── */
#why {
  background: linear-gradient(180deg, #1a0a03 0%, var(--ink) 100%);
}

.why-intro {
  font-size: 1.05rem;
  color: rgba(240,230,208,0.55);
  line-height: 1.8;
  max-width: 680px;
  margin-top: 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  background: rgba(30,16,8,0.6);
  border: 1px solid rgba(181,113,42,0.12);
  padding: 2rem;
  position: relative;
  transition: border-color var(--transition-base), transform var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
  border-color: rgba(181,113,42,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.why-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: rgba(181,113,42,0.1);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.83rem;
  color: rgba(240,230,208,0.45);
  line-height: 1.7;
}

/* ── HOW IT WORKS ── */
#process {
  background: var(--espresso);
  position: relative;
  overflow: hidden;
}

.process-header {
  margin-bottom: 3.5rem;
}

.process-intro {
  font-size: 1rem;
  color: rgba(240,230,208,0.5);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 1.2rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
  background: var(--espresso);
  position: relative;
  z-index: 1;
}

.step-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), rgba(181,113,42,0.15));
}

.step-content {
  padding-bottom: 2.5rem;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  margin-top: 0.6rem;
}

.step-content p {
  font-size: 0.88rem;
  color: rgba(240,230,208,0.5);
  line-height: 1.75;
  max-width: 520px;
}

/* ── DISTRIBUTION REACH ── */
#reach {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.reach-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reach-text p {
  font-size: 0.95rem;
  color: rgba(240,230,208,0.55);
  line-height: 1.8;
  margin-top: 1.2rem;
}

.reach-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(181,113,42,0.15);
}

.reach-stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.reach-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,230,208,0.4);
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(181,113,42,0.08);
  border: 1px solid rgba(181,113,42,0.1);
}

.platform-item {
  background: rgba(22,12,4,0.8);
  padding: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(240,230,208,0.45);
  text-align: center;
  font-weight: 500;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.platform-item:hover {
  background: rgba(30,16,8,0.9);
  color: var(--cream);
}

.platform-item.highlight {
  color: var(--gold);
  font-weight: 600;
  background: rgba(181,113,42,0.06);
}

/* ── FAQ ── */
#faq {
  background: linear-gradient(180deg, var(--espresso) 0%, #1a0a03 100%);
}

.faq-header {
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 780px;
}

.faq-item {
  border-bottom: 1px solid rgba(181,113,42,0.12);
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  padding: 1.4rem 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition-base);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--tobacco);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.4rem;
}

.faq-answer p {
  font-size: 0.88rem;
  color: rgba(240,230,208,0.5);
  line-height: 1.8;
}

/* ── SCROLL REVEAL SYSTEM ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.35s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 100;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-base), transform var(--transition-base), background var(--transition-fast);
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--tobacco);
  color: var(--cream);
}

.back-to-top svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.back-to-top svg circle {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 2;
  stroke-dasharray: 138.23;
  stroke-dashoffset: 138.23;
  transition: stroke-dashoffset 0.1s linear;
}

.back-to-top .arrow {
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* ── CURSOR FOLLOWER ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity var(--transition-base);
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200,146,42,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transition: opacity var(--transition-base), width var(--transition-base), height var(--transition-base), border-color var(--transition-base);
}

.cursor-dot.active,
.cursor-ring.active {
  opacity: 1;
}

.cursor-ring.hovering {
  width: 56px;
  height: 56px;
  border-color: rgba(200,146,42,0.6);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-scrolled { padding: 0.8rem 1.5rem; }

  .nav-hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    background: rgba(17,9,4,0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(181,113,42,0.15);
    z-index: 205;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(181,113,42,0.08);
  }

  .nav-links a.active::after { display: none; }

  .nav-cta {
    margin-top: 1rem;
    text-align: center;
    display: block;
  }

  .about-layout, .contact-layout, .reach-layout { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .labels-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 600px) {
  .labels-grid, .services-grid, .why-grid { grid-template-columns: 1fr; }
  .label-card--coming { grid-column: span 1; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .reach-stats { flex-direction: column; gap: 1.2rem; }
  .fg-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .labels-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .labels-header-desc { text-align: left; }
}

@media (max-width: 480px) {
  nav { padding: 1rem; }
  .nav-scrolled { padding: 0.7rem 1rem; }
  .hero-title { font-size: clamp(2.4rem, 12vw, 3.5rem); }
  section { padding: 4rem 1.25rem; }
  .stat-num { font-size: 2.2rem; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }

  .vinyl-ring, .vinyl-grooves, .ticker-inner {
    animation: none !important;
  }

  .hero-badge,
  .hero-title,
  .hero-divider,
  .hero-genres,
  .hero-actions {
    opacity: 1;
    transform: none;
  }
}

/* ── PRINT ── */
@media print {
  nav, .ticker-wrap, .tape, .back-to-top,
  .cursor-dot, .cursor-ring, .vinyl-wrap,
  .nav-overlay { display: none !important; }

  body { background: #fff; color: #000; }
  body::before { display: none; }
  section { padding: 2rem 0; }
  .section-title, .hero-title, .label-name,
  .aside-card h3, .service-cell h3 { color: #000; }
  .eyebrow, .stat-label, .label-focus { color: #555; }
  .stat-num { color: #333; }
}
