/* ============================
   KRISHOOL — MAIN STYLESHEET
   Dark luxury aesthetic with gold accents
   ============================ */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --gold: #c9a84c;
  --gold-light: #e8c96d;
  --gold-pale: #f0dea0;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray: #888888;
  --gray-light: #cccccc;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --section-pad: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== UTILITIES ===== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section { padding: var(--section-pad) 0; }
.centered { text-align: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.mt-lg { margin-top: 3rem; }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

.section-intro {
  max-width: 680px;
  margin: 0 auto 3rem;
  color: var(--gray-light);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.full-width { width: 100%; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.8; }

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

.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-light) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('krishool_banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Animated grain overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.45) 0%,
    rgba(10,10,10,0.55) 50%,
    rgba(10,10,10,0.75) 85%,
    var(--black) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  animation: fadeInUp 1.2s ease both;
}

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

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s 0.1s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1.2s 0.2s ease both;
  text-shadow: 0 0 80px rgba(201,168,76,0.2);
}

.hero-subtitle {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.8rem;
  animation: fadeInUp 1.2s 0.3s ease both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--gold);
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s 0.4s ease both;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s 0.5s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== CREDENTIALS BAR ===== */
.cred-bar {
  background: var(--gold);
  padding: 0.9rem 2rem;
  overflow: hidden;
}

.cred-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}

.cred-bar .sep { opacity: 0.4; }

/* ===== ABOUT ===== */
.about-section { background: var(--dark); }

.about-img-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--dark3);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-placeholder:hover img {
  transform: scale(1.03);
}

.img-hint { font-size: 0.7rem; color: var(--gold); opacity: 0.6; }

.about-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem 2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
  max-width: 240px;
}

.about-text { padding-left: 1rem; }

.cred-list {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--gray-light);
}

.cred-icon { font-size: 1rem; }

/* ===== SERVICES ===== */
.services-section { background: var(--black); }

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

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.service-icon { font-size: 2rem; margin-bottom: 1.2rem; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== WEDDINGS ===== */
.weddings-section { background: var(--dark); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
  align-items: start;
}

.package-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 2px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--dark2) 0%, rgba(201,168,76,0.05) 100%);
}

.package-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1.2rem;
  border-radius: 0 0 4px 4px;
}

.package-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-top: 0.5rem;
}

.package-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0.3rem 0 1.5rem;
}

.package-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.package-price span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--gray);
  font-family: var(--font-body);
}

.package-duration {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.package-features li {
  font-size: 0.85rem;
  color: var(--gray-light);
  padding-left: 1.2rem;
  position: relative;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

.package-extras {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== WHY SECTION ===== */
.why-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.why-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

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

.why-item { position: relative; padding-left: 1rem; }

.why-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CORPORATE ===== */
.corporate-section { background: var(--black); }

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

.corporate-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 2.5rem;
  border-radius: 2px;
  transition: var(--transition);
}

.corporate-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.corp-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }

.corporate-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.corporate-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.corporate-card ul {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.corporate-card li {
  font-size: 0.82rem;
  color: var(--gray-light);
  padding-left: 1rem;
  position: relative;
}
.corporate-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--dark3);
}

.gallery-wide {
  grid-column: 1;
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
  min-height: 250px;
}

.gallery-wide img { min-height: 520px; }

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-wide,
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) {
    grid-column: 1;
    grid-row: auto;
  }
  .gallery-wide img { min-height: 280px; }
  .gallery-item img { min-height: 220px; }
}

/* ===== MEDIA ===== */
.media-section { background: var(--dark); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.video-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 16/9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-thumb:hover img { transform: scale(1.05); }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  color: var(--white);
  font-size: 2.5rem;
  transition: var(--transition);
}

.video-thumb:hover .play-btn { background: rgba(201,168,76,0.5); }

.video-title {
  font-size: 0.85rem;
  color: var(--gray-light);
  margin-top: 0.8rem;
  padding: 0 0.3rem;
}

.streaming-links { text-align: center; margin-top: 3rem; }

.streaming-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.streaming-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--off-white);
  transition: var(--transition);
  background: var(--dark2);
}

.stream-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.stream-btn.spotify:hover { border-color: #1db954; color: #1db954; }
.stream-btn.youtube:hover { border-color: #ff0000; color: #ff0000; }

/* ===== PODCAST ===== */
.podcast-section { background: var(--black); }

.podcast-layout { align-items: center; }

.podcast-links { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

.podcast-visual { display: flex; justify-content: center; }

.podcast-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  text-align: center;
  width: 300px;
}

.podcast-mic { font-size: 3.5rem; margin-bottom: 1rem; }

.podcast-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.podcast-sub {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.podcast-waves {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 40px;
}

.podcast-waves span {
  display: block;
  width: 5px;
  background: var(--gold);
  border-radius: 3px;
  opacity: 0.7;
  animation: wave 1.2s infinite ease-in-out;
}

.podcast-waves span:nth-child(1) { height: 20px; animation-delay: 0s; }
.podcast-waves span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.podcast-waves span:nth-child(3) { height: 25px; animation-delay: 0.2s; }
.podcast-waves span:nth-child(4) { height: 40px; animation-delay: 0.3s; }
.podcast-waves span:nth-child(5) { height: 28px; animation-delay: 0.4s; }
.podcast-waves span:nth-child(6) { height: 15px; animation-delay: 0.5s; }
.podcast-waves span:nth-child(7) { height: 32px; animation-delay: 0.6s; }
.podcast-waves span:nth-child(8) { height: 22px; animation-delay: 0.7s; }
.podcast-waves span:nth-child(9) { height: 38px; animation-delay: 0.8s; }
.podcast-waves span:nth-child(10) { height: 18px; animation-delay: 0.9s; }

@keyframes wave {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50% { transform: scaleY(1.2); opacity: 1; }
}

/* ===== EBOOK ===== */
.ebook-section { background: var(--dark); }

.ebook-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.ebook-edition {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  margin-top: -0.5rem;
}

.ebook-cover-link {
  display: block;
  position: relative;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ebook-cover-link:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 35px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.4);
}

.ebook-cover-img {
  display: block;
  width: 260px;
  height: auto;
  border-radius: 6px;
}

.ebook-cover-cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.5rem 1rem 0.8rem;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ebook-cover-link:hover .ebook-cover-cta { opacity: 1; }

/* ===== CONTACT ===== */
.contact-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon { font-size: 1.2rem; margin-top: 2px; }

.contact-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 0.95rem;
  color: var(--off-white);
  text-decoration: none;
  display: block;
}
.contact-value:hover { color: var(--gold); }
.contact-value small { font-size: 0.75rem; color: var(--gray); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: var(--gray-light);
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { width: 100%; }

.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }

.form-group select option { background: var(--dark); }

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

.form-note {
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: -0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer-contact-quick {
  margin-top: 1rem !important;
  font-size: 0.82rem !important;
  color: var(--gray-light) !important;
}
.footer-contact-quick a { color: var(--gray-light); text-decoration: none; transition: color var(--transition); }
.footer-contact-quick a:hover { color: var(--gold); }

.footer-links h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .corporate-grid { grid-template-columns: 1fr 1fr; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(201,168,76,0.15);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.85rem; }

  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .about-accent-box { right: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .corporate-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .ebook-inner { grid-template-columns: 1fr; text-align: center; }
  .ebook-cover { display: flex; justify-content: center; }
  .cred-bar-inner { gap: 0.8rem; }
  .packages-grid { max-width: 100%; }
  .podcast-layout { grid-template-columns: 1fr; }
  .podcast-visual { margin-top: 2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* ===== ALBUM SECTION ===== */
.album-section {
  background: linear-gradient(135deg, var(--black) 0%, #0d0a00 50%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

.album-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.album-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.album-cover-wrap {
  position: relative;
}

.album-cover-img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
  display: block;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.album-cover-img:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 45px 100px rgba(0,0,0,0.8), 0 0 40px rgba(201,168,76,0.15);
}

.album-available {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 1.2rem;
}

.album-title-text {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.2rem;
  line-height: 1.2;
}

.album-artist-name {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.album-desc {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.album-format {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 1.5rem;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  margin-bottom: 2rem;
}

.format-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.format-icon { font-size: 1.8rem; }

.format-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.format-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
}

.album-price-tag {
  margin-left: auto;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.album-price-tag span {
  font-size: 0.9rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray);
}

.album-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.album-buy-btn {
  display: inline-flex;
  align-items: center;
}

.album-note {
  font-size: 0.72rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .album-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== PODCAST FEATURED EPISODE ===== */
.featured-episode { margin: 2rem 0; }

.featured-ep-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.featured-ep-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  padding: 1.2rem 1.5rem;
  text-decoration: none;
  transition: var(--transition);
}

.featured-ep-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
  transform: translateY(-2px);
}

.featured-ep-art {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-ep-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.featured-ep-sub {
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.featured-ep-listen {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== DONATION BOX ===== */
.donation-box {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 1.5rem;
  margin-top: 0.5rem;
}

.donation-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}

.donation-desc {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.donation-btn { font-size: 0.7rem !important; padding: 0.6rem 1.4rem !important; }

/* ===== MEDIA CATEGORY LABELS ===== */
.media-category-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: block;
}

.video-sub {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.2rem;
  padding: 0 0.3rem;
  letter-spacing: 0.05em;
}

/* ===== FOOTER DONATE LINK ===== */
.footer-donate {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  transition: var(--transition);
}

.footer-donate:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* ===== GALLERY 5-IMAGE LAYOUT ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item { position: relative; overflow: hidden; border-radius: 2px; background: var(--dark3); }
.gallery-wide { grid-column: 1; }
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 2; grid-row: 3; }
.gallery-item:nth-child(5) { grid-column: 1; grid-row: 3; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.6s ease; min-height: 200px; }
.gallery-item:nth-child(1) img { min-height: 420px; }
.gallery-item:nth-child(5) img { min-height: 280px; object-position: center center; }
.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%); display: flex; align-items: flex-end; padding: 1.2rem; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: 1; grid-row: auto; }
  .gallery-item img, .gallery-item:nth-child(1) img, .gallery-item:nth-child(5) img { min-height: 220px; }
}
