:root {
  --bg: #f3eee6;
  --fg: #1f1a17;
  --muted: #6f675e;
  --accent: #6e342c;
  --line: #d4cbbd;
  --paper: #faf6ef;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Source Serif 4", Georgia, serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; background: var(--bg); color: var(--fg); }
body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  line-height: 1.7;
  display: flex;
  flex-direction: column;
}
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; text-wrap: balance; }
p { text-wrap: pretty; }
button:not(:disabled), [role="button"]:not(:disabled) { cursor: pointer; }
.shell { display: flex; flex-direction: column; min-height: 100dvh; }
.header { border-bottom: 1px solid var(--line); }
.header-inner, .footer-inner, .main {
  width: 100%;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.main { flex: 1; padding-top: 3rem; padding-bottom: 4rem; }
.main.wide, .header.wide .header-inner, .footer.wide .footer-inner { max-width: 56rem; }
.logo {
  font-family: var(--display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
}
.nav { display: none; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.nav a {
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.nav a.on, .nav a:hover { color: var(--accent); }
.menu-btn {
  background: none;
  border: 0;
  color: var(--fg);
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  line-height: 1;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding: 0.4rem 1.25rem 0.8rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 0;
}
.footer { border-top: 1px solid var(--line); margin-top: auto; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem; }
.kicker {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
h1.page {
  font-size: clamp(2rem, 6vw, 2.8rem);
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
  line-height: 1.15;
}
.subtitle {
  font-style: italic;
  color: var(--muted);
  font-size: 1.15rem;
  margin: -1.1rem 0 2.2rem;
  min-height: 1.6em;
}
.home-name {
  font-family: var(--display);
  font-size: clamp(3rem, 12vw, 6.5rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 12vh 0 1rem;
  line-height: 0.95;
}
.line { font-style: italic; color: var(--muted); font-size: 1.2rem; }
.notice { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.notice:last-child { border-bottom: 0; }
.notice-name {
  font-family: var(--display);
  font-size: 1.35rem;
  text-decoration: none;
}
.stars { color: var(--accent); letter-spacing: 0.12em; margin: 0.35rem 0 0.7rem; }
.filings { white-space: pre-wrap; }
.back {
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.award { border: 1px solid var(--line); padding: 2rem 1.5rem; }
.empty { color: var(--muted); font-style: italic; }
.work { display: grid; gap: 2rem; }
.side a {
  display: inline-block;
  margin: 0 1rem 0.4rem 0;
  font-family: var(--display);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.35;
}
.side a.on { color: var(--accent); }
.when {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.35rem;
}
.sec { font-family: var(--display); color: var(--accent); font-size: 0.9rem; margin: 0 0 0.5rem; }
.piece { padding: 1.75rem 0; border-bottom: 1px solid var(--line); }
.piece:first-child { padding-top: 0; }
.piece:last-child { border-bottom: 0; }
.piece h2 { margin: 0.4rem 0 0.6rem; font-size: 1.5rem; }
.piece img, .sight img { max-width: 100%; max-height: 70vh; height: auto; display: block; }
form label {
  display: block;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 1rem 0 0.4rem;
}
form input, form textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--fg);
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
}
form textarea { min-height: 10rem; resize: vertical; }
form button {
  margin-top: 1.25rem;
  background: transparent;
  border: 1px solid var(--fg);
  font-family: var(--display);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.8rem 1.2rem;
  color: var(--fg);
}
@media (min-width: 700px) {
  .nav { display: flex; }
  .menu-btn { display: none; }
  .nav-mobile { display: none !important; }
}
@media (min-width: 900px) {
  .work { grid-template-columns: 13rem 1fr; align-items: start; gap: 3rem; }
  .side { position: sticky; top: 1.25rem; }
  .side a { display: block; margin: 0 0 0.55rem; }
}
