:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --surface: #ffffff;
  --text: #1e1a16;
  --muted: #61605c;
  --border: #ded5cddb;
  --accent: #1a1918;
  --radius: 28px;
  --max-width: 1100px;
  --spacing: 1.75rem;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
button, .button {
  border: 1px solid transparent;
  cursor: pointer;
}
.page-shell {
  min-height: 100vh;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem 0;
}
.brand a {
  font-weight: 700;
  letter-spacing: -.02em;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}
.site-nav a {
  color: var(--muted);
}
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--surface);
  padding: 0.75rem 1rem;
  z-index: 20;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
.hero-landing,
.section-intro,
.content-page,
.work-detail {
  width: min(1200px, 100% - 2rem);
  margin: 0 auto;
}
.hero-landing {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0 4rem;
}
.hero-copy {
  max-width: 620px;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
}
.hero-copy h1,
.section-header h1,
.work-meta h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero-text,
.section-header p,
.content-body p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.03rem;
}
.hero-actions {
  margin-top: 2.5rem;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  background: var(--text);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}
.button-primary.button-small {
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  min-width: auto;
}
.hero-visual {
  border-radius: 32px;
  overflow: hidden;
  background: #eae5de;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-intro {
  padding: 2rem 0 3rem;
}
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
}
.filter-button {
  background: var(--surface);
  color: var(--text);
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 160ms ease, border-color 160ms ease;
}
.filter-button.active,
.filter-button:hover {
  background: #1e1a16;
  color: #fff;
  border-color: transparent;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  padding-bottom: 3rem;
}
.gallery-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
}
.gallery-link {
  display: grid;
}
.gallery-figure {
  min-height: 320px;
  background: #efebe5;
}
.gallery-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-figure img {
  transform: scale(1.02);
}
.gallery-caption {
  padding: 1.3rem;
}
.gallery-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.gallery-meta {
  color: var(--muted);
  font-size: 0.95rem;
}
.work-detail {
  padding: 2rem 0 4rem;
}
.work-hero {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 36px;
  overflow: hidden;
  background: var(--bg);
  max-height: 90vh;
}
.work-hero img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  display: block;
  object-fit: contain;
}
.image-credit {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.image-watermark {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  opacity: 0.2;
  color: #fff;
  padding: 0.25rem 0.65rem;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.work-meta {
  display: grid;
  gap: 2rem;
}
.work-summary {
  display: grid;
  gap: 2rem;
}
.work-summary ul {
  list-style: disc inside;
  margin: 0;
  padding: 0 0 0 1.25rem;
}
.work-summary ul li {
  margin: 0.85rem 0;
}
.work-description p + p {
  margin-top: 1rem;
}
.format-entry {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.format-entry span {
  color: var(--text);
  font-weight: 600;
}
.format-link {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}
.format-link:hover,
.format-link:focus {
  color: #2f2c28;
}
.button-primary.button-small {
  padding: 0.7rem 1.2rem;
  font-size: 0.95rem;
}
.work-summary h2 {
  margin: 0 0 0.75rem;
  font-family: var(--accentFont);
  letter-spacing: -0.04em;
}
.work-summary p {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}
.price-table table {
  width: auto;
  border-collapse: collapse;
  margin-top: 0.75rem;
  table-layout: auto;
}
.price-table th,
.price-table td {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  text-align: left;
  white-space: nowrap;
}
.price-table th {
  background: #f2ede5;
  font-weight: 600;
}
.price-table tbody tr:nth-child(odd) {
  background: rgba(31, 26, 22, 0.03);
}
.work-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 1.5rem;
}
.nav-link {
  color: var(--text);
  font-weight: 600;
}
.progress-indicator {
  color: var(--muted);
}
.work-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.text-link {
  color: var(--muted);
}
.content-page {
  padding: 2rem 0 4rem;
}
.content-body {
  max-width: 820px;
  color: var(--muted);
}
.content-body p {
  margin: 1.5rem 0;
}
.site-footer {
  padding: 2rem 2rem 4rem;
  color: var(--muted);
  font-size: 0.95rem;
}
@media (max-width: 900px) {
  .hero-landing {
    grid-template-columns: 1fr;
    padding-top: 1rem;
  }
  .hero-copy h1 {
    font-size: clamp(2.3rem, 8vw, 3.4rem);
  }
}
@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav {
    width: 100%;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-caption {
    padding: 1rem;
  }
  .work-navigation {
    flex-direction: column;
    align-items: flex-start;
  }
}
