    :root {
      --ink:        #1c1410;
      --ink-mid:    #4a3f35;
      --ink-light:  #8a7a6e;
      --paper:      #f7f3ee;
      --paper-warm: #ede8e0;
      --terra:      #c0613a;
      --terra-pale: #f0ddd5;
      --rule:       rgba(28,20,16,.12);
      --serif:      'Cormorant Garamond', Georgia, serif;
      --sans:       'DM Sans', system-ui, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; width: 100%; object-fit: cover; }

    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(1.5rem, 5vw, 4rem);
      height: 64px;
      background: var(--ink);
    }

    .nav-logo {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 300;
      letter-spacing: .12em;
      color: var(--paper);
      text-transform: uppercase;
    }

    .nav-logo span { color: var(--terra); }

    .nav-back {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(247,243,238,.55);
      display: flex;
      align-items: center;
      gap: .5rem;
      transition: color .2s;
    }

    .nav-back::before { content: '←'; }
    .nav-back:hover { color: var(--paper); }

    .listing-hero {
      padding-top: 64px;
      position: relative;
      height: 70vh;
      min-height: 420px;
      overflow: hidden;
    }

    .listing-hero img { height: 100%; filter: sepia(.08) contrast(1.02); }

    .listing-hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 30%, rgba(28,20,16,.7) 100%);
    }

    .listing-hero-credit {
      position: absolute;
      bottom: .85rem;
      right: 1rem;
      z-index: 2;
      font-size: .62rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: rgba(247,243,238,.55);
      background: rgba(28,20,16,.35);
      backdrop-filter: blur(2px);
      padding: .25rem .55rem;
      border-radius: 2px;
    }

    .listing-hero-credit a {
      color: rgba(247,243,238,.75);
      text-decoration: none;
      border-bottom: 1px solid rgba(247,243,238,.25);
    }

    .listing-hero-credit a:hover { color: var(--paper); }

    .listing-hero-next {
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: .55rem;
      padding: .55rem .9rem;
      background: rgba(28,20,16,.45);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(247,243,238,.18);
      border-radius: 100px;
      color: var(--paper);
      font-family: var(--sans);
      font-size: .72rem;
      letter-spacing: .08em;
      cursor: pointer;
      transition: background .2s, transform .15s;
    }

    .listing-hero-next:hover  { background: rgba(28,20,16,.65); }
    .listing-hero-next:active { transform: translateY(-50%) scale(.96); }
    .listing-hero-next .arrow { font-size: 1rem; line-height: 1; }

    .listing-hero-meta {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem);
      display: flex;
      flex-direction: column;
      gap: .75rem;
    }

    .listing-type-badge {
      display: inline-flex;
      align-items: center;
      font-size: .68rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--paper);
      background: var(--terra);
      padding: .3rem .75rem;
      border-radius: 2px;
      width: fit-content;
    }

    .listing-type-badge--café { background: #3a6b5a; }
    .listing-type-badge--bar  { background: #3a4f6b; }
    .listing-type-badge--shop { background: #6b4f3a; }
    .listing-type-badge--institution { background: #4a4a4a; }

    .listing-hero-name {
      font-family: var(--serif);
      font-size: clamp(2.8rem, 7vw, 6rem);
      font-weight: 300;
      line-height: 1;
      color: var(--paper);
    }

    .listing-hero-neighbourhood {
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(247,243,238,.6);
    }

    .listing-body {
      max-width: 1200px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 5rem;
      align-items: start;
    }

    .listing-why-label {
      font-size: .68rem;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: .75rem;
    }

    .listing-why-label::before {
      content: '';
      display: block;
      width: 2rem;
      height: 1px;
      background: var(--terra);
    }

    .listing-why {
      font-family: var(--serif);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      font-weight: 300;
      line-height: 1.5;
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--rule);
    }

    .listing-why p + p { margin-top: 1em; }

    .listing-body-text {
      font-size: .95rem;
      line-height: 1.85;
      color: var(--ink-mid);
    }

    .listing-body-text p + p { margin-top: 1.25rem; }

    .listing-sidebar {
      position: sticky;
      top: 88px;
    }

    .sidebar-block {
      background: var(--paper-warm);
      padding: 2rem;
      margin-bottom: 2px;
    }

    .sidebar-label {
      font-size: .63rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: .75rem;
    }

    .sidebar-value {
      font-size: .9rem;
      color: var(--ink);
      line-height: 1.6;
    }

    .sidebar-value a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }

    .sidebar-note {
      font-size: .72rem;
      font-style: italic;
      line-height: 1.45;
      color: var(--ink-light);
      margin-top: .65rem;
    }

    /* Inline brand icons in the Links sidebar */
    .sidebar-value a svg {
      width: 1em;
      height: 1em;
      fill: currentColor;
      vertical-align: -.18em;
      margin-right: .5em;
    }

    .tag-list { display: flex; flex-wrap: wrap; gap: .4rem; }

    .tag {
      font-size: .65rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      padding: .3rem .65rem;
      border: 1px solid var(--rule);
      border-radius: 2px;
      color: var(--ink-mid);
    }

    .sidebar-map { width: 100%; height: 200px; border: none; display: block; }

    /* "Read more" press/articles block */
    .sidebar-press { margin: 0; padding: 0; list-style: none; }
    .sidebar-press li + li { margin-top: .85rem; }
    .sidebar-press .source {
      display: block;
      font-size: .6rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: .2rem;
    }
    .sidebar-press a {
      display: block;
      font-size: .82rem;
      line-height: 1.45;
      color: var(--terra);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .related {
      background: var(--paper-warm);
      padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 2.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--rule);
    }

    .section-label {
      font-family: var(--serif);
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 300;
    }

    .section-label em { font-style: italic; color: var(--ink-mid); }

    .section-link {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--terra);
      display: flex;
      align-items: center;
      gap: .5rem;
    }

    .section-link::after { content: '→'; }

    .related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .rel-card {
      background: var(--paper);
      padding: 1.75rem;
      cursor: pointer;
      border-top: 2px solid transparent;
      transition: border-color .2s;
    }

    .rel-card:hover { border-top-color: var(--terra); }

    .rel-type {
      font-size: .62rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--terra);
      margin-bottom: .5rem;
    }

    .rel-name {
      font-family: var(--serif);
      font-size: 1.3rem;
      font-weight: 400;
      margin-bottom: .5rem;
    }

    .rel-why { font-size: .82rem; color: var(--ink-mid); line-height: 1.6; }

    .loading-page {
      min-height: 60vh;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--ink-light);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .listing-hero-meta > *:nth-child(1) { animation: fadeUp .6s .1s ease both; }
    .listing-hero-meta > *:nth-child(2) { animation: fadeUp .6s .2s ease both; }
    .listing-hero-meta > *:nth-child(3) { animation: fadeUp .6s .3s ease both; }

    @media (max-width: 900px) {
      .listing-body { grid-template-columns: 1fr; gap: 3rem; }
      .listing-sidebar { position: static; }
      .related-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .related-grid { grid-template-columns: 1fr; }
    }
