/* ============================================================
   DES WALLACE — Urban Intellectual Noir Design System
   ============================================================ */

:root {
  --black:       #0A0A0A;
  --charcoal:    #1C1C1E;
  --dark-grey:   #2C2C2E;
  --mid-grey:    #48484A;
  --light-grey:  #8E8E93;
  --off-white:   #F2EFE9;
  --cream:       #EDE9E0;
  --gold:        #B8963E;
  --gold-light:  #D4AF5E;
  --deep-green:  #1A2E22;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --max-width:    1200px;
  --gutter:       clamp(1.5rem, 5vw, 4rem);
  --section-gap:  clamp(4rem, 10vw, 8rem);

  --transition:   200ms ease;
}

/* ── Reset ── */
*, *::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: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Google Fonts: loaded via <link> in HTML <head> for performance ── */

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.75rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 500; }

p { max-width: 68ch; }
p + p { margin-top: 1.25rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-gap) 0; }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 62, 0.15);
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--off-white);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

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

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  margin: 5px 0;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(242, 239, 233, 0.4);
}
.btn-outline:hover { border-color: var(--off-white); }

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.65rem 1.5rem;
}
.btn-ghost:hover { background: var(--gold); color: var(--black); }

/* ── Dividers ── */
.rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.rule-center { margin: 1.5rem auto; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 46, 34, 0.35) 0%, transparent 70%),
              radial-gradient(ellipse 50% 80% at 10% 80%, rgba(184, 150, 62, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-text { max-width: 580px; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero-title { color: var(--off-white); margin-bottom: 1.5rem; }
.hero-title em { color: var(--gold); font-style: italic; }
.hero-lead {
  font-size: 1.1rem;
  color: var(--light-grey);
  line-height: 1.8;
  max-width: 52ch;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-end;
}

.hero-book-stack {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.book-placeholder {
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}

.book-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
}

.book-placeholder .book-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--off-white);
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.book-a {
  width: 140px;
  height: 210px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
  border-left: 3px solid var(--gold);
}
.book-b {
  width: 120px;
  height: 180px;
  background: linear-gradient(135deg, var(--deep-green) 0%, #0d1a12 100%);
  border-left: 3px solid rgba(184, 150, 62, 0.5);
}
.book-c {
  width: 130px;
  height: 195px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
  border-left: 3px solid var(--off-white);
}

/* ── Section Headers ── */
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header.centered .rule { margin: 1.5rem auto; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--light-grey); font-size: 1.05rem; }

/* ── Book Cards ── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.book-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.book-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 150, 62, 0.3);
}

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-cover-frame {
  background: #070707;
  border: 1px solid rgba(184,150,62,.28);
  padding: clamp(12px, 2vw, 28px);
  overflow: visible;
}

.book-cover-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem 1.25rem;
}

.book-cover-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--off-white);
  line-height: 1.25;
}

.book-cover-author {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.book-card-body {
  padding: 1.5rem;
}

.book-card-genre {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.book-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.book-card-desc {
  font-size: 0.9rem;
  color: var(--light-grey);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.book-card-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.status-live { background: rgba(52, 199, 89, 0.15); color: #34C759; }
.status-review { background: rgba(184, 150, 62, 0.15); color: var(--gold); }
.status-upcoming { background: rgba(142, 142, 147, 0.15); color: var(--light-grey); }

/* ── Newsletter Section ── */
.newsletter-section {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(184, 150, 62, 0.04);
}

input::placeholder, textarea::placeholder { color: var(--mid-grey); }

.newsletter-promise {
  font-size: 0.8rem;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── Quote / Pull Quote ── */
.pull-quote {
  padding: var(--section-gap) 0;
  background: var(--deep-green);
}

.pull-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--off-white);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pull-quote blockquote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -2rem;
  left: -2rem;
  line-height: 1;
  font-style: normal;
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── About Section ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.about-photo {
  aspect-ratio: 3/4;
  background: var(--charcoal);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--mid-grey);
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
}

.about-photo-placeholder .author-initial {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--off-white);
  opacity: 0.15;
}

.about-photo-credit {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  text-transform: uppercase;
}

.about-text h2 { margin: 1rem 0; }
.about-text p { color: var(--light-grey); }

.stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--off-white);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
}

/* ── Media / Press ── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.press-card {
  padding: 2rem;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}

.press-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.press-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.press-desc { font-size: 0.9rem; color: var(--light-grey); line-height: 1.65; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
}

.contact-info h2 { margin: 1rem 0; }
.contact-info p { color: var(--light-grey); }

.contact-detail {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-item-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-item-value { font-size: 0.95rem; color: var(--off-white); }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
textarea { resize: vertical; min-height: 140px; }

/* ── Photography / Fine Art ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.photo-cell {
  aspect-ratio: 1;
  background: var(--dark-grey);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}

.photo-cell:hover::after { opacity: 1; }

.photo-cell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--off-white);
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.photo-cell:hover .photo-cell-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Real images in photo cells ── */
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.photo-cell:hover img { transform: scale(1.05); }

.photo-cell[data-src*="ric-front-cover"] img,
.photo-cell[data-src*="ric-social-reveal"] img,
.photo-editorial-cell[data-src*="ric-social-reveal"] img {
  object-fit: contain;
  background: #070707;
}

.photo-cell[data-src*="ric-front-cover"]:hover img,
.photo-cell[data-src*="ric-social-reveal"]:hover img,
.photo-editorial-cell[data-src*="ric-social-reveal"]:hover img {
  transform: none;
}

.photo-cell-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-grey) 100%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ── Footer ── */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand .nav-logo { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.9rem; color: var(--light-grey); max-width: 280px; }

.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-weight: 500;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.9rem; color: var(--light-grey); transition: color var(--transition); }
.footer-col a:hover { color: var(--off-white); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright { font-size: 0.8rem; color: var(--mid-grey); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--mid-grey); transition: color var(--transition); }
.footer-legal a:hover { color: var(--light-grey); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: 160px var(--gutter) 80px;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(26, 46, 34, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 16ch; margin: 0 auto 1.5rem; }
.page-hero p { max-width: 55ch; margin: 0 auto; color: var(--light-grey); font-size: 1.1rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background:
      radial-gradient(circle at 30% 20%, rgba(184,150,62,0.12), transparent 28%),
      linear-gradient(135deg, rgba(5,5,5,0.99), rgba(10,10,10,0.995));
    padding: 6rem 2.5rem 3rem;
    gap: 1.5rem;
    align-items: flex-start;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: menuSlideIn 240ms ease forwards;
  }
  .nav-links.open a {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: clamp(1rem, 4.5vw, 1.4rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0;
  }
  .nav-links.open a:hover,
  .nav-links.open a:focus { color: var(--off-white); outline: none; }
  .nav-toggle { display: block; }

  /* Content behind open menu */
  body.menu-open main,
  body.menu-open .luxury-home,
  body.menu-open .page-hero,
  body.menu-open .hero {
    filter: blur(3px);
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 220ms ease, filter 220ms ease;
  }

  /* Site-nav z-index above content */
  .site-nav { z-index: 10020; }
  .site-nav .nav-toggle { z-index: 10030; }
  .luxury-nav { z-index: 10020; }
  .luxury-nav .nav-toggle { z-index: 10030; }

  body.menu-open { overflow: hidden; }
  .hero-actions { flex-direction: column; }
  .stat-row { flex-wrap: wrap; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .books-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
}

/* ── Select / Dropdown ── */
select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E8E93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem !important;
  cursor: pointer;
}
select option {
  background: #1C1C1E;
  color: #F2EFE9;
}
select:focus { border-color: var(--gold); background-color: rgba(184, 150, 62, 0.04); }

/* ── Skip Navigation (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 0 0 4px 4px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Print styles ── */
@media print {
  .site-nav, .site-footer, .btn, .newsletter-section { display: none !important; }
  body { background: white; color: black; }
  h1, h2, h3 { color: black; }
  .pull-quote { background: #f5f5f5; }
  .pull-quote blockquote { color: black; }
}

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--light-grey); }
.italic { font-style: italic; }
.serif { font-family: var(--font-heading); }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   DES WALLACE — LUXURY EXTENSION v2.0
   New components: music, shop, gallery, lightbox, reveal
   ============================================================ */

/* ── CSS Custom Properties Addition ── */
:root {
  --oxblood:       #6B1A1A;
  --wine:          #8B2635;
  --ivory:         #F8F5EE;
  --bone:          #E8E3D8;
  --transition-slow: 400ms ease;
  --transition-med:  250ms ease;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ── Image-backed Book Covers ── */
.book-cover img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain !important;
  display: block;
  transition: transform 0.5s ease;
  background: #070707;
}
.book-card:hover .book-cover img { transform: scale(1.04); }

/* ── Full-Bleed Cinematic Hero ── */
.hero-cinematic {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-cinematic__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) contrast(1.1);
  transition: transform 8s ease;
}
.hero-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.6) 50%,
    rgba(10,10,10,0.2) 100%
  ),
  linear-gradient(
    to top,
    rgba(10,10,10,0.7) 0%,
    transparent 60%
  );
}
.hero-cinematic__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 680px;
}
.hero-cinematic h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-cinematic h1 em { color: var(--gold); font-style: italic; }
.hero-cinematic__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.hero-cinematic__meta .eyebrow { margin: 0; }
.hero-cinematic__pipe { width: 1px; height: 20px; background: rgba(255,255,255,0.3); }

/* ── Photography Gallery ── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-grey);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--off-white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--square { aspect-ratio: 1; }
.gallery-item--portrait { aspect-ratio: 3/4; }
.gallery-item--landscape { aspect-ratio: 16/9; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
}
.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--off-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: var(--light-grey);
  text-align: center;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--off-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.lightbox__nav:hover { border-color: var(--gold); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

/* ── Music Page ── */
.music-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.music-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(107,26,26,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(184,150,62,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.album-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition-med), border-color var(--transition-med);
}
.album-card:hover { transform: translateY(-4px); border-color: rgba(184,150,62,0.25); }
.album-art {
  aspect-ratio: 1;
  background: var(--dark-grey);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.album-art img { width: 100%; height: 100%; object-fit: cover; }
.album-art__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, #111 100%);
}
.album-art__title-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--off-white);
  text-align: center;
  padding: 0 1rem;
  line-height: 1.3;
}
.album-card__body { padding: 1.5rem; }
.album-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.album-card__meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.stream-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-grey);
  transition: all var(--transition);
}
.stream-btn:hover { border-color: var(--gold); color: var(--gold); }
.stream-btn svg { width: 14px; height: 14px; }

/* ── Audio Player ── */
.audio-player {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.audio-player__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.audio-player__art {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: var(--dark-grey);
  overflow: hidden;
  flex-shrink: 0;
}
.audio-player__art img { width: 100%; height: 100%; object-fit: cover; }
.audio-player__track-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.audio-player__album-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.audio-player__controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.audio-btn {
  background: none;
  border: none;
  color: var(--off-white);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.audio-btn:hover { color: var(--gold); }
.audio-btn--play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--gold) !important;
  color: var(--gold);
  justify-content: center;
  font-size: 1.1rem;
}
.audio-btn--play:hover { background: var(--gold); color: var(--black); }
.audio-progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}
.audio-progress__fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
  width: 0%;
  transition: width 0.1s linear;
  pointer-events: none;
}
.audio-time {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--mid-grey);
  white-space: nowrap;
}
.audio-disclaimer {
  font-size: 0.75rem;
  color: var(--mid-grey);
  text-align: center;
  font-style: italic;
}

/* ── Track List ── */
.track-list { display: flex; flex-direction: column; gap: 0; }
.track-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 3px;
  transition: background var(--transition);
  cursor: pointer;
}
.track-item:hover { background: rgba(255,255,255,0.04); }
.track-item.active { background: rgba(184,150,62,0.08); }
.track-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--mid-grey);
  width: 20px;
  text-align: right;
  flex-shrink: 0;
}
.track-title {
  flex: 1;
  font-size: 0.95rem;
}
.track-duration {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--mid-grey);
}
.track-item.active .track-title { color: var(--gold); }
.track-item.active .track-num { color: var(--gold); }

/* ── Shop / Collector Cards ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.shop-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition-med), border-color var(--transition-med);
}
.shop-card:hover { transform: translateY(-3px); border-color: rgba(184,150,62,0.25); }
.shop-card__image {
  aspect-ratio: 1;
  background: var(--dark-grey);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-card__image img { width: 100%; height: 100%; object-fit: cover; }
.shop-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.shop-card__body { padding: 1.5rem; }
.shop-card__category {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.shop-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.shop-card__desc { font-size: 0.85rem; color: var(--light-grey); margin-bottom: 1.25rem; }
.shop-card__edition {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--mid-grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ── Coming Soon / Collector Placeholder ── */
.collector-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, #111 100%);
  border-radius: 3px;
  text-align: center;
}
.collector-placeholder .eyebrow { margin-bottom: 0; }
.collector-placeholder__icon {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
}

/* ── Enhanced About Photo with real image ── */
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo--brand {
  aspect-ratio: unset;
  background: var(--black);
}
.about-photo--brand img {
  object-position: center;
}

/* ── Music Integration Strip (homepage) ── */
.music-strip {
  background: #0d0d0d;
  border-top: 1px solid rgba(107,26,26,0.3);
  border-bottom: 1px solid rgba(107,26,26,0.3);
  padding: var(--section-gap) 0;
}

/* ── Featured Release Banner ── */
.release-banner {
  background: var(--deep-green);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.release-banner__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}
.release-banner__cover {
  width: 140px;
  height: 140px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-grey);
}
.release-banner__cover img { width: 100%; height: 100%; object-fit: cover; }

/* ── Discipline Tags ── */
.disciplines {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.discipline-tag {
  padding: 0.4rem 1rem;
  border: 1px solid rgba(184,150,62,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition);
}
.discipline-tag:hover { background: rgba(184,150,62,0.1); }

/* ── Horizontal Rule Enhancement ── */
.section-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

/* ── Museum-style image caption ── */
.img-caption {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* ── Responsive additions ── */
@media (max-width: 900px) {
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }
  .release-banner__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .release-banner__cover { width: 100px; height: 100px; }
}
@media (max-width: 640px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item--tall { grid-row: span 1; }
  .audio-player { padding: 1.25rem; }
  .track-item { padding: 0.75rem 1rem; }
  .hero-cinematic h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .discography-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

/* ── Audio playing state ── */
.audio-btn--play.playing { background: var(--gold); color: var(--black); }
.audio-btn--play.playing:hover { background: var(--light-gold, #c9a84c); }

/* ── Shop card footer ── */
.shop-card__footer { padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06); margin-top: auto; }

/* ── Nav scrolled state ── */
.site-nav.scrolled { background: rgba(10,10,10,0.98); box-shadow: 0 1px 0 rgba(255,255,255,0.05); }

/* ── Featured grid responsive (music page) ── */
@media (max-width: 768px) {
  .featured-album-grid { grid-template-columns: 1fr !important; }
  .featured-album-grid > div { grid-column: 1 !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Dark Luxury Cinematic Redesign
═══════════════════════════════════════════════════════════════ */

/* Cinematic Split Hero */
.hero-cinematic {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 55fr 45fr;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.hero-cin-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px var(--gutter) 80px;
  position: relative;
  z-index: 2;
}
.hero-cin-portrait {
  position: relative;
  overflow: hidden;
}
.hero-cin-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-cin-portrait::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.55) 0%, transparent 35%),
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 55%);
  z-index: 1;
}
.hero-cin-rule {
  width: 3rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 2rem;
}
.hero-cin-title {
  font-size: clamp(3.25rem, 6vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.hero-cin-title em { font-style: italic; color: var(--gold); }
.hero-cin-lead {
  font-size: 1.05rem;
  color: var(--light-grey);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero-cin-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Discipline Strip */
.discipline-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
}
.discipline-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.discipline-item {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  padding: 0.4rem 2.5rem 0.4rem 0;
}
.discipline-item + .discipline-item {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 2.5rem;
}
.discipline-item strong { color: var(--gold-light); font-weight: 400; }

/* Editorial Featured Grid */
.editorial-section { padding: var(--section-gap) 0 0; }
.editorial-section .section-header { padding: 0 var(--gutter) 2.5rem; max-width: var(--max-width); margin: 0 auto; }
.editorial-hero {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.editorial-card {
  background: var(--black);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.editorial-card__image {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  background: #070707;
}
.editorial-card--portrait .editorial-card__image { aspect-ratio: 2/3; }
.editorial-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.editorial-card:hover .editorial-card__image img { transform: scale(1.04); }
.editorial-card__body {
  padding: 2.25rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.editorial-card__kicker {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.editorial-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  line-height: 1.1;
}
.editorial-card__desc {
  font-size: 0.92rem;
  color: var(--light-grey);
  line-height: 1.75;
  flex: 1;
}
.editorial-card__footer {
  display: flex;
  gap: 1rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Catalog Strip (4-col book cards) */
.catalog-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 1px;
}
.catalog-strip-card {
  background: var(--black);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 200ms ease;
  text-decoration: none;
  color: inherit;
}
.catalog-strip-card:hover { background: var(--charcoal); }
.catalog-strip-card__cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 0.75rem;
  border-radius: 2px;
  background: #0a0a0a;
}
.catalog-strip-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}
.catalog-strip-card:hover .catalog-strip-card__cover img { transform: scale(1.05); }
.catalog-strip-card__genre {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.catalog-strip-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  line-height: 1.2;
}
.catalog-strip-card__status {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

/* Photo Editorial Panel */
.photo-editorial {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.photo-editorial-cell {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
}
.photo-editorial-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 240px;
}
.photo-editorial-cell:hover img { transform: scale(1.05); }
.photo-editorial-cell--tall {
  grid-row: span 2;
  min-height: 480px;
}
.photo-editorial-cell--tall img { min-height: 480px; }
.gallery-balance-fill {
  position: relative;
  overflow: hidden;
  background: #050505;
}

.gallery-balance-fill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.2s ease,
    opacity .6s ease;
  will-change: transform;
}

.gallery-balance-fill:hover img {
  transform: scale(1.03);
}

.gallery-balance-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.08),
      rgba(0,0,0,.28)
    );
  pointer-events: none;
}

.fade-luxury {
  animation: luxuryFade 1.4s ease;
}

@keyframes luxuryFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.photo-editorial-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,239,233,0.9);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}
.photo-editorial-cell:hover .photo-editorial-caption { opacity: 1; transform: translateY(0); }

/* Ghostlight Intelligence Strip */
.ghost-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(184,150,62,0.18);
  border-bottom: 1px solid rgba(184,150,62,0.18);
  position: relative;
  overflow: hidden;
}
.ghost-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(184,150,62,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 100% 50%, rgba(26,46,34,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.ghost-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}
.ghost-strip-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.ghost-strip-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}
.ghost-strip-sub {
  font-size: 0.95rem;
  color: var(--light-grey);
  line-height: 1.78;
  max-width: 50ch;
}

/* Homepage responsive overrides */
@media (max-width: 960px) {
  .hero-cinematic { grid-template-columns: 1fr; }
  .hero-cin-portrait { min-height: 50vw; max-height: 420px; }
  .hero-cin-copy { padding: 100px var(--gutter) 3rem; }
  .editorial-hero { grid-template-columns: 1fr; }
  .catalog-strip { grid-template-columns: repeat(2, 1fr); }
  .photo-editorial { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-editorial-cell--tall { grid-row: span 1; min-height: 280px; }
  .photo-editorial-cell--tall img { min-height: 280px; }
  .ghost-strip-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .discipline-item { font-size: 0.6rem; padding: 0.4rem 1.25rem; }
  .discipline-item + .discipline-item { padding-left: 1.25rem; }
}
@media (max-width: 600px) {
  .catalog-strip { grid-template-columns: 1fr 1fr; }
  .photo-editorial { grid-template-columns: 1fr; }
  .photo-editorial-cell { min-height: 260px; }
  .photo-editorial-cell--tall { min-height: 260px; }
}

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — Dark Luxury Template Rebuild
═══════════════════════════════════════════════════════════════ */

body {
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(198,162,74,.08),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #030303 0%,
      #050505 100%
    );
  color: #f4eee3;
}

.luxury-nav {
  position: sticky;
  height: 74px;
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  font-size: 1.7rem;
  font-weight: 900;
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-menu a {
  color: #f2f2f2;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .16em;
}

.nav-menu a:hover {
  color: #c6a24a;
}

.luxury-hero {
  min-height: max(520px, 72vh);
  padding: 0;
  display: grid;
  grid-template-columns: 48% 52%;
  overflow: hidden;
  border-bottom: 1px solid rgba(198,162,74,.2);
}

.hero-copy {
  padding: 5rem 2.5rem;
  max-width: 620px;
  z-index: 3;
}

.hero-image-frame {
  position: relative;
  min-height: 520px;
  height: 100%;
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter:
    grayscale(100%)
    contrast(1.12)
    brightness(.86);
  transform: scale(1.03);
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      #030303 0%,
      rgba(3,3,3,.82) 8%,
      rgba(3,3,3,.10) 38%,
      rgba(3,3,3,.62) 100%
    );
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: .96;
  letter-spacing: 0;
  color: #f4eee3;
  margin-bottom: 1.4rem;
}

.hero-title .gold {
  color: #c6a24a;
}

.hero-description {
  max-width: 470px;
  color: #d3cec3;
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-kicker {
  color: #c6a24a;
  letter-spacing: .22em;
  font-size: .85rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.btn-gold,
.hero-actions .btn-outline {
  height: 52px;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  font-weight: 800;
}

.btn-gold {
  background: linear-gradient(
    180deg,
    #d3af58,
    #b88e2f
  );
  color: #050505;
  border: 1px solid #c6a24a;
}

.hero-actions .btn-outline {
  border: 1px solid rgba(255,255,255,.4);
  color: #f4eee3;
}

.featured-strip {
  padding: 1.5rem var(--gutter) 0;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  color: #c6a24a;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
}

.work-card {
  min-height: 170px;
  background: rgba(6,6,6,.92);
  border: 1px solid rgba(198,162,74,.24);
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 3 / 4;
  filter:
    grayscale(100%)
    contrast(1.08)
    brightness(.9);
}

.cover-card img {
  object-fit: contain;
  background: #050505;
}

.work-card h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #fff;
}

.work-card p {
  color: #d2cbc0;
  line-height: 1.5;
  font-size: .9rem;
}

.work-card a {
  color: #c6a24a;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .75rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .luxury-hero {
    grid-template-columns: 1fr;
  }

  .hero-image-frame {
    order: -1;
    min-height: 420px;
  }

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

  .luxury-nav-legacy {
    flex-direction: column;
    height: auto;
    gap: 1rem;
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    grid-template-columns: 120px 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-gold,
  .hero-actions .btn-outline {
    width: 100%;
  }
}

/* ── Luxury Shell Homepage Components ──────────────────────────────────────── */

.luxury-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Topline status bar */
.topline {
  background: #000;
  border-bottom: 1px solid rgba(198,162,74,.15);
  padding: .45rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topline > p {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--mid-grey);
  text-transform: uppercase;
  margin: 0;
}

.topline .social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.topline .social-links a {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  text-decoration: none;
  transition: color .2s;
}

.topline .social-links a:hover { color: var(--gold); }

/* Luxury nav (new flat structure) */
.luxury-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem 2rem;
  background: rgba(8,8,8,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.luxury-nav .brand {
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .24em;
  color: var(--off-white);
  text-decoration: none;
  text-transform: uppercase;
  flex-shrink: 0;
}

.luxury-nav .nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.luxury-nav .nav-menu a {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  transition: color .2s;
}

.luxury-nav .nav-menu a:hover,
.luxury-nav .nav-menu a.active { color: var(--gold); }

.luxury-nav .nav-letter {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(198,162,74,.45);
  padding: .55rem 1.25rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}

.luxury-nav .nav-letter:hover {
  background: var(--gold);
  color: #050505;
}

/* Quote × Intelligence strip */
.quote-intelligence-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  margin: 0;
}

.quote-box {
  padding: 3.5rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.06);
  position: relative;
}

.quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .22;
  display: block;
  margin-bottom: .25rem;
}

.quote-box p {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.55;
  color: var(--off-white);
  font-style: italic;
  margin: 0 0 1.25rem;
}

.quote-box cite {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.intelligence-box {
  padding: 3.5rem 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: center;
  background: rgba(6,6,6,.8);
}

.ghostlight-mark {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(198,162,74,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.intelligence-box h3 {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--off-white);
  margin: 0 0 .5rem;
  font-weight: 500;
}

.status-green {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  color: #5db87a;
}

/* Luxury nav mobile */
@media (max-width: 900px) {
  .luxury-nav .nav-menu { gap: 1.25rem; }
}

@media (max-width: 768px) {
  .topline .social-links { display: none; }

  .luxury-nav .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 6rem 2.5rem 3rem;
    gap: 1.5rem;
    background:
      radial-gradient(circle at 30% 20%, rgba(184,150,62,0.12), transparent 28%),
      linear-gradient(135deg, rgba(5,5,5,0.99), rgba(10,10,10,0.995));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .luxury-nav .nav-menu.open {
    display: flex;
    animation: menuSlideIn 240ms ease forwards;
  }

  .luxury-nav .nav-menu a {
    color: var(--gold);
    font-family: var(--font-mono);
    font-size: clamp(1rem, 4.5vw, 1.4rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0;
  }

  .luxury-nav .nav-menu a:hover,
  .luxury-nav .nav-menu a:focus {
    color: var(--off-white);
    outline: none;
  }

  .luxury-nav .nav-letter { display: none; }

  .quote-intelligence-strip { grid-template-columns: 1fr; }

  .quote-box {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding: 2.5rem 1.5rem;
  }

  .intelligence-box { padding: 2.5rem 1.5rem; }
}

/* ==========================================================
   DES WALLACE FINAL DARK LUXURY STRUCTURAL CORRECTIONS
   ========================================================== */

:root {
  --dw-black: #030303;
  --dw-near-black: #080808;
  --dw-panel: rgba(8, 8, 8, .78);
  --dw-gold: #C6A24A;
  --dw-gold-bright: #E1C16E;
  --dw-cream: #F3EEE3;
  --dw-muted: #A7A095;
  --dw-line: rgba(198, 162, 74, .32);
}

body.home-page {
  margin: 0;
  background: var(--dw-black);
  color: var(--dw-cream);
}

.home-page .luxury-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 30%, rgba(198, 162, 74, .08), transparent 24%),
    linear-gradient(180deg, #030303 0%, #050505 100%);
  overflow-x: hidden;
}

.home-page .topline {
  min-height: 38px;
  padding: 0 2.2rem;
  border-bottom: 1px solid rgba(198, 162, 74, .22);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-page .topline p {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .18em;
  color: var(--dw-gold);
  font-weight: 800;
  text-transform: uppercase;
}

.home-page .social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-page .social-links a {
  color: var(--dw-gold);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .12em;
}

.home-page .luxury-nav {
  min-height: 74px;
  padding: 0 2.2rem;
  display: grid;
  grid-template-columns: 220px 1fr 300px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.home-page .brand {
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 950;
  letter-spacing: -.04em;
  text-decoration: none;
}

.home-page .nav-menu {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
}

.home-page .nav-menu a {
  color: #eee;
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.home-page .nav-menu a.active,
.home-page .nav-menu a:hover {
  color: var(--dw-gold);
}

.home-page .nav-letter {
  justify-self: end;
  color: var(--dw-gold);
  border: 1px solid rgba(198,162,74,.75);
  padding: .85rem 1.35rem;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.home-page .luxury-home {
  width: min(94vw, 1500px);
  margin: 0 auto;
}

.home-page .luxury-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  border-bottom: 1px solid rgba(198,162,74,.22);
  overflow: hidden;
}

.home-page .hero-copy {
  position: relative;
  z-index: 3;
  padding: 4.8rem 1.5rem 3.4rem 2.5rem;
  max-width: 620px;
}

.home-page .hero-kicker {
  color: var(--dw-gold);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}

.home-page .hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  line-height: .98;
  font-weight: 500;
  letter-spacing: -.045em;
  color: var(--dw-cream);
  margin: 0 0 1.5rem;
}

.home-page .hero-title .gold {
  color: var(--dw-gold);
}

.home-page .hero-description {
  color: #d6d0c6;
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 470px;
  margin: 0;
}

.home-page .hero-actions {
  display: flex;
  gap: 1.3rem;
  margin-top: 2rem;
}

.home-page .btn-gold,
.home-page .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 52px;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-page .btn-gold {
  background: linear-gradient(180deg, #d3af58, #b88e2f);
  color: #050505;
  border: 1px solid var(--dw-gold);
}

.home-page .btn-outline {
  color: var(--dw-cream);
  border: 1px solid rgba(255,255,255,.55);
}

.home-page .hero-image-frame {
  position: relative;
  min-height: 520px;
  max-height: 560px;
  overflow: hidden;
}

.home-page .hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      #030303 0%,
      rgba(3,3,3,.82) 8%,
      rgba(3,3,3,.10) 38%,
      rgba(3,3,3,.62) 100%
    ),
    radial-gradient(circle at 62% 42%, transparent 0%, rgba(0,0,0,.74) 78%);
  pointer-events: none;
}

.home-page .hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.12) brightness(.86);
  transform: scale(1.03);
}

.home-page .featured-strip {
  padding: 1.65rem 0 0;
}

.home-page .section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--dw-gold);
  font-family: Inter, Arial, sans-serif;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.home-page .section-label::before,
.home-page .section-label::after {
  content: "";
  height: 1px;
  background: rgba(198,162,74,.35);
}

.home-page .section-label::before {
  width: 42px;
}

.home-page .section-label::after {
  flex: 1;
}

.home-page .featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
}

.home-page .work-card {
  min-height: 170px;
  border: 1px solid rgba(198,162,74,.32);
  background: rgba(5,5,5,.88);
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 1.1rem;
  padding: 1.05rem;
  align-items: center;
  overflow: hidden;
}

.home-page .work-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(.9);
  border: 1px solid rgba(255,255,255,.08);
}

.home-page .work-card.cover-card img {
  object-fit: contain;
  background: #050505;
}

.home-page .work-card h3 {
  font-family: Inter, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
  margin: 0 0 .6rem;
  color: #fff;
}

.home-page .work-card p {
  font-size: .9rem;
  line-height: 1.48;
  color: #d2cbc0;
  margin: 0 0 .9rem;
}

.home-page .work-card a {
  color: var(--dw-gold);
  text-decoration: none;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.home-page .quote-intelligence-strip {
  margin-top: .8rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(198,162,74,.32);
  background: rgba(4,4,4,.92);
  min-height: 132px;
  display: grid;
  grid-template-columns: 62% 38%;
  align-items: center;
}

.home-page .quote-box {
  padding: 1.8rem 2.4rem;
  color: #d8d2c7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.45;
}

.home-page .quote-box p {
  display: inline;
  margin: 0;
}

.home-page .quote-mark {
  color: rgba(255,255,255,.45);
  font-size: 3.8rem;
  line-height: 0;
  margin-right: 1rem;
}

.home-page .quote-box cite {
  display: block;
  margin-top: .55rem;
  color: var(--dw-gold);
  font-size: 1rem;
  font-style: normal;
}

.home-page .intelligence-box {
  border-left: 1px solid rgba(198,162,74,.32);
  padding: 1.8rem 2.4rem;
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

.home-page .ghostlight-mark {
  width: 76px;
  height: 76px;
  border: 2px solid var(--dw-gold);
  border-radius: 50%;
  color: var(--dw-gold);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 900;
}

.home-page .intelligence-box h3 {
  font-family: Inter, Arial, sans-serif;
  color: #fff;
  font-size: .9rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin: 0 0 .45rem;
}

.home-page .status-green {
  color: #20d474;
  font-size: .95rem;
  margin: 0;
}

.home-page .status-green::before {
  content: "";
  display: inline-block;
  width: .65rem;
  height: .65rem;
  background: #20d474;
  border-radius: 999px;
  margin-right: .5rem;
}

/* Footer spacing correction */
.footer-legal,
.site-footer .footer-legal,
footer .footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Books/catalog image correction */
.book-cover-contain,
.books-page img.book-cover-contain,
.catalog-book img.book-cover-contain {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: center;
  background: #050505;
  border: 1px solid rgba(198,162,74,.28);
}

@media (max-width: 1100px) {
  .home-page .luxury-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.25rem;
    min-height: 60px;
    position: relative;
    gap: 0;
  }

  .home-page .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(3,3,3,.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 1.25rem;
    gap: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
    z-index: 99;
  }

  .home-page .nav-menu.open {
    display: flex;
  }

  .home-page .nav-letter {
    display: none;
  }

  .home-page .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .5rem;
    flex-shrink: 0;
  }

  .home-page .luxury-hero {
    grid-template-columns: 1fr;
  }

  .home-page .hero-image-frame {
    min-height: 420px;
    order: -1;
  }

  .home-page .hero-copy {
    padding: 2.4rem 1.25rem;
  }

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

  .home-page .quote-intelligence-strip {
    grid-template-columns: 1fr;
  }

  .home-page .intelligence-box {
    border-left: none;
    border-top: 1px solid rgba(198,162,74,.32);
  }
}

@media (max-width: 640px) {
  .home-page .topline {
    min-height: auto;
    padding: .8rem 1rem;
    align-items: flex-start;
    gap: .75rem;
    flex-direction: column;
  }

  .home-page .hero-title {
    font-size: 3.05rem;
  }

  .home-page .hero-actions {
    flex-direction: column;
  }

  .home-page .btn-gold,
  .home-page .btn-outline {
    width: 100%;
  }

  .home-page .featured-grid {
    grid-template-columns: 1fr;
  }

  .home-page .work-card {
    grid-template-columns: 120px 1fr;
  }

  .home-page .quote-box,
  .home-page .intelligence-box {
    padding: 1.35rem;
  }
}

/* ==========================================================
   DES WALLACE 10X COMPONENT SYSTEM
   ========================================================== */

.page-shell {
  width: min(94vw, 1400px);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.page-hero-luxury {
  padding: 5rem 0 3.5rem;
}

.book-detail-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.book-cover-image {
  width: 100%;
  display: block;
  border-radius: 2px;
}

.book-cover-contain {
  object-fit: contain !important;
  background: #050505;
  border: 1px solid rgba(198,162,74,.25);
}

.metadata-list {
  margin: 1.75rem 0;
  padding-left: 0;
  list-style: none;
  color: var(--light-grey);
  line-height: 2;
  font-size: .95rem;
}

.metadata-list li strong {
  color: var(--off-white);
  font-weight: 500;
}

.lux-card {
  border: 1px solid rgba(198,162,74,.24);
  background: rgba(7,7,7,.88);
  padding: 2rem;
  margin-bottom: 1rem;
}

.lux-card h2 {
  color: #fff;
  margin: 0 0 .75rem;
  font-size: 1.25rem;
}

.lux-card p {
  color: #d4cdc2;
  line-height: 1.7;
  margin: 0;
}

.cta-band {
  padding: 3rem 0;
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

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

.work-card,
.lux-card {
  transition:
    transform .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
}

.work-card:hover,
.lux-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198,162,74,.55);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    0 0 20px rgba(198,162,74,.08);
}

.work-card img {
  transition: transform .35s ease, opacity .35s ease;
}

.work-card:hover img {
  transform: scale(1.03);
  opacity: .96;
}

@media (max-width: 980px) {
  .book-detail-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book-detail-grid > div:first-child {
    max-width: 340px;
  }

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

/* ==========================================================
   FINAL MOBILE POLISH — 10/10 CORRECTIONS
   ========================================================== */

.hidden { display: none !important; }

@media (max-width: 768px) {
  .hero-title,
  .page-hero-luxury .hero-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-band {
    flex-direction: column;
  }

  .cta-band a {
    width: 100%;
    justify-content: center;
  }

  .book-detail-grid {
    gap: 2rem;
  }
}

/* ── Ambient Audio Experience ── */
.ambient-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  background: rgba(28, 28, 30, 0.85);
  border: 1px solid rgba(184, 150, 62, 0.25);
  border-radius: 100px;
  color: var(--light-grey);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.ambient-toggle:hover {
  color: var(--off-white);
  border-color: rgba(184, 150, 62, 0.5);
}

.ambient-toggle--on {
  color: var(--gold);
  border-color: rgba(184, 150, 62, 0.5);
}

.ambient-toggle--on .ambient-icon {
  animation: ambient-pulse 2.4s ease-in-out infinite;
}

.ambient-icon {
  font-size: 0.85rem;
  line-height: 1;
}

@keyframes ambient-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.9); }
}

.ambient-invite {
  position: fixed;
  bottom: 4rem;
  right: 1.5rem;
  z-index: 8999;
  padding: 0.6rem 1rem;
  background: rgba(28, 28, 30, 0.75);
  border: 1px solid rgba(184, 150, 62, 0.2);
  border-radius: 6px;
  color: var(--light-grey);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.ambient-invite--hidden {
  opacity: 0;
  transform: translateY(6px);
}

@media (max-width: 640px) {
  .ambient-toggle {
    bottom: 1rem;
    right: 1rem;
    padding: 0.45rem 0.85rem 0.45rem 0.65rem;
    font-size: 0.65rem;
  }
  .ambient-invite {
    bottom: 3.5rem;
    right: 1rem;
    font-size: 0.6rem;
  }
}
}

/* ── Mobile Menu Contrast Fix ── */
@keyframes menuSlideIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Close button injected via JS */
.mobile-menu-close-btn {
  position: fixed;
  top: 1.4rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(184,150,62,0.4);
  border-radius: 999px;
  cursor: pointer;
  z-index: 10040;
}

body.menu-open .mobile-menu-close-btn { display: flex; }

.mobile-menu-close-btn span {
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--gold, #b8963e);
  border-radius: 999px;
}

.mobile-menu-close-btn span:first-child { transform: rotate(45deg); }
.mobile-menu-close-btn span:last-child  { transform: rotate(-45deg); }

@media (min-width: 641px) {
  .mobile-menu-close-btn { display: none !important; }
}
