/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --ink: #1a1612;
  --ink-soft: #3d342c;
  --parchment: #f7f3ed;
  --warm-white: #faf8f4;
  --paper: #ffffff;
  --rule: #e0d9cc;
  --gold: #8b6914;
  --gold-lt: #a67c1a;
  --hero-gold: #f3e6c0;
  --gold-pale: #f5efe3;
  --rust: #8b3a2a;
  --teal: #1f4a50;
  --muted: #6b6258;
  --serif: 'EB Garamond', Georgia, serif;
  --display: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --shadow-sm: 0 1px 3px rgba(26, 22, 18, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 22, 18, 0.08);
  --shadow-lg: 0 8px 40px rgba(26, 22, 18, 0.1);
}

body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--warm-white); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  transition: height 0.3s, box-shadow 0.3s;
}
nav.scrolled { height: 64px; box-shadow: var(--shadow-md); }

.nav-brand { display: flex; flex-direction: column; gap: 2px; text-decoration: none; color: inherit; }
.nav-brand-name { font-family: var(--display); font-size: 1.15rem; font-weight: 600; color: var(--ink); }
.nav-brand-sub { font-family: var(--sans); font-size: 0.625rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  color: var(--paper) !important;
  background: var(--ink);
  padding: 10px 24px;
  border: none;
  font-family: var(--sans);
  font-size: 0.73rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold) !important; }

.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  display: none;
}
.nav-toggle-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.nav-toggle-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ink-soft);
  transition: transform 0.25s ease, opacity 0.25s ease, top 0.25s ease, bottom 0.25s ease;
}
.nav-toggle-line:nth-child(1) { top: 4px; }
.nav-toggle-line:nth-child(2) { top: 11px; }
.nav-toggle-line:nth-child(3) { bottom: 4px; }
nav.nav-open .nav-toggle-line:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
nav.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}
nav.nav-open .nav-toggle-line:nth-child(3) {
  bottom: auto;
  top: 11px;
  transform: rotate(-45deg);
}


.about-subheading {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  color: #9a7b3c;
}

.expertise-list {
  margin-top: 12px;
  padding-left: 20px;
}

.expertise-list li {
  margin-bottom: 6px;
}

/* ─── HERO (Light theme) ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  /* Background is now driven by slide images */
  border-bottom: 1px solid var(--rule);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 2; }

.slide-bg {
  position: absolute;
  inset: 0;
  transition: transform 10s ease;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slide.active .slide-bg { transform: scale(1.03); }
.slide-1 .slide-bg {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    url('./2.jpg');
}
.slide-2 .slide-bg {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    url('./1.jpg');
}
.slide-3 .slide-bg {
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
    url('./3.jpg');
}

.slide-watermark {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(38vw, 460px);
  opacity: 0.08;
  pointer-events: none;
}
.slide-watermark svg { stroke: var(--hero-gold); }

.slide-inner { position: relative; z-index: 3; padding: 0 10%; max-width: 800px; }

.slide-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--hero-gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
}
.slide-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--hero-gold); }
.slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

.slide-headline {
  font-family: var(--display);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f5f0e8;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.35s, transform 0.7s 0.35s;
}
.slide.active .slide-headline { opacity: 1; transform: translateY(0); }
.slide-headline em { font-style: italic; color: var(--hero-gold); }

.slide-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.8);
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
}
.slide.active .slide-body { opacity: 1; transform: translateY(0); }

.slide-btn {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s 0.65s, transform 0.6s 0.65s;
}
.slide.active .slide-btn { opacity: 1; transform: translateY(0); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.73rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 28px;
  border: 1px solid;
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
  color: #f5f0e8; 
}
.btn-light {
  border-color: var(--hero-gold);
  color: #f5f0e8;
  background: transparent;
}
.btn-light:hover { border-color: var(--hero-gold); background: var(--hero-gold); color: var(--ink); }
.btn-dark { border-color: var(--ink); color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--paper); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--paper); }
.btn-sm { padding: 6px 14px; font-size: 0.62rem; }
.btn-submit { align-self: flex-start; margin-top: 8px; }

/* Carousel controls */
.carousel-nav {
  position: absolute;
  bottom: 40px;
  left: 10%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
}
.carousel-dots { display: flex; gap: 8px; }
.dot {
  width: 24px;
  height: 2px;
  background: var(--rule);
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--hero-gold); width: 40px; }
.carousel-count {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.carousel-arrows {
  position: absolute;
  bottom: 36px;
  right: 10%;
  z-index: 5;
  display: flex;
  gap: 8px;
}
.arrow-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-btn:hover { border-color: var(--hero-gold); color: var(--hero-gold); }

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 4;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--rust) 50%, var(--gold) 80%, transparent);
  opacity: 0.4;
}

/* ─── SECTION ─── */
.section { padding: 96px 10%; }
.overline {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.overline::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.section-heading {
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-heading em { font-style: italic; color: var(--rust); }
.rule { width: 44px; height: 1px; background: var(--gold); margin-bottom: 44px; }

/* ─── ABOUT ─── */
#about { }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 72px; align-items: start; }

.portrait-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(165deg, #e8e0d5 0%, #d4c9b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(139, 105, 20, 0.2);
  pointer-events: none;
  z-index: 1;
}
.portrait-frame svg { width: 55%; opacity: 0.35; }
.portrait-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portrait-caption-name { font-family: var(--display); font-size: 0.95rem; color: var(--paper); }
.portrait-caption-title { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-lt); }
.corner-accent { position: absolute; top: -8px; right: -8px; z-index: 2; }

.about-lead {
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 22px;
}
.about-text { font-size: 1.02rem; line-height: 1.8; color: var(--ink-soft); margin-bottom: 14px; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border: 1px solid var(--rule);
}
.stat-item { padding: 24px 18px; border-right: 1px solid var(--rule); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--display); font-size: 2.35rem; font-weight: 300; color: var(--ink); line-height: 1; margin-bottom: 4px; }
.stat-num sup { color: var(--gold); font-size: 1.1rem; }
.stat-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }

/* ─── QUOTE BAND (Light) ─── */
.quote-band {
  background: var(--gold-pale);
  padding: 64px 10%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.quote-text { position: relative; z-index: 1; }
.quote-text .overline { color: var(--gold); }
.quote-text .overline::before { background: var(--gold); }
.quote-mark { font-family: var(--display); font-size: 4.5rem; color: var(--gold); opacity: 0.2; line-height: 0.5; margin-bottom: 12px; }
.quote-body {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}
.quote-attr { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.quote-motif { flex-shrink: 0; opacity: 0.25; position: relative; z-index: 1; }
.quote-motif svg { stroke: var(--gold); }

/* ─── BOOKS ───
/* Recent Books Section */
.recent-books {
  padding: 6rem 0;
  background: white;
}

.books-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.book-card {
  text-align: center;
  transition: all 0.3s ease;
}

.book-card:hover {
  transform: translateY(-10px);
}

.book-cover {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.book-cover img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.book-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.book-cover:hover .book-overlay {
  opacity: 1;
}

.btn-read {
  background: linear-gradient(45deg, #169976, #0d6b4f);
  color: white;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-read:hover {
  transform: scale(1.05);
}

.book-info h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.book-info p {
  color: #7f8c8d;
  font-size: 0.9rem;
}

.view-all {
  text-align: center;
  margin-top: 3rem;
}

#books { background: var(--warm-white); }
.books-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.books-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.book-card { cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.book-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--rule);
}
.book-cover img,
.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bc-1 { background: linear-gradient(155deg, #2d4a52, #1a3238); }
.bc-2 { background: linear-gradient(155deg, #4a2820, #2a1410); }
.bc-3 { background: linear-gradient(155deg, #3a4028, #222814); }
.bc-4 { background: linear-gradient(155deg, #3a2a18, #221a0e); }
.book-spine {
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.book-cover-inner { padding: 26px 20px 20px 28px; height: 100%; display: flex; flex-direction: column; justify-content: space-between; }
.book-motif { align-self: flex-end; opacity: 0.25; }
.bc-line { height: 1px; background: rgba(201, 169, 98, 0.4); margin: 14px 0 10px; }
.bc-title { font-family: var(--display); font-size: 0.98rem; color: #f5f0e8; line-height: 1.3; margin-bottom: 6px; }
.bc-author { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-lt); }
.bk-year { font-family: var(--sans); font-size: 0.68rem; color: var(--muted); letter-spacing: 1px; margin-bottom: 4px; }
.bk-name { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); margin-bottom: 2px; }
.bk-genre { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); } */

/* ─── ARTICLES ─── */
#articles { background: var(--paper); }
.articles-layout { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--rule); }
.article-featured {
  padding: 44px;
  border-right: 1px solid var(--rule);
  position: relative;
  background: var(--warm-white);
}
.article-featured::before {
  content: '\201C';
  position: absolute;
  top: 24px;
  left: 38px;
  font-family: var(--display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
}
.art-tag {
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(139, 105, 20, 0.35);
  display: inline-block;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.art-title { font-family: var(--display); font-size: 1.5rem; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 16px; }
.art-meta { display: flex; gap: 0; align-items: center; margin-bottom: 18px; }
.art-meta-item { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.art-meta-item + .art-meta-item::before { content: '·'; padding: 0 10px; }
.art-excerpt { font-size: 0.98rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 24px; }
.article-list { display: flex; flex-direction: column; }
.article-row {
  padding: 22px 28px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background 0.2s;
}
.article-row:last-child { border-bottom: none; }
.article-row:hover { background: var(--warm-white); }
.ar-tag { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.ar-title { font-family: var(--serif); font-size: 0.95rem; color: var(--ink); line-height: 1.45; margin-bottom: 6px; }
.ar-source { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }

/* Books Page */
.books-hero {
  padding: 100px 0 60px;
}

.books-hero h1 {
  font-size: 2rem;
}

.books-collection {
  padding: 4rem 0;
}

.books-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.book-item {
  margin-bottom: 0;
}

.book-details {
  padding: 1.2rem;
}

.book-details h3 {
  font-size: 1.2rem;
}

.book-details p {
  font-size: 0.9rem;
}
/* ─── INTERVIEWS PAGE (video grid) ─── */
.interviews {
  background: var(--parchment);
  padding: 80px 10% 96px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.interviews .container {
  max-width: 1100px;
  margin: 0 auto;
}
.interviews .section-header {
  margin-bottom: 32px;
}
.interviews .section-header h2 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ink);
}
.interviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.interview-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 105, 20, 0.35);
}
.video-container {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}
.video-container::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}
.video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.1), rgba(26, 22, 18, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.interview-card:hover .video-overlay {
  opacity: 1;
}
.play-button {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(245, 240, 232, 0.8);
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f0e8;
  font-size: 1.4rem;
}
.interview-info {
  padding: 18px 20px 20px;
}
.interview-info h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 8px;
}
.interview-info p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.interview-meta {
  display: flex;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}


.more-content {
  display: none;
  margin-top: 15px;
}

.read-more-btn {
  margin-top: 20px;
  padding: 8px 20px;
  background-color: #9a7b3c;
  color: white;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background-color: #7c6230;
}

/* ─── GALLERY (Light) ─── */
/* #gallery { background: var(--parchment); padding-bottom: 0; border-top: 1px solid var(--rule); }
#gallery .overline { color: var(--gold); }
#gallery .overline::before { background: var(--gold); }
#gallery .section-heading { color: var(--ink); }
#gallery .rule { background: var(--gold); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 4px;
}
.gcell { overflow: hidden; position: relative; cursor: pointer; border: 1px solid var(--rule); }
.gcell:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gcell:nth-child(2) { grid-column: span 4; }
.gcell:nth-child(3) { grid-column: span 3; }
.gcell:nth-child(4) { grid-column: span 3; }
.gcell:nth-child(5) { grid-column: span 4; }
.gfill { width: 100%; height: 100%; transition: transform 0.5s; display: flex; align-items: center; justify-content: center; }
.gcell:hover .gfill { transform: scale(1.05); }
.gf1 { background: linear-gradient(150deg, #2d4a52, #1a3238); }
.gf2 { background: linear-gradient(150deg, #4a2820, #2a1410); }
.gf3 { background: linear-gradient(150deg, #3a4028, #222814); }
.gf4 { background: linear-gradient(150deg, #2a3818, #1a2810); }
.gf5 { background: linear-gradient(150deg, #402020, #281414); }
.gsv { opacity: 0.12; stroke: var(--gold-lt); }
.govl {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gcell:hover .govl { background: rgba(26, 22, 18, 0.4); }
.govl-label {
  opacity: 0;
  transition: opacity 0.3s;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 8px 18px;
}

.gcell:hover .govl-label { opacity: 1; } */

/* ─── CONTACT (Light) ─── */
#contact { display: grid; grid-template-columns: 5fr 7fr; padding: 0; }
.contact-left {
  background: var(--ink);
  padding: 72px 48px;
  position: relative;
  overflow: hidden;
}
.contact-left .overline { color: var(--gold-lt); }
.contact-left .overline::before { background: var(--gold-lt); }
.contact-left .section-heading { color: #f5f0e8; }
.contact-left .rule { margin-bottom: 28px; }
.contact-heading-sm { margin-bottom: 16px; }
.contact-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--rust));
  opacity: 0.6;
}
.contact-desc { font-size: 0.98rem; line-height: 1.75; color: rgba(245, 240, 232, 0.65); margin-bottom: 40px; }
.cdetail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cdetail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 98, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-lt);
  font-size: 0.85rem;
}
.cdetail-label { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(245, 240, 232, 0.4); margin-bottom: 2px; }
.cdetail-val { font-size: 0.92rem; color: rgba(245, 240, 232, 0.88); }
.contact-motif { position: absolute; bottom: 32px; right: 32px; opacity: 0.06; }
.contact-right { padding: 72px 48px; background: var(--paper); border-left: 1px solid var(--rule); }
.contact-form-title { margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.flabel { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.finput,
.ftextarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  resize: none;
}
.finput:focus,
.ftextarea:focus { border-color: var(--gold); }
.finput::placeholder,
.ftextarea::placeholder { color: #a89f8f; }

/* ─── FOOTER (Light) ─── */
footer {
  background: var(--warm-white);
  padding: 56px 10% 32px;
  border-top: 1px solid var(--rule);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.fb-name { font-family: var(--display); font-size: 1.2rem; color: var(--ink); margin-bottom: 4px; }
.fb-tag { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.fb-text { font-size: 0.88rem; line-height: 1.75; color: var(--ink-soft); }
.fc-head { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 1px; color: var(--muted); }
.footer-socials { display: flex; gap: 8px; }
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--muted);
  transition: all 0.25s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }

/* ─── PAGE HEADER (inner pages) ─── */
.page-header {
  padding: 140px 10% 64px;
  background: linear-gradient(160deg, var(--warm-white) 0%, var(--parchment) 100%);
  border-bottom: 1px solid var(--rule);
  text-align: center;
}
.page-header .overline { justify-content: center; margin-bottom: 12px; }
.page-header .section-heading { margin-bottom: 12px; }
.page-header .rule { margin-left: auto; margin-right: auto; margin-bottom: 0; }


/* Gallery Page Styles */
.gallery-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #169976 0%, #0d6b4f 100%);
  text-align: center;
  color: white;
}

.gallery-albums {
  padding: 6rem 0;
  background: #fafafa;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.album-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.album-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.album-cover {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.album-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  align-items: end;
  padding: 1.5rem;
}

.album-info {
  color: white;
}

.album-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.album-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.album-details {
  padding: 1.5rem;
}

.album-meta {
  display: flex;
  justify-content: space-between;
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Gallery Modal */
.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
}

.gallery-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 250, 250, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-nav:hover {
  background: rgba(250, 250, 250, 0.3);
}

.modal-prev {
  left: -80px;
}

.modal-next {
  right: -80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── ALBUMS (Gallery) ─── */
/* .albums-section { padding: 80px 10%; background: var(--parchment); }
.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.album-card {
  background: var(--paper);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.25s;
  position: relative;
}
.album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26, 22, 18, 0.12);
  border-color: rgba(139, 105, 20, 0.3);
}
.album-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold) 0%, transparent 50%, var(--rust) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.album-card:hover::before { opacity: 1; }
.album-cover {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.album-card:hover .album-cover img { transform: scale(1.08); }
.album-cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.album-card:hover .album-cover-placeholder { transform: scale(1.05); }
.album-cover-placeholder svg { width: 64px; height: 64px; opacity: 0.5; stroke: rgba(255,255,255,0.8); }
.album-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-card:hover .album-cover-overlay { opacity: 1; }
.album-cover-overlay span {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 20px;
  border-radius: 4px;
}
.album-body { padding: 22px 24px; }
.album-title { font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; line-height: 1.3; }
.album-meta { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }
.album-count { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; font-family: var(--sans); font-size: 0.65rem; letter-spacing: 1px; color: var(--muted); }
.album-count::before { content: ''; width: 18px; height: 1px; background: var(--rule); } */

/* Album modal */
/* .album-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.album-modal.is-open { display: flex; opacity: 1; }
.album-modal-header {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.album-modal-title { font-family: var(--display); font-size: 1.5rem; color: var(--paper); }
.album-modal-back {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.25);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
}
.album-modal-back:hover {
  border-color: var(--gold-lt);
  color: var(--gold-lt);
  background: rgba(201, 169, 98, 0.15);
}
.album-modal-close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--paper);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.album-modal-close:hover { border-color: var(--gold-lt); color: var(--gold-lt); background: rgba(201, 169, 98, 0.15); }
.album-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  background: rgba(250, 248, 244, 0.98);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(224, 217, 204, 0.9);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.album-photo {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s, transform 0.25s;
}
.album-photo:hover { border-color: var(--gold-lt); transform: scale(1.02); }
.album-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.album-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
} */

/* Photo lightbox (single image view) */
/* .photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px;
  opacity: 0;
  transition: opacity 0.25s;
}
.photo-lightbox.is-open { display: flex; opacity: 1; }
.photo-lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 4px; }
.photo-lightbox-nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  pointer-events: none;
}
.photo-lightbox-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.35);
  color: var(--paper);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s;
}
.photo-lightbox-arrow:hover {
  border-color: var(--gold-lt);
  background: rgba(201, 169, 98, 0.25);
  color: var(--gold-lt);
}
.photo-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--paper);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-lightbox-close:hover { border-color: var(--gold-lt); color: var(--gold-lt); } */

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-toggle {
    display: block;
  }
  .nav-links {
    position: absolute;
    inset: 72px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 14px 30px rgba(26, 22, 18, 0.12);
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 4px 0;
  }
  .nav-cta { width: 100%; text-align: center; }
  .section { padding: 64px 6%; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .books-grid { grid-template-columns: repeat(2, 1fr); }
  .interviews-grid { grid-template-columns: 1fr; }
  .articles-layout { grid-template-columns: 1fr; }
  .article-featured { border-right: none; border-bottom: 1px solid var(--rule); }
  /* .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; } */
  .gcell { grid-column: span 1 !important; grid-row: span 1 !important; height: 160px; }
  #contact { grid-template-columns: 1fr; }
  .contact-left,
  .contact-right { padding: 48px 28px; }
  .contact-right { border-left: none; border-top: 1px solid var(--rule); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quote-band { grid-template-columns: 1fr; }
  .page-header { padding: 120px 6% 48px; }
  .albums-grid { grid-template-columns: 1fr; gap: 20px; }
  .album-photos-grid { grid-template-columns: repeat(2, 1fr); }
}

.album-photos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
  padding: 40px;
  background: #000;
}

/* Base style */
.album-photo {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.album-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.album-photo:hover img {
  transform: scale(1.05);
}

/* Large Center Image */
.album-photo:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

/* Wide Images */
.album-photo:nth-child(4),
.album-photo:nth-child(7) {
  grid-column: span 2;
}

/* Tall Images */
.album-photo:nth-child(2),
.album-photo:nth-child(6) {
  grid-row: span 2;
}



/* Gallery Slider Styles */
.gallery-slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gallery-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  min-width: 100%;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.slider-item:hover .slider-caption {
  transform: translateY(0);
}

.slider-caption h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin: 0 0 0.3rem;
  color: #C8973A;
}

.slider-caption p {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #C8973A;
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-arrow:hover {
  background: #b17f2e;
  transform: scale(1.1);
}

.slider-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #C8973A;
  transform: scale(1.2);
}

/* Album Badge */
.album-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(200, 151, 58, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .slider-caption {
    padding: 1rem;
  }
  
  .slider-caption h3 {
    font-size: 1.4rem;
  }
  
  .slider-caption p {
    font-size: 0.9rem;
  }
  
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}


 /* Books Page Specific Styles */
 .books-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.book-card {
  flex: 0 1 350px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.book-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(200, 151, 58, 0.15);
}

.book-cover {
  height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  transition: all 0.5s ease;
}

/* Elegant gradient overlay */
.book-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 70%, rgba(0,0,0,0.7) 100%);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.book-card:hover .book-cover::after {
  opacity: 0.9;
}

.book-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to right, rgba(0,0,0,0.2), transparent);
  z-index: 2;
}

.book-cover-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.8rem;
  color: white;
  z-index: 3;
  transform: translateY(30%);
  transition: transform 0.5s ease;
}

.book-card:hover .book-cover-inner {
  transform: translateY(0);
}

.book-motif {
  margin-bottom: 1.2rem;
  opacity: 0.9;
}

.book-motif svg {
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.bc-line {
  width: 60px;
  height: 2px;
  background: #C8973A;
  margin-bottom: 1.2rem;
}

.bc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
  letter-spacing: -0.5px;
}

.bc-author {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 300;
}

.book-details {
  padding: 2rem 1.8rem;
  background: white;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.bk-year {
  font-family: 'Jost', sans-serif;
  color: #C8973A;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bk-year i {
  font-size: 0.9rem;
}

.bk-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.bk-genre {
  font-family: 'Jost', sans-serif;
  color: #7f8c8d;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Decorative corner accent */
.book-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, transparent 50%, rgba(200, 151, 58, 0.1) 50%);
  z-index: 4;
  pointer-events: none;
}

/* Read button */
.read-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #C8973A;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 5;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.book-card:hover .read-button {
  opacity: 1;
}

.read-button:hover {
  background: #b17f2e;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Page header enhancement */
.page-header {
  text-align: center;
  padding: 4rem 5% 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overline {
  font-family: 'Jost', sans-serif;
  color: #C8973A;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: #2c3e50;
  margin: 0.5rem 0;
  font-weight: 500;
}

.rule {
  width: 100px;
  height: 2px;
  background: #C8973A;
  margin: 2rem auto 0;
}

/* Responsive */
@media (max-width: 768px) {
  .books-grid {
    gap: 3rem;
    padding: 2rem 5%;
  }

  .book-card {
    flex: 0 1 300px;
  }

  .book-cover {
    height: 400px;
  }

  .bc-title {
    font-size: 1.6rem;
  }

  .bk-name {
    font-size: 1.4rem;
  }

  .section-heading {
    font-size: 2.5rem;
  }
}

/* Book cover backgrounds */
.book-cover.bc-1 {
  background-image: url('./Mohibullah Shah Pictures/new.PNG');
  background-color: #8B4513;
  background-size: cover;
  background-position: center;
}

.book-cover.bc-2 {
  background-image: url('./Mohibullah Shah Pictures/book2.PNG');
  background-color: #2C1810;
  background-size: cover;
  background-position: center;
}