:root {
  color-scheme: light;
  --paper: #f2f0e9;
  --ink: #1f4548;
  --accent: #d98fa8;
  --muted: #6e7975;
  --line: rgba(31, 69, 72, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 3.2vw;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: clamp(1.35rem, 2.25vw, 2.35rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

nav {
  display: flex;
  gap: clamp(1.25rem, 2.6vw, 2.8rem);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

nav a {
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a:focus-visible,
nav a.active {
  border-color: currentColor;
}

main {
  width: 100%;
}

.home-page {
  overflow-x: hidden;
}

.home-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 50%;
  border-bottom: 0;
  background: transparent;
}

.home-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.home-hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 1fr 1fr;
}

.home-copy {
  display: flex;
  align-items: center;
  padding: 7rem 4vw 3rem;
}

.home-copy h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: clamp(4.6rem, 7vw, 7.2rem);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.home-copy h1 span:last-child {
  color: var(--accent);
}

.home-art {
  position: relative;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.home-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-art figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: block;
  padding: 0.35rem 0.65rem;
  background: rgba(242, 240, 233, 0.9);
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: 0.76rem;
  font-style: italic;
  letter-spacing: 0;
}

.work-index {
  width: min(82vw, 1120px);
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 7rem) 0 clamp(8rem, 12vw, 12rem);
}

.work-index-heading {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.work-index-heading h1 {
  margin: 0;
  color: var(--accent);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: start;
}

.series-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
}

.series-card h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.3rem, 1.8vw, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

.series-card-image {
  display: block;
  width: 100%;
}

.series-card-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 62vh;
  margin: 0 auto;
  transition: opacity 180ms ease;
}

.series-card-image:hover img,
.series-card-image:focus-visible img {
  opacity: 0.88;
}

.series-explore {
  display: inline-flex;
  align-self: center;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.series-explore .icon {
  display: inline-flex;
  flex-shrink: 0;
}

.series-explore .icon svg {
  display: block;
  width: 0.75em;
  height: 0.75em;
}

.series-explore:hover,
.series-explore:focus-visible {
  color: var(--ink);
  border-color: currentColor;
}

.contact-page {
  display: flex;
  min-height: calc(82vh - 86px);
  flex-direction: column;
  justify-content: center;
  width: min(72vw, 900px);
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.contact-page h1 {
  margin: 0 0 clamp(2.5rem, 4vw, 4rem);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.contact-links {
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  grid-template-columns: minmax(7rem, 0.35fr) 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-links span {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0;
}

.contact-links a:hover strong,
.contact-links a:focus-visible strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  grid-template-areas: "copy portrait";
  gap: clamp(4rem, 8vw, 8.5rem);
  align-items: start;
  width: min(86vw, 1280px);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 9rem) 0 clamp(7rem, 12vw, 12rem);
}

.portrait-wrap {
  grid-area: portrait;
  margin: 0;
}

.portrait {
  width: auto;
  height: auto;
  max-width: 100%;
}

.about-copy {
  grid-area: copy;
  max-width: 39rem;
}

.eyebrow {
  margin: 0 0 2.2rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 clamp(2rem, 3vw, 3rem);
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.statement {
  max-width: 38rem;
  font-size: clamp(1rem, 1.08vw, 1.08rem);
  line-height: 1.52;
}

.statement p {
  margin: 0 0 1.65em;
}

.studio-section {
  width: min(78vw, 1040px);
  margin: 0 auto;
  padding: 0 0 clamp(6rem, 10vw, 10rem);
}

.studio-section img {
  width: auto;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

footer {
  display: flex;
  justify-content: space-between;
  margin: 0 3.2vw;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-hero {
  display: grid;
  grid-template-columns: minmax(19rem, 1fr) minmax(18rem, 0.68fr);
  gap: clamp(3.5rem, 9vw, 10rem);
  align-items: center;
  width: min(82vw, 1210px);
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 9rem) 0 clamp(8rem, 13vw, 13rem);
}

.series-heading h1 {
  margin: 0 0 clamp(1.25rem, 2vw, 2rem);
  color: var(--accent);
  font-size: clamp(4.2rem, 8.4vw, 8.4rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.untamed-page .series-heading {
  transform: translateY(-3rem);
}

.series-statement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 9rem);
  width: min(72vw, 980px);
  margin: 0 auto;
  padding: 0 0 clamp(10rem, 16vw, 16rem);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.58;
}

.series-statement p {
  margin: 0 0 1.65em;
}

.series-statement-untamed {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(82vw, 1210px);
  gap: clamp(2.5rem, 5vw, 6rem);
}

.series-heading .lead {
  max-width: 35rem;
  margin: 0;
  font-size: clamp(1.35rem, 2.25vw, 2.1rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.hero-work {
  width: 100%;
  margin: 0;
}

.hero-work img {
  width: 100%;
  height: auto;
}

.works {
  display: flex;
  flex-direction: column;
  gap: clamp(8rem, 15vw, 15rem);
  width: min(90vw, 1440px);
  margin: 0 auto;
  padding-bottom: clamp(8rem, 13vw, 13rem);
}

.work {
  margin: 0;
}

.work img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
}

.work-landscape {
  width: min(82vw, 1180px);
  margin: 0 auto;
}

.work-square {
  width: min(61vw, 790px);
  margin-left: 12vw;
}

.work-small {
  width: min(44vw, 570px);
  margin-left: auto;
  margin-right: 8vw;
}

.second-skin-page .works .work {
  display: flex;
  width: 100%;
  max-width: none;
  height: calc(100vh - 8rem);
  min-height: 34rem;
  max-height: 760px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.second-skin-page .works .work img {
  width: auto;
  height: auto;
  max-width: 86vw;
  max-height: calc(100% - 4.5rem);
}

.second-skin-page .works .work figcaption {
  width: min(100%, 86vw);
}

.second-skin-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
  width: min(78vw, 1080px);
  margin: 0 auto;
}

.second-skin-page .works .second-skin-pair .work {
  width: 100%;
  height: auto;
  min-height: 0;
  max-height: none;
  justify-content: flex-start;
}

.second-skin-page .works .second-skin-pair .work img {
  width: 100%;
  max-width: 100%;
  max-height: 66vh;
  object-fit: contain;
}

.second-skin-page .works .second-skin-pair .work figcaption {
  width: 100%;
}

.work-wide-left {
  width: min(76vw, 1100px);
  margin-left: 2vw;
}

.work-portrait-right {
  width: min(46vw, 620px);
  margin-left: auto;
  margin-right: 7vw;
}

.untamed-page .works-untamed .work-landscape {
  width: min(68vw, 980px);
  margin: 0 auto;
}

.untamed-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.9fr);
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  width: min(86vw, 1280px);
  margin: 0 auto;
}

.untamed-pair .work-wide-left,
.untamed-pair .work-portrait-right {
  width: 100%;
  margin: 0;
}

figcaption {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  padding-top: 0.85rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.4;
}

.work-title {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
}

.series-links {
  display: flex;
  justify-content: space-between;
  width: min(90vw, 1440px);
  margin: 0 auto clamp(5rem, 8vw, 8rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-links a.active {
  color: var(--ink);
}

@media (max-width: 800px) {
  .home-header {
    position: relative;
    width: 100%;
    background: var(--paper);
  }

  .home-hero {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .home-copy {
    min-height: 42vh;
    padding: 3rem 1.15rem;
  }

  .home-copy h1 {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .home-art {
    height: 72vh;
  }

  .site-header {
    min-height: 72px;
    padding: 0 1.15rem;
  }

  .brand {
    font-size: 1.45rem;
  }

  nav {
    gap: 1rem;
    font-size: 0.72rem;
  }

  .work-index {
    width: auto;
    padding: 4.5rem 1.15rem 6rem;
  }

  .work-index-heading {
    margin-bottom: 3.5rem;
  }

  .work-index-heading h1 {
    font-size: 2.4rem;
  }

  .series-grid {
    grid-template-columns: 1fr;
    gap: 6rem;
  }

  .series-card-image img {
    max-height: 66vh;
  }

  .contact-page {
    min-height: calc(78vh - 72px);
    width: auto;
    padding: 5rem 1.15rem;
  }

  .contact-page h1 {
    margin-bottom: 2.75rem;
    font-size: 1.6rem;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .about-intro {
    grid-template-columns: 1fr;
    grid-template-areas:
      "portrait"
      "copy";
    gap: 3rem;
    width: auto;
    margin: 0;
    padding: 1.15rem 1.15rem 5rem;
  }

  .portrait-wrap {
    width: min(82vw, 29rem);
    margin: 1.5rem auto 0;
  }

  .portrait {
    width: 100%;
  }

  .about-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  h1 {
    margin-bottom: 3rem;
    font-size: 1.5rem;
  }

  .statement {
    font-size: 1rem;
    line-height: 1.68;
  }

  .studio-section {
    width: auto;
    margin: 0 1.15rem;
    padding: 0 0 4rem;
  }

  .studio-section img {
    width: 100%;
  }

  footer {
    margin: 0 1.15rem;
    gap: 1rem;
    padding-bottom: 1.5rem;
  }

  .series-hero {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    width: auto;
    padding: 4.5rem 1.15rem 7rem;
  }

  .series-heading h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .untamed-page .series-heading {
    transform: translateY(-1rem);
  }

  .series-heading .lead {
    font-size: 1.4rem;
  }

  .hero-work {
    width: min(78vw, 29rem);
    margin: 0 auto;
  }

  .series-statement {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: auto;
    padding: 0 1.15rem 8rem;
    line-height: 1.65;
  }

  .series-statement-untamed {
    grid-template-columns: 1fr;
    width: auto;
  }

  .works {
    gap: 7rem;
    width: auto;
    padding: 0 1.15rem 6rem;
  }

  .work-landscape,
  .work-square,
  .work-small,
  .work-wide-left,
  .work-portrait-right {
    width: 100%;
    margin: 0;
  }

  .second-skin-page .works .work {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .second-skin-page .works .work img {
    max-width: 100%;
    max-height: 72vh;
  }

  .second-skin-page .works .work figcaption {
    width: 100%;
  }

  .second-skin-pair {
    grid-template-columns: 1fr;
    gap: 7rem;
    width: 100%;
  }

  .second-skin-page .works .second-skin-pair .work img {
    width: auto;
    max-height: 72vh;
  }

  figcaption {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .work-title {
    margin-bottom: 0.3rem;
  }

  .untamed-page .works-untamed .work-landscape {
    width: 100%;
  }

  .untamed-pair {
    grid-template-columns: 1fr;
    gap: 7rem;
    width: 100%;
  }

  .series-links {
    width: auto;
    margin: 0 1.15rem 4rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 1rem;
    padding-bottom: 0.8rem;
  }

  .site-header .brand {
    width: 100%;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
