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

  :root {
    --paper:       #f1e8d6;
    --paper-warm:  #ece2cb;
    --paper-deep:  #e3d5b5;
    --paper-shade: #d4c39e;
    --ink:         #1f1a14;
    --ink-soft:    #3a3026;
    --ink-mid:     #5a4d3d;
    --ink-faint:   #8b7c66;
    --oxblood:     #6b1e1e;
    --oxblood-deep:#4a1313;
    --gold:        #9a7029;
    --gold-bright: #c89a3d;
    --gold-pale:   #e8d39a;
    --sepia:       #7a5c34;
    --rule:        #b8a585;
    --shadow:      rgba(31, 26, 20, 0.18);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 400;
    color: var(--ink);
    background: var(--paper);
    background-image:
      radial-gradient(ellipse 1200px 600px at 10% 0%, rgba(154,112,41,0.08), transparent 60%),
      radial-gradient(ellipse 900px 700px at 90% 100%, rgba(107,30,30,0.07), transparent 65%);
    line-height: 1.65;
    font-size: 19px;
    overflow-x: hidden;
  }

  /* Subtle paper grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.45 0 0 0 0 0.30 0 0 0 0.15 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
    mix-blend-mode: multiply;
  }

  main, nav, footer { position: relative; z-index: 2; }

  /* ── NAV ── */
  nav {
    background: var(--ink);
    padding: 0 32px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--gold);
    box-shadow: 0 1px 0 var(--gold-bright) inset, 0 2px 12px var(--shadow);
    min-height: 62px;
  }
  .nav-logo {
    color: var(--paper);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
  }
  .nav-logo-mark {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--gold-bright);
    line-height: 1;
  }
  .nav-logo-name {
    font-family: 'Cormorant SC', serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--paper);
  }
  .nav-links {
    display: flex;
    gap: 0;
    align-items: stretch;
  }
  .nav-links a {
    color: var(--paper);
    text-decoration: none;
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0 18px;
    display: flex;
    align-items: center;
    transition: color 0.25s;
    border-left: 1px solid rgba(154,112,41,0.25);
  }
  .nav-links a:hover { color: var(--gold-bright); }
  .nav-links a.current { color: var(--gold-bright); }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background:
      linear-gradient(180deg, rgba(241,232,214,0.10) 0%, rgba(31,26,20,0.55) 60%, rgba(31,26,20,0.85) 100%),
      url('images/London.jpg') center 30% / cover no-repeat;
    color: var(--paper);
    padding: 120px 24px 96px;
    text-align: center;
  }
  .hero-eyebrow {
    font-family: 'Cormorant SC', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 28px;
  }
  .hero-eyebrow::before, .hero-eyebrow::after {
    content: '✦';
    margin: 0 14px;
    color: var(--gold);
    font-size: 10px;
    vertical-align: middle;
  }
  .hero h1 {
    font-family: 'IM Fell English', serif;
    font-weight: 400;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--paper);
    margin-bottom: 24px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  }
  .hero h1 em {
    font-style: italic;
    color: var(--gold-pale);
  }
  .hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(18px, 2.2vw, 24px);
    color: var(--paper);
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.5;
    opacity: 0.94;
  }
  .hero-rule {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 28px auto;
    position: relative;
  }
  .hero-rule::before, .hero-rule::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--gold-bright);
    transform: translateY(-50%) rotate(45deg);
  }
  .hero-rule::before { left: -10px; }
  .hero-rule::after { right: -10px; }

  .btn {
    display: inline-block;
    font-family: 'Cormorant SC', serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    padding: 16px 38px;
    text-decoration: none;
    background: var(--gold);
    color: var(--ink);
    border: 1px solid var(--gold-bright);
    transition: all 0.28s ease;
    cursor: pointer;
    position: relative;
  }
  .btn:hover {
    background: var(--gold-bright);
    color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  }
  .btn-ghost {
    background: transparent;
    color: var(--paper);
    border: 1px solid var(--paper);
  }
  .btn-ghost:hover {
    background: var(--paper);
    color: var(--ink);
  }

  /* ── CONTAINER ── */
  .container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ── SECTIONS ── */
  section { padding: 110px 0; }

  .section-eyebrow {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--oxblood);
    text-align: center;
    margin-bottom: 18px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: '—';
    margin: 0 14px;
    color: var(--rule);
  }

  h2 {
    font-family: 'IM Fell English', serif;
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.15;
    color: var(--ink);
    text-align: center;
    margin-bottom: 24px;
  }
  h2 em { font-style: italic; color: var(--oxblood); }

  .lede {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.55;
    color: var(--ink-soft);
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
  }

  /* ── ORNAMENTAL DIVIDER ── */
  .ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 48px 0;
    color: var(--gold);
  }
  .ornament-line {
    flex: 0 0 80px;
    height: 1px;
    background: var(--rule);
  }
  .ornament-glyph {
    font-family: 'IM Fell English', serif;
    font-size: 22px;
    color: var(--oxblood);
  }

  /* ── PROMISE ── */
  .promise {
    background: var(--paper-warm);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .promise-body p {
    font-size: 20px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 22px;
    text-align: center;
  }
  .promise-body p:first-child::first-letter {
    font-family: 'IM Fell English', serif;
    font-size: 64px;
    float: left;
    line-height: 0.85;
    padding: 8px 12px 0 0;
    color: var(--oxblood);
    font-weight: 400;
  }
  .promise-quote {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    text-align: center;
    color: var(--oxblood);
    padding: 48px 32px;
    margin: 56px auto 0;
    max-width: 720px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .promise-quote::before, .promise-quote::after {
    content: '✦';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 12px;
    background: var(--paper-warm);
    padding: 0 12px;
  }
  .promise-quote::before { top: -7px; }
  .promise-quote::after { bottom: -7px; }

  /* ── PIECES (FEATURED) ── */
  .pieces { background: var(--paper); }
  .pieces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-top: 64px;
  }
  .piece {
    text-align: center;
  }
  .piece-frame {
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    padding: 20px;
    box-shadow:
      0 1px 0 var(--paper) inset,
      0 18px 36px rgba(31,26,20,0.18),
      0 4px 8px rgba(31,26,20,0.10);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .piece-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--rule);
    pointer-events: none;
  }
  .piece-frame:hover {
    transform: translateY(-4px) rotate(-0.3deg);
    box-shadow:
      0 1px 0 var(--paper) inset,
      0 24px 44px rgba(31,26,20,0.22),
      0 6px 12px rgba(31,26,20,0.12);
  }
  .piece-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: sepia(0.05) saturate(0.95);
  }
  .piece-name {
    font-family: 'IM Fell English', serif;
    font-size: 30px;
    line-height: 1.2;
    color: var(--ink);
    margin: 32px 0 8px;
    font-style: italic;
  }
  .piece-detail {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 16px;
  }
  .piece-blurb {
    font-size: 18px;
    line-height: 1.6;
    color: var(--ink-soft);
    font-style: italic;
    max-width: 380px;
    margin: 0 auto 20px;
  }
  .piece-price {
    font-family: 'IM Fell English', serif;
    font-size: 22px;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .piece-link {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--oxblood);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    transition: all 0.22s;
  }
  .piece-link:hover {
    color: var(--ink);
    border-bottom-color: var(--ink);
  }

  /* ── STORIES (chapter teasers) ── */
  .stories {
    background: var(--ink);
    color: var(--paper);
    position: relative;
  }
  .stories::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 600px 400px at 20% 30%, rgba(154,112,41,0.18), transparent 70%),
      radial-gradient(ellipse 500px 400px at 80% 80%, rgba(107,30,30,0.20), transparent 70%);
    pointer-events: none;
  }
  .stories h2 { color: var(--paper); }
  .stories h2 em { color: var(--gold-bright); }
  .stories .section-eyebrow { color: var(--gold-bright); }
  .stories .section-eyebrow::before, .stories .section-eyebrow::after { color: var(--ink-faint); }
  .stories .lede { color: var(--paper); opacity: 0.85; }

  .stories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 64px;
    position: relative;
    z-index: 2;
  }
  .story-card {
    background: var(--paper);
    color: var(--ink);
    padding: 0;
    text-decoration: none;
    display: block;
    border: 1px solid var(--gold);
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    position: relative;
  }
  .story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0,0,0,0.55);
  }
  .story-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: sepia(0.15) saturate(0.9);
  }
  .story-card-body {
    padding: 28px 32px 36px;
    text-align: center;
  }
  .story-chapter {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 12px;
  }
  .story-title {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .story-excerpt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink-soft);
    margin-bottom: 20px;
  }
  .story-readmore {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
  }

  /* ── SIGNUP ── */
  .signup {
    background: var(--paper-warm);
    border-top: 6px double var(--gold);
    border-bottom: 6px double var(--gold);
  }
  .signup h2 { color: var(--ink); }
  .signup-form {
    max-width: 560px;
    margin: 40px auto 0;
    background: var(--paper);
    padding: 44px 40px;
    border: 1px solid var(--rule);
    box-shadow: 0 12px 28px rgba(31,26,20,0.12);
    position: relative;
  }
  .signup-form::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--rule);
    pointer-events: none;
  }
  .signup-form-inner { position: relative; z-index: 2; }
  .form-row { margin-bottom: 20px; }
  .form-row label {
    display: block;
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 8px;
  }
  .form-row input, .form-row textarea, .form-row select {
    width: 100%;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--ink);
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    padding: 12px 14px;
    transition: border-color 0.22s, background 0.22s;
  }
  .form-row input:focus, .form-row textarea:focus, .form-row select:focus {
    outline: none;
    border-color: var(--oxblood);
    background: var(--paper);
  }
  .form-row textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
  }
  .form-row-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin: 24px 0;
  }
  .form-row-checkbox input { width: 18px; height: 18px; margin-top: 4px; flex-shrink: 0; }
  .signup-form button {
    width: 100%;
    margin-top: 8px;
  }
  .form-fineprint {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
    color: var(--ink-faint);
    font-style: italic;
  }
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-success.show { display: block; }
  .signup-form.submitted .signup-form-inner > form { display: none; }
  .form-success-glyph {
    font-family: 'IM Fell English', serif;
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .form-success-title {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 12px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    color: var(--paper);
    padding: 60px 32px 40px;
    text-align: center;
    border-top: 1px solid var(--gold);
  }
  .footer-mark {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--gold-bright);
    margin-bottom: 6px;
  }
  .footer-name {
    font-family: 'Cormorant SC', serif;
    font-size: 14px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--paper);
    margin-bottom: 18px;
  }
  .footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-faint);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.55;
  }
  .footer-links {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
  }
  .footer-links a {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold-bright);
    text-decoration: none;
    transition: color 0.22s;
  }
  .footer-links a:hover { color: var(--paper); }
  .footer-fineprint {
    font-size: 13px;
    color: var(--ink-faint);
    font-style: italic;
    margin-top: 12px;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 820px) {
    body { font-size: 18px; }
    nav { padding: 0 16px; min-height: 56px; }
    .nav-logo-name { display: none; }
    .nav-links a { padding: 0 12px; font-size: 11px; letter-spacing: 0.14em; }
    .hero { padding: 80px 20px 64px; min-height: 70vh; }
    section { padding: 72px 0; }
    .container, .container-narrow { padding: 0 20px; }
    .pieces-grid, .stories-grid { grid-template-columns: 1fr; gap: 48px; }
    .piece-frame img { height: 340px; }
    .story-card-img { height: 220px; }
    .signup-form { padding: 32px 24px; }
    .promise-quote { font-size: 22px; padding: 32px 16px; }
  }
  @media (max-width: 480px) {
    .hero h1 { font-size: 38px; }
    h2 { font-size: 30px; }
    .lede { font-size: 18px; }
  }

  /* ─────────────────────────────────────────
     CHAPTER PAGES
     ───────────────────────────────────────── */
  .chapter-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--paper);
    padding: 80px 24px 64px;
  }
  .chapter-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .chapter-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31,26,20,0.20) 0%, rgba(31,26,20,0.45) 55%, rgba(31,26,20,0.92) 100%);
  }
  .chapter-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
  }
  .chapter-num {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 20px;
  }
  .chapter-title {
    font-family: 'IM Fell English', serif;
    font-weight: 400;
    font-size: clamp(38px, 5.8vw, 68px);
    line-height: 1.05;
    color: var(--paper);
    margin-bottom: 20px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  }
  .chapter-title em { font-style: italic; color: var(--gold-pale); }
  .chapter-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.55;
    color: var(--paper);
    opacity: 0.94;
    max-width: 640px;
  }

  .chapter-body {
    background: var(--paper);
    padding: 90px 0 110px;
  }
  .chapter-prose {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .chapter-prose p {
    font-size: 21px;
    line-height: 1.75;
    color: var(--ink-soft);
    margin-bottom: 24px;
  }
  .chapter-prose p:first-of-type::first-letter {
    font-family: 'IM Fell English', serif;
    font-size: 72px;
    float: left;
    line-height: 0.85;
    padding: 8px 14px 0 0;
    color: var(--oxblood);
    font-weight: 400;
  }
  .chapter-pullquote {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    color: var(--oxblood);
    text-align: center;
    padding: 48px 24px;
    margin: 56px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: relative;
  }
  .chapter-pullquote::before, .chapter-pullquote::after {
    content: '✦';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 12px;
    background: var(--paper);
    padding: 0 12px;
  }
  .chapter-pullquote::before { top: -7px; }
  .chapter-pullquote::after { bottom: -7px; }

  .chapter-piece-card {
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    padding: 32px;
    margin: 56px 0;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: 0 12px 28px rgba(31,26,20,0.10);
    position: relative;
  }
  .chapter-piece-card::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--rule);
    pointer-events: none;
  }
  .chapter-piece-card-inner { position: relative; z-index: 2; display: contents; }
  .chapter-piece-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid var(--rule);
    filter: sepia(0.05);
  }
  .chapter-piece-eyebrow {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 10px;
  }
  .chapter-piece-name {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 10px;
  }
  .chapter-piece-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-soft);
    font-style: italic;
    margin-bottom: 14px;
  }

  .chapter-next {
    background: var(--ink);
    color: var(--paper);
    padding: 80px 32px;
    text-align: center;
  }
  .chapter-next-eyebrow {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 16px;
  }
  .chapter-next-title {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 38px;
    line-height: 1.2;
    color: var(--paper);
    margin-bottom: 14px;
  }
  .chapter-next-excerpt {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--paper);
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.55;
  }

  /* ─────────────────────────────────────────
     COLLECTION PAGE
     ───────────────────────────────────────── */
  .collection-hero {
    background: var(--ink);
    color: var(--paper);
    padding: 100px 24px 80px;
    text-align: center;
    border-bottom: 1px solid var(--gold);
    position: relative;
  }
  .collection-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 700px 400px at 30% 20%, rgba(154,112,41,0.16), transparent 70%),
      radial-gradient(ellipse 600px 400px at 70% 80%, rgba(107,30,30,0.18), transparent 70%);
  }
  .collection-hero-inner { position: relative; z-index: 2; }
  .collection-hero h1 {
    font-family: 'IM Fell English', serif;
    font-weight: 400;
    font-size: clamp(40px, 5.6vw, 64px);
    line-height: 1.1;
    color: var(--paper);
    margin-bottom: 20px;
  }
  .collection-hero h1 em { font-style: italic; color: var(--gold-bright); }
  .collection-hero p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 21px;
    color: var(--paper);
    opacity: 0.9;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
  }

  .product {
    padding: 100px 0;
    border-bottom: 1px solid var(--rule);
  }
  .product:nth-of-type(even) { background: var(--paper-warm); }
  .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .product:nth-of-type(even) .product-grid {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
  .product:nth-of-type(even) .product-grid > * { direction: ltr; }
  .product-image-frame {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 18px;
    box-shadow:
      0 1px 0 var(--paper-warm) inset,
      0 20px 40px rgba(31,26,20,0.18);
    position: relative;
    transform: rotate(-0.6deg);
    transition: transform 0.45s ease;
  }
  .product-image-frame::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--rule);
    pointer-events: none;
  }
  .product-image-frame:hover { transform: rotate(0deg) translateY(-4px); }
  .product-image-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: sepia(0.06) saturate(0.96);
  }
  .product-eyebrow {
    font-family: 'Cormorant SC', serif;
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--oxblood);
    margin-bottom: 14px;
  }
  .product-name {
    font-family: 'IM Fell English', serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 8px;
  }
  .product-name em { font-style: italic; }
  .product-spec {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 28px;
  }
  .product-body p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ink-soft);
    margin-bottom: 18px;
  }
  .product-body p em { color: var(--oxblood); font-style: italic; }
  .product-details {
    list-style: none;
    margin: 24px 0 28px;
    padding: 20px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .product-details li {
    padding: 8px 0 8px 28px;
    font-size: 17px;
    color: var(--ink-soft);
    position: relative;
  }
  .product-details li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 12px;
    top: 14px;
  }
  .product-price {
    font-family: 'IM Fell English', serif;
    font-size: 28px;
    color: var(--ink);
    margin-bottom: 24px;
  }
  .product-price span {
    font-family: 'Cormorant SC', serif;
    font-size: 11px;
    letter-spacing: 0.28em;
    color: var(--ink-faint);
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
  }

  .engraving-note {
    background: var(--paper);
    padding: 80px 32px;
    text-align: center;
    border-top: 6px double var(--gold);
    border-bottom: 6px double var(--gold);
  }
  .engraving-note h2 { margin-bottom: 28px; }
  .engraving-note .lede { margin-bottom: 0; }

  @media (max-width: 820px) {
    .chapter-hero { padding: 60px 20px 48px; min-height: 56vh; }
    .chapter-body { padding: 64px 0 80px; }
    .chapter-prose p { font-size: 19px; }
    .chapter-piece-card { grid-template-columns: 1fr; padding: 24px; }
    .chapter-piece-card img { height: 220px; }
    .product { padding: 64px 0; }
    .product-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
    .product:nth-of-type(even) .product-grid { direction: ltr; }
    .product-image-frame img { height: 340px; }
    .product-name { font-size: 34px; }
    .collection-hero { padding: 72px 20px 56px; }
  }
