:root {
  --ink: #1e1b19;
  --muted: #6f6964;
  --paper: #fffdf9;
  --soft: #f5efe8;
  --line: #ded5cc;
  --accent: #846452;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.72;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 20;
  padding: .7rem 1rem;
  background: #fff;
}
.skip-link:focus { left: .75rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(8px);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: .12em;
  white-space: nowrap;
}
.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav a {
  text-decoration: none;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; }
.mobile-menu { display: none; }
.breadcrumbs {
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  color: var(--muted);
  font-size: .85rem;
}
.breadcrumbs a { text-underline-offset: 3px; }
.collection-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 28px auto 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
}
.hero-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.eyebrow {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.2;
}
h1 { margin: .4rem 0 1.1rem; font-size: clamp(2.7rem, 6vw, 5.5rem); }
.hero-copy p { max-width: 620px; color: #4d4844; font-size: 1.08rem; }
.hero-copy a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-shell {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto 100px;
}
.article-intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.65;
}
.toc {
  margin: 42px 0 58px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  background: var(--soft);
}
.toc strong { display: block; margin-bottom: 10px; }
.toc ol { margin: 0; columns: 2; padding-left: 22px; }
.toc li { margin: 5px 18px 5px 0; break-inside: avoid; }
.toc a { text-underline-offset: 3px; }
.collection-article__content h2 {
  margin: 3.2rem 0 1.1rem;
  padding-top: 1rem;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
}
.collection-article__content h3 { margin-top: 2rem; font-size: 1.35rem; }
.collection-article__content p { margin: 0 0 1.25rem; }
.note {
  margin: 38px 0;
  padding: 24px 28px;
  border-left: 3px solid var(--accent);
  background: var(--soft);
}
.faq details { border-top: 1px solid var(--line); padding: 17px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; }
.related {
  padding: 75px 20px;
  background: var(--soft);
  text-align: center;
}
.related h2 { margin: 0 0 25px; font-size: 2rem; }
.related-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.related-links a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
}
.site-footer {
  padding: 34px 20px;
  background: #201d1b;
  color: #fff;
  text-align: center;
  font-size: .85rem;
}
.site-footer a { margin: 0 7px; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { cursor: pointer; list-style: none; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 38px;
    width: min(290px, calc(100vw - 40px));
    padding: 16px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 15px 35px rgba(0,0,0,.1);
  }
  .mobile-menu nav a { display: block; padding: 9px; text-decoration: none; }
  .collection-hero { grid-template-columns: 1fr; margin-bottom: 50px; gap: 30px; }
  .hero-copy { order: -1; }
}
@media (max-width: 600px) {
  .header-inner { width: min(100% - 28px, 1240px); min-height: 66px; gap: 12px; }
  .brand { font-size: 1.15rem; }
  .mobile-menu { margin-left: auto; flex: 0 0 auto; }
  .breadcrumbs, .collection-hero, .article-shell { width: min(100% - 28px, 900px); }
  .collection-hero { margin-top: 18px; }
  .hero-copy, .hero-copy p, .collection-article__content { min-width: 0; overflow-wrap: anywhere; }
  .toc ol { columns: 1; }
  h1 { font-size: 2.65rem; }
}
