:root {
  --ink: #111;
  --muted: #6b665e;
  --line: #ddd6c8;
  --paper: #f6f1e8;
  --white: #fbf8f3;
  --gold: #9a7b4f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Outfit, system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.serif { font-family: "Cormorant Garamond", Georgia, serif; }
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251,248,243,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.brand small {
  display: block;
  font-family: Outfit, sans-serif;
  font-size: 9px;
  letter-spacing: 0.36em;
  color: var(--muted);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 26px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.burger { display: none; background: none; border: 0; font-size: 22px; }

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
  color: #f6f1e8;
}
.hero-copy {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(46px, 6vw, 84px);
  line-height: 0.92;
  margin: 16px 0 20px;
}
.hero p { max-width: 440px; color: #cfc6b6; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.hero-visual { position: relative; min-height: 520px; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute; left: 20px; bottom: 16px;
  font-size: 11px; letter-spacing: .12em; color: #eee;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid currentColor;
}
.btn-solid { background: #f6f1e8; color: #111; border-color: #f6f1e8; }
.btn-ghost { color: inherit; }
.btn-line { border-color: var(--ink); }

.page-head {
  padding: 64px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}
.page-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 68px);
  line-height: .95;
  margin-top: 10px;
}
.page-head p { max-width: 520px; color: var(--muted); margin-top: 14px; line-height: 1.7; }

section.block { padding: 88px 0; }
.section-head { margin-bottom: 36px; }
.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
}

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.chip {
  border: 1px solid var(--line);
  background: transparent;
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
}
.chip.active, .chip:hover { border-color: var(--ink); color: var(--ink); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--paper); cursor: pointer; }
.card-img {
  aspect-ratio: 4/5;
  background: #ece6db;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card-img img { transform: scale(1.03); }
.ph { text-align: center; color: var(--muted); padding: 18px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.ph small { display: block; margin-top: 8px; text-transform: none; letter-spacing: 0; }
.card-meta { padding: 16px 14px 18px; }
.card-meta h3 { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 500; }
.card-meta p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.price { margin-top: 10px; font-size: 13px; letter-spacing: .08em; color: var(--ink); }

.artist-index { display: grid; gap: 0; }
.artist-row {
  display: grid;
  grid-template-columns: 1.4fr .6fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.artist-row:last-child { border-bottom: 1px solid var(--line); }
.artist-row h2 { font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 400; }
.artist-row:hover h2 { color: var(--gold); }
.artist-row span { color: var(--muted); font-size: 14px; }

.artist-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; }
.artist-layout p { line-height: 1.8; color: #3d3933; margin-top: 16px; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.mini-grid img, .mini-grid .ph { width: 100%; height: 240px; object-fit: cover; background: #ece6db; }

.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.room {
  min-height: 340px;
  background: #161616;
  color: #f6f1e8;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.room img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.room h3 { position: relative; font-family: "Cormorant Garamond", serif; font-size: 34px; font-weight: 400; }
.room p { position: relative; color: #ddd4c4; margin-top: 8px; font-size: 14px; line-height: 1.55; }

.news-list { display: grid; gap: 0; }
.news-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item h3 { font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 400; }
.news-item p { color: var(--muted); margin-top: 8px; line-height: 1.7; }

.fair-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 8px 0 40px;
}
.fair-card + .fair-card { border-top: 1px solid var(--line); padding-top: 40px; }
.fair-card h2 { font-family: "Cormorant Garamond", serif; font-size: 36px; font-weight: 400; }
.fair-card p { color: #3d3933; line-height: 1.75; margin-top: 12px; }
.meta-list { margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.9; }

.two { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.two p { line-height: 1.8; color: #3d3933; margin-top: 16px; }

form { display: grid; gap: 12px; }
input, textarea, select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 300;
  outline: none;
}
textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 12px; color: var(--muted); }

footer.site {
  border-top: 1px solid var(--line);
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: .06em;
}

.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,.92);
  display: none; align-items: center; justify-content: center;
  z-index: 80; padding: 24px;
}
.lightbox.open { display: flex; }
.lb-card { width: min(980px, 100%); display: grid; grid-template-columns: 1.1fr .9fr; background: var(--white); }
.lb-img { background: #111; display: grid; place-items: center; min-height: 420px; }
.lb-img img { width: 100%; height: 76vh; object-fit: contain; }
.lb-copy { padding: 32px; overflow: auto; }
.lb-copy h3 { font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 500; }
.lb-copy .meta { color: var(--muted); margin: 8px 0 16px; line-height: 1.55; font-size: 14px; }
.lb-copy .ask { font-family: "Cormorant Garamond", serif; font-size: 22px; margin: 12px 0 20px; }
.close { position: absolute; top: 16px; right: 20px; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 74px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px 22px;
    border-bottom: 1px solid var(--line);
  }
  .burger { display: block; }
  .hero, .artist-layout, .fair-card, .two, .rooms, .grid, .lb-card, .news-item { grid-template-columns: 1fr; }
  .hero-copy { padding: 44px 24px; }
  .artist-row { grid-template-columns: 1fr; gap: 4px; }
  .lb-img img { height: 42vh; }
}
