
:root {
  --bg: #f6f3ed;
  --paper: #fffdf8;
  --ink: #111111;
  --muted: #6f6b64;
  --line: #d8d1c6;
  --accent: #e34a32;
  --max: 1360px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 237, 0.94);
  backdrop-filter: blur(12px);
}
.brand {
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand span { color: var(--muted); font-weight: 400; }
.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.language-switch {
  display: flex;
  gap: 4px;
  border: 1px solid var(--line);
  padding: 3px;
}
.language-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  padding: 5px 7px;
  letter-spacing: 0.06em;
}
.language-switch button.active {
  background: var(--ink);
  color: var(--bg);
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 84px 28px;
  border-bottom: 1px solid var(--line);
}
.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  min-height: calc(100vh - 64px);
  align-items: center;
}
.kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  margin: 0 0 24px;
}
h1, h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(48px, 8vw, 112px); letter-spacing: -0.055em; }
h2 { font-size: clamp(32px, 5vw, 72px); letter-spacing: -0.04em; }
.lead {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.25;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  border: 1px solid var(--ink);
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.button:hover { background: var(--ink); color: var(--bg); text-decoration: none; }
.button-secondary { border-color: var(--line); color: var(--muted); }
.hero-image { margin: 0; }
.hero-image img {
  width: 100%;
  display: block;
  max-height: 76vh;
  object-fit: contain;
}
.hero-image figcaption { margin-top: 10px; color: var(--muted); font-size: 13px; }
.text-section {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 56px;
}
.section-heading p {
  margin-top: 18px;
  max-width: 560px;
  color: var(--muted);
}
.section-heading.wide {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 36px;
}
.section-heading.wide p { margin: 0; }
.rich-text {
  max-width: 860px;
  font-size: 19px;
  line-height: 1.68;
  white-space: pre-line;
}
.news-list article,
.exhibition-list p {
  border-top: 1px solid var(--line);
  padding: 20px 0;
  margin: 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
}
.news-list time { color: var(--muted); }
.news-list p { margin: 0; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px 26px;
}
.work-card { margin: 0; }
.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.work-card img {
  width: 100%;
  display: block;
  background: #e9e5dc;
  transition: opacity 160ms ease;
}
.image-button:hover img { opacity: 0.82; }
.work-card figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}
.work-card figcaption span { display: block; }
.work-title {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 2px;
}
.work-status {
  margin-top: 6px;
  color: var(--ink);
}
.available-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.contact-card {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  font-size: 20px;
}
.contact-card span { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.07em; }
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px 28px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
}
.site-footer p { margin: 0; }
.legal-note { grid-column: 1 / -1; max-width: 700px; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(17,17,17,0.94);
  color: #f6f3ed;
  display: grid;
  place-items: center;
  padding: 32px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 92vw;
  max-height: 84vh;
  display: block;
}
.lightbox p {
  margin: 16px 0 0;
  color: #d9d3c9;
  font-size: 14px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: #f6f3ed;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; gap: 12px; }
  .site-nav { grid-column: 1 / -1; justify-content: flex-start; flex-wrap: wrap; gap: 12px 16px; }
  .hero { grid-template-columns: 1fr; min-height: auto; gap: 36px; }
  .text-section { grid-template-columns: 1fr; gap: 28px; }
  .section-heading.wide { display: block; }
  .section-heading.wide p { margin-top: 18px; }
}
@media (max-width: 620px) {
  .site-header { padding: 14px 18px; }
  .section { padding: 56px 18px; }
  .work-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; font-size: 18px; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 18px; }
  .news-list article, .exhibition-list p { grid-template-columns: 1fr; gap: 6px; }
}
