:root {
  --ink: #1c2321;
  --ink-soft: #4a544f;
  --muted: #7b837e;
  --paper: #f7f5ef;
  --paper-2: #fffdf8;
  --line: #e4e0d5;
  --accent: #2f5d54;      /* deep pine-teal */
  --accent-ink: #234b43;
  --sand: #ded3bb;
  --radius: 6px;
  --wrap: 1120px;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.65; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 760px; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.08; letter-spacing: -0.01em; margin: 0 0 .4em; }
h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.35rem, 2.6vw, 1.7rem); line-height: 1.2; margin: 2.4rem 0 1rem; }
.lede { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.eyebrow, .kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .13em; color: var(--accent); font-weight: 700; }
.kicker { color: var(--muted); }

/* masthead */
.masthead { background: rgba(247,245,239,.9); backdrop-filter: saturate(1.2) blur(8px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.masthead-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.mark { color: var(--accent); }
.nav { display: flex; gap: 1.6rem; }
.nav a { color: var(--ink-soft); font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.nav a:hover { color: var(--accent); text-decoration: none; }
@media (max-width: 640px) { .nav { gap: 1rem; } .nav a { font-size: .72rem; letter-spacing: .05em; } .brand span { display: none; } }

/* hero */
.hero { border-bottom: 1px solid var(--line); background:
  radial-gradient(120% 100% at 100% 0%, rgba(47,93,84,.10), transparent 55%),
  radial-gradient(90% 90% at 0% 20%, rgba(222,211,187,.5), transparent 60%); }
.hero-in { padding: 5rem 24px 4rem; }
.hero h1 { max-width: 16ch; }
.hero .lede { margin-top: .2rem; }
.hero-links { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.8rem; }
.hero-links a { border: 1px solid var(--line); background: var(--paper-2); border-radius: 999px; padding: .5rem 1.05rem; font-size: .9rem; font-weight: 600; color: var(--ink); }
.hero-links a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* blocks */
.block { padding: 3.2rem 0; border-bottom: 1px solid var(--line); }
.block:last-child { border-bottom: 0; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.block-head h2, .block h2 { margin-top: 0; }
.more { font-weight: 600; font-size: .92rem; white-space: nowrap; }

/* grid + cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.6rem; }
.card { display: flex; flex-direction: column; color: var(--ink); }
.card:hover { text-decoration: none; }
.card-media { display: block; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); aspect-ratio: 3 / 2; background: var(--sand); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.04); }
.card-text { display: flex; flex-direction: column; gap: .3rem; padding: .85rem .1rem 0; }
.card-title { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; line-height: 1.2; }
.card:hover .card-title { color: var(--accent); }
.card-summary { color: var(--ink-soft); font-size: .95rem; }

/* chips */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: .45rem 1rem; font-size: .9rem; color: var(--ink); }
.chip:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* guide list on home */
.guide-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.guide-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem .2rem; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.guide-row:hover { color: var(--accent); text-decoration: none; }
.guide-row .arrow { color: var(--accent); }

/* page head + crumbs */
.page-head { padding: 2.4rem 0 1.4rem; max-width: 62ch; }
.crumbs { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .8rem; color: var(--muted); padding: 1.4rem 0 0; }
.crumbs a::after { content: " ›"; color: var(--muted); }
.crumbs a { color: var(--muted); }

/* place page */
.lede-img { margin: 0; width: 100%; max-height: 460px; overflow: hidden; background: var(--sand); border-bottom: 1px solid var(--line); }
.lede-img img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; }
.credit { font-size: .72rem; color: var(--muted); text-align: right; padding: .4rem 24px; }
.place { padding-bottom: 3rem; }
.place > .eyebrow { color: var(--muted); }
.ticks, .info { list-style: none; padding-left: 0; margin: .6rem 0; }
.ticks li, .info li { padding-left: 1.4rem; position: relative; margin: .45rem 0; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .62em; width: .55rem; height: .55rem; border: 2px solid var(--accent); border-radius: 50%; }
.info li::before { content: ""; position: absolute; left: .12rem; top: .55em; width: .35rem; height: .35rem; background: var(--muted); border-radius: 50%; }
.cta { display: inline-block; background: var(--accent); color: #fff; padding: .8rem 1.4rem; border-radius: 999px; font-weight: 600; }
.cta:hover { background: var(--accent-ink); text-decoration: none; }
.stays { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; margin: 1.8rem 0; }
.stays-lead { margin: 0 0 .7rem; font-weight: 700; font-family: var(--serif); font-size: 1.15rem; }
.notice { background: #fbf3e3; border: 1px solid #e7d3a6; border-radius: var(--radius); padding: .7rem 1rem; font-size: .9rem; color: #6b5626; }
.related { margin-top: 2.6rem; }

/* access badges + checked date */
.badge { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .03em; padding: .18rem .55rem; border-radius: 999px; border: 1px solid transparent; }
.badge-ok { background: #e7f0ea; color: #1f5c46; border-color: #bcd8c8; }
.badge-warn { background: #fbf1e0; color: #7a5a20; border-color: #e8d3a8; }
.card-text .badge { align-self: flex-start; margin-top: .1rem; }
.meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; margin: .2rem 0 1rem; }
.checked { font-size: .8rem; color: var(--muted); }
.checked::before { content: "✓ "; color: var(--accent); font-weight: 700; }

/* guide / roundup ranks */
.ranks { display: flex; flex-direction: column; gap: 2.2rem; margin: 2rem 0 3rem; }
.rank { display: grid; grid-template-columns: 2.4rem 200px 1fr; gap: 1.2rem; align-items: start; }
.rank-num { font-family: var(--serif); font-size: 1.7rem; color: var(--accent); line-height: 1; padding-top: .2rem; }
.rank-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 3/2; background: var(--sand); }
.rank-media img { width: 100%; height: 100%; object-fit: cover; }
.rank-body h2 { margin: .25rem 0 .4rem; font-size: 1.4rem; }
.rank-body p { margin: .3rem 0; color: var(--ink-soft); }
.ranks-nonum .rank { grid-template-columns: 200px 1fr; }
@media (max-width: 620px) { .rank { grid-template-columns: 1.8rem 1fr; } .ranks-nonum .rank { grid-template-columns: 1fr; } .rank-media { display: none; } }

/* footer */
.site-footer { margin-top: 2rem; padding: 3rem 0; border-top: 1px solid var(--line); background: var(--paper-2); color: var(--muted); font-size: .9rem; }
.foot-brand { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin: 0 0 .3rem; }
.site-footer p { margin: .2rem 0; }
.site-footer .small { max-width: 60ch; margin-top: .8rem; }
