:root {
  --bg: #141615;
  --panel: #1b1e1b;
  --text: #f3f3ea;
  --muted: #a4aaa3;
  --line: #363b34;
  --accent: #d5e5b3;
  --dark: #192018;
  --gutter: clamp(22px, 5.2vw, 88px);
  color-scheme: dark;
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-synthesis: none;
}
.film-page-link {
  display: inline-block;
  margin-top: 15px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button {
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
svg {
  display: block;
}
button {
  border: 0;
}
p,
h1,
h2,
h3 {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
::selection {
  background: var(--accent);
  color: var(--dark);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - var(--gutter) * 2);
  max-width: 1440px;
  margin-inline: auto;
}
.section-space {
  padding-block: 100px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.6;
}
.section-index {
  color: var(--accent);
  margin-bottom: 20px;
}
.accent {
  color: var(--accent);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px;
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  height: 92px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(20, 22, 21, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand-mark {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.4;
}
.brand strong {
  font-size: 23px;
  font-weight: 650;
  letter-spacing: 3px;
  display: block;
}
.brand small {
  font-size: 8px;
  letter-spacing: 1.45px;
  display: block;
  margin-top: 5px;
  color: #bec3ba;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: #c7cdc4;
}
.desktop-nav a {
  padding: 14px 0;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s;
}
.desktop-nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 23px;
}
.language-toggle {
  font-size: 11px;
  letter-spacing: 1px;
  min-width: 44px;
  min-height: 44px;
  background: none;
}
.header-contact {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
  border: 1px solid #7c8773;
  border-radius: 2px;
  padding: 13px 18px;
  transition:
    background 0.2s,
    color 0.2s;
}
.header-contact:hover {
  color: var(--dark);
  background: var(--accent);
}
.header-contact > span:last-child {
  font-size: 18px;
}
.menu-toggle {
  display: none;
  background: none;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--text);
  transition: transform 0.2s;
}
.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter) 28px;
}
.mobile-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}
.hero {
  position: relative;
  min-height: 600px;
  height: min(720px, calc(100svh - 92px));
  isolation: isolate;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.hero-image {
  object-fit: cover;
  object-position: 65% 39%;
  filter: saturate(0.72);
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 17, 21, 0.93) 0%,
      rgba(8, 17, 21, 0.67) 29%,
      rgba(8, 17, 21, 0.1) 70%
    ),
    linear-gradient(
      0deg,
      rgba(11, 20, 23, 0.7),
      transparent 50%,
      rgba(9, 18, 19, 0.25)
    );
}
.hero-topline {
  position: absolute;
  top: 34px;
  left: var(--gutter);
  right: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #e1e4d9;
}
.hero-topline .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.record-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-location {
  font-size: 9px;
  letter-spacing: 1.5px;
  padding-top: 4px;
}
.hero-content {
  padding: 135px var(--gutter) 115px;
  max-width: 950px;
}
.hero-kicker {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 28px;
  color: #d8dfd3;
}
h1 {
  font-size: clamp(44px, 4.9vw, 76px);
  font-weight: 550;
  line-height: 1.35;
  letter-spacing: 2px;
}
h1 span:last-child {
  color: var(--accent);
}
.hero-description {
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: 1px;
  color: #d0d7cb;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  min-height: 51px;
  padding: 15px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.7px;
  border-radius: 2px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-3px);
}
.button > span:last-child {
  font-size: 20px;
  line-height: 1;
}
.button-light {
  color: var(--dark);
  background: var(--accent);
  margin-top: 30px;
}
.button-light:hover {
  background: #edf6db;
}
.button-dark {
  color: var(--text);
  background: var(--dark);
}
.button-dark:hover {
  background: #303b2c;
}
.hero-play {
  position: absolute;
  right: var(--gutter);
  bottom: 101px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.play-circle {
  width: 67px;
  height: 67px;
  display: grid;
  place-items: center;
  border: 1px solid #c9cec299;
  border-radius: 50%;
  background: #14161522;
  backdrop-filter: blur(6px);
  transition:
    background 0.3s,
    transform 0.3s;
}
.play-circle svg {
  width: 21px;
  fill: var(--text);
}
.hero-play:hover .play-circle {
  background: var(--accent);
  transform: scale(1.06);
}
.hero-play:hover svg {
  fill: var(--dark);
}
.hero-play-label {
  display: grid;
  gap: 9px;
  font-size: 13px;
  letter-spacing: 0.4px;
}
.hero-play-label small {
  font-size: 8px;
  letter-spacing: 1.6px;
  color: #ced4c9;
}
.hero-bottom {
  position: absolute;
  bottom: 27px;
  left: var(--gutter);
  right: var(--gutter);
  border-top: 1px solid #ced4c92b;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: #d0d7cb;
}
.intro-strip {
  padding-block: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.intro-strip > p {
  font-size: 17px;
  letter-spacing: 1px;
}
.intro-strip > p > span {
  color: var(--muted);
  margin-left: 12px;
}
.intro-strip > .eyebrow {
  color: var(--muted);
  font-size: 8px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}
h2 {
  font-size: clamp(27px, 2.7vw, 42px);
  line-height: 1.55;
  letter-spacing: 0.7px;
  font-weight: 500;
}
.text-link {
  font-size: 12px;
  display: inline-flex;
  gap: 25px;
  align-items: center;
  padding-block: 10px;
  border-bottom: 1px solid #64715a;
  line-height: 1.6;
  flex-shrink: 0;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--accent);
}
.text-link > span:last-child {
  font-size: 17px;
}
.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.filters button {
  padding: 10px 17px;
  min-height: 40px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.5px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.filters button:hover {
  color: var(--text);
}
.filters button[aria-pressed="true"] {
  border-color: #69775b;
  background: #20261d;
  color: var(--accent);
}
.work-count {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: var(--muted);
  white-space: nowrap;
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 28px;
}
.work-image {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #222822;
}
.work-image img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s,
    filter 0.7s;
  filter: saturate(0.78) brightness(0.88);
}
.work-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #0005, transparent 40%, #0004);
}
.work-image:hover img {
  transform: scale(1.045);
  filter: saturate(1) brightness(1);
}
.image-topline {
  position: absolute;
  left: 19px;
  right: 19px;
  top: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 2px;
  text-shadow: 0 1px 4px #000;
}
.image-topline > span:first-child {
  border: 1px solid #ffffff69;
  padding: 6px;
  background: #14161566;
}
.image-topline > span:last-child {
  padding: 6px;
  background: #14161580;
}
.card-play {
  position: absolute;
  bottom: 18px;
  left: 18px;
  width: 37px;
  height: 37px;
  border: 1px solid #ffffff80;
  display: grid;
  place-items: center;
  z-index: 1;
  border-radius: 50%;
  font-size: 20px;
  background: #14161533;
  transition:
    background 0.2s,
    color 0.2s;
}
.work-image:hover .card-play {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.duration {
  position: absolute;
  right: 18px;
  bottom: 22px;
  z-index: 1;
  font-size: 9px;
  letter-spacing: 1px;
  background: #141615a8;
  padding: 4px 6px;
}
.work-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
}
.work-caption .eyebrow {
  color: var(--accent);
  font-size: 8px;
  margin-bottom: 9px;
  letter-spacing: 1.8px;
}
.work-caption h3 {
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: 0.5px;
  font-weight: 500;
  margin-bottom: 8px;
}
.views-badge {
  display: inline-block;
  width: fit-content;
  padding: 5px 9px;
  border: 1px solid #a8bc7180;
  border-radius: 2px;
  color: var(--accent);
  background: #20261de6;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
}
.work-caption .views-badge {
  margin: 0 0 10px;
}
.hero-play-label .views-badge {
  margin-top: 5px;
}
.work-caption p:last-child {
  font-size: 11px;
  line-height: 1.8;
  color: var(--muted);
}
.caption-arrow {
  font-size: 22px;
  color: #939d88;
  margin-top: 18px;
}
.services-section {
  background: var(--panel);
  border-block: 1px solid #262b25;
}
.section-description {
  font-size: 12px;
  line-height: 2.1;
  color: var(--muted);
  letter-spacing: 0.4px;
  max-width: 300px;
}
.service {
  display: grid;
  grid-template-columns: 45px 1fr 1.25fr 45px;
  gap: 30px;
  border-top: 1px solid var(--line);
  padding: 37px 0;
  align-items: start;
}
.service:last-child {
  border-bottom: 1px solid var(--line);
}
.service-number {
  font-size: 11px;
  color: #8d9a7f;
  margin-top: 6px;
  letter-spacing: 2px;
}
.service .eyebrow {
  color: #9ca891;
  font-size: 8px;
  margin-bottom: 13px;
  letter-spacing: 1.6px;
}
.service h3 {
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
}
.service-body > p {
  font-size: 13px;
  line-height: 2;
  color: var(--muted);
}
.service ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.service li {
  font-size: 9px;
  letter-spacing: 0.5px;
  padding: 6px 9px;
  border: 1px solid #434a3e;
  color: #c3cbb8;
  border-radius: 2px;
}
.service-arrow {
  font-size: 26px;
  color: var(--accent);
  height: 44px;
  width: 44px;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.service-arrow:hover {
  transform: translate(3px, -3px);
}
.service-note {
  color: #919a89;
  font-size: 10px;
  line-height: 1.9;
  margin-top: 22px;
  text-align: right;
}
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px 8%;
  align-items: center;
}
.about-art {
  position: relative;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  margin-top: 26px;
}
.about-art img {
  aspect-ratio: 1/1.12;
  object-fit: cover;
  object-position: 60%;
  filter: saturate(0.45);
}
.about-art-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 8px;
  letter-spacing: 1.3px;
  padding: 19px 0 3px;
  color: var(--muted);
}
.image-corner {
  position: absolute;
  right: -10px;
  top: -18px;
  font-size: 34px;
  font-weight: 200;
  color: var(--accent);
  background: var(--bg);
  line-height: 1;
}
.about-copy h2 {
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.65;
  margin-bottom: 25px;
}
.about-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 2.1;
  color: var(--muted);
  margin-bottom: 17px;
}
.about-copy .text-link {
  margin-top: 10px;
}
.channel-stats {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 0.85fr;
  gap: 30px;
  align-items: center;
  border-block: 1px solid var(--line);
  padding-block: 40px;
}
.channel-stats > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.channel-stats strong {
  font-size: clamp(35px, 4vw, 60px);
  font-weight: 400;
  letter-spacing: -2px;
}
.channel-stats strong span {
  color: var(--accent);
  font-weight: 300;
  font-size: 0.6em;
  padding-left: 7px;
  vertical-align: top;
}
.channel-stats > div > span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1px;
}
.channel-stats > p {
  font-size: 9px;
  line-height: 2;
  color: #929b8c;
  text-align: right;
  letter-spacing: 0.5px;
}
.process-section {
  padding-top: 0;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.process-grid article {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.process-grid article > span {
  font-size: 9px;
  letter-spacing: 1.7px;
  color: var(--accent);
}
.process-grid h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 25px 0 13px;
  line-height: 1.6;
}
.process-grid p {
  color: var(--muted);
  font-size: 12px;
  line-height: 2.1;
}
.contact-section {
  background: var(--accent);
  color: var(--dark);
  padding-block: 85px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  align-items: center;
}
.contact-copy > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.6px;
  margin-bottom: 25px;
}
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1px;
}
.contact-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 2;
  margin-top: 22px;
  color: #4e5b43;
}
.contact-copy .button {
  margin-top: 29px;
}
.contact-handle {
  display: block;
  font-size: 10px;
  letter-spacing: 0.7px;
  margin-top: 19px;
  width: fit-content;
  color: #4b5841;
}
.brief-panel {
  padding: 30px 0 20px 38px;
  border-left: 1px solid #70806066;
}
.brief-panel > .eyebrow {
  font-size: 8px;
  color: #5f6f50;
  margin-bottom: 20px;
}
.brief-panel h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
.brief-panel ol {
  list-style: none;
  counter-reset: brief;
  padding: 0;
  margin: 22px 0 28px;
}
.brief-panel li {
  counter-increment: brief;
  font-size: 12px;
  line-height: 1.9;
  display: flex;
  gap: 14px;
  margin-bottom: 15px;
}
.brief-panel li::before {
  content: "0" counter(brief);
  font-size: 9px;
  color: #64744f;
  min-width: 16px;
  margin-top: 3px;
}
.copy-brief {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: transparent;
  border-bottom: 1px solid #697b55;
  padding: 12px 0;
  font-size: 11px;
  text-align: left;
  width: 100%;
  color: var(--dark);
}
.copy-brief:hover {
  color: #587332;
}
.copy-status {
  font-size: 10px;
  line-height: 1.7;
  margin-top: 12px;
  min-height: 17px;
}
.brief-fallback {
  width: 100%;
  height: 180px;
  background: #e8f1d6;
  color: var(--dark);
  font-size: 12px;
  line-height: 1.7;
  border: 1px solid #5f7050;
  padding: 12px;
  resize: vertical;
}
.contact-section :focus-visible {
  outline-color: var(--dark);
}
.faq-section {
  padding-block: 60px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
}
.faq-section h2 {
  font-size: 18px;
  padding-top: 13px;
}
.faq-section details {
  border-bottom: 1px solid var(--line);
}
.faq-section summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  list-style: none;
  padding: 18px 0;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.7;
  color: #d6dccf;
}
.faq-section summary::-webkit-details-marker {
  display: none;
}
.faq-section summary::after {
  content: "+";
  font-size: 21px;
  color: var(--accent);
  flex-shrink: 0;
}
.faq-section details[open] summary::after {
  content: "−";
}
.faq-section details > p {
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  padding: 0 28px 20px 0;
}
.site-footer {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 37px 42px;
}
.footer-brand {
  font-size: 24px;
  letter-spacing: 3px;
}
.footer-brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 7px;
}
.site-footer > p {
  font-size: 8px;
  line-height: 2.2;
  color: var(--muted);
  letter-spacing: 0.4px;
}
.site-footer > div {
  display: flex;
  gap: 22px;
  font-size: 10px;
  color: #b9c1b0;
}
.site-footer a:hover {
  color: var(--accent);
}
.film-dialog {
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  width: min(1080px, 94vw);
  max-height: 94svh;
  border: 1px solid var(--line);
  overflow: auto;
}
.film-dialog::backdrop {
  background: #050805eb;
  backdrop-filter: blur(10px);
}
.dialog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dialog-top > .eyebrow {
  color: var(--muted);
  font-size: 9px;
}
.close-dialog {
  height: 44px;
  width: 44px;
  display: grid;
  place-items: center;
  background: var(--panel);
  font-size: 20px;
  border: 1px solid var(--line);
}
.video-container {
  aspect-ratio: 16/9;
  background: #000;
}
.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.dialog-caption {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
  margin-top: 24px;
}
.dialog-caption h2 {
  font-size: 23px;
  line-height: 1.4;
}
.dialog-caption p {
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 12px;
  max-width: 700px;
}
.video-external {
  font-size: 10px;
}
.player-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 19px;
  line-height: 1.7;
}
html[lang="en"] h1 {
  font-size: clamp(45px, 5.4vw, 83px);
  line-height: 1.12;
  letter-spacing: -2px;
}
html[lang="en"] .hero-description {
  max-width: 390px;
  letter-spacing: 0.2px;
}
html[lang="en"] h2 {
  letter-spacing: -0.8px;
}
html[lang="en"] .hero-content {
  max-width: 800px;
}
html[lang="en"] .service h3 {
  font-size: 22px;
}
html[lang="en"] .hero-kicker {
  letter-spacing: 1.3px;
}
@media (min-width: 1600px) {
  .hero-content {
    padding-top: 150px;
  }
  .hero {
    height: 740px;
    max-height: none;
  }
}
@media (max-width: 1050px) {
  .desktop-nav {
    gap: 20px;
  }
  .site-header {
    gap: 16px;
  }
  .header-actions {
    gap: 12px;
  }
  .hero-play-label {
    display: none;
  }
  .hero-play {
    bottom: 100px;
  }
  .hero-content {
    padding-top: 137px;
  }
  .section-space {
    padding-block: 75px;
  }
  .about-section {
    gap: 55px 6%;
  }
  .service {
    grid-template-columns: 26px 1fr 1.3fr 32px;
    gap: 20px;
  }
  .service h3 {
    font-size: 20px;
  }
  .service-body > p {
    font-size: 12px;
  }
  .process-section {
    padding-top: 0;
  }
  .contact-inner {
    gap: 7%;
  }
  .brief-panel {
    padding-left: 25px;
  }
  .site-footer {
    flex-wrap: wrap;
  }
  .site-footer > div {
    margin-left: auto;
  }
  .channel-stats {
    gap: 20px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }
  .site-header {
    height: 77px;
    gap: 12px;
  }
  .brand {
    gap: 9px;
  }
  .brand strong {
    font-size: 21px;
    letter-spacing: 2px;
  }
  .brand small {
    font-size: 6px;
    letter-spacing: 1.2px;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .desktop-nav {
    display: none;
  }
  .header-actions {
    gap: 5px;
  }
  .header-contact {
    display: none;
  }
  .menu-toggle:not([hidden]) {
    display: block;
  }
  .language-toggle {
    font-size: 10px;
  }
  .hero {
    height: calc(100svh - 77px);
    min-height: 650px;
    max-height: 850px;
  }
  .hero-image {
    object-position: 57% 50%;
    filter: saturate(0.65);
  }
  .hero-shade {
    background:
      linear-gradient(90deg, #0810158c, #08101533),
      linear-gradient(
        0deg,
        #071011ed 2%,
        #0710117d 46%,
        #0710110d 79%,
        #07101170
      );
  }
  .hero-topline {
    top: 25px;
  }
  .hero-topline .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }
  .hero-location {
    display: none;
  }
  .hero-content {
    position: absolute;
    bottom: 138px;
    padding: 0 var(--gutter);
    width: 100%;
  }
  .hero-kicker {
    font-size: 10px;
    letter-spacing: 2px;
    margin-bottom: 22px;
  }
  h1 {
    font-size: clamp(37px, 7.2vw, 55px);
    line-height: 1.4;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.5px;
    margin-top: 21px;
  }
  .hero-content .button {
    margin-top: 24px;
  }
  .hero-play {
    right: var(--gutter);
    bottom: 66px;
    gap: 12px;
  }
  .play-circle {
    height: 42px;
    width: 42px;
  }
  .play-circle svg {
    width: 15px;
  }
  .hero-play-label {
    display: grid;
    font-size: 10px;
    gap: 5px;
  }
  .hero-play-label small {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .hero-bottom {
    bottom: 18px;
    padding-top: 13px;
    font-size: 7px;
  }
  .intro-strip {
    padding-block: 27px;
  }
  .intro-strip > p {
    font-size: 12px;
    letter-spacing: 0.4px;
    line-height: 1.9;
  }
  .intro-strip > p > span {
    margin-left: 6px;
  }
  .intro-strip > .eyebrow {
    display: none;
  }
  .section-space {
    padding-block: 60px;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
  }
  .section-index {
    margin-bottom: 14px;
    font-size: 9px;
  }
  h2 {
    font-size: 27px;
    letter-spacing: 0;
  }
  .section-heading > .text-link {
    font-size: 10px;
    gap: 20px;
    padding-top: 0;
  }
  .work-toolbar {
    margin-bottom: 23px;
    gap: 7px;
  }
  .filters {
    gap: 2px;
  }
  .filters button {
    font-size: 10px;
    padding: 8px 10px;
    letter-spacing: 0;
  }
  .work-count {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .work-grid {
    gap: 34px 20px;
  }
  .work-caption {
    padding-top: 17px;
    gap: 8px;
  }
  .work-caption h3 {
    font-size: 15px;
  }
  .work-caption p:last-child {
    font-size: 10px;
  }
  .work-caption .eyebrow {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .caption-arrow {
    display: none;
  }
  .image-topline {
    top: 10px;
    left: 10px;
    right: 10px;
    font-size: 7px;
  }
  .card-play {
    width: 29px;
    height: 29px;
    left: 10px;
    bottom: 10px;
    font-size: 17px;
  }
  .duration {
    right: 10px;
    bottom: 13px;
    font-size: 8px;
  }
  .service {
    grid-template-columns: 24px 1fr 28px;
    gap: 10px 15px;
    padding-block: 28px;
  }
  .service > div:nth-child(2) {
    grid-column: 2;
  }
  .service-body {
    grid-column: 2;
    grid-row: 2;
  }
  .service h3 {
    font-size: 21px;
  }
  .service-arrow {
    grid-column: 3;
    grid-row: 1;
    font-size: 23px;
    width: 28px;
    height: 32px;
  }
  .service .eyebrow {
    margin-bottom: 7px;
  }
  .service-body > p {
    font-size: 12px;
  }
  .service-note {
    font-size: 9px;
    text-align: left;
  }
  .about-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .about-art {
    margin: 0;
    width: 100%;
    max-width: 540px;
  }
  .about-art img {
    aspect-ratio: 5/4;
    object-position: center;
  }
  .about-copy h2 {
    font-size: 31px;
  }
  .about-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .channel-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 14px;
    padding-block: 30px;
  }
  .channel-stats strong {
    font-size: 36px;
  }
  .channel-stats > div > span {
    font-size: 9px;
    letter-spacing: 0;
  }
  .channel-stats > p {
    grid-column: 1/-1;
    text-align: left;
    font-size: 8px;
    line-height: 1.8;
  }
  .channel-stats > p br {
    display: none;
  }
  .process-section {
    padding-top: 0;
  }
  .process-grid {
    gap: 25px;
    grid-template-columns: 1fr;
  }
  .process-grid h3 {
    font-size: 19px;
    margin-top: 16px;
  }
  .process-grid article {
    padding-top: 20px;
  }
  .process-grid p {
    font-size: 12px;
  }
  .contact-section {
    padding-block: 55px;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-copy h2 {
    font-size: 36px;
  }
  .contact-copy > .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .brief-panel {
    border-left: 0;
    border-top: 1px solid #70806066;
    padding: 28px 0 0;
  }
  .brief-panel li {
    font-size: 12px;
  }
  .faq-section {
    padding-block: 40px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-section h2 {
    font-size: 18px;
  }
  .site-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px 20px;
    padding-block: 30px;
  }
  .site-footer > p {
    font-size: 7px;
    text-align: right;
  }
  .site-footer > div {
    grid-column: 1/-1;
    margin: 0;
    justify-content: space-between;
    font-size: 9px;
  }
  .footer-brand {
    font-size: 22px;
  }
  .footer-brand small {
    font-size: 6px;
  }
  .film-dialog {
    padding: 14px;
  }
  .dialog-caption {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  .dialog-caption h2 {
    font-size: 19px;
  }
  .dialog-caption p {
    font-size: 10px;
  }
  .player-note {
    font-size: 9px;
  }
  html[lang="en"] h1 {
    font-size: clamp(44px, 10vw, 65px);
    letter-spacing: -1.5px;
  }
  html[lang="en"] .hero-description {
    max-width: 320px;
    font-size: 12px;
  }
  html[lang="en"] h2 {
    font-size: 30px;
  }
  html[lang="en"] .filters button {
    font-size: 9px;
    padding-inline: 8px;
  }
  html[lang="en"] .service h3 {
    font-size: 21px;
  }
  html[lang="en"] .faq-section h2 {
    font-size: 21px;
  }
}
@media (max-width: 540px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-caption h3 {
    font-size: 18px;
  }
  .work-caption .eyebrow {
    font-size: 8px;
  }
  .work-caption p:last-child {
    font-size: 11px;
  }
  .image-topline {
    top: 15px;
    left: 15px;
    right: 15px;
  }
  .card-play {
    left: 15px;
    bottom: 15px;
    width: 33px;
    height: 33px;
  }
  .duration {
    right: 15px;
    bottom: 17px;
  }
  .caption-arrow {
    display: block;
  }
  .work-toolbar {
    align-items: flex-start;
  }
  .work-count {
    padding-top: 14px;
  }
  .filters button {
    padding-inline: 9px;
  }
  .hero {
    min-height: 630px;
  }
  .channel-stats strong {
    font-size: 32px;
    letter-spacing: -1.5px;
  }
}
@media (max-width: 360px) {
  .brand-mark {
    display: none;
  }
  .hero-content {
    bottom: 137px;
  }
  h1 {
    font-size: 34px;
  }
  .hero-description {
    font-size: 11px;
  }
  .filters button {
    font-size: 9px;
    padding-inline: 6px;
  }
  .work-count {
    font-size: 7px;
  }
  .intro-strip > p > span {
    display: block;
    margin: 0;
  }
  .channel-stats strong {
    font-size: 28px;
  }
  .site-footer > p {
    font-size: 6px;
  }
}
h2 {
  text-wrap: balance;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
