:root {
  --ink: #f2ede3;
  --muted: #b4aa9b;
  --paper: #171713;
  --soft: #22211c;
  --line: #3f3a31;
  --charcoal: #10100d;
  --moss: #9aa68d;
  --brass: #c79a5e;
  --clay: #b86b58;
  --white: #24221d;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.has-lightbox {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(63, 58, 49, 0.78);
  background: rgba(23, 23, 19, 0.9);
  backdrop-filter: blur(16px);
}

.nav-shell,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  font-weight: 780;
  line-height: 1.05;
}

.brand span:first-child {
  font-size: 1rem;
}

.brand span:last-child {
  color: inherit;
  font-size: 1rem;
  font-weight: 780;
  text-transform: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--ink);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid var(--line);
  margin-left: 2px;
  padding-left: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

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

.language-switch a[aria-current="true"] {
  color: var(--ink);
}

.language-switch span {
  color: var(--line);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--charcoal);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.home-hero img {
  object-position: 35% 65%;
  transform: none;
  transform-origin: 35% 65%;
}

.hero-warm-cover img {
  filter: sepia(0.18) saturate(1.18) hue-rotate(-8deg) brightness(0.94) contrast(1.08);
  object-position: center 68%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 13, 0.9), rgba(16, 16, 13, 0.55) 52%, rgba(16, 16, 13, 0.28));
}

.hero-warm-cover::after {
  background:
    linear-gradient(90deg, rgba(18, 14, 9, 0.9), rgba(42, 28, 17, 0.58) 50%, rgba(77, 47, 24, 0.24)),
    linear-gradient(0deg, rgba(184, 107, 88, 0.12), rgba(199, 154, 94, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 15vh;
  color: #fffdf8;
}

.eyebrow {
  margin: 0 0 16px;
  color: #dcc8a8;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  width: min(760px, 100%);
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero p {
  width: min(560px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button,
.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 760;
}

.button {
  border: 1px solid transparent;
  padding: 0 18px;
  background: var(--brass);
  color: var(--charcoal);
}

.button.secondary {
  border-color: rgba(255, 253, 248, 0.4);
  background: rgba(255, 253, 248, 0.09);
  color: #fffdf8;
}

.text-link {
  color: var(--moss);
}

.section {
  padding: 96px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--charcoal);
  color: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.6fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p,
.page-title p,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-note-placeholder {
  min-height: 1.7em;
}

.brand-line {
  margin: 0;
  color: var(--brass);
  font-size: clamp(2.85rem, 6.2vw, 6.4rem);
  font-weight: 760;
  line-height: 1;
}

.dark .section-head p,
.dark .lead {
  color: rgba(255, 253, 248, 0.72);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 861px) {
  .home-hero h1 {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .home-intro .section-head {
    grid-template-columns: 1fr;
  }

  .home-intro .section-head h2 {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 760;
  padding: 0 15px;
}

.filter-button.is-active,
.filter-button:hover {
  border-color: var(--brass);
  background: rgba(199, 154, 94, 0.12);
  color: var(--ink);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 1px 0 rgba(30, 27, 23, 0.04);
}

.dark .card {
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.06);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.dark .card p {
  color: rgba(255, 253, 248, 0.7);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.feature-list b {
  color: var(--brass);
}

.profile-note {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.profile-note p {
  margin: 0;
}

.profile-note b {
  color: var(--ink);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 42px;
  align-items: start;
}

.about-brand {
  max-width: 820px;
  margin-bottom: 56px;
}

.about-brand h2,
.profile-layout h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
}

.about-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.profile-photo {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.profile-row {
  display: grid;
  grid-template-columns: 4.5em minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.profile-history p {
  margin: 0;
}

.profile-history > div {
  display: grid;
  gap: 4px;
}

.feature-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 34px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.feature-photo img {
  width: 100%;
  aspect-ratio: 2.15 / 1;
  object-fit: cover;
}

.feature-photo figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  padding: 12px 16px;
}

.service-photo-section {
  padding-top: 0;
  padding-bottom: 16px;
}

.service-photo {
  margin-top: 0;
}

.service-photo img {
  aspect-ratio: 16 / 10;
  object-position: center 52%;
}

.work-groups {
  display: grid;
  gap: 14px;
}

.work-group {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.work-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.work-group h3 {
  margin: 0 0 6px;
  color: var(--brass);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.work-group p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.award-list {
  display: grid;
  gap: 12px;
}

.award-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.award-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.award-year {
  color: var(--brass);
  font-weight: 800;
}

.award-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.award-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.page-title {
  padding: 86px 0 54px;
}

.page-title .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 0.28fr);
  gap: 56px;
  align-items: start;
}

.page-title .title-copy {
  display: grid;
  gap: 20px;
  max-width: 820px;
}

.page-title .title-copy > p:not(.brand-line) {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.page-title .title-copy .brand-line {
  max-width: 980px;
}

.page-title .title-copy .brand-line:only-child,
.page-title .title-copy h1 + .brand-line {
  font-size: clamp(0.9rem, 1.6vw, 1.76rem);
  font-weight: 400;
  line-height: 1.34;
}

.page-title .section-inner > p {
  grid-column: 1;
  max-width: 720px;
}

.project-title {
  padding-bottom: 28px;
}

.project-title .section-inner {
  display: block;
}

.project-title .title-copy {
  gap: 36px;
  width: fit-content;
  max-width: 100%;
}

.project-title h1 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

.project-title-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.project-title-main h1 {
  display: inline;
}

.project-title-main .project-subtitle {
  display: inline;
}

.project-title .project-subtitle {
  color: var(--muted);
  font-size: clamp(1.18rem, 1.85vw, 1.65rem);
  text-align: left;
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  gap: 18px;
  margin-top: 24px;
}

.project-title + .section {
  padding-top: 32px;
}

.project-video-section .section-inner {
  max-width: 920px;
}

.project-overview-section {
  padding-top: 32px;
}

.project-record {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  gap: 22px;
  align-items: start;
}

.project-record.is-single {
  grid-template-columns: minmax(0, 760px);
}

.project-panel {
  display: grid;
  gap: 14px;
}

.project-panel h2,
.project-panel h3 {
  margin: 0;
}

.project-panel p {
  margin: 0;
}

.project-trailer-action {
  align-self: start;
  margin-top: 4px;
}

.project-trailer-action .button {
  justify-self: start;
  margin-top: 2px;
}


.project-trailer-section {
  padding-top: 0;
}

.project-trailer-embed {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-awards-section {
  padding-top: 0;
}

.project-awards {
  display: grid;
  gap: 18px;
}

.project-awards h2 {
  margin: 0;
}

.project-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  max-width: 720px;
  padding-top: 16px;
  padding-left: 1em;
}

.project-meta {
  display: grid;
  gap: 8px;
}

.project-meta-strip p {
  margin: 0;
  color: var(--muted);
}

.project-meta-strip span {
  color: var(--muted);
}

.project-note {
  padding-top: 0;
}

.project-note .section-inner,
.project-awards-section .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 920px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.work-item,
.sound-item,
.journal-item {
  overflow: hidden;
  padding: 0;
}

.journal-stack {
  display: grid;
  gap: 34px;
}

.journal-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journal-shorts-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.journal-shorts-grid .journal-item {
  display: flex;
  flex-direction: column;
}

.journal-shorts-grid .item-body {
  flex: 1;
}

.journal-item.is-vertical {
  justify-self: stretch;
}

.work-item-link {
  display: block;
}

.work-item.is-hidden,
.sound-card.is-hidden {
  display: none;
}

.work-media,
.sound-art,
.journal-media {
  min-height: 230px;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 22% 28%, rgba(175, 125, 67, 0.36), transparent 28%),
    linear-gradient(135deg, #2d302d, #69766c 58%, #c0a06e);
}

.work-media {
  position: relative;
  display: flex;
  min-height: 230px;
  aspect-ratio: 16 / 9;
  align-items: flex-end;
  padding: 18px;
  color: #fffdf8;
  background-size: cover;
  background-position: center;
}

.sound-art {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.14) 0 2px, transparent 2px 16px),
    linear-gradient(135deg, #31423c, #8b7a56 62%, #d3b682);
}

.sound-library-section {
  padding-top: 30px;
}

.sound-list {
  display: grid;
  gap: 16px;
}

.sound-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: center;
}

.sound-card-main {
  display: grid;
  gap: 8px;
}

.sound-card-main h3 {
  margin-bottom: 0;
}

.sound-player {
  display: grid;
  gap: 10px;
}

.sound-player audio {
  width: 100%;
  accent-color: var(--brass);
}

.sound-player p {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.journal-media {
  display: grid;
  place-items: center;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(168,81,63,0.65), transparent),
    linear-gradient(135deg, #20231f, #5a6b63 70%);
  background-size: cover;
  background-position: center;
}

.play-mark {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 253, 248, 0.42);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(32, 35, 31, 0.42);
  backdrop-filter: blur(4px);
  color: #fffdf8;
  font-size: 1.4rem;
}

.item-body {
  padding: 22px;
}

.work-title-row {
  display: grid;
  gap: 4px;
  margin-bottom: 12px;
}

.work-title-row h3 {
  margin-bottom: 0;
}

.work-title-row p {
  color: var(--muted);
  font-size: 0.95rem;
}

.work-action {
  margin-top: 18px;
  justify-content: flex-start;
  min-height: auto;
  color: var(--brass);
  font-size: 0.92rem;
}

.project-hero {
  padding: 72px 0 0;
}

.project-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.project-overview {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.62fr);
  gap: 24px;
}

.project-overview .project-media {
  box-shadow: none;
}

.project-summary {
  display: grid;
  gap: 18px;
}

.project-summary .feature-list {
  margin-top: 0;
}

.project-video-section .project-media {
  box-shadow: none;
}

.project-facts {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 22% 28%, rgba(199, 154, 94, 0.24), transparent 30%),
    linear-gradient(135deg, #1b1d19, #4d5a51 58%, #92734a);
}

.journal-item.is-vertical .video-frame {
  aspect-ratio: 9 / 16;
}

.video-frame iframe,
.video-frame img,
.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  color: #fffdf8;
  font-weight: 760;
}

.video-frame img {
  object-fit: cover;
}

.project-info {
  display: grid;
  gap: 18px;
}

.project-gallery {
  column-count: 3;
  column-gap: 16px;
}

.project-gallery-single {
  column-count: 1;
  max-width: 920px;
}

.project-gallery.project-gallery-single figure {
  display: block;
}

.project-gallery.project-gallery-single img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-gallery figure {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.project-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(14, 15, 13, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 72px);
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
}

.lightbox-button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(246, 239, 226, 0.36);
  border-radius: 50%;
  background: rgba(22, 24, 21, 0.72);
  color: #fffdf8;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 64px;
  border: 1px solid rgba(246, 239, 226, 0.28);
  border-radius: 999px;
  background: rgba(22, 24, 21, 0.58);
  color: #fffdf8;
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.lightbox-nav-prev {
  left: 18px;
}

.lightbox-nav-next {
  right: 18px;
}

.meta {
  margin: 0 0 10px;
  color: var(--brass);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.wave {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 52px;
  margin-top: 18px;
}

.wave span {
  width: 5px;
  border-radius: 99px;
  background: var(--moss);
}

.wave span:nth-child(1) { height: 18px; }
.wave span:nth-child(2) { height: 34px; }
.wave span:nth-child(3) { height: 24px; }
.wave span:nth-child(4) { height: 44px; }
.wave span:nth-child(5) { height: 28px; }
.wave span:nth-child(6) { height: 38px; }
.wave span:nth-child(7) { height: 16px; }
.wave span:nth-child(8) { height: 31px; }
.wave span:nth-child(9) { height: 46px; }
.wave span:nth-child(10) { height: 22px; }

.contact-band {
  background: #2b332b;
  color: #fffdf8;
  padding: 72px 0;
}

.contact-band .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

.contact-band p {
  margin: 14px 0 0;
  color: rgba(255, 253, 248, 0.78);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: start;
}

.contact-title {
  padding-bottom: 16px;
}

.contact-section {
  padding-top: 4px;
}

.contact-title-links {
  margin-top: 14px;
}

.contact-title-links a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 253, 248, 0.86);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #4f463d;
  color: #fffdf8;
  box-shadow: 0 4px 14px rgba(48, 53, 46, 0.16);
}

.contact-title-links a:hover {
  border-color: #fffdf8;
  background: #8a6a4b;
  color: #fffdf8;
}

.contact-title-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-title-links a[aria-label="Facebook"] svg {
  fill: currentColor;
  stroke: none;
}

.footer-icon-links {
  margin-top: 0;
}

.contact-content {
  display: grid;
  gap: 22px;
}

.contact-photo {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  max-width: 360px;
  justify-self: end;
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-links,
.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.social-links a {
  color: var(--muted);
}

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

.contact-band .social-links a {
  color: var(--brass);
}

.contact-band .social-links a:hover {
  color: var(--ink);
}

.footer-links a {
  color: var(--muted);
}

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

@media (max-width: 860px) {
  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    padding: 12px 20px 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .language-switch {
    border-left: 0;
    border-top: 1px solid var(--line);
    margin-left: 0;
    margin-top: 8px;
    padding-left: 0;
    padding-top: 12px;
  }

  .hero {
    aspect-ratio: 4 / 5;
    min-height: auto;
  }

  .hero img {
    object-position: center 66%;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(18, 18, 15, 0.88), rgba(18, 18, 15, 0.38));
  }

  .hero-content {
    padding-bottom: 56px;
  }

  .section,
  .page-title {
    padding: 64px 0;
  }

  .service-photo img {
    aspect-ratio: 4 / 3;
  }

  .section-head,
  .page-title .section-inner,
  .profile-layout,
  .project-record,
  .project-overview,
  .project-intro,
  .sound-card,
  .split,
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .section-head,
  .page-title .section-inner {
    gap: 20px;
  }

  .project-gallery {
    column-count: 2;
  }

  .contact-band .section-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-photo {
    justify-self: start;
    width: min(100%, 360px);
  }

  .journal-video-grid {
    grid-template-columns: 1fr;
  }

  .journal-shorts-grid {
    grid-template-columns: 1fr;
  }

  .journal-item.is-vertical {
    width: min(100%, 360px);
  }
}

@media (max-width: 520px) {
  .nav-shell,
  .section-inner,
  .hero-content,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .button-row {
    flex-direction: column;
  }

  .hero {
    aspect-ratio: 3 / 4;
    min-height: min(780px, 86svh);
  }

  .hero img {
    object-position: center center;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 10.2vw, 2.7rem);
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .button {
    width: 100%;
  }

  html[lang="zh-Hant"] .home-intro .section-head h2 {
    max-width: 10.5em;
    font-size: 2rem;
    line-height: 1.08;
    text-wrap: balance;
  }

  .home-hero {
    min-height: min(720px, 78svh);
  }

  .home-hero img {
    object-position: 50% 80%;
    transform: scale(2);
    transform-origin: 50% 80%;
  }

  .home-hero .hero-content {
    padding-bottom: clamp(72px, 15svh, 116px);
  }

  .home-hero .button-row {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }

  .home-hero .button {
    width: auto;
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .award-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .profile-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .project-gallery {
    column-count: 1;
  }
}
