@font-face { font-family: "Manrope"; src: url("../fonts/manrope-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Manrope"; src: url("../fonts/manrope-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Cormorant Garamond"; src: url("../fonts/cormorant-garamond-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }

:root {
  --ground: #f6f3ed;
  --surface: #ece8e1;
  --ink: #252728;
  --muted: #626461;
  --line: #d6d0c7;
  --light: #f5f1e9;
  --accent: #365e66;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font: 400 18px/1.7 "Manrope", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
/*
 * WordPress adds intrinsic width and height attributes to every image.
 * Keep them for layout stability, but always let ordinary images scale
 * proportionally when their rendered width changes.
 */
img { display: block; width: 100%; height: auto; }
button:focus-visible, a:focus-visible, input:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-weight: 400; line-height: .98; letter-spacing: -.03em; text-wrap: balance; }
.section { padding: clamp(88px, 9vw, 138px) clamp(24px, 7vw, 108px); }
.eyebrow {
  margin: 0 0 22px;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s, color .2s, border-color .2s;
}
.button.light { background: var(--light); color: var(--ink); }
.button.light:hover { background: #ddd6cb; }
.button.dark { background: var(--ink); color: var(--light); }
.button.dark:hover { background: var(--accent); }
.details-link, .back-link {
  display: inline-block;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-header {
  position: absolute;
  z-index: 20;
  inset: 0 0 auto;
  min-height: 96px;
  padding: 22px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--light);
  border-bottom: 1px solid rgba(245,241,233,.28);
}
.site-header.header-dark {
  position: relative;
  background: var(--ground);
  color: var(--ink);
  border-bottom-color: var(--line);
}
.brand { display: flex; flex-direction: column; line-height: 1.15; letter-spacing: .12em; }
.brand span { font-size: 14px; font-weight: 600; }
.brand small { margin-top: 6px; font-size: 10px; letter-spacing: .16em; opacity: .76; }
.site-header nav,
.menu-primary { display: flex; gap: clamp(24px, 3vw, 44px); }
.site-header nav { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }
.site-header nav a { padding: 7px 0; border-bottom: 1px solid transparent; }
.site-header nav a:hover { border-color: currentColor; }
.menu-meta { display: none; }
.language-switch { justify-self: end; font-size: 13px; font-weight: 600; letter-spacing: .1em; }
.menu-toggle { display: none; border: 0; background: none; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }

.hero {
  position: relative;
  min-height: min(840px, 90svh);
  overflow: hidden;
  padding: 160px clamp(24px, 8vw, 120px) 92px;
  display: flex;
  align-items: center;
  color: var(--light);
}
.hero-background,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-background {
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(30,25,23,.82) 0%, rgba(36,29,27,.68) 46%, rgba(33,28,26,.24) 78%, rgba(28,25,24,.18) 100%),
    linear-gradient(0deg, rgba(20,20,20,.2), rgba(20,20,20,.2));
}
.hero-content { position: relative; z-index: 1; width: min(900px, 100%); }
.hero h1 { max-width: 860px; font-size: clamp(54px, 4vw, 64px); line-height: 1.03; }
.hero-link {
  display: inline-block;
  margin-top: 38px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245,241,233,.7);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.works { background: #f3efe7; }
.section-heading { margin-bottom: clamp(52px, 6vw, 82px); padding-bottom: 18px; display: flex; align-items: end; justify-content: space-between; border-bottom: 1px solid var(--line); }
.section-heading h2 { font-size: clamp(50px, 4.4vw, 56px); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(72px, 7vw, 104px) clamp(32px, 5vw, 70px);
  align-items: start;
}
.work-card { grid-column: span 6; }
.work-2 { margin-top: 0; }
.work-3 { grid-column: span 6; }
.work-4 { grid-column: span 6; margin-top: 0; }
.work-5 { grid-column: span 6; }
.work-card:last-child:nth-child(odd) { grid-column: 3 / span 8; }
.work-image { display: block; overflow: hidden; background: var(--surface); }
.work-image img { width: 100%; height: auto; object-fit: contain; transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .3s; }
.work-image:hover img { transform: scale(1.012); opacity: .96; }
.work-caption { display: block; padding-top: 18px; }
.work-caption h3 { font-size: clamp(38px, 3.1vw, 44px); }
.work-caption p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.work-caption .details-link { margin-top: 12px; }
.work-title-block { display: block; width: fit-content; }

.series-teaser {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 1.1fr);
  gap: clamp(60px, 10vw, 155px);
  background: var(--surface);
}
.series-teaser h2 { max-width: 700px; font-size: clamp(52px, 5vw, 60px); }
.series-copy { max-width: 660px; }
.series-copy > p:first-child { margin: 0; font-family: "Cormorant Garamond", serif; font-size: clamp(27px, 2.5vw, 34px); line-height: 1.3; }
.series-copy > p:not(:first-child) { margin: 20px 0; color: var(--muted); }
.series-copy > p.series-count { margin-bottom: 26px; }

.about {
  display: grid;
  grid-template-columns: minmax(300px, .76fr) minmax(420px, 1.24fr);
  gap: clamp(65px, 10vw, 155px);
  align-items: center;
}
.about-image { max-width: 520px; }
.about-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.about-copy { max-width: 690px; }
.about-copy h2 { font-size: clamp(54px, 5vw, 60px); }
.about-lead { margin: 28px 0; font-family: "Cormorant Garamond", serif; font-size: clamp(28px, 2.6vw, 34px); line-height: 1.27; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.about-copy .details-link { margin-top: 24px; }

.contact { background: var(--ink); color: var(--light); text-align: center; }
.contact h2 { max-width: 950px; margin-inline: auto; font-size: clamp(52px, 5vw, 60px); }
.contact > p:not(.eyebrow) { max-width: 690px; margin: 30px auto 38px; color: rgba(245,241,233,.72); }
.contact .button { margin-top: 38px; }
.contact > p + .button { margin-top: 0; }
.contact-links {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: rgba(245,241,233,.78);
  font-size: 14px;
}
.contact-links a { border-bottom: 1px solid rgba(245,241,233,.4); }
.contact-links a:hover { color: var(--light); border-bottom-color: var(--light); }
footer {
  padding: 34px clamp(24px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  background: var(--ink);
  color: var(--light);
  border-top: 1px solid rgba(245,241,233,.15);
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.footer-brand { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand span { font-size: 13px; font-weight: 600; }
.footer-brand small { margin-top: 6px; font-size: 8px; opacity: .7; }
.footer-links { display: flex; gap: 24px; }
.copyright { max-width: 480px; justify-self: end; text-align: right; line-height: 1.55; }

.artwork-page {
  padding: clamp(60px, 7vw, 105px) clamp(24px, 7vw, 108px) clamp(90px, 10vw, 150px);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}
.artwork-visual { min-width: 0; }
.artwork-main-image {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--surface);
  cursor: zoom-in;
}
.artwork-main-image img { width: 100%; height: auto; object-fit: contain; }
.artwork-main-image span {
  position: absolute; right: 16px; bottom: 16px;
  padding: 9px 12px;
  background: rgba(246,243,237,.92);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.detail-strip { margin-top: 14px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.detail-strip button {
  aspect-ratio: auto;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--surface);
  cursor: zoom-in;
}
.detail-strip img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.artwork-room-view {
  display: block;
  width: 100%;
  margin-top: clamp(30px, 4vw, 52px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--surface);
  cursor: zoom-in;
}
.artwork-room-view img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.artwork-info { position: sticky; top: 42px; }
.back-link { margin-bottom: 62px; }
.artwork-info h1 { font-size: clamp(48px, 4.5vw, 62px); }
.artwork-description { margin: 34px 0; color: var(--muted); white-space: pre-line; }
.work-facts { margin: 30px 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.work-facts > div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 7px 0; }
.work-facts dt { color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.work-facts dd { margin: 0; font-size: 13px; }
.work-notes { margin: 0 0 30px; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.work-notes li { padding: 5px 0 5px 22px; position: relative; }
.work-notes li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.scale-note { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; background: var(--surface); }
.scale-note h2 { font-size: clamp(52px, 5vw, 64px); }
.scale-note > p { color: var(--muted); }

.zoom-modal { position: fixed; z-index: 100; inset: 0; display: none; grid-template-rows: 58px minmax(0, 1fr) 66px; background: #191b1c; color: var(--light); }
.zoom-modal.is-open { display: grid; }
.zoom-modal[hidden] { display: none !important; }
.zoom-topbar { padding: 0 18px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-bottom: 1px solid rgba(245,241,233,.18); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.zoom-topbar button { justify-self: end; width: 42px; height: 42px; border: 0; background: none; color: var(--light); font-size: 28px; cursor: pointer; }
.zoom-stage { position: relative; min-height: 0; overflow: hidden; display: grid; place-items: center; touch-action: none; cursor: zoom-in; user-select: none; }
.zoom-stage.is-zoomed { cursor: grab; }
.zoom-stage.is-zoomed:active { cursor: grabbing; }
.zoom-stage > img {
  position: relative;
  width: auto;
  height: auto;
  max-width: calc(100vw - 156px);
  max-height: calc(100vh - 168px);
  max-height: calc(100dvh - 168px);
  object-fit: contain;
  padding: 0;
  transform-origin: center center;
  transition: transform .08s linear, opacity .16s ease;
  pointer-events: none;
}
.zoom-arrow { position: absolute; top: 50%; width: 46px; height: 46px; transform: translateY(-50%); border: 1px solid rgba(245,241,233,.32); background: rgba(25,27,28,.58); color: var(--light); cursor: pointer; }
.zoom-prev { left: 16px; } .zoom-next { right: 16px; }
.zoom-controls { display: flex; align-items: center; justify-content: center; gap: 10px; border-top: 1px solid rgba(245,241,233,.18); }
.zoom-controls button { min-width: 40px; min-height: 40px; border: 1px solid rgba(245,241,233,.28); background: transparent; color: var(--light); cursor: pointer; }
.zoom-controls input { width: min(240px, 28vw); accent-color: var(--accent); }
.zoom-controls .control-text { padding-inline: 15px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }

.series-hero {
  min-height: 600px;
  padding: 160px clamp(24px, 10vw, 150px) 90px;
  display: flex;
  align-items: end;
  color: var(--light);
  background:
    linear-gradient(90deg, rgba(33,27,25,.82), rgba(45,34,30,.52) 56%, rgba(35,30,28,.28)),
    url("../art/becoming/detail-2.webp") center 50% / cover no-repeat;
}
.series-hero > div { width: min(950px, 100%); }
.series-hero h1 { font-size: clamp(58px, 5.25vw, 76px); }
.series-hero > div > p:not(.eyebrow) { max-width: 760px; margin: 24px 0 0; color: rgba(245,241,233,.8); font-size: 18px; }
.series-hero > div > p:not(.eyebrow) + p:not(.eyebrow) { margin-top: 18px; }
.series-room-view {
  padding: clamp(58px, 7vw, 100px) clamp(20px, 7vw, 108px);
  background: var(--ground);
}
.series-room-view > div {
  width: min(1500px, 100%);
  margin-inline: auto;
}
.series-room-view button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--surface);
  cursor: zoom-in;
}
.series-room-view img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.story-section { padding: clamp(80px, 8vw, 120px) clamp(24px, 8vw, 125px); display: grid; grid-template-columns: minmax(320px, .86fr) minmax(420px, 1.14fr); gap: clamp(55px, 8vw, 115px); align-items: center; border-bottom: 1px solid var(--line); }
.story-reverse { grid-template-columns: minmax(420px, 1.14fr) minmax(320px, .86fr); }
.story-reverse .story-copy { order: 2; }
.story-reverse .story-image { order: 1; }
.story-copy h2 { font-size: clamp(48px, 5vw, 60px); }
.story-copy > p:last-child { margin-top: 30px; color: var(--muted); }
.story-image img { width: auto; max-width: 100%; max-height: 680px; margin-inline: auto; object-fit: contain; }
.story-image figcaption { margin-top: 14px; color: var(--muted); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.story-ending { padding: clamp(90px, 10vw, 145px) clamp(24px, 12vw, 180px); background: var(--surface); }
.story-ending h2 { max-width: 820px; font-size: clamp(52px, 5vw, 60px); }
.story-ending > p:not(.eyebrow) { max-width: 660px; margin: 30px 0 40px; color: var(--muted); }

.about-page { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(420px, 1.2fr); gap: clamp(65px, 10vw, 150px); align-items: start; }
.about-page-image { max-width: 540px; }
.about-page-image img { width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; }
.about-page h1, .legal-page h1 { font-size: clamp(58px, 5.25vw, 76px); }
.about-page > div:last-child > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.about-page .artist-statement-title { margin: 52px 0 22px; font-size: clamp(34px, 3.4vw, 46px); }
.location { display: inline-block; margin-top: 30px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.legal-page { max-width: 950px; min-height: 70vh; }
.legal-page h1 { margin-bottom: 48px; }
.legal-page h2 { margin-top: 44px; font-size: 38px; }
.legal-page a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 900px) {
  body.menu-open { overflow: hidden; }
  .site-header { grid-template-columns: 1fr auto auto; }
  .brand, .language-switch, .menu-toggle { position: relative; z-index: 32; }
  .language-switch { display: block; grid-column: 2; grid-row: 1; }
  .menu-toggle { display: block; grid-column: 3; grid-row: 1; justify-self: end; color: inherit; cursor: pointer; }
  .site-header.menu-open { color: var(--ink); }
  .site-header nav {
    position: fixed;
    z-index: 30;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 112px 24px 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 42px;
    background: var(--ground);
    color: var(--ink);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, visibility 0s linear .24s;
  }
  .site-header nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
  .menu-primary {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(22px, 5vh, 42px);
  }
  .site-header .menu-primary a {
    padding: 0;
    border: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(42px, 10vw, 64px);
    font-weight: 400;
    line-height: .95;
    letter-spacing: -.025em;
    text-transform: none;
  }
  .menu-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .09em;
    text-transform: none;
  }
  .site-header .menu-meta a { padding: 2px 0; }
  .works-grid { gap: 70px 28px; }
  .work-card { grid-column: span 6; }
  .work-3 { grid-column: 1 / span 6; }
  .work-4 { grid-column: 7 / span 6; }
  .work-5 { grid-column: span 6; }
  .work-card:last-child:nth-child(odd) { grid-column: 3 / span 8; }
  .series-teaser, .about, .artwork-page, .about-page { grid-template-columns: 1fr; }
  .artwork-info { position: static; }
  .story-section, .story-reverse { grid-template-columns: 1fr; }
  .story-reverse .story-copy, .story-reverse .story-image { order: initial; }
  .artwork-page { padding-top: 60px; }
  .back-link { margin-bottom: 42px; }
}

@media (max-width: 650px) {
  body { font-size: 17px; line-height: 1.62; }
  .section { padding: 76px 20px; }
  .site-header { min-height: 84px; padding: 17px 18px; gap: 14px; }
  .brand span { font-size: 12px; }
  .brand small { font-size: 7px; }
  .menu-toggle { font-size: 11px; }
  .hero { min-height: 690px; padding: 138px 21px 70px; align-items: end; }
  .hero-background { object-position: 48% 50%; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(29,25,23,.78), rgba(37,31,28,.52)),
      linear-gradient(0deg, rgba(21,20,19,.46), rgba(21,20,19,.08) 62%);
  }
  .hero h1 {
    max-width: 350px;
    font-size: clamp(36px, 9.4vw, 39px);
    line-height: 1.04;
    text-wrap: pretty;
  }
  .series-hero h1 { font-size: clamp(42px, 12vw, 48px); }
  .hero-link { margin-top: 30px; font-size: 12px; }
  .eyebrow { font-size: 11px; }
  .section-heading { margin-bottom: 45px; }
  .section-heading h2, .series-teaser h2, .about-copy h2, .contact h2, .scale-note h2, .story-copy h2, .story-ending h2 { font-size: clamp(38px, 11vw, 46px); }
  .works-grid { display: block; }
  .work-card, .work-2, .work-3, .work-4, .work-5,
  .work-card:last-child:nth-child(odd) { margin: 0 0 66px; grid-column: auto; }
  .work-card:last-child { margin-bottom: 0; }
  .work-caption h3 { font-size: 36px; }
  .work-caption .details-link { font-size: 12px; margin-top: 10px; }
  .series-teaser { gap: 34px; }
  .series-copy > p:first-child {
    font-size: 24px;
    line-height: 1.36;
  }
  .series-copy > p:not(:first-child) { margin: 18px 0; }
  .about { gap: 45px; }
  .about-lead {
    margin: 24px 0;
    font-size: 25px;
    line-height: 1.34;
  }
  .contact .button { width: 100%; }
  .contact-links { flex-direction: column; align-items: center; gap: 12px; }
  footer { grid-template-columns: 1fr; align-items: start; }
  .footer-links { margin-top: 10px; }
  .copyright { justify-self: start; text-align: left; }
  .artwork-page { padding: 38px 20px 80px; gap: 45px; }
  .artwork-main-image span { right: 8px; bottom: 8px; font-size: 9px; }
  .detail-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .detail-strip button {
    aspect-ratio: auto;
  }
  .detail-strip img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }
  .artwork-info h1, .about-page h1, .legal-page h1 { font-size: clamp(46px, 13vw, 58px); }
  .work-facts > div { grid-template-columns: 88px 1fr; }
  .scale-note { grid-template-columns: 1fr; gap: 25px; }
  .zoom-modal { grid-template-rows: 52px minmax(0, 1fr) 66px; }
  .zoom-topbar { grid-template-columns: 1fr auto auto; padding-inline: 10px; font-size: 10px; }
  .zoom-stage > img {
    max-width: calc(100vw - 92px);
    max-height: calc(100vh - 138px);
    max-height: calc(100dvh - 138px);
  }
  .zoom-arrow { width: 38px; height: 44px; }
  .zoom-prev { left: 5px; } .zoom-next { right: 5px; }
  .zoom-controls { gap: 6px; }
  .zoom-controls input { width: 28vw; }
  .zoom-controls .control-text { padding-inline: 8px; font-size: 9px; }
  .zoom-controls .control-text:last-child { display: none; }
  .series-hero { min-height: 540px; padding: 145px 20px 65px; }
  .series-hero > div > p:not(.eyebrow) { font-size: 16px; }
  .story-section { padding: 72px 20px; gap: 40px; }
  .story-ending { padding: 80px 20px; }
  .about-page { gap: 45px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
