:root {
  --lime: #f3ebe1;
  --ink: #1c2430;
  --city: #2c3d55;
  --copper: #b56a3e;
  --stone: #3d4a3a;
  --muted: #5c645c;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Sora, system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--lime);
}
a { color: inherit; }
h1, h2, h3 { font-family: Newsreader, serif; font-weight: 650; line-height: 1.12; }

.lift {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--city);
  padding: 10px 8px;
}
.lift a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  text-decoration: none;
  color: #e8dfd2;
  font-weight: 800;
  font-size: 13px;
}
.lift a.on { background: var(--copper); color: #fff; }
.lang { display: flex; flex-direction: column; margin-top: 8px; }
.lang button {
  border: 0; background: transparent; color: #e8dfd2;
  padding: 6px; cursor: pointer; font: inherit; font-size: 10px; font-weight: 800;
}
.lang button.active { background: #fff; color: var(--city); }

.storey {
  min-height: 100vh;
  padding: 72px 72px 72px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kicker, .lvl {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 14px;
}
.street { background: var(--city); color: #f3ebe1; }
.street .kicker { color: #e8b48a; }
.street h1 { font-family: Sora, sans-serif; font-size: clamp(48px, 10vw, 96px); letter-spacing: 0.08em; }
.street em { font-style: normal; color: var(--copper); }
.lead { max-width: 54ch; font-size: 18px; color: #d9d2c6; margin: 16px 0 20px; }
.plaque a { color: #e8b48a; }
.dir {
  list-style: none;
  margin: 28px 0 0;
  max-width: 58ch;
  display: grid;
  gap: 8px;
}
.dir li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 180, 138, 0.25);
  color: #d9d2c6;
  font-size: 15px;
}
.enter {
  margin-top: 28px;
  align-self: flex-start;
  background: var(--copper);
  color: #fff;
  text-decoration: none;
  padding: 14px 20px;
  font-weight: 700;
}

.g { background: var(--lime); }
.g h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; max-width: 20ch; }
.bays { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.bays li { background: #fffaf4; padding: 18px; border-top: 4px solid var(--copper); color: var(--muted); }

.c { background: #efe6d8; }
.brief { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 32px; align-items: start; }
.brief h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.brief p { color: var(--muted); }
.brief aside {
  background: var(--city);
  color: #f3ebe1;
  padding: 24px;
  margin-top: 40px;
}
.chamber-list {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 4px;
}
.chamber-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(28, 36, 48, 0.12);
  color: var(--muted);
}

.s { background: #e7ddd0; }
.s h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 24px; }
.windows { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.windows article {
  padding: 24px 20px;
  border: 1px solid rgba(28,36,48,0.15);
  background: #fffaf4;
  min-height: 280px;
}
.windows article p:first-child { font-family: Newsreader, serif; font-size: 28px; color: var(--copper); }
.windows h3 { font-size: 22px; margin: 8px 0 10px; }
.windows p { color: var(--muted); }

.b { background: var(--stone); color: #f3ebe1; }
.b .lvl { color: #d4b08a; }
.b h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; max-width: 22ch; }
.b p { max-width: 60ch; color: #c5ceba; }
.walk {
  margin-top: 28px;
  max-width: 64ch;
  padding-left: 22px;
  display: grid;
  gap: 12px;
  color: #e8dfd2;
}

.roof { background: var(--lime); }
.roof h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; max-width: 22ch; }
.rules {
  list-style: none;
  margin: 0 0 28px;
  max-width: 54ch;
  display: grid;
  gap: 4px;
}
.rules li {
  padding: 10px 0;
  border-bottom: 1px solid #d8cfc4;
  color: var(--muted);
}
address { font-style: normal; margin-bottom: 24px; }
address p { margin: 4px 0; }
address a { color: var(--copper); }
form { display: grid; gap: 12px; max-width: 640px; }
@media (min-width: 700px) {
  form { grid-template-columns: 1fr 1fr; }
  .wide, form button, .note { grid-column: 1 / -1; }
}
label { display: grid; gap: 4px; font-size: 12px; font-weight: 700; }
input, textarea {
  font: inherit; padding: 10px;
  border: 1px solid #d8cfc4;
  background: #fffaf4;
}
button[type="submit"] {
  justify-self: start;
  background: var(--city); color: #fff; border: 0;
  padding: 12px 18px; font: inherit; font-weight: 700; cursor: pointer;
}
.note { font-size: 13px; color: var(--muted); }
.copy { margin-top: 32px; color: var(--muted); font-size: 13px; }

@media (max-width: 800px) {
  .lift { right: 8px; padding: 8px 6px; }
  .storey { padding: 80px 16px 64px; }
  .bays, .brief, .windows { grid-template-columns: 1fr; }
}
