*, *::before, *::after { box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --soft: #ffffff;
  --ink: #1f1e1b;
  --muted: #6e6961;
  --line: #ded7cb;
  --terra: #b84b34;
  --ochre: #c68f2d;
  --green: #1f5a46;
  --shadow: 0 22px 70px rgba(31, 30, 27, 0.13);
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.login-page {
  min-height: 100vh;
  background: var(--ink);
}

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

a { color: inherit; }

h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  border-bottom: 1px solid rgba(222, 215, 203, 0.76);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 2rem, var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.2vw, 1.6rem);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible { color: var(--ink); }

.nav-group {
  position: relative;
}

.nav-group summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "+";
  color: var(--terra);
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-group[open] summary,
.nav-group summary:hover,
.nav-group summary:focus-visible {
  color: var(--ink);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  z-index: 12;
  min-width: 190px;
  padding: 0.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-menu a {
  display: block;
  padding: 0.75rem 0.8rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.is-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.82rem 1.05rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
}

main { overflow: hidden; }

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(2rem, 4vw, 4rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.hero__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--terra);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.8rem, 12vw, 10.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.88;
}

.hero__copy {
  max-width: 620px;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.hero__image-wrap {
  position: relative;
  align-self: stretch;
  min-height: 540px;
}

.hero__image {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero__caption {
  position: absolute;
  right: clamp(0.85rem, 2vw, 1.4rem);
  bottom: clamp(0.85rem, 2vw, 1.4rem);
  width: min(230px, calc(100% - 1.7rem));
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--paper);
  font-size: 0.72rem;
  line-height: 1.55;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  border-top: 1px solid var(--line);
}

.section--soft {
  position: relative;
  background: var(--paper);
}

.section--soft::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(1rem, calc((100vw - var(--max)) / 2));
  width: min(180px, 28vw);
  height: 3px;
  background: var(--terra);
}

.section--ink {
  background: var(--ink);
  color: var(--paper);
  border-top: 0;
}

.section--ink .eyebrow,
.section--ink .section__intro,
.section--ink .contact__meta { color: rgba(255, 255, 255, 0.7); }

.section__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(280px, 0.45fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
}

.section__intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.work {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(31, 30, 27, 0.05);
}

.work__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.work__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work__link:hover .work__image,
.work__link:focus-visible .work__image { transform: scale(1.025); }

.work__media {
  display: block;
  overflow: hidden;
  background: var(--soft);
}

.work__body {
  display: block;
  min-height: 154px;
  padding: 1.1rem;
}

.work__kicker,
.detail__meta,
.pager__label {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work h3 {
  margin-bottom: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 500;
  line-height: 1;
}

.work p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.55;
}

.statement {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(260px, 0.42fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.statement__copy {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.08;
}

.statement__side {
  padding-top: 0.6rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process__item {
  min-height: 250px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.process__num {
  color: var(--terra);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.process h3 {
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.process p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.65;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(280px, 0.3fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.contact h2 {
  max-width: 11ch;
  margin-bottom: 1.2rem;
}

.contact__meta {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
}

.contact__links {
  display: grid;
  gap: 0.8rem;
}

.contact__links a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact__links a::after {
  content: "+";
  font-size: 1.15rem;
  font-weight: 300;
}

.page-hero {
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}

.page-hero__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.page-hero h1 {
  max-width: 12ch;
  margin-bottom: 0;
}

.page-hero__copy {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.7;
}

.detail {
  padding: 0 0 clamp(4.5rem, 8vw, 7rem);
}

.detail__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.detail__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
}

.detail__side {
  position: sticky;
  top: 104px;
}

.detail__side h2 {
  max-width: 9ch;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.detail__side p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

.detail__facts {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail__facts li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.detail__facts strong {
  color: var(--ink);
  font-weight: 600;
}

.pager {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.pager a {
  min-height: 128px;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
}

.pager a:last-child { border-right: 0; }

.pager strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1;
}

.bio-layout {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(0, 0.6fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.bio-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--line);
}

.bio-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  font-weight: 300;
  line-height: 1.8;
}

.bio-copy p { margin-bottom: 1.25rem; }

.idea-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.idea-list article {
  min-height: 220px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: var(--paper);
}

.feature-link {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--paper);
}

.feature-link__media {
  min-height: 380px;
  background: var(--green);
  color: var(--paper);
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
}

.feature-link__media span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(5rem, 13vw, 10rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.82;
  text-align: center;
}

.feature-link__copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  align-self: center;
}

.feature-link__copy h2 {
  margin-bottom: 1rem;
}

.feature-link__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
}

.idea-list h3 {
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.idea-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.book-promo {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(280px, 0.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.book-promo__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.book-promo__copy h2 {
  margin-bottom: 1rem;
}

.book-promo__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  font-weight: 300;
  line-height: 1.75;
}

.book-hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.book-hero__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.book-hero h1 {
  max-width: 9ch;
  margin-bottom: 0.4rem;
}

.book-hero__dek {
  margin-bottom: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
}

.book-hero__intro {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 300;
  line-height: 1.75;
}

.book-hero__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.book-story {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.book-story--reverse {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
}

.book-story__side {
  position: sticky;
  top: 104px;
}

.book-story__side h2 {
  max-width: 9ch;
}

.book-story__text {
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.35;
}

.book-story__text p {
  margin-bottom: 1.35rem;
}

.book-themes {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.book-themes article {
  min-height: 270px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.book-themes h3 {
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.book-themes p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.book-quote {
  background: var(--green);
  color: var(--paper);
}

.book-quote__inner {
  width: min(100% - 2rem, var(--max));
  min-height: 48vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.book-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 9vw, 8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 0.95;
  text-align: center;
}

.chapters {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.chapter-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper);
}

.chapter-section__head {
  position: sticky;
  top: 104px;
  align-self: start;
}

.chapter-section__head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.chapter-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.chapter-list li {
  padding: clamp(1rem, 2.4vw, 1.5rem);
  background: var(--paper);
}

.chapter-list span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.chapter-list strong {
  display: block;
  margin-bottom: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 400;
  line-height: 1;
}

.chapter-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.print-intro {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(280px, 0.52fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.prints-hero {
  width: min(100% - 2rem, var(--max));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.prints-hero__copy h1 {
  margin-bottom: 1rem;
}

.prints-hero__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 300;
  line-height: 1.7;
}

.prints-hero__wall {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  grid-template-rows: 280px 220px;
  gap: clamp(0.7rem, 1.5vw, 1rem);
  align-items: stretch;
}

.prints-hero__wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.prints-hero__wall img:first-child {
  grid-row: 1 / 3;
}

.print-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: clamp(0.8rem, 1.6vw, 1rem);
}

.print-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.print-tile--large {
  grid-column: span 2;
  grid-row: span 2;
}

.print-tile--wide {
  grid-column: span 2;
}

.print-tile a,
.portfolio-piece {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.print-tile img,
.portfolio-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.print-tile:hover img,
.print-tile:focus-within img,
.portfolio-piece:hover img,
.portfolio-piece:focus-visible img {
  transform: scale(1.035);
}

.print-tile div,
.portfolio-piece span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.68));
}

.print-tile span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.print-tile strong,
.portfolio-piece strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.portfolio-hero {
  width: min(100% - 2rem, var(--max));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.portfolio-hero__text p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.7;
}

.portfolio-hero__image {
  min-height: 620px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.portfolio-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 320px;
  gap: clamp(0.8rem, 1.5vw, 1rem);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: clamp(1rem, 2vw, 1.4rem);
}

.portfolio-filter button {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.62rem 0.85rem;
  color: var(--muted);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-filter button.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.portfolio-filter span {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.78rem;
}

.portfolio-piece {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

.portfolio-piece--tall {
  grid-row: span 2;
  grid-column: span 2;
}

.portfolio-piece--wide {
  grid-column: span 2;
}

.portfolio-piece em {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-grid,
.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.collection-card,
.note-card,
.press-panel {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(31, 30, 27, 0.05);
}

.collection-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.collection-card--large,
.collection-card--wide {
  grid-column: span 2;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.collection-card span,
.note-card span {
  display: block;
  margin: clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.35rem) 0;
  color: var(--terra);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card h3,
.note-card h3 {
  margin: 0.45rem clamp(1rem, 2vw, 1.35rem) 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
}

.collection-card p,
.note-card p,
.press-panel p {
  margin: 0.75rem clamp(1rem, 2vw, 1.35rem) clamp(1rem, 2vw, 1.35rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.note-card {
  min-height: 300px;
  padding-bottom: clamp(1rem, 2vw, 1.35rem);
}

.note-card .text-link {
  margin-left: clamp(1rem, 2vw, 1.35rem);
}

.press-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(280px, 0.5fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.press-panel {
  padding: clamp(1rem, 2.5vw, 1.5rem);
}

.press-panel p {
  margin: 0 0 1.2rem;
}

.poetry-hero {
  width: min(100% - 2rem, var(--max));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.poetry-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.25;
}

.poetry-hero img {
  width: 100%;
  min-height: 560px;
  height: 72vh;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.substack-hero {
  width: min(100% - 2rem, var(--max));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.substack-hero h1 {
  max-width: 9ch;
}

.substack-hero__copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 300;
  line-height: 1.75;
}

.substack-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.poetry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.poem-card {
  min-height: 360px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.poem-card--featured {
  grid-column: span 2;
  min-height: 460px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.9)),
    url("./WilliamArt/228B2840-AE9E-484F-B461-DC0D01D27ECF.jpeg") center / cover;
}

.poem-card h3 {
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 0.95;
}

.poem-lines {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.35;
}

.poem-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.print-intro__copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  font-weight: 300;
  line-height: 1.8;
}

.store-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(300px, 0.32fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.store-card {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(31, 30, 27, 0.05);
}

.store-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.store-card__body {
  display: grid;
  gap: 0.8rem;
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.store-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.store-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

.store-card label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.store-card select,
.cart-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.cart-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: clamp(1rem, 2.5vw, 1.35rem);
  box-shadow: var(--shadow);
}

.cart-panel__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  align-items: center;
}

.cart-panel__head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.cart-panel h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

#cart-count {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--terra);
  font-weight: 600;
}

.cart-items {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.cart-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: start;
  padding: 0.75rem;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-items small {
  display: block;
  margin-top: 0.2rem;
}

.cart-items strong {
  color: var(--ink);
}

.cart-items button {
  grid-column: 1 / -1;
  justify-self: start;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  padding: 0;
  color: var(--terra);
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.cart-total span {
  color: var(--muted);
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.print-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.print-card a {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 0.58fr);
  min-height: 260px;
  color: inherit;
  text-decoration: none;
}

.print-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--soft);
}

.print-card div {
  padding: clamp(1.15rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.print-card h3 {
  margin-bottom: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1;
}

.print-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.print-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.print-options article {
  min-height: 240px;
  padding: clamp(1.1rem, 2.6vw, 1.75rem);
  background: var(--paper);
}

.print-options h3,
.archive-card h3 {
  margin-bottom: 0.75rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
}

.print-options p,
.archive-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

.archive-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.archive-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.archive-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.archive-card div {
  padding: 1rem;
}

.status-pill {
  display: inline-flex;
  margin: 0 0.35rem 0.75rem 0;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  color: var(--terra);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-layout {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.enquiry-form,
.enquiry-output {
  display: grid;
  gap: 1rem;
}

.enquiry-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.enquiry-output textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.enquiry-form textarea,
.enquiry-output textarea {
  resize: vertical;
  line-height: 1.6;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus,
.enquiry-output textarea:focus {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
}

.site-footer {
  padding: 1.35rem 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.login-panel {
  width: min(100%, 520px);
  padding: clamp(2rem, 6vw, 4rem);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.login-panel h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(4rem, 14vw, 7rem);
}

.login-panel__intro {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.65;
}

.login-form {
  display: grid;
  gap: 0.9rem;
}

.login-form label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.login-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  font: inherit;
}

.login-form input:focus {
  outline: 2px solid var(--terra);
  outline-offset: 2px;
}

.login-error {
  margin: 0;
  color: var(--terra);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .hero__inner,
  .section__head,
  .statement,
  .contact,
  .page-hero__inner,
  .detail__inner,
  .bio-layout,
  .press-layout {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }

  .hero__image-wrap,
  .hero__image { min-height: 420px; }

  .works-grid,
  .process,
  .idea-list,
  .book-themes,
  .print-options,
  .archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .book-promo,
  .feature-link,
  .book-hero__inner,
  .prints-hero,
  .portfolio-hero,
  .poetry-hero,
  .substack-hero,
  .store-layout,
  .book-story,
  .book-story--reverse,
  .print-intro,
  .enquiry-layout,
  .chapter-section {
    grid-template-columns: 1fr;
  }

  .book-story__side,
  .chapter-section__head {
    position: static;
  }

  .detail__side {
    position: static;
  }

  .pager {
    grid-template-columns: 1fr;
  }

  .pager a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pager a:last-child { border-bottom: 0; }

  .print-grid {
    grid-template-columns: 1fr;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-panel {
    position: static;
  }

  .print-showcase,
  .portfolio-grid,
  .poetry-grid,
  .collection-grid,
  .notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 260px;
  }

  .print-tile--large,
  .print-tile--wide,
  .portfolio-piece--tall,
  .portfolio-piece--wide,
  .poem-card--featured,
  .collection-card--large,
  .collection-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .collection-grid,
  .notes-grid {
    grid-auto-rows: auto;
  }

  .portfolio-hero__image,
  .portfolio-hero__image img {
    min-height: 440px;
  }

  .poetry-hero img {
    min-height: 420px;
    height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
  }

  .nav {
    position: relative;
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem 0 0.75rem;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 44px rgba(31, 30, 27, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open .nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav__links a,
  .nav__links .button,
  .nav-group summary {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
    padding: 0.9rem 1rem;
    background: transparent;
    color: var(--ink);
  }

  .nav-group {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu {
    position: static;
    min-width: 0;
    padding: 0 0 0.55rem 0;
    border: 0;
    box-shadow: none;
    transform: none;
    background: transparent;
  }

  .nav-menu a {
    padding: 0.72rem 1rem 0.72rem 2rem;
    color: var(--muted);
  }

  .button {
    min-height: 40px;
    padding: 0.72rem 0.86rem;
    font-size: 0.7rem;
  }

  h1 { font-size: clamp(4.1rem, 22vw, 6rem); }

  .hero__image-wrap,
  .hero__image { min-height: 360px; }

  .works-grid,
  .process,
  .idea-list,
  .book-themes,
  .print-options,
  .archive-grid { grid-template-columns: 1fr; }

  .work__body { min-height: auto; }

  .process__item { min-height: 210px; }

  .site-footer__inner { flex-direction: column; }

  .print-card a {
    grid-template-columns: 1fr;
  }

  .print-card img {
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .prints-hero__wall,
  .print-showcase,
  .portfolio-grid,
  .store-grid,
  .poetry-grid,
  .collection-grid,
  .notes-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .poetry-grid,
  .collection-grid,
  .notes-grid {
    grid-auto-rows: auto;
  }

  .portfolio-filter span {
    width: 100%;
    margin-left: 0;
  }

  .prints-hero__wall {
    grid-template-rows: none;
  }

  .prints-hero__wall img:first-child {
    grid-row: auto;
  }
}
