:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0e0e0d;
  --ink: #f5f1e9;
  --muted: #b8afa3;
  --soft: #7d746b;
  --line: rgba(245, 241, 233, 0.16);
  --accent: #b99164;
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px clamp(18px, 5vw, 72px);
}

.site-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: clamp(4px, 1vw, 12px);
  color: var(--soft);
  letter-spacing: 0.04em;
}

.language-switch a {
  padding: 5px 0;
}

.language-switch a.active {
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: end;
  padding: 10px clamp(18px, 5vw, 72px) 72px;
}

.hero-copy {
  padding-bottom: 34px;
}

.eyebrow,
.footer-kicker {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.page-title h1,
.about-copy h1,
.photo-info h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 10vw, 138px);
  line-height: 0.88;
}

.hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 660px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.hero-frame {
  margin: 0;
  aspect-ratio: 4 / 5.35;
  padding: 10px;
  border: 1px solid var(--line);
  background: #111;
}

.empty-photo {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--soft);
  border: 1px dashed var(--line);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 clamp(18px, 5vw, 72px) 84px;
}

.photo-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
}

.photo-card:nth-child(even) {
  margin-top: 42px;
}

.photo-card span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: #fff;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.photo-card::after,
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.photo-card:hover span,
.photo-card:hover::after,
.work-card:hover::after {
  opacity: 1;
}

.about-band {
  max-width: 880px;
  margin: 0 auto 92px;
  padding: 76px clamp(22px, 5vw, 58px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-band h2 {
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 400;
}

.about-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.page-shell {
  padding: 36px clamp(18px, 5vw, 72px) 90px;
}

.page-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.page-title h1 {
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.94;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters a {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.filters a.active {
  border-color: var(--ink);
  color: var(--ink);
}

.filters a:hover {
  color: var(--ink);
}

.masonry-grid {
  columns: 3 260px;
  column-gap: 16px;
}

.work-card {
  position: relative;
  display: block;
  margin: 0 0 16px;
  break-inside: avoid;
  background: #111;
}

.work-card img {
  height: auto;
  aspect-ratio: 4 / 5;
}

.work-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.work-card small {
  color: var(--soft);
}

.photo-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 54px);
  padding: 30px clamp(18px, 5vw, 72px) 90px;
}

.photo-view {
  margin: 0;
  min-height: 620px;
  background: #111;
}

.photo-view img {
  object-fit: contain;
}

.photo-info {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3vw, 42px);
}

.photo-info h1,
.about-copy h1 {
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.96;
}

.photo-info p:not(.eyebrow),
.about-copy p {
  color: var(--muted);
  line-height: 1.85;
}

.photo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px 0 4px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.related {
  grid-column: 1 / -1;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.related h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
}

.related-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.related-row a {
  aspect-ratio: 4 / 5;
}

.about-page {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 5vw, 84px);
  padding: 60px clamp(18px, 5vw, 72px) 96px;
}

.about-contact {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  color: var(--ink);
}

.about-contact a {
  width: fit-content;
  border-bottom: 1px solid var(--accent);
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}

.about-photos img {
  aspect-ratio: 4 / 5;
}

.about-photos img:nth-child(2) {
  margin-top: 64px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.6fr);
  gap: 28px;
  padding: 56px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #0a0a09;
}

.site-footer h2 {
  margin: 0;
  max-width: 720px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}

.footer-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-contact {
  color: var(--muted);
  line-height: 1.9;
}

.footer-contact p {
  margin: 0 0 10px;
}

.footer-contact a {
  display: inline-block;
  margin-right: 16px;
  border-bottom: 1px solid var(--accent);
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  border: 1px dashed var(--line);
}

@media (max-width: 900px) {
  .site-header,
  .page-title,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .photo-detail,
  .about-page {
    grid-template-columns: 1fr;
  }

  .hero-frame {
    max-width: 560px;
  }

  .photo-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-info {
    border-left: 0;
    padding-left: 0;
  }

  .photo-view {
    min-height: 420px;
  }

  .related-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 22px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .hero h1 {
    font-size: clamp(48px, 18vw, 82px);
  }

  .hero-meta,
  .photo-strip,
  .about-photos,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .photo-card:nth-child(even),
  .about-photos img:nth-child(2) {
    margin-top: 0;
  }

  .related-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.replica-home-body {
  background: #050505;
}

.replica-header {
  background: #f2f2f0;
  color: #111111;
}

.replica-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 72px) 18px;
}

.replica-brand {
  display: inline-grid;
  gap: 2px;
  color: #111111;
}

.replica-brand-mark {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.replica-brand-sub {
  font-size: 9px;
  letter-spacing: 0.42em;
  line-height: 1;
}

.replica-menu,
.replica-footer-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.replica-menu a,
.replica-footer-menu a {
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.replica-home {
  background: #050505;
}

.replica-hero {
  background: #f2f2f0;
  padding: 0 clamp(18px, 2vw, 22px) 30px;
}

.replica-hero-frame {
  display: grid;
  min-height: min(60vw, 620px);
  overflow: hidden;
  position: relative;
  background: #000000;
}

.replica-hero-media-layer,
.replica-hero-cover {
  position: absolute;
  inset: 0;
}

.replica-hero-media-layer {
  background: #111111;
  opacity: 0;
}

.replica-hero-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #111111;
}

.replica-hero-link:focus-visible {
  outline: 2px solid rgba(255,255,255,0.92);
  outline-offset: -8px;
}

.replica-hero-media,
.replica-hero-slide {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  filter: grayscale(1) contrast(1.02) brightness(0.9);
  transform: scale(1.02);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.8s cubic-bezier(.4, 0, .2, 1);
  will-change: opacity, transform;
}

.replica-hero-slide.is-active {
  opacity: 1;
}

.replica-home-body.replica-home-animate .replica-hero-slide.is-active[data-motion="forward"] {
  animation: replicaHeroDriftForward 7.8s linear forwards;
}

.replica-home-body.replica-home-animate .replica-hero-slide.is-active[data-motion="sideways"] {
  animation: replicaHeroDriftSideways 7.8s linear forwards;
}

.replica-hero-empty {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(255,255,255,0.68);
}

.replica-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  justify-items: center;
  padding: 32px;
  text-align: center;
}

.replica-hero-cover {
  display: grid;
  place-items: center;
  background: #000000;
  overflow: hidden;
}

.replica-hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), rgba(255,255,255,0) 54%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  opacity: 0;
}

.replica-home-body.replica-home-animate .replica-hero-cover::before {
  animation: replicaCoverGlow 1.4s ease 0.2s forwards;
}

.replica-home-body.replica-home-animate .replica-hero-overline {
  animation: replicaOverlineIn 0.9s cubic-bezier(.22, 1, .36, 1) 0.18s forwards;
}

.replica-home-body.replica-home-animate .replica-hero-title {
  animation: replicaTitleReveal 1.5s cubic-bezier(.2, .8, .2, 1) 0.4s forwards;
}

.replica-home-body.replica-home-animate .replica-hero-cover {
  animation: replicaCoverLift 1.1s cubic-bezier(.22, 1, .36, 1) 1.85s forwards;
}

.replica-home-body.replica-home-animate .replica-hero-media-layer {
  animation: replicaImageReveal 1.35s cubic-bezier(.22, 1, .36, 1) 1.95s forwards;
}

.replica-hero-overline {
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(26px, 3.2vw, 52px);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.replica-hero-title {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-family: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: clamp(78px, 11vw, 164px);
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 0.92;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  filter: blur(8px);
}

.replica-section {
  padding: clamp(74px, 9vw, 120px) clamp(18px, 5vw, 72px) 0;
}

.replica-section-wrap {
  max-width: 1460px;
  margin: 0 auto;
}

.replica-section-title {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  color: #f5f1e9;
}

.replica-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 24px;
}

.replica-work-card {
  border-top: 1px solid rgba(245, 241, 233, 0.16);
  padding-top: 18px;
}

.replica-work-card a {
  display: grid;
  gap: 16px;
}

.replica-work-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111111;
}

.replica-work-image img {
  transition: transform 320ms cubic-bezier(.3, 0, 0, 1), filter 320ms cubic-bezier(.3, 0, 0, 1);
}

.replica-work-card a:hover .replica-work-image img {
  transform: scale(1.02);
  filter: saturate(1.04);
}

.replica-work-copy {
  display: grid;
  gap: 8px;
}

.replica-work-copy h3 {
  margin: 0;
  color: #f5f1e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.04;
}

.replica-work-copy span {
  color: #b99164;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.replica-news-list {
  border-top: 1px solid rgba(245, 241, 233, 0.16);
}

.replica-news-item {
  display: grid;
  grid-template-columns: minmax(230px, 0.56fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(245, 241, 233, 0.16);
}

.replica-news-item h3 {
  margin: 0;
  color: #f5f1e9;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.06;
}

.replica-news-item div p {
  margin: 8px 0 0;
  color: #b8afa3;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.7;
}

.replica-news-item > p {
  margin: 0;
  color: #b8afa3;
  font-size: 15px;
  line-height: 1.9;
}

.replica-newsletter .replica-section-wrap {
  border-top: 1px solid rgba(245, 241, 233, 0.16);
  padding-top: 24px;
}

.replica-newsletter-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: end;
}

.replica-newsletter-form label {
  display: grid;
  gap: 10px;
}

.replica-newsletter-form span {
  color: #b8afa3;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.replica-newsletter-form input {
  min-width: 0;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(245, 241, 233, 0.26);
  border-radius: 8px;
  background: transparent;
  color: #f5f1e9;
  font: inherit;
}

.replica-newsletter-form button {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(245, 241, 233, 0.26);
  border-radius: 8px;
  background: transparent;
  color: #b99164;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.replica-footer {
  padding: 34px clamp(18px, 5vw, 72px) 42px;
  border-top: 1px solid rgba(245, 241, 233, 0.16);
}

.replica-footer-menu {
  max-width: 1460px;
  margin: 0 auto;
}

@keyframes replicaCoverGlow {
  from {
    opacity: 0;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes replicaImageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes replicaHeroDriftForward {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(0, -0.7%, 0); }
}

@keyframes replicaHeroDriftSideways {
  from { transform: scale(1.07) translate3d(-0.8%, 0, 0); }
  to { transform: scale(1.03) translate3d(0.8%, -0.4%, 0); }
}

@keyframes replicaOverlineIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes replicaCoverLift {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-2%) scale(1.01);
    visibility: hidden;
  }
}

@keyframes replicaTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(0.985);
    letter-spacing: 0.34em;
    filter: blur(10px);
  }
  55% {
    opacity: 0.88;
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    letter-spacing: 0.16em;
    filter: blur(0);
  }
}

@media (max-width: 980px) {
  .replica-header-inner,
  .replica-news-item,
  .replica-newsletter-form {
    grid-template-columns: 1fr;
  }

  .replica-work-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .replica-header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px clamp(18px, 5vw, 72px);
  }

  .replica-menu,
  .replica-footer-menu {
    gap: 14px 18px;
  }

  .replica-hero-frame {
    min-height: 360px;
  }

  .replica-hero-title {
    font-size: clamp(42px, 15vw, 88px);
    letter-spacing: 0.12em;
  }

  .replica-hero-overline {
    font-size: clamp(18px, 6vw, 30px);
  }

  .replica-hero-media,
  .replica-hero-slide {
    inset: -1%;
    width: 102%;
    height: 102%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .replica-home-body.replica-home-reduced .replica-hero-media-layer {
    opacity: 1;
  }

  .replica-home-body.replica-home-reduced .replica-hero-cover {
    display: none;
  }

  .replica-home-body.replica-home-reduced .replica-hero-slide {
    animation: none;
    transition: none;
    transform: scale(1.02);
  }
}
