/* Variant C — Editorial Scroll
   Feature-article narrative. Bodoni Moda masthead + Libre Baskerville body.
   Sepia cream background, deep ink, Roman numeral chapters, pull quotes,
   cinematic full-bleed photos with dark captions. */

:root {
  --sepia: #ede3cf;
  --sepia-2: #e3d6ba;
  --paper: #f5ecd7;
  --ink: #1a1510;
  --ink-soft: #3d342a;
  --muted: #7a6d57;
  --brown: #5a2424;
  --brown-deep: #3d1616;
  --gold: #8a6830;
  --rule: #c4b490;
  --max: 1200px;
  --col-prose: 640px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Libre Baskerville', 'Source Serif Pro', Georgia, serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sepia);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(245, 236, 215, 0.6), transparent),
    radial-gradient(ellipse at 30% 80%, rgba(138, 104, 48, 0.06), transparent 50%);
}

::selection { background: var(--brown); color: var(--sepia); }

img { display: block; width: 100%; height: auto; }
a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color 0.2s; }
a:hover { color: var(--brown-deep); }

h1, h2, h3, h4 {
  font-family: 'Newsreader', 'Didot', 'Bodoni 72', serif;
  font-weight: 400;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1.3em; }

/* Masthead — looks like a newspaper front */
.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.4rem 2.5rem 0.9rem;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
}

.masthead-left { justify-self: start; display: flex; align-items: center; gap: 0.7rem; }
.masthead-center { justify-self: center; }
.masthead-right { justify-self: end; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); }
.mini-logo { height: 44px; width: auto; }
.masthead-title {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.masthead-issue {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.masthead-cta {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--sepia);
  background: var(--brown);
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: background 0.2s;
}
.masthead-cta:hover { background: var(--brown-deep); }

.masthead-rule {
  border: none;
  border-top: 3px double var(--ink);
  max-width: var(--max);
  margin: 0 auto;
}

/* Feature */
.feature { padding: 0 0 4rem; }

.feature-hero {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  text-align: center;
}

.feature-kicker {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.5rem;
}

.feature-headline {
  font-family: 'Newsreader', serif;
  font-size: clamp(2.5rem, 7.5vw, 5.8rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  font-variation-settings: "opsz" 72;
}
.feature-headline em {
  font-style: italic;
  color: var(--brown);
  font-weight: 400;
}

.feature-standfirst {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 38em;
  margin: 0 auto 2rem;
}

.feature-byline {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.02em;
}
.feature-byline strong {
  font-weight: 400;
  color: var(--ink);
  font-style: normal;
}
.byline-sep { margin: 0 0.4rem; color: var(--rule); }

/* Hero photo — full bleed */
.hero-photo {
  margin: 0 0 3rem;
  max-width: 100%;
}
.hero-photo img {
  width: 100%;
  height: clamp(420px, 65vh, 720px);
  object-fit: cover;
  filter: contrast(1.03) saturate(0.92);
}
.hero-photo figcaption {
  max-width: var(--max);
  margin: 1rem auto 0;
  padding: 0 2.5rem;
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Chapters */
.chapter {
  max-width: 860px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem 3rem;
}

/* Inline chapter numeral (I, II, III…) prefixed to the title */
.chapter-num {
  font-family: 'Newsreader', serif;
  font-style: italic;
  color: var(--brown);
  font-size: 0.65em;
  font-weight: 400;
  margin-right: 0.5em;
  vertical-align: 0.1em;
  letter-spacing: 0.02em;
}

.chapter-title {
  font-family: 'Newsreader', serif;
  font-size: clamp(2rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin-bottom: 1.8rem;
  max-width: 15ch;
  font-variation-settings: "opsz" 72;
}

.chapter-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--ink);
  max-width: var(--col-prose);
}
.chapter-body em { color: var(--brown); }

.dropcap {
  float: left;
  font-family: 'Newsreader', serif;
  font-size: 5.5rem;
  line-height: 0.85;
  color: var(--brown);
  padding: 0.3rem 0.6rem 0 0;
  font-weight: 500;
}

/* Pull photo */
.pull-photo {
  max-width: var(--max);
  margin: 2rem auto;
  padding: 0 2.5rem;
}
.pull-photo-wide { max-width: 100%; padding: 0; }
.pull-photo img {
  width: 100%;
  height: clamp(360px, 55vh, 560px);
  object-fit: cover;
  filter: contrast(1.03) saturate(0.92);
}
.pull-photo figcaption {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 0.8rem;
  padding: 0 0.5rem;
  max-width: 56em;
}
.pull-photo-wide figcaption {
  max-width: var(--max);
  margin: 0.8rem auto 0;
  padding: 0 2.5rem;
}

/* Pull quote */
.pull-quote {
  max-width: 900px;
  margin: 4rem auto;
  padding: 3rem 2.5rem;
  text-align: center;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.pull-quote p {
  font-family: 'Newsreader', serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72;
}
.pull-quote em { color: var(--brown); font-style: italic; }

/* Three column (Chapter II) */
.chapter-three .chapter-body { max-width: none; }
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
}
@media (max-width: 820px) { .three-col { grid-template-columns: 1fr; gap: 1.5rem; } }

.three-col-item { padding-top: 1rem; }
.three-col-item h3 {
  font-family: 'Newsreader', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
.tc-num {
  font-style: italic;
  color: var(--gold);
  font-size: 0.75em;
  margin-right: 0.25em;
  letter-spacing: 0.02em;
}
.three-col-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Menu editorial */
.menu-lede {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.menu-editorial {
  margin: 2rem 0;
  border-top: 1px solid var(--rule);
}
.menu-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
@media (max-width: 520px) { .menu-row { grid-template-columns: 1fr; gap: 0.3rem; } }

.menu-row h4 {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin: 0;
}
.menu-row p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--ink);
}
.menu-row-price p {
  font-family: 'Newsreader', serif;
  font-size: 1.4rem;
  color: var(--brown);
}
.menu-row-price strong {
  font-weight: 500;
}
.menu-row-price em { color: var(--muted); font-size: 0.9rem; }

.menu-footnote {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1.5rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--rule);
}

/* FAQ editorial — like a dialogue */
.faq-editorial details {
  border-bottom: 1px solid var(--rule);
  padding: 1.3rem 0;
}
.faq-editorial details:first-child { border-top: 1px solid var(--rule); }

.faq-editorial summary {
  cursor: pointer;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  list-style: none;
  font-weight: 400;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-variation-settings: "opsz" 72;
}
.faq-editorial summary::-webkit-details-marker { display: none; }
.faq-editorial summary::after {
  content: '§';
  font-family: 'Newsreader', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-editorial details[open] summary::after { transform: rotate(180deg); color: var(--brown); }
.faq-editorial details p {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  border-left: 2px solid var(--gold);
}

/* Editorial map */
.editorial-map {
  margin: 2.5rem 0 3rem;
  padding: 0;
  border: 1px solid var(--ink);
}
.editorial-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: sepia(0.15) saturate(0.85) contrast(1.02);
}
.editorial-map figcaption {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.editorial-map figcaption em { color: var(--brown); font-style: italic; font-weight: 700; margin-right: 0.3em; }
.editorial-map figcaption a {
  color: var(--brown);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Contact editorial */
.chapter-contact { padding-bottom: 4rem; }
.contact-lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  font-style: italic;
}

.contact-editorial {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 820px) { .contact-editorial { grid-template-columns: 1fr; gap: 2rem; } }

.contact-info dl { margin: 0; }
.contact-info dt {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.4rem;
  font-weight: 400;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 0.4rem 0 0;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}

.contact-form { display: grid; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.contact-form label { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-form label span {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form textarea {
  font: inherit;
  font-family: 'Libre Baskerville', serif;
  padding: 0.7rem 0.9rem;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brown);
  background: var(--paper);
}
.contact-form button {
  font: inherit;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.3rem;
  padding: 0.7rem 2rem;
  background: var(--ink);
  color: var(--sepia);
  border: 1px solid var(--ink);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.25s;
  justify-self: start;
  letter-spacing: 0.01em;
  margin-top: 0.5rem;
}
.contact-form button:hover { background: var(--brown); border-color: var(--brown); }

/* Colophon */
.colophon {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding: 0 2.5rem 3rem;
  text-align: center;
}
.colophon-rule { border: none; border-top: 3px double var(--ink); margin: 0 0 2rem; }
.colophon-title {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--ink);
  margin: 0 0 0.3rem;
  font-weight: 400;
}
.colophon-sub {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.colophon-meta {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.05em;
}

/* Responsive polish */
@media (max-width: 820px) {
  .chapter { padding: 2.5rem 1.5rem 1.5rem; }
  .chapter-title {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
    font-variation-settings: "opsz" 28;
    line-height: 1.15;
    max-width: none;
    margin-bottom: 1.2rem;
  }
  .chapter-body { font-size: 1rem; line-height: 1.65; }
  .dropcap { font-size: 4rem; padding: 0.3rem 0.45rem 0 0; }
}

@media (max-width: 620px) {
  .masthead { grid-template-columns: 1fr auto; gap: 0.5rem; padding: 1rem 1.5rem 0.7rem; }
  .masthead-center { grid-column: 1 / -1; order: 3; margin-top: 0.3rem; }
  .masthead-right { justify-self: end; }

  /* Hero — text-subfamily opsz, smaller size, cleaner break */
  .feature-hero { padding: 2.5rem 1.5rem 1.5rem; }
  .feature-headline {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    font-variation-settings: "opsz" 28;
    line-height: 1.08;
  }
  .feature-standfirst { font-size: 1.05rem; }

  /* Pull quote */
  .pull-quote { padding: 2rem 1.5rem; margin: 2rem 1rem; }
  .pull-quote p {
    font-size: clamp(1.4rem, 6vw, 2rem);
    font-variation-settings: "opsz" 28;
  }

  /* Menu — readable at small size */
  .menu-row { padding: 1rem 0; }
  .menu-row h4 { font-size: 0.85rem; }
  .menu-row p { font-size: 1rem; }
  .menu-row-price p { font-size: 1.2rem; }

  /* FAQ — swap italic display serif for upright body serif (readable) */
  .faq-editorial summary {
    font-family: 'Libre Baskerville', serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
  }
  .faq-editorial details p { font-size: 1rem; line-height: 1.6; }

  /* Captions readable */
  .hero-photo figcaption, .pull-photo-wide figcaption { padding: 0 1.5rem; }

  /* Three-col tighter */
  .three-col { gap: 1.2rem; }
  .three-col-item h3 { font-size: 1.35rem; }
}
