:root {
  --ink: #111214;
  --muted: #67686d;
  --paper: #f5f3ee;
  --card: #fff;
  --black: #0b0b0c;
  --gold: #c8a855;
  --gold-light: #ead99b;
  --line: #dedbd2;
  --shadow: 0 16px 45px rgba(12, 12, 13, .08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.5 Arial, Helvetica, sans-serif;
}
a { color: inherit; }
button, input, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 10px max(18px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: rgba(11, 11, 12, .96);
  border-bottom: 1px solid rgba(216, 184, 102, .28);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark {
  display: block;
  width: 88px;
  height: 42px;
  object-fit: contain;
}
.brand strong { display: block; color: var(--gold-light); letter-spacing: .18em; font-size: 15px; }
.brand small { display: block; color: #dedede; font-size: 11px; letter-spacing: .04em; }
.saved-link { color: var(--gold-light); font-size: 14px; text-decoration: none; }

main { max-width: 1160px; margin: auto; }
.hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  color: #fff;
  background: #19191b;
}
.hero img { position: absolute; width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,6,.9), rgba(5,5,6,.25) 65%, rgba(5,5,6,.08)); }
.hero-copy { position: absolute; left: clamp(22px, 6vw, 72px); bottom: 44px; max-width: 620px; }
.hero h1 { margin: 5px 0 10px; font: 600 clamp(40px, 7vw, 70px)/1.02 Georgia, serif; }
.hero-copy > p:last-child { max-width: 560px; margin: 0; color: #f0efec; font-size: clamp(17px, 2vw, 20px); }
.eyebrow { margin: 0; text-transform: uppercase; letter-spacing: .15em; font-size: 12px; font-weight: 700; }
.gold { color: #92731f; }

.finder { margin: -1px 28px 0; padding: 34px; background: var(--card); box-shadow: var(--shadow); }
.finder-heading, .results-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
h2 { margin: 4px 0 0; font: 600 clamp(27px, 4vw, 38px)/1.15 Georgia, serif; }
.clear-button { padding: 8px 0; color: var(--muted); background: transparent; border: 0; cursor: pointer; text-decoration: underline; }
.search-box { display: flex; align-items: center; gap: 10px; margin-top: 24px; padding: 0 16px; border: 1px solid var(--line); border-radius: 12px; background: #fbfaf7; }
.search-box span { color: #7b6b3d; font-size: 26px; }
.search-box input { width: 100%; padding: 15px 0; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.category-scroll { display: flex; gap: 10px; margin: 20px 0; overflow-x: auto; padding-bottom: 3px; scrollbar-width: thin; }
.chip { flex: 0 0 auto; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #323236; cursor: pointer; }
.chip.active { color: #15120a; background: var(--gold-light); border-color: var(--gold); font-weight: 700; }
.filter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.filter-row label span { display: block; margin: 0 0 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.filter-row select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: #fff; }

.notice { display: flex; gap: 15px; margin: 28px; padding: 18px 20px; border-left: 4px solid #b77818; background: #fff3d8; }
.notice-icon { display: grid; flex: 0 0 28px; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: #b77818; color: #fff; font-weight: 800; }
.notice p { margin: 3px 0 4px; color: #5f4b25; }
.notice a { color: #61460d; font-weight: 700; }

.results, .saved-section, .about { padding: 30px 28px 54px; }
.results-heading { margin-bottom: 22px; }
.results-heading p { margin: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.place-card { display: flex; min-height: 304px; flex-direction: column; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--card); transition: transform .18s ease, box-shadow .18s ease; }
.place-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card-topline { display: flex; align-items: center; justify-content: space-between; }
.category-label { color: #7a611e; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.save-button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: #5e5540; cursor: pointer; font-size: 21px; }
.save-button[aria-pressed="true"] { color: #fff; background: var(--black); border-color: var(--black); }
.place-card h3 { margin: 10px 0 2px; font: 600 24px/1.15 Georgia, serif; }
.location { margin: 0; color: var(--muted); font-size: 14px; }
.reason { margin: 16px 0; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.tag { padding: 5px 8px; border-radius: 6px; background: #f2efe6; color: #5d5338; font-size: 12px; }
.card-actions { display: flex; align-items: center; justify-content: space-between; margin-top: 19px; padding-top: 15px; border-top: 1px solid #ece9e1; }
.official-link { color: #6b5314; font-size: 14px; font-weight: 800; text-decoration: none; }
.map-link { color: var(--muted); font-size: 14px; }
.empty-state { padding: 50px 20px; text-align: center; border: 1px dashed var(--line); border-radius: 16px; }
.empty-state h3 { margin: 0; font: 600 25px Georgia, serif; }
.empty-state p { color: var(--muted); }

.saved-section { border-top: 1px solid var(--line); background: #eeebe3; scroll-margin-top: 80px; }
.saved-intro { max-width: 580px; color: var(--muted); }
.saved-empty { padding: 24px 0; color: var(--muted); }
.about { color: #f4f0e4; background: var(--black); }
.about h2 { max-width: 640px; color: var(--gold-light); }
.about > p:not(.eyebrow):not(.signature) { max-width: 760px; color: #d1d0cc; }
.signature { margin-top: 24px; color: var(--gold-light); font: 600 24px Georgia, serif; }
footer { max-width: 1160px; margin: auto; padding: 25px 28px 44px; color: var(--muted); font-size: 13px; }
footer p { margin: 5px 0; }

@media (max-width: 820px) {
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 570px) {
  .site-header { min-height: 64px; padding-inline: 14px; }
  .brand { gap: 8px; }
  .brand-mark { width: 68px; height: 34px; }
  .brand strong { font-size: 13px; }
  .brand small { font-size: 9px; }
  .saved-link { font-size: 12px; }
  .hero { min-height: 300px; }
  .hero-copy { left: 20px; right: 20px; bottom: 28px; }
  .hero h1 { font-size: 42px; }
  .finder { margin: 0; padding: 27px 18px; box-shadow: none; }
  .filter-row { grid-template-columns: 1fr; }
  .notice { margin: 18px; }
  .results, .saved-section, .about { padding: 26px 18px 44px; }
  .card-grid { grid-template-columns: 1fr; }
  .place-card { min-height: 275px; }
  .results-heading { align-items: start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .place-card { transition: none; }
}
