/* ===========================
   PROMPT TO PRESS — STYLESHEET
   =========================== */

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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --mid: #1a1a1a;
  --light-bg: #f4f1ec;
  --warm-white: #faf8f4;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --text-light: #e8e4dc;
  --text-dim: #888880;
  --text-dark: #1a1a1a;
  --font-main: 'Georgia', serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   NAVIGATION
   =========================== */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid #222;
  backdrop-filter: blur(8px);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav ul a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul a:hover {
  color: var(--gold);
}

/* ===========================
   HERO
   =========================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
}

.hero::before {
  background: rgba(0,0,0,0.55);
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.tagline {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(45px, 7.5vw, 90px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--warm-white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.sub {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 48px;
  text-transform: uppercase;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border: 2px solid #ffffff;
  color: #ffffff;
  background: rgba(0,0,0,0.4);
  cursor: pointer;
  transition: all 0.2s;
}

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

.marie-sig {
  position: absolute;
  bottom: 28px;
  right: 36px;
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
  text-transform: uppercase;
}

.marie-sig:hover {
  color: #ffffff;
}

.btn-ghost {
  margin-left: 16px;
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  border-color: white;
}

/* ===========================
   SECTIONS
   =========================== */

.section {
  padding: 100px 40px;
}

.section.dark {
  background: var(--dark);
  color: var(--text-light);
}

.section.light {
  background: var(--light-bg);
  color: var(--text-dark);
}

.section.light h2 {
  color: var(--text-dark);
}

.section.light p {
  color: #444;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 680px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  color: var(--warm-white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

p {
  font-size: 17px;
  color: var(--text-light);
  margin-bottom: 20px;
  max-width: 680px;
}

/* ===========================
   THREE COLUMN
   =========================== */

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.col h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.col p {
  font-size: 15px;
  color: var(--text-dim);
  max-width: none;
}

/* ===========================
   BOOK SPECS
   =========================== */

.book-detail {
  margin-top: 20px;
}

.specs {
  border-collapse: collapse;
  width: 100%;
  max-width: 520px;
  margin-bottom: 40px;
}

.specs td {
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #333;
}

.specs td:first-child {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  width: 160px;
}

.coming-soon {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 32px;
}

/* ===========================
   ARTIST GRID
   =========================== */

.intro {
  max-width: 680px;
  margin-bottom: 48px;
  color: var(--text-dim);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.artist {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  padding: 16px 20px;
  border: 1px solid #222;
  transition: all 0.2s;
  text-decoration: none;
  display: block;
}

.artist:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===========================
   NOTIFY FORM
   =========================== */

.notify-form {
  display: flex;
  gap: 12px;
  margin: 32px 0 16px;
  flex-wrap: wrap;
}

.notify-form input {
  flex: 1;
  min-width: 260px;
  padding: 14px 20px;
  font-size: 15px;
  font-family: var(--font-main);
  border: 1px solid #ccc;
  background: white;
  color: #333;
  outline: none;
}

.notify-form input:focus {
  border-color: var(--gold);
}

.fine {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

/* ===========================
   CONTACT
   =========================== */

#contact p {
  color: var(--text-dim);
}

#contact a {
  color: var(--gold);
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */

.page-hero {
  padding: 160px 40px 80px;
  min-height: 80vh;
  background: var(--black);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  pointer-events: none;
}

.page-hero h1, .page-hero .tagline, .page-hero .sub {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  color: var(--warm-white);
  letter-spacing: -0.01em;
}

/* ===========================
   IMAGE PLACEHOLDERS
   =========================== */

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.img-placeholder {
  aspect-ratio: 4/3;
  background: #1a1a1a;
  border: 1px dashed #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #444;
}

@media (max-width: 768px) {
  .image-row { grid-template-columns: 1fr; }
}

/* ===========================
   FOOTER
   =========================== */

footer {
  background: var(--black);
  border-top: 1px solid #1a1a1a;
  padding: 40px;
  text-align: center;
}

footer p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  max-width: none;
}

/* ===========================
   HERO QUOTES
   =========================== */

.hero-quote {
  position: absolute;
  top: 220px;
  pointer-events: none;
  transform: translateY(-50%);
  max-width: 280px;
  font-family: var(--font-main);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: #7a5c2e;
  z-index: 1;
  text-align: center;
}

.hero-quote p {
  font-size: 15px;
  color: #7a5c2e;
  max-width: none;
  margin-bottom: 8px;
  line-height: 1.7;
  text-align: center;
}

.hero-quote cite {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: #5e4422;
  font-style: normal;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.hero-quote-left {
  left: 80px;
  width: 200px;
  text-align: center;
  padding: 0 8px;
}

.hero-quote-right {
  right: 80px;
  width: 200px;
  text-align: center;
  padding: 0 8px;
}

@media (max-width: 1100px) and (min-width: 768px) {
  .hero-quote {
    font-size: 12px;
    max-width: 160px;
  }
  .hero-quote p {
    font-size: 12px;
  }
  .hero-quote-left {
    left: 8px;
  }
  .hero-quote-right {
    right: 8px;
  }
}

@media (max-width: 767px) {
  .hero-quote { display: none; }
}

/* ===========================
   QUOTES GRID
   =========================== */

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.quote-card {
  border-left: 2px solid var(--gold);
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  margin: 0;
}

.quote-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 12px;
  max-width: none;
  line-height: 1.6;
}

.quote-card p::before {
  content: '\201C';
  color: var(--gold);
  font-size: 24px;
  line-height: 0;
  vertical-align: -8px;
  margin-right: 4px;
}

.quote-card cite {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  font-style: normal;
  text-transform: uppercase;
}

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

/* ===========================
   STAMP WATERMARK
   =========================== */

.stamp-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 420px;
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}

.stamp-watermark img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
}

/* ===========================
   GALLERY
   =========================== */

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

.gallery-item {
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.gallery-item:hover img {
  opacity: 0.85;
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  cursor: pointer;
}

.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

#lightbox-caption {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
  text-transform: uppercase;
}

.caption {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #888;
  margin-top: 12px;
  line-height: 1.6;
  max-width: none;
}

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

/* ===========================
   RESPONSIVE
   =========================== */

/* ===========================
   HAMBURGER MENU
   =========================== */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  nav ul {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 8px 24px 20px;
    gap: 0;
    border-bottom: 1px solid #222;
    z-index: 200;
    backdrop-filter: blur(8px);
  }

  nav ul.open { display: flex; }

  nav ul li { border-bottom: 1px solid #1a1a1a; }

  nav ul a {
    display: block;
    padding: 14px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
  }

  .three-col { grid-template-columns: 1fr; gap: 32px; }
  .notify-form { flex-direction: column; }
  .notify-form input { min-width: 100%; }
  .section { padding: 70px 24px; }
  nav { padding: 16px 24px; }

  .stamp-watermark {
    width: 90% !important;
    max-width: 380px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .artist-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
