:root {
  --paper:#f8f7f2;
  --ink:#283e36;
  --muted:#758078;
  --line:#d8dcd2;
  --green:#e1e9df;
  --serif:'Songti SC','STSong','Noto Serif CJK SC',serif;
  --sans:'PingFang SC','Microsoft YaHei',sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  -webkit-font-smoothing:antialiased;
}
a {
  color:inherit;
  text-decoration:none;
}
button {
  font:inherit;
  color:inherit;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button:focus-visible,a:focus-visible {
  outline:2px solid #5a7966;
  outline-offset:6px;
}
::selection {
  background:#d4e2d1;
}
button {
  cursor:pointer;
}
img {
  display:block;
  width:100%;
  height:auto;
}
.shell {
  max-width:1440px;
  margin:auto;
  padding:0 6.1%;
}
.site-header {
  height:108px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  gap:24px;
}
.brand {
  display:flex;
  align-items:center;
  gap:13px;
}
.brand-symbol {
  display:inline-flex;
  flex-shrink:0;
  font-family:Georgia,serif;
  font-size:39px;
  line-height:1;
}
.brand-cn {
  display:block;
  font-family:var(--serif);
  font-size:23px;
  letter-spacing:3px;
}
.brand-en {
  display:block;
  font-size:10px;
  letter-spacing:2.8px;
  margin-top:5px;
}
.navigation {
  display:flex;
  gap:40px;
  align-items:center;
}
.navigation a {
  font-size:14px;
  display:flex;
  align-items:center;
  gap:7px;
  position:relative;
  padding:15px 0;
}
.navigation a span {
  font-size:11px;
  color:var(--muted);
  font-family:Georgia,serif;
  font-style:italic;
}
.navigation a[aria-current=page]:after {
  position:absolute;
  bottom:3px;
  left:0;
  content:'';
  width:24px;
  height:2px;
  background:var(--ink);
}
.navigation a:hover {
  color:#789578;
}
.page-intro {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  padding:61px 0 50px;
  gap:35px;
}
.eyebrow {
  font-size:12px;
  letter-spacing:2.4px;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:17px;
}
.eyebrow:before {
  content:'';
  height:1px;
  width:27px;
  background:#7b8e7d;
}
h1 {
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(36px,4.05vw,58px);
  letter-spacing:3px;
  line-height:1.4;
  margin:19px 0 0;
}
.intro-side {
  padding:0 0 7px;
  max-width:345px;
}
.english-script {
  font-family:Georgia,'Times New Roman',serif;
  font-style:italic;
  font-size:24px;
  font-weight:400;
  letter-spacing:-.7px;
  color:#71816c;
  margin:0 0 18px;
}
.intro-side p:not(.english-script) {
  font-size:14px;
  line-height:1.95;
  color:var(--muted);
  margin:0;
}
.collection-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px solid var(--line);
  padding:21px 0 26px;
  font-size:14px;
}
.collection-heading h2 {
  font-size:14px;
  font-weight:400;
  margin:0;
  letter-spacing:1.3px;
}
.collection-heading h2 span {
  font:italic 14px Georgia,serif;
  color:var(--muted);
  letter-spacing:0;
  margin-left:12px;
}
.collection-heading p {
  margin:0;
  color:var(--muted);
  font-size:12px;
  letter-spacing:1px;
}
.gallery {
  display:grid;
  grid-template-columns:1.36fr 1fr;
  gap:54px 55px;
  padding-bottom:86px;
  align-items:start;
}
.artwork {
  min-width:0;
  margin:0;
}
.artwork:nth-child(4n + 2) {
  margin-top:62px;
}
.artwork:nth-child(4n + 3) {
  max-width:82%;
  margin:0 auto;
  width:100%;
}
.artwork:nth-child(4n) {
  margin-top:45px;
}
.art-stage {
  border:0;
  padding:45px;
  background:#e0e6dc;
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  position:relative;
  overflow:hidden;
  min-height:360px;
}
.art-stage img {
  box-shadow:3px 7px 17px #29352c26;
  transition:transform .65s cubic-bezier(.2,.65,.2,1);
  object-fit:contain;
  max-height:530px;
  width:auto;
  max-width:100%;
  height:auto;
}
.artwork:nth-child(4n + 2) .art-stage {
  background:#ebe6dc;
  padding:40px;
  min-height:440px;
}
.artwork:nth-child(4n + 3) .art-stage {
  background:#eae6e0;
  padding:38px;
}
.artwork:nth-child(4n) .art-stage {
  background:#e9e6e2;
  padding:44px 63px;
}
.art-stage:hover img {
  transform:scale(1.035);
}
.view-label {
  display:inline-flex;
  align-items:center;
  gap:6px;
  position:absolute;
  bottom:15px;
  right:17px;
  background:var(--paper);
  padding:10px 14px;
  font-size:12px;
  opacity:0;
  transform:translateY(5px);
  transition:.25s;
}
.art-stage:hover .view-label,.art-stage:focus-visible .view-label {
  opacity:1;
  transform:none;
}
.art-caption {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:19px 0 0;
  gap:14px;
}
.art-caption h3 {
  font-family:var(--serif);
  font-size:23px;
  font-weight:400;
  margin:0 0 7px;
  letter-spacing:1px;
}
.art-caption p {
  font-size:12px;
  letter-spacing:.5px;
  color:var(--muted);
  margin:0;
}
.art-number {
  font:italic 15px Georgia,serif;
  color:#849080;
}
.about-teaser {
  border-top:1px solid var(--line);
  padding:58px 0 66px;
  display:grid;
  grid-template-columns:185px 1fr auto;
  gap:45px;
  align-items:center;
}
.about-teaser img {
  aspect-ratio:1;
  object-fit:cover;
  object-position:30% center;
}
.about-teaser h2 {
  font-family:var(--serif);
  font-size:30px;
  font-weight:400;
  margin:0 0 15px;
}
.about-teaser p {
  font-size:14px;
  line-height:1.9;
  color:var(--muted);
  margin:0;
}
.text-link {
  display:inline-flex;
  align-items:center;
  gap:28px;
  font-size:14px;
  border-bottom:1px solid var(--ink);
  padding:10px 0;
  white-space:nowrap;
}
.text-link span {
  transition:transform .2s;
}
.text-link:hover span {
  transform:translateX(5px);
}
.site-footer {
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:29px 0 35px;
  gap:20px;
  font-size:12px;
  color:var(--muted);
}
.footer-note {
  font-family:Georgia,serif;
  font-style:italic;
  font-size:15px;
}
.empty-layout {
  min-height:68vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:56px 0 96px;
}
.empty-number {
  font-family:Georgia,serif;
  font-style:italic;
  font-size:clamp(100px,15vw,180px);
  font-weight:400;
  color:#b7c7b7;
  line-height:1;
  margin:15px 0 25px;
}
.empty-layout h2 {
  font:400 34px var(--serif);
  letter-spacing:2px;
  margin:0 0 19px;
}
.empty-layout p {
  line-height:2;
  color:var(--muted);
  margin:0 0 27px;
  font-size:15px;
}
.empty-layout .eyebrow {
  font-size:11px;
}
.about-main {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:8%;
  padding:15px 0 85px;
  align-items:center;
}
.about-photo {
  margin:0;
  padding:25px;
  background:#e1e7dc;
}
.about-photo img {
  aspect-ratio:1.1;
  object-fit:cover;
  object-position:35%;
}
.about-copy h2 {
  font:400 38px/1.55 var(--serif);
  letter-spacing:2px;
  margin:0 0 24px;
}
.about-copy p {
  font-size:16px;
  line-height:2.05;
  color:#6a756c;
  margin:0 0 17px;
}
.about-copy .text-link {
  margin-top:12px;
}
.moments {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
  padding:9px 0 70px;
}
.moments figure {
  margin:0;
}
.moments img {
  aspect-ratio:4/5;
  object-fit:cover;
}
.moments figure:nth-child(2) {
  padding-top:45px;
}
.moments figcaption {
  margin:17px 0;
  font:400 19px var(--serif);
}
dialog {
  border:0;
  background:#f8f7f2;
  color:var(--ink);
  width:min(1120px,94vw);
  height:min(850px,94dvh);
  padding:58px 60px 24px;
  max-width:none;
  max-height:none;
}
dialog::backdrop {
  background:#18291fe8;
  backdrop-filter:blur(8px);
}
.lightbox-close {
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  right:19px;
  top:15px;
  font-size:26px;
  border:0;
  background:transparent;
  width:40px;
  height:40px;
}
.lightbox-image {
  height:calc(100% - 90px);
  width:100%;
  object-fit:contain;
}
.lightbox-bottom {
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:22px;
  gap:15px;
}
.lightbox-bottom h2 {
  font:400 24px var(--serif);
  margin:0 0 5px;
}
.lightbox-bottom p {
  margin:0;
  font-size:12px;
  color:var(--muted);
}
.lightbox-controls {
  display:flex;
  flex-shrink:0;
  gap:14px;
  align-items:center;
}
.lightbox-controls button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:transparent;
  font-size:20px;
  width:42px;
  height:42px;
  border-radius:50%;
}
.lightbox-controls span {
  white-space:nowrap;
  font:14px Georgia,serif;
  color:var(--muted);
}
body.modal-open {
  overflow:hidden;
}
.reveal {
  animation:rise .75s both;
}
@keyframes rise {
  from {
    opacity:0;
    transform:translateY(12px);
  }
  to {
    opacity:1;
    transform:none;
  }
}
@media(min-width:1600px) {
  .shell {
    padding:0 85px;
  }
}
@media(max-width:900px) {
  .shell {
    padding:0 6%;
  }
  .navigation {
    gap:23px;
  }
  .page-intro {
    padding:45px 0 38px;
  }
  .intro-side {
    max-width:260px;
  }
  .english-script {
    font-size:21px;
  }
  .gallery {
    gap:40px 28px;
  }
  .art-stage,.artwork:nth-child(4n + 2) .art-stage,.artwork:nth-child(4n + 3) .art-stage,.artwork:nth-child(4n) .art-stage {
    padding:25px;
    min-height:0;
  }
  .about-teaser {
    grid-template-columns:135px 1fr;
    gap:25px;
  }
  .about-teaser .text-link {
    grid-column:2;
    width:max-content;
  }
  .about-main {
    gap:5%;
  }
  .about-copy h2 {
    font-size:30px;
  }
}
@media(max-width:600px) {
  .site-header {
    height:auto;
    min-height:126px;
    display:block;
    padding:22px 0 12px;
  }
  .brand {
    justify-content:center;
    gap:9px;
  }
  .brand-symbol {
    font-size:30px;
  }
  .brand-cn {
    font-size:21px;
  }
  .brand-en {
    font-size:9px;
  }
  .navigation {
    justify-content:space-between;
    gap:10px;
    margin-top:16px;
  }
  .navigation a {
    padding:9px 0;
    font-size:14px;
  }
  .navigation a span {
    font-size:10px;
  }
  .navigation a[aria-current=page]:after {
    bottom:0;
  }
  .page-intro {
    display:block;
    padding:34px 0 29px;
  }
  h1 {
    font-size:36px;
    letter-spacing:1px;
    line-height:1.45;
    margin-top:17px;
  }
  .eyebrow {
    font-size:10px;
    letter-spacing:1.8px;
  }
  .intro-side {
    max-width:100%;
    padding:22px 0 0;
  }
  .english-script {
    font-size:22px;
    margin-bottom:11px;
  }
  .intro-side p:not(.english-script) {
    font-size:13px;
  }
  .collection-heading {
    padding:18px 0 22px;
  }
  .collection-heading p {
    font-size:11px;
  }
  .collection-heading h2 span {
    font-size:12px;
    margin-left:8px;
  }
  .gallery {
    grid-template-columns:1fr;
    gap:33px;
    padding-bottom:45px;
  }
  .artwork:nth-child(4n + 2),.artwork:nth-child(4n + 3),.artwork:nth-child(4n) {
    margin:0;
    max-width:100%;
  }
  .art-stage,.artwork:nth-child(4n + 2) .art-stage,.artwork:nth-child(4n + 3) .art-stage,.artwork:nth-child(4n) .art-stage {
    padding:32px;
  }
  .artwork:nth-child(4n + 2) .art-stage img,.artwork:nth-child(4n + 3) .art-stage img,.artwork:nth-child(4n) .art-stage img {
    max-height:430px;
  }
  .art-caption {
    padding-top:15px;
  }
  .art-caption h3 {
    font-size:22px;
  }
  .view-label {
    opacity:1;
    transform:none;
    padding:6px 9px;
    font-size:11px;
    bottom:10px;
    right:10px;
  }
  .about-teaser {
    padding:35px 0 40px;
    grid-template-columns:105px 1fr;
    gap:20px;
  }
  .about-teaser h2 {
    font-size:24px;
    margin-bottom:9px;
  }
  .about-teaser p {
    font-size:13px;
  }
  .about-teaser .text-link {
    margin-top:-8px;
  }
  .site-footer {
    font-size:11px;
    padding:24px 0;
    align-items:flex-start;
    gap:15px;
  }
  .footer-note {
    font-size:12px;
  }
  .empty-layout {
    min-height:53vh;
    padding:30px 0 65px;
  }
  .empty-layout h2 {
    font-size:28px;
  }
  .empty-layout p {
    font-size:14px;
  }
  .empty-number {
    font-size:130px;
  }
  .about-main {
    grid-template-columns:1fr;
    gap:32px;
    padding-bottom:43px;
  }
  .about-photo {
    padding:20px;
  }
  .about-copy h2 {
    font-size:31px;
  }
  .about-copy p {
    font-size:15px;
  }
  .moments {
    gap:18px;
    grid-template-columns:1fr 1fr;
    padding-bottom:35px;
  }
  .moments figure:nth-child(2) {
    padding-top:28px;
  }
  .moments figure:last-child {
    grid-column:1/-1;
    width:68%;
    margin:0 auto;
  }
  .moments figcaption {
    font-size:17px;
  }
  dialog {
    padding:58px 17px 20px;
    width:96vw;
    height:88dvh;
  }
  .lightbox-bottom h2 {
    font-size:21px;
  }
  .lightbox-controls {
    gap:8px;
  }
  .lightbox-controls button {
    width:37px;
    height:37px;
  }
  .lightbox-image {
    height:calc(100% - 100px);
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important;
  }
}

/* Travel journal: a full-width opening photograph, followed by paired memories. */
.travel-gallery .artwork:first-child {
  grid-column:1 / -1;
}
.travel-gallery .artwork:first-child .art-stage {
  padding:28px;
  background:#e9e6de;
}
.travel-gallery .artwork:first-child img {
  max-height:620px;
}
.travel-gallery .artwork:not(:first-child) {
  max-width:100%;
  margin:0;
}
.travel-gallery .artwork:nth-child(odd):not(:first-child) {
  margin-top:55px;
}
.travel-gallery .artwork:not(:first-child) .art-stage {
  padding:28px;
  min-height:0;
}
.lightbox-video {
  display:block;
  width:100%;
  height:calc(100% - 120px);
  object-fit:contain;
  background:#19251f;
}
.travel-dialog .lightbox-image {
  height:calc(100% - 120px);
}
.lightbox-image[hidden],.lightbox-video[hidden],.motion-toggle[hidden] {
  display:none;
}
.motion-toggle {
  border:0;
  border-bottom:1px solid var(--ink);
  padding:7px 0 4px;
  margin-top:8px;
  background:transparent;
  font-size:14px;
}
@media(max-width:600px) {
  .travel-gallery .artwork:first-child .art-stage,
  .travel-gallery .artwork:not(:first-child) .art-stage {
    padding:17px;
  }
  .travel-gallery .artwork:nth-child(odd):not(:first-child) {
    margin-top:0;
  }
  .travel-dialog .lightbox-bottom {
    align-items:flex-start;
  }
  .travel-dialog .lightbox-bottom h2 {
    font-size:19px;
    line-height:1.4;
  }
  .travel-dialog .lightbox-image,.lightbox-video {
    height:calc(100% - 150px);
  }
}

/* SVG icons retain the same line style across Safari and emoji-capable fonts. */
.icon {
  display:inline-block;
  width:1em;
  height:1em;
  flex-shrink:0;
  vertical-align:-0.125em;
}
.icon-brand {
  width:1em;
  height:1em;
}
.text-link .icon {
  width:1.15em;
  height:1.15em;
}

/* Compact links continue the gallery into the other three sections. */
.explore-more {
  border-top:1px solid var(--line);
  padding:22px 0 24px;
  scroll-margin-top:30px;
}
.explore-more h2 {
  font-size:14px;
  font-weight:400;
  letter-spacing:1.3px;
  margin:0 0 12px;
  color:var(--muted);
}
.explore-links {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.explore-link {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:13px 20px;
  min-height:48px;
  transition:background-color .2s;
}
.explore-link + .explore-link {
  border-left:1px solid var(--line);
}
.explore-copy {
  min-width:0;
}
.explore-title {
  display:flex;
  align-items:baseline;
  flex-wrap:wrap;
  gap:4px 10px;
  font:400 20px/1.4 var(--serif);
  letter-spacing:1px;
}
.explore-title span {
  font:italic 13px/1.4 Georgia,serif;
  letter-spacing:0;
  color:var(--muted);
}
.explore-link > .icon {
  width:16px;
  height:16px;
  transition:transform .2s;
}
.explore-link:hover,.explore-link:focus-visible {
  background-color:var(--green);
}
.explore-link:hover > .icon {
  transform:translate(2px,-2px);
}
@media(max-width:900px) {
  .explore-link {
    padding:12px;
  }
}
@media(max-width:600px) {
  .explore-more {
    padding:20px 0 16px;
  }
  .explore-more h2 {
    margin-bottom:4px;
  }
  .explore-links {
    grid-template-columns:1fr;
  }
  .explore-link {
    padding:12px 8px;
  }
  .explore-link + .explore-link {
    border-left:0;
    border-top:1px solid var(--line);
  }
}

/* Dingding joins the site as the fifth section. */
.explore-links {
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.pet-intro {
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:7%;
  align-items:center;
  padding:5px 0 65px;
}
.pet-portrait {
  margin:0;
  min-width:0;
}
.pet-portrait .art-stage {
  min-height:0;
  padding:24px;
}
.pet-portrait img {
  width:100%;
  max-height:none;
}
.pet-label {
  font-size:14px;
  letter-spacing:1px;
  color:var(--muted);
}
.pet-copy h2 {
  font:400 clamp(30px,3.2vw,44px)/1.55 var(--serif);
  letter-spacing:2px;
  margin:20px 0 24px;
}
.pet-copy p {
  font-size:16px;
  line-height:2;
  color:#6a756c;
  margin:0 0 15px;
}
.pet-gallery {
  grid-template-columns:1fr 1fr;
}
.pet-gallery .art-stage {
  min-height:0;
  padding:24px;
}
@media(max-width:900px) {
  .site-header {
    height:auto;
    flex-wrap:wrap;
    justify-content:center;
    padding:23px 0 12px;
    gap:12px;
  }
  .navigation {
    flex-basis:100%;
    justify-content:space-between;
    gap:12px;
  }
  .explore-links {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .explore-link:nth-child(3) {
    border-left:0;
  }
  .explore-link:nth-child(n + 3) {
    border-top:1px solid var(--line);
  }
  .pet-intro {
    gap:5%;
  }
}
@media(max-width:600px) {
  .navigation {
    gap:4px;
  }
  .navigation a {
    flex:1;
    flex-direction:column;
    gap:4px;
    padding:10px 0;
  }
  .navigation a[aria-current=page]:after {
    left:calc(50% - 12px);
  }
  .pet-intro {
    grid-template-columns:1fr;
    gap:35px;
    padding-bottom:32px;
  }
  .pet-portrait .art-stage,.pet-gallery .art-stage {
    padding:18px;
  }
  .pet-copy h2 {
    margin:14px 0 20px;
    font-size:31px;
  }
  .pet-copy p {
    font-size:15px;
  }
  .pet-gallery,.explore-links {
    grid-template-columns:1fr;
  }
}
