
:root {
  --paper: #F6F5F1;
  --ink: #16150F;
  --stone: #8A8579;
  --hairline: #E3E0D8;
  --border: #D8D5CC;
  --faint: #B4B0A6;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--paper); color: var(--ink); font-family: 'Inter', -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: 620px; margin: 0 auto; padding: 0 24px 96px; }
.eyebrow { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--stone); }
.hairline { height: 1px; width: 100%; background: var(--hairline); }

nav { display: flex; justify-content: center; gap: 28px; padding: 28px 24px 0; flex-wrap: wrap; }
nav a { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone);
        padding-bottom: 4px; border-bottom: 1px solid transparent; transition: color .2s ease, border-color .2s ease; }
nav a:hover { color: var(--ink); }
nav a.on { color: var(--ink); border-bottom-color: var(--ink); }

header.masthead { padding: 56px 0 40px; text-align: center; }
.masthead h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(38px, 7vw, 56px); line-height: 1.05; }
.masthead h1 em { font-style: italic; }
.masthead .dek { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(17px, 3vw, 20px);
                 margin: 16px auto 0; max-width: 440px; line-height: 1.45; }
.masthead .issue { margin-top: 18px; }

.city { margin-bottom: 64px; }
.city-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.city-name { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(32px, 6vw, 42px); }
.city-name em { font-style: italic; }
.city-area { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone); text-align: right; }
.city-intro { font-size: 13px; line-height: 1.75; margin-top: 14px; max-width: 480px; }
.city-why { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; line-height: 1.45;
            margin-top: 16px; padding-left: 16px; border-left: 1px solid var(--border); }
.picks { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.pick-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 12px; }
.pick-name { font-size: 14px; font-weight: 500; }
.pick-name a { border-bottom: 1px solid var(--border); transition: border-color .2s ease; }
.pick-name a:hover { border-bottom-color: var(--ink); }
.pick-area { font-size: 11px; color: var(--stone); }
.pick-note { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 17px; line-height: 1.4; margin-top: 4px; }
.knowbox { margin-top: 28px; }
.knowbox p { font-size: 12.5px; line-height: 1.75; margin-top: 8px; }

.entry { padding: 26px 0; border-top: 1px solid var(--hairline); }
.entry:first-of-type { border-top: none; }
.entry-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.entry-city { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--stone); }
.entry-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; margin-top: 6px; }
.entry-name a { border-bottom: 1px solid var(--border); transition: border-color .2s ease; }
.entry-name a:hover { border-bottom-color: var(--ink); }
.entry-meta { font-size: 11px; color: var(--stone); margin-top: 4px; }
.entry-note { font-size: 13px; line-height: 1.75; margin-top: 10px; max-width: 480px; }

.cta { text-align: center; margin-top: 8px; }
.btn { display: inline-block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; padding: 12px 32px;
       background: transparent; color: var(--ink); border: 1px solid var(--ink); cursor: pointer; transition: all .2s ease;
       font-family: 'Inter', sans-serif; }
.btn:hover { background: var(--ink); color: var(--paper); }
footer { padding: 48px 24px 40px; text-align: center; }
footer p { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); }
.fadein { animation: fi .9s ease both; }
@keyframes fi { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .fadein { animation: none; } }
@media print { nav, footer, .btn, .cta { display: none !important; } body { background: #fff; }
  .wrap { max-width: 100%; padding: 0; } .city, .entry { page-break-inside: avoid; }
  .masthead { padding-top: 0; } .pick-name a, .entry-name a { border-bottom: none; } .fadein { animation: none; } }
