/* For You Best — Neo-Brutal Editorial */
:root {
  --cream: #f5f0e6;
  --milk: #faf7f0;
  --ink: #0a0a0a;
  --acid: #ffd40a;
  --line: 3px solid var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --serif: "Libre Baskerville", "Times New Roman", Georgia, serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  background-image:
    radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 18px 18px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--ink); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { background: var(--acid); }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 .5em;
}
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Marquee */
.ticker {
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.ticker-track {
  display: inline-block;
  padding: .55rem 0;
  animation: marquee 38s linear infinite;
}
.ticker-track span { margin-right: 2.5rem; }
.ticker-track span::before { content: "■ "; color: var(--acid); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Masthead / TOC nav */
.masthead {
  border-bottom: var(--line);
  background: var(--milk);
}
.masthead-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
  padding: 1.1rem 0 1rem;
}
.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.brand:hover { background: transparent; }
.brand-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  object-fit: cover;
  background: #fff;
}
.brand-mark {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: .95;
  display: block;
}
.brand-issue {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: .4rem;
  display: block;
}
.menu-btn {
  display: none;
  border: var(--line);
  background: var(--acid);
  box-shadow: var(--shadow);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: .55rem .85rem;
  cursor: pointer;
  border-radius: 0;
}
.toc-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  justify-content: flex-end;
  max-width: 28rem;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.toc-nav a {
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: .15rem 0;
}
.toc-nav a:hover,
.toc-nav a[aria-current="page"] {
  border-bottom-color: var(--ink);
  background: var(--acid);
}

/* Stamp badge */
.stamp {
  display: inline-block;
  border: 2px solid var(--ink);
  padding: .25rem .55rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  transform: rotate(-2deg);
  background: var(--acid);
  box-shadow: 3px 3px 0 var(--ink);
}
.stamp.invert {
  background: var(--ink);
  color: var(--acid);
  transform: rotate(2deg);
}

/* Buttons */
.btn {
  display: inline-block;
  border: var(--line);
  background: var(--acid);
  color: var(--ink);
  box-shadow: var(--shadow);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .7rem 1.1rem;
  text-decoration: none;
  border-radius: 0;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--acid);
}
.btn.ghost {
  background: var(--milk);
}

/* Panels */
.panel {
  border: var(--line);
  background: var(--milk);
  box-shadow: var(--shadow);
}
.panel-pad { padding: 1.25rem 1.35rem; }

/* Homepage asymmetric composition */
.issue-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1.25rem;
  padding: 1.5rem 0 2rem;
  align-items: start;
}
.lead-block {
  border: var(--line);
  background: var(--ink);
  color: var(--cream);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.lead-block h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  color: var(--cream);
  margin-bottom: .6rem;
}
.lead-block .deck {
  font-size: 1rem;
  max-width: 36ch;
  color: #ddd8cc;
}
.lead-block .stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.side-rail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}
.side-rail .panel { transform: rotate(.4deg); }
.toc-box h2 {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .4rem;
  margin-bottom: .75rem;
}
.toc-box ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}
.toc-box li {
  counter-increment: toc;
  display: flex;
  gap: .5rem;
  border-bottom: 1px dashed rgba(0,0,0,.35);
  padding: .45rem 0;
  font-size: 13px;
}
.toc-box li::before {
  content: counter(toc, decimal-leading-zero);
  font-weight: 600;
  min-width: 1.6rem;
}
.shortlist {
  background: var(--acid);
  border: var(--line);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.25rem;
  transform: rotate(-1deg);
}
.shortlist h2 {
  font-size: 1.35rem;
  margin-bottom: .4rem;
}
.shortlist p { font-size: 13px; margin-bottom: .85rem; }

/* Hotel index — broken dense grid */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  border-top: var(--line);
  border-bottom: var(--line);
  padding: .85rem 0;
  margin: 0 0 1.25rem;
}
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0; }
.section-head .meta { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.hotel-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding-bottom: 2.5rem;
}
.hotel-card {
  border: var(--line);
  background: var(--milk);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .15s ease;
}
.hotel-card:hover { transform: translate(-2px, -2px); }
.hotel-card figure {
  margin: 0;
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.hotel-card figure.media-triptych {
  aspect-ratio: auto;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--ink);
  min-height: 240px;
}
.hotel-card figure.media-triptych img:first-child {
  grid-row: 1 / span 2;
  min-height: 240px;
}
.hotel-card figure.media-triptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.15);
}
.hotel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.12);
}
.hotel-card .body { padding: .9rem 1rem 1.1rem; flex: 1; }
.hotel-card .num {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.hotel-card h3 { font-size: 1.15rem; margin-bottom: .35rem; }
.hotel-card .place { font-size: 12px; margin-bottom: .55rem; opacity: .85; }
.hotel-card .blurb { font-size: 13px; margin: 0; }
.hotel-card .tags { margin-top: .75rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.tag {
  border: 2px solid var(--ink);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .15rem .4rem;
  background: var(--cream);
}
.tag.eve { background: var(--acid); font-weight: 700; }

.hotel-card:nth-child(1) { grid-column: span 7; }
.hotel-card:nth-child(2) { grid-column: span 5; margin-top: 1.5rem; }
.hotel-card:nth-child(3) { grid-column: span 4; }
.hotel-card:nth-child(4) { grid-column: span 4; margin-top: -.5rem; }
.hotel-card:nth-child(5) { grid-column: span 4; margin-top: 1rem; }
.hotel-card:nth-child(6) { grid-column: span 5; }
.hotel-card:nth-child(7) { grid-column: span 7; margin-top: .75rem; }
.hotel-card:nth-child(8) { grid-column: span 6; }
.hotel-card:nth-child(9) { grid-column: span 6; margin-top: 1.25rem; }
.hotel-card:nth-child(10) { grid-column: span 5; }
.hotel-card:nth-child(11) { grid-column: span 7; margin-top: -.75rem; }

/* Phrase strip */
.phrase-strip {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--cream);
  padding: 1.25rem 0;
  margin-bottom: 2rem;
}
.phrase-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem 1.25rem;
}
.phrase-strip strong {
  font-family: var(--serif);
  font-size: 1.05rem;
  display: block;
  color: var(--acid);
}
.phrase-strip span { font-size: 12px; opacity: .8; }

/* Inner pages */
.page-hero {
  padding: 1.75rem 0 1.25rem;
  border-bottom: var(--line);
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 1.5rem;
  align-items: end;
}
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin: 0; }
.page-hero .lede { max-width: 42ch; }
.page-hero .aside-stamp { justify-self: end; align-self: start; }

.prose {
  max-width: 68ch;
  margin-bottom: 2.5rem;
}
.prose h2 {
  font-size: 1.55rem;
  margin-top: 1.75rem;
  border-left: 6px solid var(--acid);
  padding-left: .65rem;
}
.prose h3 { font-size: 1.15rem; margin-top: 1.25rem; }
.prose.wide { max-width: none; }

.columns-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}
.columns-2 .panel { align-self: start; }
.columns-2 .panel:nth-child(even) { margin-top: 1.5rem; }

.legal {
  max-width: 72ch;
  padding: 1.5rem 0 3rem;
}
.legal h1 { font-size: 2.4rem; }
.legal h2 {
  font-size: 1.35rem;
  margin-top: 1.75rem;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .35rem;
}
.legal h3 { font-size: 1.05rem; margin-top: 1.1rem; }
.legal .updated { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.contact-grid .panel-pad label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .35rem;
}
.contact-grid input,
.contact-grid textarea {
  width: 100%;
  border: 2px solid var(--ink);
  background: var(--cream);
  font-family: var(--mono);
  font-size: 14px;
  padding: .65rem .75rem;
  margin-bottom: .85rem;
  border-radius: 0;
}
.contact-grid textarea { min-height: 140px; resize: vertical; }

/* Disclaimer strip */
.disclaimer {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--acid);
  padding: 1rem 0;
  font-size: 12px;
  line-height: 1.5;
}
.disclaimer strong { text-transform: uppercase; letter-spacing: .06em; }

/* Footer */
.site-footer {
  border-top: var(--line);
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 0 1.25rem;
  margin-top: 0;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { background: var(--acid); color: var(--ink); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-grid h3 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--acid);
  margin-bottom: .65rem;
}
.footer-grid nav { display: flex; flex-direction: column; gap: .35rem; font-size: 13px; }
.legal-line {
  border-top: 1px solid rgba(245,240,230,.25);
  padding-top: 1rem;
  font-size: 11px;
  opacity: .75;
}
.registry { font-size: 12px; line-height: 1.6; }

/* Motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .btn, .hotel-card { transition: none; }
}

/* Responsive */
@media (max-width: 900px) {
  .issue-grid,
  .page-hero,
  .columns-2,
  .contact-grid,
  .footer-grid,
  .phrase-strip .wrap {
    grid-template-columns: 1fr;
  }
  .side-rail { margin-top: 0; }
  .hotel-card:nth-child(n) {
    grid-column: span 12;
    margin-top: 0;
  }
  .masthead-inner { grid-template-columns: 1fr auto; align-items: center; }
  .menu-btn { display: inline-block; }
  .toc-nav {
    display: none;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 100%;
    z-index: 40;
    background: var(--milk);
    border: var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    max-width: none;
    padding: .75rem 1rem;
    justify-content: flex-start;
  }
  .toc-nav.open { display: flex; }
  .masthead { position: relative; }
  .lead-block .stamp { position: static; margin-bottom: .75rem; }
}
