:root {
  --ink: #171615;
  --graphite: #4d4944;
  --muted: #77716a;
  --paper: #f7f4ee;
  --panel: #fffdf8;
  --wash: #ebe6dc;
  --line: #d8d1c5;
  --accent: #8b6b4c;
  --accent-dark: #493626;
  --shadow: 0 28px 80px rgba(23, 22, 21, 0.12);
  --fixed-footer-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: var(--fixed-footer-height);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 253, 248, 0.95), rgba(255, 253, 248, 0) 28rem),
    linear-gradient(180deg, var(--paper), #efebe2 58%, var(--paper));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo-brand {
  display: block;
  width: min(54vw, 330px);
}

.logo-brand img {
  width: 100%;
}

.nav,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nav {
  justify-content: flex-end;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding: 8px 2px;
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 3px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: #fffdf8;
}

.button.secondary.dark {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.artist-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  min-height: auto;
  padding: clamp(38px, 5.8vw, 72px) clamp(18px, 5vw, 72px);
}

.artist-hero > *,
.works-grid > *,
.info-panel > *,
.contact-strip > *,
figcaption > * {
  min-width: 0;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.artist-hero h1,
.section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.artist-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.88;
}

.subtitle {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--graphite);
  font-size: clamp(1.08rem, 1.9vw, 1.42rem);
  font-weight: 800;
}

.artist-statement {
  max-width: 680px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
}

.hero-piece {
  margin: 0;
}

.hero-piece a {
  display: block;
  padding: clamp(12px, 2vw, 22px);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-piece img {
  width: 100%;
  max-height: min(68vh, 760px);
  object-fit: contain;
  background: #f2eee7;
}

figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  color: var(--graphite);
  font-size: 0.92rem;
}

figcaption span {
  font-weight: 900;
}

figcaption em {
  color: var(--muted);
  font-style: normal;
}

.section {
  padding: clamp(40px, 6vw, 74px) clamp(18px, 5vw, 72px);
}

.works-section {
  background: rgba(255, 253, 248, 0.74);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 26px;
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.info-copy p,
.info-list p {
  color: var(--muted);
  font-size: 1.02rem;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}

.collection-stack {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
}

.collection-block {
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid var(--line);
}

.collection-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.collection-heading h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.collection-heading p {
  margin: 0;
  color: var(--muted);
}

.work-card {
  grid-column: span 4;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(23, 22, 21, 0.08);
}

.featured-work {
  grid-column: span 7;
}

.collection-block:first-child .works-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
}

.collection-block:first-child .featured-work {
  grid-column: 1;
}

.collection-block:first-child .work-image img {
  max-height: 680px;
}

.work-image {
  display: block;
  padding: clamp(10px, 1.6vw, 16px);
  background: var(--wash);
}

.work-image img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  margin: 0 auto;
}

.work-meta {
  padding: 14px 16px 18px;
}

.work-meta p {
  margin: 0 0 9px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-meta h3,
.info-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.work-meta h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.08;
}

.work-meta span {
  display: block;
  margin-top: 9px;
  color: var(--graphite);
  font-size: 0.94rem;
  font-weight: 750;
}

.info-section {
  background: var(--paper);
}

.info-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.info-copy {
  max-width: 780px;
}

.info-list {
  display: grid;
  gap: 14px;
}

.info-list article {
  padding: 20px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
}

.info-list h3 {
  color: var(--ink);
  font-size: 1.45rem;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(24px, 4vw, 42px);
  padding: 18px;
  background: var(--ink);
  color: #fffdf8;
}

.contact-strip p {
  margin: 0;
  font-weight: 850;
}

.contact-strip a {
  color: #f3d8b5;
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  min-height: var(--fixed-footer-height);
  display: flex;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 72px);
  background: #171615;
  color: rgba(255, 253, 248, 0.72);
  box-shadow: 0 -12px 32px rgba(23, 22, 21, 0.14);
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .artist-hero,
  .info-panel {
    grid-template-columns: 1fr;
  }

  .artist-hero {
    min-height: auto;
  }

  .work-card,
  .featured-work {
    grid-column: span 6;
  }

  .collection-heading,
  .collection-block:first-child .works-grid {
    grid-template-columns: 1fr;
  }

  .collection-block:first-child .featured-work {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .artist-hero h1 {
    font-size: clamp(3.25rem, 18vw, 5.2rem);
  }

  .work-card,
  .featured-work {
    grid-column: 1 / -1;
  }

  figcaption,
  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}
