/* =============================================
   ANGJI LLESHI — WEBSITE STYLES
   Skema: E zezë, e bardhë, ari
   ============================================= */

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

:root {
  --black: #0a0a0a;
  --white: #f5f0eb;
  --gold: #c9a96e;
  --gold-light: #d4bb8a;
  --gray: #888;
  --gray-dark: #1a1a1a;
  --gray-mid: #2a2a2a;
}

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gold) var(--black); }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 100000;
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
}
.preloader-text span {
  display: inline-block;
  animation: slideUp 0.6s ease forwards;
  opacity: 0; transform: translateY(100%);
}
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
.preloader-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin-top: 1.5rem;
  animation: expandLine 1.8s ease 0.8s forwards;
}
@keyframes expandLine { to { width: 200px; } }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--white); text-decoration: none;
  transition: color 0.3s ease;
}
.nav-logo:hover { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.2em;
  text-transform: uppercase; position: relative;
  padding-bottom: 4px; font-weight: 400;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
  display: none; flex-direction: column; gap: 6px;
  cursor: pointer; z-index: 1001; background: none; border: none; padding: 8px;
}
.menu-toggle span {
  width: 28px; height: 1.5px;
  background: var(--white); transition: all 0.4s ease;
  display: block;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.5s ease;
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu ul { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 2rem; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; color: var(--white); text-decoration: none;
  font-weight: 300; letter-spacing: 0.1em; transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.1);
  animation: heroZoom 20s ease infinite alternate;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.8) 100%);
}
@keyframes heroZoom { 0% { transform: scale(1.1); } 100% { transform: scale(1.0); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, var(--black) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.hero-subtitle {
  font-size: 0.75rem; letter-spacing: 0.5em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 1s ease 2.5s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 10vw, 8rem); font-weight: 300;
  letter-spacing: 0.08em; line-height: 1.1; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeInUp 1.2s ease 2.8s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-desc {
  font-size: 1rem; color: var(--gray); letter-spacing: 0.15em;
  max-width: 500px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeInUp 1s ease 3.1s forwards;
}
.hero-cta {
  display: inline-flex; gap: 1.5rem;
  opacity: 0; animation: fadeInUp 1s ease 3.4s forwards;
}
.btn-primary {
  padding: 0.9rem 2.5rem; border: 1px solid var(--gold);
  background: var(--gold); color: var(--black);
  font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.4s ease; font-weight: 500;
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-secondary {
  padding: 0.9rem 2.5rem; border: 1px solid rgba(245, 240, 235, 0.3);
  background: transparent; color: var(--white);
  font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; transition: all 0.4s ease; font-weight: 400;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0; animation: fadeInUp 1s ease 3.8s forwards;
}
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; transform: scaleY(0.5); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== SECTIONS ===== */
section { padding: 8rem 2rem; position: relative; }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-label { font-size: 0.7rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; letter-spacing: 0.05em; }
.section-line { width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto 0; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== REVEAL ===== */
.reveal { opacity: 0; transform: translateY(60px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-80px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(80px); transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ===== ABOUT ===== */
#about { background: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrapper { position: relative; }
.about-image { width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: grayscale(30%); transition: filter 0.6s ease; }
.about-image:hover { filter: grayscale(0%); }
.about-image-wrapper::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 100%; height: 100%; border: 1px solid var(--gold); z-index: -1;
  transition: all 0.5s ease;
}
.about-image-wrapper:hover::before { top: -10px; left: -10px; }
.about-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; margin-bottom: 1.5rem; line-height: 1.3; }
.about-text h3 em { color: var(--gold); font-style: italic; }
.about-text p { color: var(--gray); margin-bottom: 1.5rem; font-size: 0.95rem; line-height: 1.9; }
.about-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); }
.stat-item .stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 300; color: var(--gold); display: block; }
.stat-item .stat-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-top: 0.3rem; }

/* ===== MUSIC ===== */
#music { background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 50%, var(--black) 100%); }
.music-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.album-card { position: relative; overflow: hidden; cursor: pointer; }
.album-art { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.7s ease, filter 0.7s ease; filter: grayscale(50%); }
.album-card:hover .album-art { transform: scale(1.08); filter: grayscale(0%); }
.album-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
  transition: all 0.5s ease;
}
.album-card:hover .album-overlay { background: linear-gradient(to top, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.3) 60%); }
.album-year { font-size: 0.65rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.album-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; margin-bottom: 0.3rem; }
.album-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px; height: 60px;
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.5s ease; background: rgba(10,10,10,0.5);
}
.album-card:hover .play-btn { transform: translate(-50%, -50%) scale(1); }
.play-btn svg { width: 20px; height: 20px; fill: var(--gold); margin-left: 3px; }

/* ===== BOOKS ===== */
#books { background: var(--black); }
.books-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.book-card {
  background: var(--gray-dark);
  border: 1px solid rgba(255,255,255,0.05); transition: all 0.5s ease;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.book-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.5s ease; z-index: 2; }
.book-card:hover::before { height: 100%; }
.book-card:hover { border-color: rgba(201, 169, 110, 0.2); transform: translateY(-5px); }
.book-card-image { width: 100%; height: 220px; object-fit: cover; transition: transform 0.7s ease, filter 0.5s ease; filter: grayscale(40%); }
.book-card:hover .book-card-image { transform: scale(1.05); filter: grayscale(0%); }
.book-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.book-number { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 300; color: rgba(201, 169, 110, 0.15); line-height: 1; margin-bottom: 1rem; }
.book-genre { font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.book-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.3; }
.book-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.5rem; flex: 1; }
.book-link {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem; transition: gap 0.3s ease;
  background: none; border: none; font-family: 'Outfit', sans-serif; padding: 0;
}
.book-link:hover { gap: 1rem; }
.book-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; }

/* ===== PROSE ===== */
#prose { background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 50%, var(--black) 100%); }
.prose-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.prose-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem; position: relative;
  transition: all 0.5s ease; cursor: pointer;
}
.prose-card:hover {
  background: rgba(201, 169, 110, 0.04);
  border-color: rgba(201, 169, 110, 0.2);
  transform: translateY(-4px);
}
.prose-card-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1rem;
}
.prose-category {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201, 169, 110, 0.1); padding: 0.3rem 0.8rem;
}
.prose-date { font-size: 0.7rem; color: var(--gray); }
.prose-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; margin-bottom: 1rem; line-height: 1.3;
  transition: color 0.3s ease;
}
.prose-card:hover h3 { color: var(--gold); }
.prose-excerpt { font-size: 0.85rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.2rem; }
.prose-read-time { font-size: 0.7rem; color: var(--gray); letter-spacing: 0.1em; display: flex; align-items: center; gap: 0.4rem; }
.prose-read-time svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* ===== GALLERY ===== */
#gallery { background: var(--black); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; gap: 0.5rem; }
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease, filter 0.5s ease; filter: grayscale(60%); }
.gallery-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(10,10,10,0.3); transition: background 0.5s ease; }
.gallery-item:hover::after { background: transparent; }

/* ===== QUOTES ===== */
#quotes { background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 50%, var(--black) 100%); text-align: center; }
.quote-container { max-width: 800px; margin: 0 auto; position: relative; min-height: 200px; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; color: rgba(201, 169, 110, 0.15); line-height: 1; position: absolute; top: -2rem; left: -1rem; }
.quote-text {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; font-style: italic; line-height: 1.7; margin-bottom: 2rem;
  position: relative; z-index: 2;
}
.quote-author { font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.quote-nav { display: flex; justify-content: center; gap: 0.8rem; margin-top: 2rem; }
.quote-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: none; cursor: pointer;
  transition: all 0.3s ease; padding: 0;
}
.quote-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== CONTACT ===== */
#contact { background: linear-gradient(180deg, var(--black) 0%, var(--gray-dark) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 300; margin-bottom: 1.5rem; line-height: 1.3; }
.contact-info p { color: var(--gray); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2.5rem; }
.contact-detail { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.contact-detail-icon {
  width: 45px; height: 45px; border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.contact-detail-text span { display: block; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
.contact-detail-text a, .contact-detail-text p { color: var(--white); text-decoration: none; font-size: 0.95rem; transition: color 0.3s ease; margin: 0; }
.contact-detail-text a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { position: relative; }
.form-group input, .form-group textarea {
  width: 100%; padding: 1rem 0; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--white); font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 300; outline: none;
  transition: border-color 0.4s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group label {
  position: absolute; left: 0; top: 1rem;
  font-size: 0.8rem; color: var(--gray); letter-spacing: 0.1em;
  transition: all 0.3s ease; pointer-events: none;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -0.8rem; font-size: 0.65rem; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase;
}
.form-group textarea { resize: none; height: 120px; }
.submit-btn {
  align-self: flex-start; padding: 1rem 3rem;
  border: 1px solid var(--gold); background: transparent;
  color: var(--gold); font-family: 'Outfit', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.4s ease; font-weight: 400;
}
.submit-btn:hover { background: var(--gold); color: var(--black); }

/* ===== SOCIAL ===== */
.social-strip { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; }
.social-link {
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.4s ease;
}
.social-link:hover { border-color: var(--gold); transform: translateY(-3px); }
.social-link svg { width: 18px; height: 18px; fill: var(--white); transition: fill 0.3s ease; }
.social-link:hover svg { fill: var(--gold); }

/* ===== PARALLAX TEXT ===== */
.parallax-text {
  overflow: hidden; padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  white-space: nowrap;
}
.parallax-text-inner { display: inline-flex; animation: scrollText 25s linear infinite; }
.parallax-text span {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem); font-weight: 300;
  color: rgba(255,255,255,0.04); padding: 0 2rem; letter-spacing: 0.1em;
}
.parallax-text span.gold-text { color: rgba(201, 169, 110, 0.12); }
@keyframes scrollText { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FOOTER ===== */
footer {
  background: var(--gray-dark); padding: 3rem 2rem;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; letter-spacing: 0.15em; margin-bottom: 1rem; color: var(--white); cursor: default; user-select: none; }
footer p { font-size: 0.75rem; color: var(--gray); letter-spacing: 0.15em; }
footer .gold { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  nav { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  section { padding: 5rem 1.5rem; }
  .cursor-dot, .cursor-ring { display: none; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item.large, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .music-grid, .prose-grid { grid-template-columns: 1fr; }
}

/* ===== DETAIL PAGE (Books & Prose) ===== */
.detail-page {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  overflow-y: auto;
  animation: detailFadeIn 0.4s ease;
}
@keyframes detailFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.detail-page-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(10,10,10,0.92); backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.detail-back {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 0.5rem 1.2rem;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s ease; border-radius: 0;
}
.detail-back:hover { border-color: var(--gold); color: var(--gold); }
.detail-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400; color: var(--white);
}
.detail-hero {
  width: 100%; max-height: 400px; object-fit: cover;
  filter: brightness(0.7);
}
.detail-content {
  max-width: 800px; margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.detail-content .detail-label {
  font-size: 0.65rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
.detail-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300; margin-bottom: 0.5rem;
  line-height: 1.2;
}
.detail-meta {
  font-size: 0.8rem; color: var(--gray);
  margin-bottom: 2.5rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.detail-body p {
  font-size: 1.05rem; line-height: 2;
  color: rgba(245,240,235,0.85); margin-bottom: 1.8rem;
}
.detail-body p:first-child::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 600;
  float: left; margin-right: 0.5rem;
  line-height: 1; color: var(--gold);
}

/* ===== DETAIL PAGINATION ===== */
.detail-pagination {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 1rem;
}
.detail-pg-btn {
  background: none; border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); padding: 0.7rem 1.5rem;
  font-family: 'Outfit', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.1em; cursor: pointer;
  transition: all 0.3s ease; white-space: nowrap;
}
.detail-pg-btn:hover:not(:disabled) { border-color: var(--gold); color: var(--gold); }
.detail-pg-btn:disabled { opacity: 0.25; cursor: default; }
.detail-pg-info { text-align: center; flex: 1; min-width: 0; }
.detail-pg-current {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; color: var(--gold);
}
.detail-pg-total { font-size: 0.8rem; color: var(--gray); }
.detail-pg-bar {
  width: 100%; max-width: 200px; height: 2px;
  background: rgba(255,255,255,0.08); margin: 0.6rem auto 0;
  border-radius: 2px; overflow: hidden;
}
.detail-pg-fill {
  height: 100%; background: var(--gold);
  transition: width 0.4s ease; border-radius: 2px;
}
@media (max-width: 600px) {
  .detail-pagination { flex-direction: column; gap: 1rem; }
  .detail-pg-btn { width: 100%; text-align: center; padding: 0.8rem; }
  .detail-pg-info { order: -1; }
}

/* ===== ALBUM LINK ===== */
.album-card { cursor: pointer; }
.album-card[data-link] { cursor: pointer; }

/* ===== GALLERY MOBILE ===== */
.gallery-show-more {
  display: none;
  width: 100%;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 1.5rem;
}
.gallery-show-more:hover { background: rgba(201,169,110,0.1); }
@media (max-width: 768px) {
  .gallery-show-more { display: block; }
  .gallery-item.mobile-hidden { display: none; }
  .gallery-item.mobile-visible { display: block; }
}

/* ===== FOOTER CREDIT (NEOX) ===== */
.footer-credit {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: center;
}
.neox-credit {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}
.neox-logo {
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.5rem 1rem;
  line-height: 1;
  position: relative;
}
.neox-logo::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: #4ade80;
}
.neox-name {
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 0.2em; color: var(--white);
}
.neox-sub {
  font-size: 0.5rem; letter-spacing: 0.35em;
  color: var(--gray); text-transform: uppercase;
  margin-top: 2px;
}
.neox-contacts {
  display: flex; flex-direction: column; gap: 0.4rem;
}
.neox-phone {
  color: var(--white); text-decoration: none;
  font-size: 0.8rem; font-weight: 400;
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s ease; letter-spacing: 0.03em;
}
.neox-phone:hover { color: var(--gold); }
.neox-phone svg { flex-shrink: 0; opacity: 0.6; }
.neox-wa-label {
  font-size: 0.65rem; color: #4ade80;
  font-weight: 500; margin-left: 0.3rem;
}
@media (max-width: 480px) {
  .neox-credit { flex-direction: column; gap: 0.8rem; padding: 0.8rem 1rem; }
  .neox-phone { font-size: 0.75rem; }
}
