/* T7 Warm Indie Cafe — brewcoffeeworks.com
   Palette: cream #FAF6F0 / espresso #3E2D24 / terracotta #C8553D / sage #7B8A6D
   Typography: Cormorant Garamond (display, italic-leaning) + Inter (body)
   Layout: single-column long-form with cafe-notebook feel.
   No sidebar. No sticky nav. Cozy, warm, hand-rendered. */

:root {
  --bg: #FAF6F0;
  --bg-soft: #F2EBDF;
  --bg-paper: #FFFCF6;
  --bg-card: #FFFCF6;
  --ink: #3E2D24;
  --ink-soft: #5C4A3F;
  --muted: #8B7B6E;
  --rule: #E5D9C7;
  --rule-strong: #C8B89E;
  --accent: #C8553D;
  --accent-dark: #A24330;
  --accent-soft: #F5E1DA;
  --secondary: #7B8A6D;
  --secondary-soft: #E0E5D6;
  --good: #6B8E4E;
  --warn: #C49334;
  --bad: #B23A2C;
  --max: 980px;
  --max-narrow: 720px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 1.4em 0 .5em;
  font-weight: 600;
}
h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-top: 0;
  font-style: italic;
}
h2 { font-size: 34px; line-height: 1.18; margin-top: 1.6em; font-weight: 600; }
h3 { font-size: 24px; line-height: 1.3; font-weight: 600; }
h4 { font-size: 18px; line-height: 1.35; font-weight: 700; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
p { margin: 0 0 1.1em; }
@media (max-width: 760px) {
  body { font-size: 16px; }
  h1 { font-size: 38px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }

/* === Header / brand === */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; padding-bottom: 22px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(62,45,36,.15);
}
.brand-mark svg { display: block; }
.brand-words { display: inline-flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600; font-size: 22px;
  color: var(--ink);
  white-space: nowrap;
}
.brand-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: var(--secondary);
  letter-spacing: 0.22em;
  margin-top: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
}
@media (max-width: 480px) { .brand-tag { display: none; } }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.nav .btn-sm {
  background: var(--accent); color: var(--bg);
  padding: 8px 16px; border-radius: 999px;
  font-weight: 600; border-bottom: none;
}
.nav .btn-sm:hover { background: var(--accent-dark); color: var(--bg); border-bottom-color: transparent; }

.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--rule); border-radius: 6px;
  padding: 8px 10px; cursor: pointer; font-size: 14px; color: var(--ink);
}
@media (max-width: 760px) {
  .nav { display: none; gap: 14px; }
  .nav.open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 80px; left: 0; right: 0;
    background: var(--bg-paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
    padding: 18px 24px; z-index: 40;
  }
  .nav-toggle { display: block; }
}

/* === Breadcrumb === */
.breadcrumb {
  font-size: 13px; color: var(--muted);
  padding-top: 18px; padding-bottom: 8px;
  font-family: 'Inter', sans-serif;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); text-decoration: underline; }

/* === Hero === */
.hero { padding: 64px 0 36px; background: var(--bg); }
.hero .eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero h1 { max-width: 880px; margin-bottom: 22px; }
.hero .lede {
  font-size: 21px; line-height: 1.6;
  max-width: 740px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero .trust-strip {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 12px;
  font-size: 14px; color: var(--ink-soft);
  border-top: 1px dashed var(--rule);
  padding-top: 18px;
}
.hero .trust-strip span { display: inline-flex; align-items: center; gap: 8px; }
.hero .trust-strip img,
.hero .trust-strip svg {
  display: inline-block;
  width: 16px; height: 16px;
  vertical-align: -3px;
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: transform .12s ease, background-color .12s ease;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-dark); color: var(--bg); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); text-decoration: none; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* === Sections === */
.section { padding: 56px 0; }
.section + .section { border-top: 1px solid var(--rule); }
.section h2 { margin-top: 0; }
.kicker {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
}
.kicker-icon {
  display: inline-flex; align-items: center; gap: 6px;
}
.kicker-icon svg { width: 13px; height: 13px; }

/* === Picks list (homepage) === */
.picks-list { list-style: none; padding: 0; margin: 28px 0; counter-reset: pickn; }
.picks-list > li {
  counter-increment: pickn;
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 24px 28px;
  margin-bottom: 16px;
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  align-items: start;
}
.picks-list > li::before {
  content: counter(pickn, decimal-leading-zero);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.picks-list .name {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
}
.picks-list .name a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
.picks-list .name a:hover { border-bottom-color: var(--accent); }
.picks-list .badge {
  background: var(--accent);
  color: var(--bg);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 700;
}
.picks-list .verdict {
  font-style: italic; color: var(--secondary);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  margin: 0 0 10px;
}
.picks-list p { font-size: 16px; color: var(--ink-soft); margin: 0 0 8px; }
.picks-list .stat-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 13px; color: var(--muted);
  margin-top: 10px;
  font-family: 'Inter', sans-serif;
}
.picks-list .stat-row strong { color: var(--ink); font-weight: 600; }
.picks-list .top-pick { border: 1.5px solid var(--accent); background: var(--accent-soft); }
@media (max-width: 600px) {
  .picks-list > li { grid-template-columns: 36px 1fr; padding: 18px 20px; }
  .picks-list > li::before { font-size: 26px; }
}

/* === TLDR + tldr-cta + cta-card === */
.tldr {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 22px 26px;
  margin: 32px 0 16px;
}
.tldr h4 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: var(--accent);
  margin: 0 0 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.tldr ul { margin: 0; padding-left: 22px; }
.tldr li { margin-bottom: 6px; font-size: 16px; color: var(--ink); }
.tldr .overall {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600; font-size: 18px; color: var(--accent);
}

/* Inline TL;DR CTA on the CallScaler review */
.tldr-cta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin: 0 0 28px;
  padding: 8px 4px;
}
.tldr-cta .subtext { font-size: 13px; color: var(--muted); margin: 0; }

/* CTA card — used mid-section and at footer */
.cta-card {
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 36px auto;
  max-width: 720px;
  text-align: center;
  position: relative;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 4px;
  background: var(--accent);
  border-radius: 14px 0 0 14px;
}
.cta-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px; font-weight: 600;
  margin: 0 0 14px; color: var(--ink);
  letter-spacing: -0.01em;
}
.cta-card .btn { margin: 0; }
.cta-card .subtext { margin-top: 12px; font-size: 13px; color: var(--ink-soft); }

/* Editor-note cross-link (replaces affiliate CTA on competitor reviews) */
.tldr-crosslink {
  margin: 14px 0 28px;
  padding: 14px 18px;
  background: var(--secondary-soft);
  border-left: 3px solid var(--secondary);
  border-radius: 4px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
}
.tldr-crosslink p { margin: 0; }
.tldr-crosslink strong { color: var(--ink); font-weight: 600; }
.tldr-crosslink a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.tldr-crosslink a:hover { text-decoration: none; }

/* === Pricing list, pros/cons === */
.pricing-list {
  list-style: none; padding: 0; margin: 18px 0;
  border-top: 1px dashed var(--rule);
}
.pricing-list li {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 12px 4px;
  border-bottom: 1px dashed var(--rule);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}
.pricing-list .plan { color: var(--ink); font-weight: 500; }
.pricing-list .price {
  color: var(--accent); font-weight: 600;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
}

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 24px 0; }
.proscons > div {
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 18px 22px;
}
.proscons ul { padding-left: 20px; margin: 8px 0 0; }
.proscons li { margin-bottom: 6px; font-size: 15px; }
.proscons .pros h4 { color: var(--good); margin-top: 0; }
.proscons .cons h4 { color: var(--warn); margin-top: 0; }
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }

/* === Recipe card (homepage at-a-glance picks block) === */
.recipe-card {
  background: var(--bg-paper);
  border: 1.5px solid var(--rule-strong);
  border-radius: 14px;
  padding: 26px 30px;
  margin: 28px 0;
  position: relative;
}
.recipe-card::before {
  content: '';
  position: absolute;
  top: -10px; left: 22px;
  width: 70px; height: 20px;
  background: var(--accent);
  border-radius: 4px;
  transform: rotate(-3deg);
  z-index: 0;
}
.recipe-card .label {
  position: absolute;
  top: -10px; left: 28px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  z-index: 1;
  padding: 4px 8px;
}
.recipe-card h3 {
  font-style: italic;
  margin: 8px 0 14px;
}
.recipe-card .ing {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 6px 16px;
  margin: 14px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}
.recipe-card .ing .k { color: var(--muted); font-weight: 500; }
.recipe-card .ing .v { color: var(--ink); }
@media (max-width: 600px) {
  .recipe-card .ing { grid-template-columns: 1fr; gap: 0; }
  .recipe-card .ing .k { color: var(--muted); margin-top: 8px; }
}

/* === Quick-pick decision list === */
.quick-picks { list-style: none; padding: 0; margin: 24px 0; }
.quick-picks li {
  padding: 16px 22px;
  border-left: 3px solid var(--secondary);
  background: var(--bg-paper);
  margin-bottom: 12px;
  border-radius: 0 8px 8px 0;
  font-size: 16px;
}
.quick-picks li strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}

/* === Pull quote === */
.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.45;
  color: var(--ink);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 8px;
  margin: 32px 0;
  text-align: center;
}
.pull-quote::before { content: '\201C'; color: var(--accent); margin-right: 4px; }
.pull-quote::after  { content: '\201D'; color: var(--accent); margin-left: 4px; }

/* === Tool screenshot === */
.tool-screenshot {
  margin: 28px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--bg-paper);
}
.tool-screenshot img { display: block; width: 100%; }
.tool-screenshot figcaption {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  padding: 10px 14px;
  text-align: center;
}

/* === Byline === */
.byline {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 0;
  border-top: 1px dashed var(--rule);
  border-bottom: 1px dashed var(--rule);
  font-size: 14px;
  color: var(--muted);
  margin: 24px 0 30px;
  font-family: 'Inter', sans-serif;
  flex-wrap: wrap;
}
.byline > img.byline-avatar { display: block; }
.byline-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--accent-soft);
}
.byline strong { color: var(--ink); font-weight: 600; }
.byline .meta-line { display: flex; gap: 10px; flex-wrap: wrap; align-items: baseline; }
.byline .sep { color: var(--rule-strong); }

/* === Author tooltip (per layout-feedback rules) === */
.author-mention { position: relative; display: inline-block; }
.author-name {
  cursor: help;
  border-bottom: 1px dotted var(--accent);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  outline: none;
}
.author-name:hover, .author-name:focus { color: var(--accent); }
.author-card {
  position: absolute; left: 0; top: calc(100% + 6px); z-index: 30;
  width: 300px; max-width: calc(100vw - 32px);
  background: var(--bg-paper);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(62,45,36,.12);
  font-size: 13px; line-height: 1.55;
  color: var(--ink-soft);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events: none; white-space: normal;
}
.author-card strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }
.author-mention:hover .author-card,
.author-name:focus ~ .author-card,
.author-card:hover { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

/* === Author end-of-article block === */
.author-block {
  background: var(--bg-soft);
  padding: 28px;
  display: flex; gap: 22px; align-items: flex-start;
  margin: 40px 0;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}
.author-block img { width: 72px; height: 72px; border-radius: 50%; display: block; flex-shrink: 0; }
.author-block h3 { margin: 0 0 6px; font-size: 22px; color: var(--ink); font-style: italic; }
.author-block p { margin: 0 0 8px; font-size: 15px; color: var(--ink-soft); }
.author-block .role {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: var(--secondary);
  text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 600;
}
@media (max-width: 600px) { .author-block { flex-direction: column; } }

/* === FAQ === */
.faq-item { border-bottom: 1px solid var(--rule); padding: 18px 0; }
.faq-item summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  list-style: none;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
  font-style: italic;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 24px; line-height: 1; flex-shrink: 0; font-style: normal; font-family: 'Inter', sans-serif; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .answer { padding-top: 12px; }
.faq-item .answer p { color: var(--ink-soft); font-family: 'Inter', sans-serif; font-size: 16px; }

/* === Plain details (used inside reviews) === */
details { margin: 12px 0; padding: 14px 16px; background: var(--bg-paper); border: 1px solid var(--rule); border-radius: 8px; }
details summary {
  cursor: pointer;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details[open] { background: var(--bg-soft); }
details > p { margin-top: 8px; font-size: 16px; color: var(--ink-soft); }

/* === Footer === */
.site-footer {
  background: var(--ink);
  color: #C8B89E;
  padding: 48px 0 24px;
  margin-top: 48px;
}
.site-footer h4 {
  color: var(--bg);
  font-size: 12px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.site-footer a { color: #D9C7AC; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--bg); text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 28px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.disclosure {
  border-top: 1px solid #5C4A3F;
  padding-top: 18px;
  font-size: 13px;
  color: #999;
  line-height: 1.7;
}
.disclosure a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.disclosure a:hover { color: #fff; }

/* === Misc === */
.divider { border: none; border-top: 1px solid var(--rule); margin: 36px 0; }
.divider-leaf {
  text-align: center;
  margin: 36px 0;
  color: var(--secondary);
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: 0.4em;
}
.muted { color: var(--muted); font-size: 14px; }
.references { font-size: 14px; color: var(--muted); border-top: 1px solid var(--rule); padding-top: 14px; margin-top: 32px; }
.references a { color: var(--secondary); text-decoration: underline; }

.hero .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 28px;
}
.hero .stats > div { padding: 14px 18px; border-right: 1px solid var(--rule); }
.hero .stats > div:last-child { border-right: none; }
.hero .stats .label { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 4px; font-weight: 600; }
.hero .stats .value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
}
@media (max-width: 600px) {
  .hero .stats > div { border-right: none; border-bottom: 1px solid var(--rule); }
  .hero .stats > div:last-child { border-bottom: none; }
}

/* === Reviews dropdown === */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.72em;
  margin-left: 3px;
  opacity: 0.6;
  color: currentColor;
  transition: opacity .15s ease, color .15s ease;
}
.nav-dropdown:hover > .dropdown-trigger,
.nav-dropdown:focus-within > .dropdown-trigger,
.nav-dropdown > .dropdown-trigger:hover { color: var(--accent); }
.nav-dropdown:hover > .dropdown-trigger::after,
.nav-dropdown:focus-within > .dropdown-trigger::after { color: var(--accent); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-paper);
  border: 1px solid var(--rule-strong);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(62, 45, 36, .12);
  min-width: 270px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.nav-dropdown-menu a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-dropdown-menu .pick-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 2px 9px;
  border-radius: 999px;
  margin-left: 12px;
  letter-spacing: 0.01em;
}
@media (max-width: 760px) {
  .nav-dropdown { width: 100%; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.72em;
  margin-left: 3px;
  opacity: 0.6;
  color: currentColor;
  transition: opacity .15s ease, color .15s ease;
}
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 0 14px;
    min-width: 0;
    margin-top: 4px;
    border-left: 2px solid var(--rule-strong);
  }
  .nav-dropdown-menu a { padding: 6px 0; font-size: 13px; color: var(--ink-soft); }
  .nav-dropdown-menu a:hover { background: transparent; color: var(--accent); }
  .nav-dropdown-menu .pick-tag { font-size: 11px; padding: 1px 7px; }
}
