/* ===========================
   ROOT & RESET
   =========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --mahogany:    #2c1a0e;
  --wood-mid:    #5c3317;
  --wood-light:  #8b5e3c;
  --cream:       #f2e8d5;
  --cream-dark:  #e0ceaf;
  --vinyl:       #1a1a1a;
  --label-red:   #8b1a1a;
  --label-cream: #f5e6c8;
  --gold:        #c9943a;
  --gold-light:  #e6bb6a;
  --ink:         #1e0e04;
  --text-body:   #3a2010;
}

html { scroll-behavior: smooth; }

body {
  background: var(--mahogany);
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  overflow-x: hidden;
}

/* ===========================
   INTRO OVERLAY
   =========================== */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

#intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===========================
   MAIN CONTENT
   =========================== */
#main-content {
  opacity: 0;
  transition: opacity 1s ease;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(139, 94, 60, 0.06) 28px,
      rgba(139, 94, 60, 0.06) 29px
    ),
    linear-gradient(170deg, #f2e8d5 0%, #e8d9be 40%, #ddc9a5 100%);
  min-height: 100vh;
}

#main-content.visible {
  opacity: 1;
}

/* ===========================
   HEADER
   =========================== */
header {
  background:
    repeating-linear-gradient(
      88deg,
      transparent 0px,
      transparent 5px,
      rgba(92,51,23,0.04) 5px,
      rgba(92,51,23,0.04) 6px
    ),
    linear-gradient(160deg, #4a2510 0%, #2c1508 100%);
  color: var(--cream);
  padding: 60px 40px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(201,148,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}

/* Mini spinning record in header — pure CSS graphic */
#header-record-mini {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

#mini-record {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      #1a1a1a 0px,
      #1a1a1a 4px,
      #222 4px,
      #222 5px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 3px rgba(201,148,58,0.4),
    0 8px 24px rgba(0,0,0,0.5);
  animation: slowSpin 8s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

#mini-label {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #a82020, #5a0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Special Elite', monospace;
  font-size: 0.42rem;
  color: var(--label-cream);
  letter-spacing: 0.05em;
}

header h1 {
  font-family: 'Special Elite', monospace;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: var(--cream);
  text-shadow: 2px 3px 8px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}

header h1 em {
  font-family: 'Lora', serif;
  font-style: italic;
  color: var(--gold-light);
}

.tagline {
  margin-top: 14px;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(242,232,213,0.6);
  letter-spacing: 0.12em;
  position: relative;
  z-index: 1;
}

/* ===========================
   ABOUT SECTION
   =========================== */
#about {
  padding: 70px 0;
  max-width: 900px;
  margin: 0 auto;
}

.about-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding: 0 40px;
}

/* Vinyl decoration sidebar — pure CSS graphic */
.vinyl-side-deco {
  flex-shrink: 0;
  width: 90px;
  position: relative;
  padding-top: 6px;
  height: 100px;
}

.vinyl-deco-circle {
  border-radius: 50%;
  border: 1.5px solid rgba(92,51,23,0.2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.vinyl-deco-circle.c1 {
  width: 80px; height: 80px;
  top: 0;
  border-color: rgba(92,51,23,0.25);
}
.vinyl-deco-circle.c2 {
  width: 54px; height: 54px;
  top: 13px;
  border-color: rgba(92,51,23,0.18);
}
.vinyl-deco-circle.c3 {
  width: 26px; height: 26px;
  top: 27px;
  background: radial-gradient(circle at 40% 35%, #a82020, #5a0f0f);
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.vinyl-deco-needle {
  position: absolute;
  top: 10px;
  left: calc(50% + 26px);
  width: 2px;
  height: 55px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,148,58,0.3));
  border-radius: 1px;
  transform: rotate(25deg);
  transform-origin: top center;
}

/* Text */
.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-text p {
  font-family: 'Lora', serif;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
}

.about-text strong {
  color: var(--mahogany);
  font-weight: 600;
}

/* Drop cap */
.drop-cap::first-letter {
  font-family: 'Special Elite', monospace;
  font-size: 3.8rem;
  line-height: 0.75;
  float: left;
  margin: 4px 10px 0 0;
  color: var(--label-red);
  text-shadow: 1px 2px 4px rgba(0,0,0,0.12);
}

/* Ruled divider */
.ruled-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(92,51,23,0.25) 20%, rgba(92,51,23,0.25) 80%, transparent);
  margin: 8px 0;
  position: relative;
}

.ruled-line::before {
  content: '♪';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #eddec4;
  padding: 0 14px;
  color: var(--gold);
  font-size: 0.9rem;
  line-height: 1;
}

/* Highlight block */
.highlight-para {
  background: rgba(139,26,26,0.06);
  border-left: 3px solid var(--label-red);
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: #2c1508 !important;
}

.highlight-para em {
  font-style: normal;
  color: var(--label-red);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: linear-gradient(160deg, #2c1508 0%, #1a0c04 100%);
  color: var(--cream-dark);
  text-align: center;
  padding: 40px 20px;
  border-top: 3px solid var(--gold);
}

.footer-groove {
  width: 120px;
  height: 1px;
  background: rgba(201,148,58,0.3);
  margin: 0 auto 24px;
}

footer p {
  font-family: 'Special Elite', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(242,232,213,0.6);
}

.footer-sub {
  margin-top: 8px;
  font-size: 0.65rem !important;
  color: rgba(242,232,213,0.3) !important;
  letter-spacing: 0.15em;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 680px) {
  .about-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
  .vinyl-side-deco {
    width: 100%;
  }
  header {
    padding: 40px 24px 36px;
  }
  #about {
    padding: 50px 0;
  }
}
