:root {
  color-scheme: dark;
  --bg: #121416;
  --ink: #f2f2f0;
  --muted: #9aa3ad;
  --line: rgba(242,242,240,0.14);
  --accent: #e8a05c;
  --accent-soft: rgba(232,160,92,0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(1000px 500px at 85% -5%, var(--accent-soft), transparent 55%),
    url("data:image/svg+xml,%3Csvg viewBox=%270 0 200 200%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cfilter id=%27n%27%3E%3CfeTurbulence type=%27fractalNoise%27 baseFrequency=%270.85%27 numOctaves=%274%27 stitchTiles=%27stitch%27/%3E%3C/filter%3E%3Crect width=%27100%25%27 height=%27100%25%27 filter=%27url(%23n)%27 opacity=%270.11%27/%3E%3C/svg%3E");
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(980px, calc(100% - 2.5rem)); margin: 0 auto; }
header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line);
}
.mark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 650; text-decoration: none;
}
.mark-dot {
  width: 0.7rem; height: 0.7rem; border-radius: 999px;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
nav { display: flex; gap: 1.25rem; font-size: 0.92rem; color: var(--muted); }
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }
.hero {
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: center;
}
@media (max-width: 840px) {
  .hero { grid-template-columns: 1fr; }
  header { gap: 0.75rem; flex-wrap: wrap; }
  nav.desktop {
    display: flex;
    gap: 0.85rem;
    font-size: 0.82rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
.eyebrow {
  display: inline-flex; width: fit-content;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
h1 {
  margin: 0.85rem 0 0.75rem;
  font-size: clamp(2.2rem, 6vw, 3.3rem);
  line-height: 1.05; font-weight: 650; letter-spacing: -0.03em;
}
h1 em { font-style: normal; color: var(--accent); }
.lede { margin: 0; font-size: 1.08rem; color: var(--muted); max-width: 34rem; }
.actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.1rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.7rem 1.1rem; border-radius: 0.65rem; text-decoration: none;
  font-weight: 600; font-size: 0.95rem; border: 1px solid transparent;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #1a1208; }
.btn-ghost { border-color: var(--line); background: rgba(255,255,255,0.02); }
.art-frame {
  border: 1.5px solid rgba(242,242,240,0.35);
  padding: 0.45rem;
  background: rgba(0,0,0,0.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.art-frame img {
  display: block; width: 100%; height: auto;
  filter: contrast(1.05) brightness(1.02);
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0.5rem 0 3.5rem;
}
@media (max-width: 840px) { .gallery { grid-template-columns: 1fr; } }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.card:hover { border-color: rgba(232,160,92,0.45); transform: translateY(-2px); }
.card .shot {
  border-bottom: 1px solid var(--line);
  background: #0a0b0c;
}
.card .shot img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.card .body { padding: 1.1rem 1.15rem 1.25rem; }
.card .num { font-size: 0.75rem; color: var(--accent); letter-spacing: 0.08em; font-weight: 650; margin-bottom: 0.45rem; }
.card h2 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.story {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 3.5rem;
  display: grid; gap: 0.85rem; max-width: 38rem;
}
.story h2 { margin: 0; font-size: 1.35rem; letter-spacing: -0.02em; }
.story p { margin: 0; color: var(--muted); }
footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--muted); font-size: 0.88rem;
}
.page-hero { padding: 2.75rem 0 1.5rem; max-width: 40rem; }
.page-hero h1 { margin-top: 0.7rem; }
.prose {
  display: grid;
  gap: 1rem;
  max-width: 40rem;
  padding: 0 0 2rem;
  color: var(--muted);
}
.prose h2 {
  margin: 1rem 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.prose p { margin: 0; }
.prose .callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 0.95rem 1rem;
  background: rgba(255,255,255,0.02);
  color: var(--ink);
}
.pager {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 1.25rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}
.pager a { text-decoration: none; }
.pager a:hover { color: var(--accent); }
.figure-wide { margin: 0 0 2rem; }

.art-caption {
  margin: 0;
  padding: 0.55rem 0.35rem 0.15rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.art-link { color: inherit; text-decoration: none; display: block; }
.art-link:hover .art-frame { border-color: rgba(232,160,92,0.45); }
.art-link:hover .art-caption { color: var(--accent); }


/* Keyboard focus */
a:focus-visible,
.btn:focus-visible,
.card:focus-visible,
.art-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .art-link, .art-frame, .art-caption {
    transition: none !important;
  }
  .btn:hover, a.card:hover { transform: none; }
}


/* Maintenance page (was inline in maintenance template) */
.maint {
  min-height: calc(100vh - 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0 4rem;
  max-width: 36rem;
}
.maint h1 {
  margin: 0.85rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.03em;
}
.maint .lede {
  margin: 0;
  font-size: 1.08rem;
  color: var(--muted);
}
.maint .actions { margin-top: 1.35rem; }
footer.maint-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.25rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

a.eyebrow { text-decoration: none; color: inherit; }
a.eyebrow:hover { opacity: 0.85; color: inherit; }
