/* ============================================
   THE GREEN ROOM — Nashville Recording Studio
   Backstage / Velvet / Theater Marquee
   ============================================ */

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

:root {
  /* Emerald velvet greens */
  --emerald-black: #0a1a10;
  --emerald-deep: #0d2818;
  --emerald-dark: #143d22;
  --emerald: #1a5c30;
  --emerald-mid: #267a3f;
  --emerald-soft: #2e8b4a;
  --emerald-glow: #3aaf5c;

  /* Warm tungsten / amber */
  --amber: #d4a03c;
  --amber-light: #e8be5a;
  --amber-pale: #f5dfa0;
  --amber-glow: rgba(212, 160, 60, 0.15);
  --tungsten: #f5e6c8;

  /* Neutrals */
  --black: #0a0a08;
  --charcoal: #141412;
  --charcoal-warm: #1c1a16;
  --smoke: #2a2824;
  --ivory: #f8f4ec;
  --ivory-dark: #ebe5d8;

  /* Text */
  --text-light: #f8f4ec;
  --text-muted-light: rgba(248, 244, 236, 0.55);
  --text-dark: #1a1a16;
  --text-body: #3a3a35;

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--emerald-black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* --- Velvet Texture Overlay --- */
.velvet-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(30, 120, 60, 1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(30, 120, 60, 1) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 100% 100%, 100% 100%, 200px;
}

/* --- Placeholder Images --- */
.placeholder-img {
  background: var(--emerald-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-family: var(--font-accent);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  width: 100%;
  opacity: 0.9;
}

.placeholder-img::before {
  content: attr(data-label);
  z-index: 1;
}

.placeholder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 26, 16, 0.6) 100%);
  pointer-events: none;
}

.placeholder-landscape { aspect-ratio: 16 / 9; }
.placeholder-tall { aspect-ratio: 3 / 4; min-height: 400px; }
.placeholder-portrait { aspect-ratio: 3 / 4; }
.placeholder-square { aspect-ratio: 1; }

/* --- Section Labels & Titles --- */
.section-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative;
  z-index: 1;
}

.section-desc {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-top: 16px;
}

.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 24px;
}

.gold-rule.centered {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(212, 160, 60, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--tungsten);
  border: 1px solid var(--amber);
}

.btn-outline:hover {
  background: var(--amber);
  color: var(--black);
}

.btn-text {
  background: none;
  padding: 8px 0;
  color: var(--amber);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.btn-text:hover {
  color: var(--amber-light);
}

.btn-full {
  width: 100%;
}

/* ========================
   NAVIGATION
   ======================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 26, 16, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(212, 160, 60, 0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-the {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--amber);
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tungsten);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  transition: color 0.3s;
}

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

.nav-cta {
  background: var(--amber) !important;
  color: var(--black) !important;
  padding: 10px 24px !important;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--amber-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--tungsten);
  transition: all 0.3s;
}

/* ========================
   HERO — Curtains + Spotlight
   ======================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--emerald-black);
}

/* Velvet curtains */
.hero-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  z-index: 1;
}

.hero-curtain-left {
  left: 0;
  background: linear-gradient(
    90deg,
    var(--emerald-dark) 0%,
    rgba(20, 61, 34, 0.95) 30%,
    rgba(20, 61, 34, 0.7) 60%,
    rgba(20, 61, 34, 0.3) 80%,
    transparent 100%
  );
}

.hero-curtain-left::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 160, 60, 0.15) 20%, rgba(212, 160, 60, 0.08) 80%, transparent 100%);
}

.hero-curtain-left::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 45%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 160, 60, 0.08) 30%, rgba(212, 160, 60, 0.04) 70%, transparent 100%);
}

.hero-curtain-right {
  right: 0;
  background: linear-gradient(
    -90deg,
    var(--emerald-dark) 0%,
    rgba(20, 61, 34, 0.95) 30%,
    rgba(20, 61, 34, 0.7) 60%,
    rgba(20, 61, 34, 0.3) 80%,
    transparent 100%
  );
}

.hero-curtain-right::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 160, 60, 0.15) 20%, rgba(212, 160, 60, 0.08) 80%, transparent 100%);
}

.hero-curtain-right::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(212, 160, 60, 0.08) 30%, rgba(212, 160, 60, 0.04) 70%, transparent 100%);
}

/* Stage spotlight from above */
.hero-spotlight {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 120%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(212, 160, 60, 0.08) 0%,
    rgba(212, 160, 60, 0.03) 30%,
    transparent 65%
  );
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 128px;
  z-index: 2;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  z-index: 3;
}

.hero-badge {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.badge-star {
  font-size: 0.6rem;
  opacity: 0.6;
}

.hero-title {
  margin-bottom: 28px;
}

.hero-title-the {
  display: block;
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.hero-title-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--tungsten);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-shadow: 0 0 80px rgba(212, 160, 60, 0.15);
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background: var(--amber);
  opacity: 0.4;
}

.divider-icon {
  color: var(--amber);
  font-size: 0.7rem;
  opacity: 0.6;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-bottom: 12px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--amber);
  opacity: 0.7;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted-light);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.4;
  z-index: 3;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--amber);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.15; transform: scaleY(0.5); }
  50% { opacity: 0.7; transform: scaleY(1); }
}

/* ========================
   ABOUT
   ======================== */
.about {
  background: var(--emerald-deep);
}

.about .section-title {
  color: var(--tungsten);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

/* Gilded picture frame */
.frame-border {
  position: absolute;
  inset: -8px;
  border: 2px solid var(--amber);
  opacity: 0.3;
  pointer-events: none;
}

.frame-border::before,
.frame-border::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--amber);
  opacity: 0.6;
}

.frame-border::before {
  top: -4px;
  left: -4px;
  border-right: none;
  border-bottom: none;
}

.frame-border::after {
  bottom: -4px;
  right: -4px;
  border-left: none;
  border-top: none;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 160, 60, 0.15);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(212, 160, 60, 0.2);
}

/* ========================
   MARQUEE — Theater Bulbs
   ======================== */
.marquee-section {
  background: var(--emerald-dark);
  padding: 0;
  overflow: hidden;
  position: relative;
}

.marquee-bulbs {
  display: flex;
  justify-content: space-around;
  padding: 0 8px;
  height: 20px;
  align-items: center;
  background: var(--emerald-black);
  border-top: 1px solid rgba(212, 160, 60, 0.15);
  border-bottom: 1px solid rgba(212, 160, 60, 0.15);
}

.bulb {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 6px var(--amber), 0 0 12px rgba(212, 160, 60, 0.3);
  animation: bulbChase 1.5s ease-in-out infinite;
}

.bulb:nth-child(odd) {
  animation-delay: 0s;
}

.bulb:nth-child(even) {
  animation-delay: 0.75s;
}

@keyframes bulbChase {
  0%, 100% { opacity: 0.3; box-shadow: 0 0 3px var(--amber); }
  50% { opacity: 1; box-shadow: 0 0 8px var(--amber), 0 0 16px rgba(212, 160, 60, 0.4); }
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
  padding: 20px 0;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tungsten);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-star {
  color: var(--amber);
  font-size: 0.65rem;
}

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

/* ========================
   PROCESS
   ======================== */
.process {
  background: var(--charcoal-warm);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process-step {
  padding: 40px 32px;
  border: 1px solid rgba(212, 160, 60, 0.08);
  background: var(--charcoal);
  position: relative;
  transition: all 0.4s var(--ease-out);
}

.process-step:hover {
  border-color: rgba(212, 160, 60, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.process-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tungsten);
  margin-bottom: 16px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.process-step p:last-child {
  margin-bottom: 0;
}

/* ========================
   GEAR
   ======================== */
.gear {
  background: var(--emerald-deep);
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.gear-category {
  padding: 32px 28px;
  border: 1px solid rgba(212, 160, 60, 0.1);
  background: rgba(10, 26, 16, 0.5);
  transition: all 0.4s var(--ease-out);
}

.gear-category:hover {
  border-color: rgba(212, 160, 60, 0.3);
  background: rgba(20, 61, 34, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.gear-category h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 160, 60, 0.15);
}

.gear-category li {
  font-size: 0.85rem;
  color: var(--text-muted-light);
  padding: 6px 0;
}

/* ========================
   QUOTE
   ======================== */
.quote-section {
  background: var(--emerald-black);
  text-align: center;
  border-top: 1px solid rgba(212, 160, 60, 0.1);
  border-bottom: 1px solid rgba(212, 160, 60, 0.1);
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--amber);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.4;
}

.quote-block blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--tungsten);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quote-attribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.quote-attr-line {
  width: 40px;
  height: 1px;
  background: var(--amber);
  opacity: 0.4;
}

.quote-attribution span {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
}

/* ========================
   CHRIS SHARP BIO
   ======================== */
.chris {
  background: var(--charcoal-warm);
}

.chris-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}

.chris-photo {
  position: relative;
  position: sticky;
  top: 100px;
}

/* Vanity mirror lights */
.vanity-lights {
  position: absolute;
  top: -8px;
  left: 5%;
  right: 5%;
  display: flex;
  justify-content: space-around;
  z-index: 2;
}

.vanity-lights-wide {
  left: 0;
  right: 0;
}

.vanity-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-light);
  box-shadow: 0 0 6px var(--amber), 0 2px 8px rgba(212, 160, 60, 0.3);
  animation: vanityGlow 3s ease-in-out infinite;
}

.vanity-lights span:nth-child(1) { animation-delay: 0s; }
.vanity-lights span:nth-child(2) { animation-delay: 0.35s; }
.vanity-lights span:nth-child(3) { animation-delay: 0.7s; }
.vanity-lights span:nth-child(4) { animation-delay: 1.05s; }
.vanity-lights span:nth-child(5) { animation-delay: 1.4s; }
.vanity-lights span:nth-child(6) { animation-delay: 1.75s; }
.vanity-lights span:nth-child(7) { animation-delay: 2.1s; }

@keyframes vanityGlow {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 4px var(--amber); }
  50% { opacity: 1; box-shadow: 0 0 8px var(--amber), 0 4px 12px rgba(212, 160, 60, 0.4); }
}

.chris-content p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}

.chris-content em {
  font-style: italic;
  color: var(--tungsten);
}

.chris-intro {
  font-family: var(--font-accent);
  font-size: 1.15rem !important;
  color: var(--tungsten) !important;
  line-height: 1.7 !important;
}

/* Inline quotes (Willie Nelson, Bob Piekiel) */
.inline-quote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 3px solid var(--amber);
  background: rgba(212, 160, 60, 0.04);
}

.inline-quote span:first-child,
.inline-quote span:last-of-type {
  color: var(--amber);
  font-family: var(--font-display);
  font-size: 1.3rem;
  opacity: 0.5;
}

.inline-quote {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--tungsten);
  line-height: 1.6;
}

.inline-quote cite {
  display: block;
  font-size: 0.85rem;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-top: 8px;
  opacity: 0.8;
}

/* Discography */
.discography {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 160, 60, 0.12);
}

.discography h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--tungsten);
  margin-bottom: 24px;
}

.disco-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.disco-item {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 160, 60, 0.06);
}

.disco-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.disco-year {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber);
  min-width: 50px;
  opacity: 0.7;
}

.disco-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tungsten);
  margin-bottom: 2px;
}

.disco-role {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted-light);
  letter-spacing: 0.03em;
}

.disco-award {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(212, 160, 60, 0.08);
  padding: 3px 10px;
  margin-top: 6px;
  border: 1px solid rgba(212, 160, 60, 0.15);
}

/* ========================
   GALLERY
   ======================== */
.gallery {
  background: var(--emerald-black);
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item .placeholder-img {
  height: 100%;
  min-height: 250px;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover .placeholder-img {
  transform: scale(1.05);
}

.gallery-wide {
  grid-column: span 2;
}

/* ========================
   CONTACT
   ======================== */
.contact {
  background: var(--emerald-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-item-label {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}

.contact-item span,
.contact-item a {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--amber);
}

.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 60, 0.25);
  color: var(--amber);
  transition: all 0.3s;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--amber);
  color: var(--black);
  border-color: var(--amber);
  box-shadow: 0 0 12px rgba(212, 160, 60, 0.3);
}

/* --- Form --- */
.contact-form-wrap {
  background: rgba(10, 26, 16, 0.6);
  padding: 44px;
  border: 1px solid rgba(212, 160, 60, 0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0.7;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 160, 60, 0.15);
  color: var(--tungsten);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(248, 244, 236, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 1px rgba(212, 160, 60, 0.15);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4a03c' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--charcoal);
  color: var(--tungsten);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  margin-top: 8px;
  padding: 18px;
}

/* ========================
   FOOTER
   ======================== */
.footer {
  background: var(--emerald-black);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(212, 160, 60, 0.1);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand .logo-the {
  font-size: 0.6rem;
}

.footer-brand .logo-name {
  font-size: 1.1rem;
}

.footer-tagline {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--text-muted-light);
  margin-top: 4px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted-light);
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: var(--amber);
}

.footer-divider {
  height: 1px;
  background: rgba(212, 160, 60, 0.08);
  margin: 32px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--text-muted-light);
}

/* ========================
   SCROLL ANIMATIONS
   ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .gear-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chris-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chris-photo {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--emerald-black);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.6);
    border-left: 1px solid rgba(212, 160, 60, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

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

  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(212, 160, 60, 0.06);
    font-size: 0.9rem;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center !important;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-curtain { width: 20%; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .gear-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .chris-grid {
    gap: 36px;
  }

  .chris-photo {
    max-width: 300px;
  }

  .inline-quote {
    padding: 20px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-wide {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title-name {
    font-size: 2.8rem;
  }

  .hero-curtain { display: none; }

  .about-stats {
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: span 1;
  }

  .stat-divider {
    height: 30px;
  }
}
