:root {
  --cream: #f4ecd8;
  --cream-warm: #ede2c6;
  --ink: #1a1612;
  --ink-soft: #4a3f34;
  --brick: #b4522d;
  --brick-dark: #8a3d1e;
  --stone: #cfc4a8;
  --stone-dark: #9a8f75;
  --measure: 62ch;
  --gutter: clamp(1rem, 4vw, 2rem);
}

* { box-sizing: border-box; }

html { font-size: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brick-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brick); }
a:focus-visible {
  outline: 3px solid var(--brick);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3 { font-weight: 600; letter-spacing: -0.005em; line-height: 1.15; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h3 { font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); }

.skip {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}
.skip:focus {
  position: static; width: auto; height: auto;
  background: var(--ink); color: var(--cream); padding: 0.5rem 1rem;
}

.cornice {
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem var(--gutter);
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
}
.cornice a { color: var(--cream); text-decoration: none; }
.cornice a:hover { color: var(--stone); text-decoration: underline; }
.cornice .brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; letter-spacing: 0.04em; }
.cornice .brand img, .cornice .brand svg { width: 28px; height: 28px; }
.cornice .brand .name { text-transform: uppercase; }
.cornice nav { margin-left: auto; display: flex; gap: 1.25rem; align-items: center; }
.cornice .lang { border-left: 1px solid var(--stone-dark); padding-left: 1rem; }

.visit-band {
  background: var(--brick);
  color: var(--cream);
  padding: 0.6rem var(--gutter);
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.25rem; align-items: center;
}
.visit-band .dot { color: #cfe8bf; }
.visit-band a { color: var(--cream); font-weight: 600; }

main { max-width: 1100px; margin: 0 auto; padding: var(--gutter); }
main.narrow { max-width: var(--measure); }

.hook {
  font-family: Georgia, serif; font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 1rem auto 2rem;
  max-width: var(--measure);
  text-align: center;
}

.facade-frame {
  margin: 1.5rem auto 2rem;
  max-width: 900px;
}
.facade-frame svg { width: 100%; height: auto; display: block; }
.facade-caption {
  text-align: center;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
}

.room-list-mobile {
  list-style: none;
  padding: 0; margin: 0 0 2rem;
  border-top: 1px solid var(--stone);
}
.room-list-mobile li { border-bottom: 1px solid var(--stone); }
.room-list-mobile a {
  display: block; padding: 0.85rem 0.25rem;
  text-decoration: none; color: var(--ink);
  font-family: system-ui, sans-serif; font-size: 1rem;
}
.room-list-mobile a::after { content: " ›"; color: var(--brick-dark); }
.room-list-mobile a:hover { background: var(--cream-warm); }

@media (min-width: 720px) {
  .room-list-mobile { display: none; }
}
@media (max-width: 719px) {
  .facade-frame { display: none; }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 800px) {
  .two-col { grid-template-columns: 3fr 2fr; }
}

.card {
  background: var(--cream-warm);
  border: 1px solid var(--stone);
  padding: 1rem 1.25rem;
  border-radius: 3px;
}

.stub {
  border: 1px dashed var(--stone-dark);
  background: repeating-linear-gradient(
    45deg, transparent, transparent 8px,
    rgba(154, 143, 117, 0.08) 8px, rgba(154, 143, 117, 0.08) 16px
  );
  padding: 1.5rem;
  text-align: center;
  color: var(--ink-soft);
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  border-radius: 3px;
}

.wayfinding {
  display: flex; justify-content: space-between;
  margin-top: 3rem; padding-top: 1rem;
  border-top: 1px solid var(--stone);
  font-family: system-ui, sans-serif;
}
.wayfinding a { text-decoration: none; }
.wayfinding .prev::before { content: "‹ "; }
.wayfinding .next::after { content: " ›"; }

.base {
  background: var(--stone);
  color: var(--ink);
  padding: 2rem var(--gutter);
  margin-top: 3rem;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
}
.base a { color: var(--brick-dark); }
.base .row { max-width: 1100px; margin: 0 auto; }
.base .cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.base .cta a {
  display: inline-block; padding: 0.5rem 1rem;
  background: var(--brick); color: var(--cream);
  text-decoration: none; border-radius: 3px; font-weight: 600;
}
.base .cta a:hover { background: var(--brick-dark); }
.base ul { list-style: none; padding: 0; margin: 0.5rem 0; display: flex; flex-wrap: wrap; gap: 0.25rem 1rem; }
.base .fine { color: var(--ink-soft); font-size: 0.85rem; margin-top: 1rem; border-top: 1px solid var(--stone-dark); padding-top: 0.75rem; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
</content>
</invoke>