:root {
  --ink: #171613;
  --ink-soft: #25231f;
  --paper: #f3efe7;
  --paper-deep: #e8e0d4;
  --white: #fffdf8;
  --muted: #716c63;
  --line: rgba(23, 22, 19, 0.16);
  --accent: #a84e36;
  --accent-soft: #d59a7b;
  --blue: #325f80;
  --shadow: 0 24px 80px rgba(23, 22, 19, 0.16);
  --serif: "Noto Serif TC", "Songti TC", "PMingLiU", Georgia, serif;
  --sans: "Noto Sans TC", "Microsoft JhengHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid #e7a77f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.clipboard-helper {
  position: fixed;
  left: -9999px;
  opacity: 0;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(20px, 4vw, 64px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  min-height: 70px;
  color: var(--ink);
  background: rgba(243, 239, 231, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(23, 22, 19, 0.06);
  backdrop-filter: blur(18px);
}

.site-header-solid {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 34px);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  transition: right 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.main-nav > a[aria-current="page"]::after {
  right: 0;
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 17px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.eyebrow.light,
.light-link {
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: clamp(78px, 10vw, 150px) clamp(20px, 5vw, 76px);
}

.section-heading {
  width: min(1320px, 100%);
  margin: 0 auto clamp(40px, 6vw, 82px);
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5.4vw, 5.6rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 9vw, 140px);
  align-items: end;
}

.heading-note {
  max-width: 440px;
  color: var(--muted);
}

.heading-note p {
  margin-bottom: 22px;
}

.compact-heading {
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
}

.text-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 800;
}

.editorial-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 52% 38%;
  filter: saturate(0.82) contrast(1.04);
}

.hero-reel {
  isolation: isolate;
  background: #100e0c;
}

.hero-reel::after {
  position: absolute;
  z-index: 1;
  inset: -30%;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.24) 0.5px, transparent 0.8px),
    radial-gradient(rgba(0, 0, 0, 0.38) 0.6px, transparent 0.9px);
  background-position: 0 0, 3px 2px;
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
  animation: hero-film-grain 0.32s steps(2, end) infinite;
}

.hero-reel-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transform: scale(1.08);
  animation: hero-reel-frame 18s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
  will-change: opacity, transform;
}

.hero-reel .frame-one { animation-delay: 0s; }
.hero-reel .frame-two { animation-delay: 5.94s; object-position: 52% 44%; }
.hero-reel .frame-three { animation-delay: 11.94s; object-position: 48% 46%; }

.hero-reel-label {
  position: absolute;
  z-index: 2;
  top: clamp(104px, 13vh, 152px);
  right: clamp(20px, 4vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.hero-reel-label span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.13);
  animation: hero-reel-pulse 1.5s ease-in-out infinite;
}

@keyframes hero-reel-frame {
  0% { opacity: 0; transform: scale(1.08) translate3d(0, 0, 0); }
  4% { opacity: 1; }
  29% { opacity: 1; transform: scale(1) translate3d(-1.6%, -0.8%, 0); }
  37%, 100% { opacity: 0; transform: scale(1.02) translate3d(-2.2%, -1.2%, 0); }
}

@keyframes hero-film-grain {
  0% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  100% { transform: translate3d(2%, 2%, 0); }
}

@keyframes hero-reel-pulse {
  50% { transform: scale(0.68); opacity: 0.42; }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(15, 14, 12, 0.78) 0%, rgba(15, 14, 12, 0.36) 52%, rgba(15, 14, 12, 0.08) 78%),
    linear-gradient(0deg, rgba(15, 14, 12, 0.34), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  align-self: end;
  margin: 0 clamp(20px, 7vw, 112px) clamp(110px, 15vh, 170px);
  animation: hero-content-enter 1.05s 0.12s both cubic-bezier(0.22, 0.61, 0.36, 1);
}

@keyframes hero-content-enter {
  from { opacity: 0; transform: translate3d(0, 28px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.hero-content h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-copy {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 64px);
  bottom: 28px;
  display: flex;
  gap: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ticker {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.ticker > div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 18px clamp(20px, 4vw, 64px);
  white-space: nowrap;
}

.ticker span {
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.5vw, 1.2rem);
  letter-spacing: 0.08em;
}

.ticker i {
  color: var(--accent-soft);
  font-style: normal;
}

.featured-section {
  background: var(--paper);
}

.gallery {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 24px);
}

.gallery.is-empty {
  display: block;
}

.gallery-empty {
  max-width: 720px;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--white);
}

.gallery-empty h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
}

.work-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 0;
  color: #fff;
  border: 0;
  background: #292722;
  cursor: pointer;
  text-align: left;
  isolation: isolate;
}

.work-card.wide {
  grid-column: span 8;
  aspect-ratio: 16 / 10;
}

.work-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.work-card.contain img {
  object-fit: contain;
  background: #111;
}

.work-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 9, 8, 0.8), transparent 58%);
}

.work-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: #292722;
  opacity: 0;
}

.work-card.image-loading::before {
  content: "LOADING";
  opacity: 1;
}

.work-card.image-missing::before {
  content: "IMAGE UNAVAILABLE";
  opacity: 1;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.045);
}

.work-info {
  position: absolute;
  z-index: 1;
  left: clamp(18px, 2.4vw, 32px);
  right: clamp(18px, 2.4vw, 32px);
  bottom: clamp(18px, 2.4vw, 30px);
}

.work-info p {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  font-weight: 500;
  line-height: 1.2;
}

.featured-gallery .work-card:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 7 / 6;
}

.featured-gallery .work-card:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 5 / 6;
}

.featured-gallery .work-card:nth-child(3) {
  grid-column: 2 / span 5;
  aspect-ratio: 5 / 6;
}

.featured-gallery .work-card:nth-child(4) {
  grid-column: span 6;
  aspect-ratio: 6 / 5;
}

.statement-section {
  padding: clamp(90px, 14vw, 210px) clamp(20px, 8vw, 130px);
  color: #fff;
  background: var(--accent);
}

.statement-section p {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.statement-section h2 {
  max-width: 1180px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 7vw, 7.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.disciplines-section {
  background: var(--white);
}

.discipline-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: repeat(2, minmax(310px, 36vw));
  gap: 16px;
}

.discipline-card {
  position: relative;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.discipline-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 7, 0.78), transparent 64%);
}

.discipline-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.discipline-card:hover img {
  transform: scale(1.04);
}

.discipline-tall {
  grid-row: 1 / span 2;
}

.discipline-number {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.discipline-card > div {
  position: absolute;
  left: clamp(22px, 3vw, 38px);
  right: 22px;
  bottom: clamp(22px, 3vw, 36px);
}

.discipline-card p,
.discipline-card span:last-child {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discipline-card h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 4rem);
  font-weight: 500;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 0;
  padding: 0;
  color: #fff;
  background: var(--ink);
}

.approach-image {
  position: relative;
  min-height: 760px;
}

.approach-image img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(1) contrast(1.08);
}

.approach-image > span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.approach-copy {
  align-self: center;
  padding: clamp(60px, 8vw, 130px);
}

.approach-copy > h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.approach-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.process-list {
  margin: 38px 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-list li > span {
  color: var(--accent-soft);
  font-size: 0.7rem;
  font-weight: 800;
}

.process-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

.journal-section {
  background: var(--paper-deep);
}

.journal-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
  align-items: end;
}

.journal-grid article {
  background: var(--white);
}

.journal-grid img {
  height: clamp(340px, 48vw, 680px);
  object-fit: cover;
}

.journal-grid article:not(.journal-main) img {
  height: clamp(300px, 34vw, 470px);
}

.journal-grid article > div {
  padding: clamp(22px, 3vw, 38px);
}

.journal-grid span {
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.journal-grid h3 {
  margin: 10px 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 500;
}

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

.contact-cta {
  display: grid;
  justify-items: center;
  padding: clamp(90px, 13vw, 190px) 20px;
  color: #fff;
  background: var(--blue);
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 500;
  line-height: 1;
}

.contact-cta > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
}

.compact-cta {
  padding-block: clamp(80px, 10vw, 130px);
}

.compact-cta h2 {
  font-size: clamp(2.6rem, 6vw, 6rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  padding: 54px clamp(20px, 5vw, 76px) 28px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--ink);
}

.footer-brand {
  display: grid;
}

.footer-brand strong {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
}

.footer-brand span,
.site-footer > p {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* Portfolio */
.collection-hero {
  min-height: min(780px, calc(100svh - 70px));
  display: grid;
  grid-template-columns: 1fr minmax(400px, 0.8fr);
  background: var(--paper);
}

.collection-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) clamp(20px, 7vw, 110px);
}

.collection-copy h1 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.collection-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.collection-image {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.collection-image img {
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.collection-image span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  padding: 8px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  backdrop-filter: blur(8px);
}

.collection-stats {
  display: flex;
  gap: 46px;
  margin-top: clamp(40px, 7vw, 90px);
}

.collection-stats div {
  display: grid;
}

.collection-stats strong {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
}

.collection-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.portfolio-toolbar {
  position: sticky;
  z-index: 20;
  top: 70px;
  padding: 16px clamp(20px, 5vw, 76px);
  border-block: 1px solid var(--line);
  background: rgba(243, 239, 231, 0.95);
  backdrop-filter: blur(16px);
}

.filters {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-link {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.filter-link:hover,
.filter-link.active {
  color: #fff;
  background: var(--ink);
}

.portfolio-section {
  padding-top: 48px;
}

.portfolio-label {
  width: min(1320px, 100%);
  margin: 0 auto 18px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(9, 8, 7, 0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox-panel {
  width: min(1180px, calc(100% - 100px));
  max-height: 90vh;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.lightbox-panel img {
  width: 100%;
  height: 86vh;
  max-height: 86vh;
  object-fit: contain;
  background: #080808;
}

.lightbox-panel figcaption {
  align-self: end;
  padding: clamp(24px, 4vw, 54px);
}

.lightbox-panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 500;
}

.lightbox-category,
.lightbox-counter {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lightbox-meta,
.lightbox-status {
  color: var(--muted);
}

.lightbox-description {
  max-width: 36em;
  margin: 22px 0;
  color: #3e3a36;
  font-size: 0.94rem;
  line-height: 1.9;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 50px;
  font-size: 2.2rem;
  transform: translateY(-50%);
}

.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-nav[hidden] { display: none; }

.sound-toggle {
  position: fixed;
  z-index: 12;
  right: clamp(16px, 2.5vw, 34px);
  bottom: clamp(16px, 2.5vw, 34px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(16, 14, 12, 0.76);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  border-color: #fff;
  background: rgba(16, 14, 12, 0.94);
  transform: translateY(-2px);
}

.sound-toggle-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 0.9rem;
}

.sound-toggle.is-playing {
  border-color: rgba(255, 255, 255, 0.9);
  background: #d76b4f;
}

.sound-toggle.is-playing .sound-toggle-icon {
  animation: sound-toggle-pulse 1.3s ease-in-out infinite;
}

.sound-toggle.is-unavailable { opacity: 0.62; cursor: not-allowed; }

@keyframes sound-toggle-pulse {
  50% { transform: scale(0.78); }
}

/* Booking */
.booking-hero {
  min-height: min(780px, calc(100svh - 70px));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  color: #fff;
  background: var(--ink);
}

.booking-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 9vw, 140px) clamp(20px, 7vw, 110px);
}

.booking-hero h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.booking-hero-copy > p:not(.eyebrow) {
  max-width: 550px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
}

.booking-hero > img {
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: center 16%;
  filter: grayscale(1) contrast(1.04);
}

.booking-process {
  background: var(--white);
}

.process-grid {
  width: min(1320px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.process-grid article {
  min-height: 320px;
  padding: clamp(26px, 4vw, 50px);
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.process-grid h3 {
  margin-top: clamp(70px, 10vw, 130px);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
}

.process-grid p {
  color: var(--muted);
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(50px, 9vw, 150px);
  color: #fff;
  background: var(--blue);
}

.inquiry-intro h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.inquiry-intro > p:not(.eyebrow),
.inquiry-intro li {
  color: rgba(255, 255, 255, 0.7);
}

.inquiry-intro ul {
  margin: 34px 0 0;
  padding: 24px 0 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-form {
  display: grid;
  gap: 19px;
  padding: clamp(26px, 5vw, 58px);
  color: var(--ink);
  background: var(--white);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-bottom-color: var(--accent);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.inquiry-form .button {
  margin-top: 12px;
}

.form-status {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

.inquiry-output {
  padding: 18px;
  white-space: pre-wrap;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.86rem;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  width: min(980px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 760px; color: var(--muted); }

@media (max-width: 1024px) {
  .split-heading,
  .approach-section,
  .booking-hero,
  .inquiry-section,
  .collection-hero {
    grid-template-columns: 1fr;
  }

  .heading-note {
    max-width: 640px;
  }

  .collection-image,
  .booking-hero > img {
    min-height: 560px;
    max-height: 74vh;
  }

  .collection-image { order: -1; }

  .approach-image { min-height: 620px; }

  .work-card,
  .work-card.wide {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
  }

  .featured-gallery .work-card:nth-child(n) {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
  }

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

@media (max-width: 760px) {
  html { scroll-padding-top: 68px; }

  .site-header,
  .site-header.is-scrolled,
  .site-header-solid {
    min-height: 68px;
    padding: 10px 16px;
  }

  .menu-toggle {
    display: flex;
    position: relative;
    z-index: 2;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    padding: 100px 28px 40px;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 8vw, 3rem);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
  }

  .main-nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: #fff;
    background: var(--ink);
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .site-header { color: var(--ink); }
  .nav-open .menu-toggle > span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-open .menu-toggle > span:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 18px 100px;
  }

  .hero-content h1 {
    font-size: clamp(3.7rem, 17vw, 6.2rem);
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(12, 11, 10, 0.83), rgba(12, 11, 10, 0.1) 75%);
  }

  .hero-media img { object-position: 55% center; }
  .hero-reel .frame-two { object-position: 52% center; }
  .hero-reel .frame-three { object-position: 48% center; }
  .hero-reel-label { top: 92px; right: 18px; }
  .hero-index { left: 18px; right: 18px; justify-content: space-between; gap: 12px; }

  .section { padding: 72px 18px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2 { font-size: clamp(2.45rem, 12vw, 4.2rem); }

  .gallery,
  .discipline-grid,
  .journal-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card.wide,
  .featured-gallery .work-card:nth-child(n) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  .discipline-grid { grid-template-rows: none; }
  .discipline-card,
  .discipline-tall { min-height: 470px; grid-row: auto; }

  .statement-section { padding-inline: 18px; }
  .statement-section h2 { font-size: clamp(2.7rem, 13vw, 4.8rem); }

  .approach-image { min-height: 520px; }
  .approach-copy { padding: 64px 20px 74px; }

  .journal-grid article:not(.journal-main) img,
  .journal-grid img { height: 480px; }

  .contact-cta { padding-inline: 18px; }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 48px 18px 24px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .portfolio-toolbar { top: 68px; padding-inline: 14px; }
  .portfolio-section { padding-top: 32px; }
  .portfolio-label { align-items: flex-start; gap: 10px; flex-direction: column; }

  .collection-copy { padding: 64px 18px 78px; }
  .collection-copy h1 { font-size: clamp(3.7rem, 16vw, 6rem); }
  .collection-image { min-height: 64vh; }

  .lightbox { padding: 0; }
  .lightbox-panel {
    width: 100%;
    max-height: 100vh;
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .lightbox-panel img { height: 72vh; max-height: 72vh; }
  .lightbox-panel figcaption { padding: 20px 20px 78px; }
  .lightbox-nav { top: auto; bottom: 16px; transform: none; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }

  .booking-hero-copy { padding: 64px 18px 80px; }
  .booking-hero h1 { font-size: clamp(3.5rem, 15vw, 5.5rem); }
  .booking-hero > img { min-height: 520px; }

  .process-grid { border-block: 0; }
  .process-grid article { min-height: 0; border-right: 0; border-top: 1px solid var(--line); }
  .process-grid article:last-child { border-bottom: 1px solid var(--line); }
  .process-grid h3 { margin-top: 56px; }

  .inquiry-section { gap: 42px; }
  .inquiry-form { margin-inline: -18px; padding: 28px 18px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-reel .frame-one { opacity: 1; transform: none; }
  .hero-reel .frame-two,
  .hero-reel .frame-three { display: none; }
  .sound-toggle.is-playing .sound-toggle-icon { animation: none; }
}
