:root {
  color-scheme: dark;
  --ink: #f5f1e8;
  --muted: #b8b0a4;
  --paper: #151412;
  --white: #ffffff;
  --panel: #201f1b;
  --panel-soft: #28251f;
  --line: rgba(245, 241, 232, 0.16);
  --accent: #d8893a;
  --accent-dark: #a95e28;
  --green: #526d4d;
  --blue: #617a88;
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.38);
  --font-sans:
    "General Sans", Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei",
    Arial, sans-serif;
  --font-display:
    "General Sans", Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei",
    Arial, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.4s;
  --duration-mid: 0.6s;
  --duration-slow: 0.8s;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial,
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(216, 137, 58, 0.06), rgba(216, 137, 58, 0.018) 34%, transparent 72%),
    linear-gradient(135deg, rgba(82, 109, 77, 0.075), rgba(82, 109, 77, 0.028) 46%, transparent 84%),
    #0c0c0b;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: url("assets/site/film-grain.png") repeat;
  background-size: 96px 96px;
  mix-blend-mode: soft-light;
  opacity: 0.055;
}

.silk-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.28;
  filter: saturate(1.2) brightness(0.78);
  mix-blend-mode: screen;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(15, 15, 14, 0.9);
  border-bottom: 1px solid rgba(245, 241, 232, 0.1);
  backdrop-filter: blur(18px) saturate(1.08);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(21, 20, 18, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #090909;
}

.hero-marquee,
.hero-shade {
  position: absolute;
  inset: var(--header-height) 0 0;
  width: 100%;
  height: calc(100% - var(--header-height));
}

.hero-marquee {
  --hero-slide-width: calc((100svh - var(--header-height)) * 2);
  overflow: hidden;
  background: #090909;
  contain: paint;
}

.hero-marquee-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: heroMarquee 238s linear infinite;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.hero.is-marquee-paused .hero-marquee-track {
  animation-play-state: paused;
}

.hero-marquee img {
  flex: 0 0 var(--hero-slide-width);
  width: var(--hero-slide-width);
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  transform: translateZ(0);
}

@keyframes heroMarquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.24) 58%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.42), rgba(9, 9, 9, 0.16) 34%, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 86px) clamp(56px, 10vh, 98px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf94;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 10.5rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.48);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #17120c;
  background: var(--accent);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(245, 241, 232, 0.44);
  background: rgba(245, 241, 232, 0.07);
}

.work-section,
.series-section,
.about-section,
.contact-section {
  padding: clamp(68px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.work-section {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}

.section-note {
  max-width: 420px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.8;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.055);
  cursor: pointer;
}

.filter-button.is-active {
  color: #17120c;
  border-color: var(--accent);
  background: var(--accent);
}

.photo-grid {
  display: grid;
  gap: 34px;
}

.gallery-loading {
  margin: 0;
  color: var(--muted);
}

.gallery-section.is-hidden {
  display: none;
}

.photo-masonry {
  column-count: 4;
  column-gap: 10px;
}

@media (min-width: 1380px) {
  .photo-masonry {
    column-count: 5;
  }
}

.photo-masonry-featured {
  display: block;
  column-count: 4;
  column-gap: 4px;
}

.photo-tile {
  position: relative;
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 2px;
  background: #090909;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.photo-tile:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.photo-masonry-featured .photo-tile {
  margin: 0 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.photo-masonry-featured .photo-tile-landscape-feature {
  grid-column: span 8;
}

.photo-masonry-featured .photo-tile-landscape {
  grid-column: span 6;
}

.photo-masonry-featured .photo-tile-portrait-feature {
  grid-column: span 4;
}

.photo-masonry-featured .photo-tile-portrait {
  grid-column: span 3;
}

.photo-tile::before {
  position: absolute;
  inset: 5px;
  z-index: 2;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(245, 241, 232, 0.2);
  opacity: 0;
  transition: opacity 220ms ease;
}

.photo-tile:hover::before {
  opacity: 1;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: auto;
  padding: 4px;
  filter: saturate(0.96) contrast(1.03);
  transform: scale(1);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.photo-masonry-featured .photo-tile img {
  height: auto;
  padding: 0;
  object-fit: contain;
}

.gallery-section[data-category="portrait"] .photo-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  column-count: auto;
}

.gallery-section[data-category="portrait"] .photo-tile {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-section[data-category="portrait"] .photo-tile img {
  height: auto;
  padding: 0;
  object-fit: contain;
}

.gallery-section[data-category="landscape"] .photo-masonry {
  column-count: 3;
  column-gap: 4px;
}

.gallery-section[data-category="landscape"] .photo-tile {
  margin: 0 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-section[data-category="landscape"] .photo-tile img {
  height: auto;
  padding: 0;
  object-fit: contain;
}

.gallery-section[data-category="event"] .photo-masonry {
  column-count: 3;
  column-gap: 4px;
}

.gallery-section[data-category="event"] .photo-tile {
  margin: 0 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-section[data-category="event"] .photo-tile img {
  height: auto;
  padding: 0;
  object-fit: contain;
}

@media (min-width: 1380px) {
  .gallery-section[data-category="landscape"] .photo-masonry {
    column-count: 4;
  }

  .gallery-section[data-category="event"] .photo-masonry {
    column-count: 4;
  }
}

.photo-tile:hover img {
  filter: saturate(1.06);
  transform: scale(1.012);
}

.is-lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  visibility: hidden;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox-panel {
  position: relative;
  display: grid;
  width: min(100%, 1680px);
  height: min(90vh, 980px);
  place-items: center;
  padding: 54px clamp(14px, 5vw, 82px) 24px;
  background: transparent;
}

.lightbox-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 54px;
  padding: 0 12px 0 18px;
  color: rgba(245, 241, 232, 0.82);
  background: transparent;
}

.lightbox-category {
  color: #ffcf94;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.82;
}

.lightbox-counter {
  display: none;
  color: rgba(245, 241, 232, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 1600px);
  max-height: calc(90vh - 96px);
  object-fit: contain;
  background: transparent;
  box-shadow: 0 22px 72px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 22px;
  z-index: 101;
}

.lightbox-close,
.lightbox-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  color: var(--white);
  cursor: pointer;
  border: 0;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.lightbox-close {
  width: 34px;
  height: 34px;
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0.72;
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.32);
  backdrop-filter: blur(10px);
}

.lightbox-close span {
  display: block;
  margin-top: -2px;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  font-size: 2.2rem;
  line-height: 1;
  opacity: 0.46;
  background: transparent;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  color: #17120c;
  background: var(--accent);
  opacity: 1;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  color: var(--accent);
  opacity: 1;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.tile-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: end;
  min-height: 30%;
  padding: 36px 12px 12px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.76));
}

.tile-info span,
.series-item span {
  display: block;
  margin-bottom: 0;
  color: #ffcf94;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.tile-info span {
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid rgba(255, 207, 148, 0.38);
  background: rgba(9, 9, 9, 0.42);
  backdrop-filter: blur(8px);
}

.series-section {
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  background: transparent;
}

.series-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.series-item {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 2px;
  background: var(--panel);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  transition:
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.series-item:hover,
.series-item:focus-visible {
  border-color: rgba(255, 207, 148, 0.42);
  outline: 0;
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.series-item img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  background: #090909;
  transition:
    filter 360ms ease,
    transform 360ms ease;
}

.series-item:hover img,
.series-item:focus-visible img {
  filter: saturate(1.08);
  transform: scale(1.012);
}

.series-item div {
  padding: 22px;
}

.series-item span {
  color: var(--blue);
}

.series-item p,
.about-copy p,
.contact-section p {
  color: var(--muted);
  line-height: 1.82;
}

.is-series-open {
  overflow: hidden;
}

.series-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 52px);
  visibility: hidden;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.series-viewer.is-open {
  visibility: visible;
  opacity: 1;
}

.series-viewer-panel {
  position: relative;
  width: min(100%, 1480px);
  max-height: 88vh;
  overflow: auto;
  padding: clamp(22px, 4vw, 46px);
  background: rgba(15, 15, 14, 0.78);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.48);
}

.series-viewer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.series-viewer-title {
  margin-bottom: 0;
}

.series-viewer-note {
  max-width: 620px;
  margin: 14px 0 28px;
  color: var(--muted);
  line-height: 1.8;
}

.series-viewer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  background: rgba(9, 9, 9, 0.36);
  opacity: 0.78;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.series-viewer-close span {
  display: block;
  margin-top: -2px;
  line-height: 1;
}

.series-viewer-close:hover,
.series-viewer-close:focus-visible {
  color: #17120c;
  background: var(--accent);
  opacity: 1;
}

.series-viewer-grid {
  column-count: 3;
  column-gap: 4px;
}

.series-viewer-grid.has-row-layout {
  display: flex;
  flex-direction: column;
  gap: 4px;
  column-count: auto;
}

.series-layout-row {
  display: grid;
  align-items: start;
  gap: 4px;
}

.series-layout-row.layout-single {
  grid-template-columns: minmax(0, 1fr);
}

.series-layout-row.layout-two {
  display: flex;
}

.series-layout-row.layout-three {
  display: flex;
}

.series-layout-row.layout-two .series-photo,
.series-layout-row.layout-three .series-photo {
  flex: var(--photo-ratio, 1) 1 0;
  min-width: 0;
}

.series-layout-row.layout-feature-left,
.series-layout-row.layout-feature-right {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
}

.series-layout-row.layout-feature-left .series-photo:first-child,
.series-layout-row.layout-feature-right .series-photo:first-child {
  grid-row: 1 / span 2;
}

.series-layout-row.layout-feature-right .series-photo:first-child {
  grid-column: 2;
}

.series-layout-row.layout-feature-right .series-photo:nth-child(2),
.series-layout-row.layout-feature-right .series-photo:nth-child(3) {
  grid-column: 1;
}

.series-viewer-grid.has-row-layout .series-photo {
  margin: 0;
}

.series-photo {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 4px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
  break-inside: avoid;
  border: 0;
  background: transparent;
}

.series-photo img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.96) contrast(1.03);
  transition:
    filter 420ms ease,
    transform 420ms ease;
}

.series-photo:hover img,
.series-photo:focus-visible img {
  filter: saturate(1.06);
  transform: scale(1.012);
}

.series-photo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.series-photo span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: block;
  width: fit-content;
  padding: 6px 8px;
  color: #ffcf94;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(9, 9, 9, 0.42);
  backdrop-filter: blur(8px);
}

.series-empty {
  margin: 12px 0 0;
  padding: 34px 0;
  color: rgba(245, 241, 232, 0.58);
  border-top: 1px solid rgba(245, 241, 232, 0.1);
}

@media (min-width: 1380px) {
  .series-viewer-grid {
    column-count: 4;
  }
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--ink);
  background: rgba(245, 241, 232, 0.055);
  font-weight: 800;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 78px);
  background: transparent;
  color: var(--white);
}

.about-image-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 2px;
  background: #090909;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.about-copy .eyebrow {
  color: #ffcf94;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.stats div {
  padding-top: 16px;
  border-top: 1px solid rgba(245, 241, 232, 0.2);
}

.stats dt {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
}

.stats dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(30px, 4vw, 52px);
  align-items: start;
}

.contact-section > div:first-child {
  max-width: 980px;
}

#booking-description {
  white-space: pre-line;
}

.contact-qr-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  align-items: stretch;
  width: min(100%, 980px);
}

.contact-qr-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 26px);
  min-width: 0;
  margin: 0;
  padding: clamp(14px, 1.4vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 4px;
  background: rgba(13, 13, 12, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.4s ease-out,
    border-color 0.4s ease-out,
    background 0.4s ease-out,
    box-shadow 0.4s ease-out;
}

.contact-qr-card::before {
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 159, 63, 0.8), transparent);
  opacity: 0.72;
}

.contact-qr-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 207, 148, 0.3);
  background: rgba(18, 17, 15, 0.68);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.contact-qr-image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 3px;
  background: #fff;
}

.contact-qr-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-qr-card-douyin .contact-qr-image {
  background: #fff8f3;
}

.contact-qr-card figcaption {
  display: grid;
  gap: 5px;
  padding: 0 4px 0 0;
}

.contact-qr-card strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.contact-qr-card figcaption span {
  color: rgba(245, 241, 232, 0.56);
  font-size: 0.78rem;
  line-height: 1.55;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(245, 241, 232, 0.1);
  background: #0b0b0a;
}

@media (max-width: 980px) {
  .section-heading,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .contact-section > div:first-child {
    max-width: 760px;
  }

  .contact-qr-list {
    width: 100%;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

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

  .photo-masonry {
    column-count: 2;
  }

  .photo-masonry-featured {
    display: block;
    column-count: 2;
    column-gap: 4px;
  }

  .photo-masonry-featured .photo-tile-landscape-feature,
  .photo-masonry-featured .photo-tile-landscape {
    grid-column: auto;
  }

  .photo-masonry-featured .photo-tile-portrait-feature,
  .photo-masonry-featured .photo-tile-portrait {
    grid-column: auto;
  }

  .gallery-section[data-category="portrait"] .photo-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-section[data-category="landscape"] .photo-masonry {
    column-count: 2;
  }

  .gallery-section[data-category="event"] .photo-masonry {
    column-count: 2;
  }

  .series-list {
    grid-template-columns: 1fr;
  }

  .series-item {
    grid-template-columns: 220px 1fr;
    grid-template-rows: auto;
  }

  .series-viewer-grid {
    column-count: 2;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    min-height: 0;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin: 0 16px 44px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .photo-masonry {
    column-count: 1;
  }

  .photo-masonry-featured {
    display: block;
    column-count: 1;
    column-gap: 0;
  }

  .photo-masonry-featured .photo-tile-landscape-feature,
  .photo-masonry-featured .photo-tile-landscape,
  .photo-masonry-featured .photo-tile-portrait-feature,
  .photo-masonry-featured .photo-tile-portrait {
    grid-column: auto;
    grid-row-end: auto;
  }

  .photo-masonry-featured .photo-tile img {
    height: auto;
  }

  .gallery-section[data-category="portrait"] .photo-masonry {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-section[data-category="landscape"] .photo-masonry {
    column-count: 1;
    column-gap: 0;
  }

  .gallery-section[data-category="event"] .photo-masonry {
    column-count: 1;
    column-gap: 0;
  }

  .lightbox {
    padding: 12px;
  }

  .lightbox-panel {
    height: min(92vh, 860px);
    padding: 54px 10px 70px;
  }

  .lightbox-topbar {
    min-height: 50px;
    padding: 0 8px 0 12px;
  }

  .lightbox-image {
    max-height: calc(92vh - 132px);
  }

  .lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 42px;
    height: 42px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 52px);
  }

  .lightbox-next {
    right: calc(50% - 52px);
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.04);
  }

  .series-item {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 1fr;
  }

  .series-viewer {
    padding: 12px;
  }

  .series-viewer-panel {
    max-height: 90vh;
    padding: 18px;
  }

  .series-viewer-head {
    gap: 14px;
  }

  .series-viewer-grid {
    column-count: 1;
    column-gap: 0;
  }

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

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

/* Visual polish layer: keeps the existing structure and makes details quieter. */
html {
  scroll-padding-top: 82px;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.68;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.site-header {
  transition:
    min-height var(--duration-fast) var(--ease-out),
    padding var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    backdrop-filter var(--duration-fast) var(--ease-out);
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(15, 15, 14, 0.72);
  border-bottom-color: rgba(245, 241, 232, 0.12);
  backdrop-filter: blur(20px) saturate(1.15);
}

.brand {
  font-size: 0.96rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-width: 1.5px;
}

.site-nav {
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0;
}

.site-nav a {
  opacity: 0.78;
  transition:
    color var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.site-nav a::after {
  height: 1px;
  background: var(--accent);
  transition: transform var(--duration-fast) var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  opacity: 1;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.hero {
  min-height: 100svh;
}

.hero-image {
  object-position: center;
  filter: saturate(0.98) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.22) 58%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.42), rgba(9, 9, 9, 0.16) 34%, rgba(0, 0, 0, 0.24));
}

.hero-content {
  width: min(720px, calc(100% - 36px));
  margin-bottom: clamp(70px, 12vh, 118px);
}

.eyebrow,
.tile-info span,
.series-item span,
.series-photo span {
  letter-spacing: 0;
}

.eyebrow {
  margin-bottom: 14px;
  font-size: 0.76rem;
  font-weight: 780;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 780;
  letter-spacing: 0;
}

h1 {
  font-size: 8.6rem;
  line-height: 0.9;
  margin-bottom: 22px;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

h2 {
  font-size: 3.65rem;
  line-height: 1.04;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.34;
}

.hero-copy {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
  line-height: 1.86;
  overflow-wrap: anywhere;
}

.button,
.filter-button,
.contact-list a {
  transition:
    transform var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 5px;
  font-weight: 760;
}

.button:hover,
.filter-button:hover,
.contact-list a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.button:active,
.filter-button:active,
.contact-list a:active,
.photo-tile:active,
.series-item:active,
.series-photo:active {
  transform: translateY(0) scale(0.992);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #17120c;
  border-color: #e7a55b;
  background: #e7a55b;
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: rgba(255, 207, 148, 0.72);
  background: rgba(245, 241, 232, 0.12);
}

.work-section,
.series-section,
.about-section,
.contact-section {
  padding-top: clamp(28px, 3vw, 48px);
  padding-bottom: clamp(88px, 12vw, 150px);
}

.work-section {
  padding-top: clamp(28px, 3vw, 48px);
}

.section-heading {
  margin-bottom: 34px;
}

.section-note,
.about-copy p,
.contact-section p,
.series-item p,
.series-viewer-note {
  line-height: 1.88;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 680;
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: rgba(255, 207, 148, 0.5);
  background: rgba(245, 241, 232, 0.085);
}

.filter-button.is-active {
  box-shadow: 0 10px 26px rgba(216, 137, 58, 0.18);
}

.photo-grid {
  gap: 42px;
}

.photo-masonry {
  column-gap: 12px;
}

.photo-tile {
  margin-bottom: 12px;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.photo-masonry-featured .photo-tile,
.gallery-section[data-category="portrait"] .photo-tile,
.gallery-section[data-category="landscape"] .photo-tile,
.gallery-section[data-category="event"] .photo-tile,
.series-photo {
  border-radius: 3px;
}

.photo-tile::before {
  inset: 0;
  border-color: rgba(255, 207, 148, 0.2);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.photo-tile img,
.series-photo img {
  transition:
    opacity var(--duration-mid) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    filter var(--duration-fast) var(--ease-out);
}

.photo-tile:hover,
.photo-tile:focus-visible {
  border-color: rgba(255, 207, 148, 0.2);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.photo-tile:hover img,
.photo-tile:focus-visible img,
.series-photo:hover img,
.series-photo:focus-visible img {
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.03);
}

.tile-info {
  padding: 42px 12px 12px;
  opacity: 0.94;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.photo-tile:hover .tile-info,
.photo-tile:focus-visible .tile-info {
  opacity: 1;
}

.series-list {
  gap: 18px;
}

.series-item {
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  transition:
    border-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.series-item:hover,
.series-item:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.32);
}

.series-item img {
  transition:
    filter var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.series-item:hover img,
.series-item:focus-visible img {
  transform: scale(1.03);
}

.about-image-wrap {
  border-radius: 4px;
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32);
}

.contact-list a,
.contact-form input,
.contact-form textarea {
  border-radius: 4px;
}

.contact-form input,
.contact-form textarea {
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(245, 241, 232, 0.075);
  box-shadow: 0 0 0 4px rgba(216, 137, 58, 0.12);
}

.lightbox,
.series-viewer {
  transition:
    opacity var(--duration-fast) var(--ease-out),
    visibility var(--duration-fast) var(--ease-out);
}

.lightbox-panel,
.series-viewer-panel {
  transform: translateY(10px);
  transition: transform var(--duration-fast) var(--ease-out);
}

.lightbox.is-open .lightbox-panel,
.series-viewer.is-open .series-viewer-panel {
  transform: translateY(0);
}

.lightbox-image {
  opacity: 0;
  transform: translateY(8px) scale(0.992);
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.lightbox-image.is-loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-close,
.lightbox-nav,
.series-viewer-close {
  transition:
    opacity var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.series-viewer-panel {
  border: 1px solid rgba(245, 241, 232, 0.08);
  border-radius: 4px;
}

html.js .reveal-target {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

html.js .reveal-target.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.js img[data-load-fade] {
  opacity: 0;
}

html.js img[data-load-fade].is-loaded {
  opacity: 1;
}

@media (min-width: 1600px) {
  .hero-content {
    margin-left: clamp(86px, 7vw, 132px);
  }

  .work-section,
  .series-section,
  .about-section,
  .contact-section {
    padding-right: clamp(72px, 7vw, 132px);
    padding-left: clamp(72px, 7vw, 132px);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 6.2rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .about-section {
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
    padding: 14px 16px;
  }

  :root {
    --header-height: 62px;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    inline-size: calc(100vw - 32px);
    margin-bottom: 50px;
  }

  .hero-copy {
    width: min(300px, calc(100vw - 56px)) !important;
    max-width: min(300px, calc(100vw - 56px)) !important;
    max-inline-size: min(300px, calc(100vw - 56px)) !important;
    word-break: break-all;
    white-space: normal;
  }

  .button {
    min-height: 46px;
  }

  .work-section,
  .series-section,
  .about-section,
  .contact-section {
    padding-top: 36px;
    padding-bottom: 76px;
  }

  .series-viewer-grid.has-row-layout .series-layout-row {
    display: flex;
    flex-direction: column;
  }

  .contact-qr-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-qr-card {
    grid-template-columns: minmax(124px, 156px) minmax(0, 1fr);
  }
}

.gallery-section .photo-masonry.portfolio-four-column {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1px;
  align-items: start;
  gap: 4px;
  column-count: auto;
}

.gallery-section .portfolio-four-column .photo-tile {
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-section .portfolio-four-column .photo-tile img {
  width: 100%;
  height: auto;
  padding: 0;
  object-fit: contain;
}

@media (max-width: 980px) {
  .gallery-section .photo-masonry.portfolio-four-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .gallery-section .photo-masonry.portfolio-four-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-copy {
  min-width: 0;
}

.about-name {
  margin: 6px 0 6px;
  color: var(--white);
  font-size: clamp(2.2rem, 3.52vw, 3.48rem);
  line-height: 0.98;
}

.about-role {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: clamp(0.9rem, 1.15vw, 1rem);
  font-weight: 620;
  line-height: 1.55 !important;
}

.about-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--white) !important;
  font-size: clamp(1.02rem, 1.3vw, 1.16rem);
  font-weight: 680;
  line-height: 1.62 !important;
}

.about-details {
  display: grid;
  gap: 0;
}

.about-detail-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  border-top: 0;
  background: linear-gradient(90deg, rgba(245, 241, 232, 0.12), rgba(245, 241, 232, 0.035) 72%, transparent) top / 100% 1px no-repeat;
}

.about-detail {
  padding: 18px 0 20px;
  border-top: 0;
}

.about-detail-pair .about-detail {
  border-top: 0;
}

.about-detail-pair .about-detail:first-child {
  padding-right: 22px;
}

.about-detail-pair .about-detail + .about-detail {
  position: relative;
  padding-left: 22px;
  border-left: 0;
}

.about-detail-pair .about-detail + .about-detail::before {
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 0;
  width: 1px;
  content: "";
  background: linear-gradient(transparent, rgba(245, 241, 232, 0.13), transparent);
}

.about-detail h3 {
  margin: 0 0 10px;
  color: rgba(255, 207, 148, 0.88);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0;
}

.about-detail p {
  margin: 0;
}

.about-detail-value {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.68 !important;
}

.about-detail-description {
  margin-top: 5px !important;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 0.8rem;
  line-height: 1.75 !important;
}

.about-copy .stats {
  margin-top: 22px;
}

.about-copy .stats div {
  padding-top: 18px;
  border-top-color: rgba(245, 241, 232, 0.11);
}

.about-copy .stats dt {
  font-size: clamp(1.9rem, 3.2vw, 2.72rem);
  line-height: 1;
}

.about-detail-wide {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  background: linear-gradient(90deg, rgba(245, 241, 232, 0.1), rgba(245, 241, 232, 0.025) 72%, transparent) top / 100% 1px no-repeat;
}

.about-detail-wide h3 {
  margin: 0;
}

.about-detail-inline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  min-width: 0;
}

.about-detail-inline .about-detail-description {
  margin-top: 0 !important;
}

.about-detail-inline .about-detail-description::before {
  margin-right: 10px;
  color: rgba(245, 241, 232, 0.28);
  content: "｜";
}

.about-image-wrap {
  position: relative;
  aspect-ratio: auto;
  overflow: hidden;
  border-color: rgba(245, 241, 232, 0.11);
  background: transparent;
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.34);
  transition:
    transform 0.7s var(--ease-out),
    border-color 0.7s var(--ease-out),
    box-shadow 0.7s var(--ease-out);
}

.about-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(216, 137, 58, 0.08), transparent 34%, rgba(0, 0, 0, 0.12));
  box-shadow:
    inset 0 0 52px rgba(0, 0, 0, 0.38),
    inset 0 -24px 48px rgba(0, 0, 0, 0.22);
  opacity: 0.72;
  transition: opacity 0.7s var(--ease-out);
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  object-fit: initial;
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1);
  transition:
    opacity var(--duration-mid) var(--ease-out),
    filter 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

@media (hover: hover) {
  .about-image-wrap:hover {
    border-color: rgba(255, 207, 148, 0.2);
    box-shadow: 0 32px 86px rgba(0, 0, 0, 0.42);
    transform: translateY(-3px);
  }

  .about-image-wrap:hover img {
    filter: saturate(1.03) contrast(1.04) brightness(1.025);
    transform: scale(1.018);
  }

  .about-image-wrap:hover::after {
    opacity: 0.48;
  }
}

@media (max-width: 680px) {
  .about-detail-pair {
    grid-template-columns: 1fr;
  }

  .about-detail-pair .about-detail:first-child {
    padding-right: 0;
  }

  .about-detail-pair .about-detail + .about-detail {
    padding-left: 0;
    background: linear-gradient(90deg, rgba(245, 241, 232, 0.1), transparent) top / 100% 1px no-repeat;
    border-top: 0;
    border-left: 0;
  }

  .about-detail-pair .about-detail + .about-detail::before {
    content: none;
  }

  .about-detail-wide {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-marquee-track {
    animation: none !important;
    transform: none !important;
  }
}
