:root {
    --parchment: #f5ede0;
    --cream: #faf5ec;
    --ink: #1a1208;
    --ink-soft: #3d2e18;
    --rust: #8b3a1c;
    --rust-light: #b4502a;
    --gold: #9a7c3a;
    --gold-light: #c4a055;
    --rule: #c8b89a;
    --rule-dark: #9a8870;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--cream);
    color: var(--ink);
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    line-height: 1.75;
    overflow-x: hidden;
  }

  /* ── TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }

  .hero-left {
    background-color: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 80px 60px 80px 80px;
    position: relative;
    animation: fadeInLeft 1.2s ease both;
  }

  .hero-left::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  }

  .hero-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
    text-align: right;
  }

  .hero-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 600;
    color: var(--parchment);
    text-align: right;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(16px, 2vw, 22px);
    color: var(--gold-light);
    text-align: right;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
  }

  .hero-rule {
    width: 80px;
    height: 1px;
    background: linear-gradient(to left, var(--gold), transparent);
    margin-left: auto;
    margin-bottom: 32px;
  }

  .hero-bio-short {
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    color: #a09080;
    text-align: right;
    max-width: 340px;
    line-height: 1.8;
    font-weight: 300;
  }

  .hero-right {
    background-color: var(--parchment);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 80px 80px 80px;
    position: relative;
    animation: fadeInRight 1.2s ease both;
  }

  .hero-portrait {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 8px 12px 40px rgba(26,18,8,0.18);
    margin-bottom: 36px;
    filter: sepia(15%);
  }

  .hero-intro {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 400px;
    line-height: 1.85;
    font-weight: 300;
  }

  .hero-intro strong {
    font-weight: 500;
    color: var(--rust);
    font-style: italic;
  }

  /* ── SECTION SHELLS ── */
  section {
    padding: 100px 0;
  }

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

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
  }

  .section-title {
    font-family: 'IM Fell English', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .section-rule {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 48px;
  }

  /* ── ABOUT ── */
  #about {
    background: var(--cream);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .about-text p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.85;
    margin-bottom: 22px;
    font-weight: 300;
  }

  .about-text p:first-child::first-letter {
    font-family: 'Cinzel', serif;
    font-size: 68px;
    font-weight: 600;
    float: left;
    line-height: 0.75;
    margin: 8px 10px 0 0;
    color: var(--rust);
  }

  .focus-list {
    background: var(--ink);
    padding: 44px;
    color: var(--parchment);
    position: sticky;
    top: 40px;
  }

  .focus-list h3 {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .focus-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #c8b8a0;
    line-height: 1.5;
  }

  .focus-item::before {
    content: '✦';
    color: var(--gold);
    font-size: 10px;
    margin-top: 4px;
    flex-shrink: 0;
  }

  /* ── BOOKS ── */
  #books {
    background: var(--parchment);
  }

  .books-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
  }

  .book-card {
    background: white;
    padding: 48px 44px;
    border: 1px solid var(--rule);
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    transition: all 0.35s ease;
    overflow: hidden;
  }

  .book-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--rust), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
  }

  .book-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26,18,8,0.1);
  }

  .book-card:hover::before { transform: scaleX(1); }

  .book-number {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--rule-dark);
    text-transform: uppercase;
    margin-bottom: 18px;
    display: block;
  }

  .book-title {
    font-family: 'IM Fell English', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .book-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .book-link {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--rust);
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--rust);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
  }

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

  /* ── RESEARCH SITES ── */
  #research {
    background: var(--ink);
    color: var(--parchment);
  }

  #research .section-title { color: var(--parchment); }

  .research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .research-card {
    padding: 48px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(200,184,154,0.12);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: background 0.3s ease;
    position: relative;
  }

  .research-card:hover {
    background: rgba(154,124,58,0.08);
  }

  .research-number {
    font-family: 'Cinzel', serif;
    font-size: 42px;
    font-weight: 600;
    color: rgba(154,124,58,0.2);
    margin-bottom: 20px;
    line-height: 1;
  }

  .research-title {
    font-family: 'IM Fell English', serif;
    font-size: 18px;
    color: var(--gold-light);
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .research-desc {
    font-size: 14px;
    color: #8a7a66;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .research-link {
    font-family: 'Cinzel', serif;
    font-size: 8px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .research-card:hover .research-link { opacity: 1; }

  /* ── EVENTS ── */
  #events {
    background: var(--cream);
  }

  .events-list { display: flex; flex-direction: column; gap: 2px; }

  .event-card {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 48px;
    align-items: start;
    padding: 44px 0;
    border-bottom: 1px solid var(--rule);
  }

  .event-card:first-child { border-top: 1px solid var(--rule); }

  .event-date-block {
    text-align: center;
    padding: 18px 12px;
    border: 1px solid var(--rule);
    background: white;
  }

  .event-month {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }

  .event-day {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1;
    display: block;
  }

  .event-year {
    font-size: 12px;
    color: var(--rule-dark);
    display: block;
    margin-top: 4px;
  }

  .event-title {
    font-family: 'IM Fell English', serif;
    font-size: 22px;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .event-venue {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 10px;
    font-weight: 300;
  }

  .event-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.75;
    font-weight: 300;
    max-width: 580px;
  }

  .event-cta {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rust);
    text-decoration: none;
    border: 1px solid var(--rust);
    padding: 12px 20px;
    transition: all 0.25s ease;
    white-space: nowrap;
    align-self: center;
  }

  .event-cta:hover {
    background: var(--rust);
    color: white;
  }

  /* ── CONTACT ── */
  #contact {
    background: var(--parchment);
    text-align: center;
    padding: 120px 0;
    border-top: 1px solid var(--rule);
  }

  .contact-ornament {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 12px;
  }

  #contact .section-title { margin-bottom: 20px; }
  #contact .section-rule { margin: 0 auto 32px; }

  .contact-text {
    font-size: 18px;
    color: var(--ink-soft);
    margin-bottom: 36px;
    font-weight: 300;
  }

  .contact-email {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--rust);
    text-decoration: none;
    border-bottom: 1px solid var(--rust);
    padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
  }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(26,18,8,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(154,124,58,0.3);
    animation: slideDown 0.8s ease both;
  }

  .nav-brand {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--parchment);
    text-decoration: none;
    text-transform: uppercase;
  }

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

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(200,184,154,0.6);
    text-decoration: none;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--gold-light); }

  /* ── SERVICES ── */
  #services {
    background: var(--parchment);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-bottom: 72px;
  }

  .service-card {
    background: white;
    padding: 52px 48px;
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--rust), var(--gold));
  }

  .service-icon {
    font-size: 28px;
    margin-bottom: 20px;
    display: block;
    color: var(--gold);
  }

  .service-title {
    font-family: 'IM Fell English', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 14px;
    line-height: 1.25;
  }

  .service-desc {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 24px;
  }

  .service-includes {
    list-style: none;
    margin-bottom: 0;
  }

  .service-includes li {
    font-size: 14px;
    color: var(--ink-soft);
    padding: 7px 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
  }

  .service-includes li::before {
    content: '—';
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
  }

  .service-includes li:last-child { border-bottom: none; }

  .services-inquiry {
    background: var(--ink);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
  }

  .inquiry-text h3 {
    font-family: 'IM Fell English', serif;
    font-size: 28px;
    color: var(--parchment);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .inquiry-text p {
    font-size: 16px;
    color: #9a8a76;
    font-weight: 300;
    line-height: 1.75;
    max-width: 520px;
  }

  .inquiry-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 300px;
  }

  .inquiry-select,
  .inquiry-input,
  .inquiry-textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,184,154,0.2);
    color: var(--parchment);
    font-family: 'Cormorant Garamond', serif;
    font-size: 15px;
    padding: 14px 18px;
    width: 100%;
    appearance: none;
    outline: none;
    transition: border-color 0.2s;
  }

  .inquiry-select option { background: var(--ink); }

  .inquiry-select:focus,
  .inquiry-input:focus,
  .inquiry-textarea:focus {
    border-color: var(--gold);
  }

  .inquiry-textarea { resize: vertical; min-height: 90px; }

  .inquiry-submit {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--gold-light);
    border: none;
    padding: 16px 32px;
    cursor: pointer;
    width: 100%;
    transition: background 0.25s ease;
  }

  .inquiry-submit:hover { background: var(--gold); }

  .inquiry-note {
    font-size: 12px;
    color: rgba(154,138,118,0.6);
    text-align: center;
    margin-top: 4px;
  }

  @media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-inquiry {
      grid-template-columns: 1fr;
      padding: 44px 32px;
      gap: 36px;
    }
    .inquiry-fields { min-width: unset; }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    text-align: center;
    padding: 32px;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(160,144,128,0.5);
    text-transform: uppercase;
  }

  /* ── DIVIDERS ── */
  .ornamental-divider {
    text-align: center;
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 14px;
    margin: 0 0 48px;
    opacity: 0.6;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .reveal.hidden {
    opacity: 0;
    transform: translateY(24px);
  }

  .reveal.hidden.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-left {
      align-items: flex-start;
      padding: 80px 32px 60px;
      min-height: 50vh;
    }
    .hero-eyebrow, .hero-name, .hero-subtitle, .hero-bio-short { text-align: left; }
    .hero-rule { margin-left: 0; background: linear-gradient(to right, var(--gold), transparent); }
    .hero-right { padding: 60px 32px 80px; }
    .about-grid, .books-grid, .research-grid { grid-template-columns: 1fr; }
    .event-card { grid-template-columns: 1fr; gap: 20px; }
    .container { padding: 0 32px; }
    section { padding: 72px 0; }
  }

/* ══════════════════════════════════════════════════════════════
   ADDITIONS FOR MULTI-PAGE STRUCTURE
   ══════════════════════════════════════════════════════════════ */

/* ── MOBILE NAVIGATION ── */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(154,124,58,0.5);
  color: var(--parchment);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 2px;
}

.nav-links a.current { color: var(--gold-light); }

@media (max-width: 900px) {
  nav { flex-wrap: wrap; padding: 16px 24px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    padding-top: 14px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid rgba(154,124,58,0.18); }
  .nav-links a { display: block; padding: 13px 2px; font-size: 10px; }
}

/* ── SUB-PAGE HEADER ── */
.page-header {
  background: var(--ink);
  padding: 150px 0 72px;
  border-bottom: 1px solid rgba(154,124,58,0.35);
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.page-header .section-label { color: var(--gold); }

.page-header h1 {
  font-family: 'IM Fell English', serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--parchment);
  margin: 10px 0 0;
}

.page-header .page-standfirst {
  color: rgba(200,184,154,0.75);
  font-size: 19px;
  font-style: italic;
  max-width: 640px;
  margin-top: 20px;
}

.page-header .section-rule { background: linear-gradient(to right, var(--gold), transparent); }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,184,154,0.45);
  margin-bottom: 22px;
}
.breadcrumbs a { color: rgba(200,184,154,0.65); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs span { margin: 0 8px; opacity: 0.5; }

/* ── PROSE ── */
.prose { max-width: 720px; }
.prose p { margin-bottom: 22px; }
.prose h2 {
  font-family: 'IM Fell English', serif;
  font-size: 28px;
  font-weight: 400;
  margin: 44px 0 16px;
  color: var(--ink);
}
.prose h3 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rust);
  margin: 36px 0 12px;
}
.prose blockquote {
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink-soft);
}

/* ── BOOK DETAIL ── */
.book-detail {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.book-facts {
  background: white;
  border: 1px solid var(--rule);
  padding: 34px 32px;
  position: sticky;
  top: 96px;
}

.book-facts h3 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

.book-facts dl { margin: 0; }
.book-facts dt {
  font-family: 'Cinzel', serif;
  font-size: 8.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 14px;
}
.book-facts dd { margin: 2px 0 0; font-size: 16px; color: var(--ink-soft); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border: 1px solid var(--rust);
  color: var(--rust);
  background: transparent;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--rust); color: var(--cream); }

.btn-solid { background: var(--rust); color: var(--cream); }
.btn-solid:hover { background: var(--rust-light); border-color: var(--rust-light); }

.btn-row { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ── EVENTS: PAST ── */
.event-card.past { opacity: 0.72; }
.event-card.past .event-date-block { filter: grayscale(0.6); }

.events-empty {
  border: 1px dashed var(--rule-dark);
  padding: 44px 40px;
  text-align: center;
  background: rgba(255,255,255,0.5);
}
.events-empty p { margin-bottom: 8px; }

.subhead {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  margin: 64px 0 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}

/* ── CARD GRID (generic) ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

/* ── FOOTER (expanded) ── */
.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 18px;
  list-style: none;
  padding: 0;
}
.footer-nav a { color: rgba(200,184,154,0.6); text-decoration: none; }
.footer-nav a:hover { color: var(--gold-light); }

/* ── 404 ── */
.notfound { text-align: center; padding: 180px 0 120px; }

@media (max-width: 900px) {
  .page-header { padding: 120px 0 56px; }
  .book-detail { grid-template-columns: 1fr; gap: 40px; }
  .book-facts { position: static; }
}
