@font-face {
  font-family: "Montserrat";
  src: url("../assets/brand/CENOCRAFT - ARQUIVOS FINAIS/FONTES/Montserrat-2/static/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Rudegal";
  src: url("../assets/brand/CENOCRAFT - ARQUIVOS FINAIS/FONTES/Rudegal.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0b0c0a;
  --ink-soft: #141512;
  --panel: #1a1c17;
  --paper: #f0f0e8;
  --muted: #a9aaa0;
  --line: rgba(240, 240, 232, 0.16);
  --acid: #c4ee47;
  --acid-dark: #151b05;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shell: min(1380px, calc(100% - 80px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  content: "";
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

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

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

button {
  font: inherit;
}

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

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

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

h1,
h2 {
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7.4vw, 7.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.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;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  height: 3px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left center;
}

@supports (animation-timeline: scroll()) {
  .page-progress {
    animation: page-progress linear both;
    animation-timeline: scroll();
  }
}

@keyframes page-progress {
  to { transform: scaleX(1); }
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 72px;
  padding: 12px 40px;
  border-bottom: 1px solid transparent;
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out);
}

.topbar.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 12, 10, 0.84);
  backdrop-filter: blur(18px);
}

.identity {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.identity-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--paper);
  color: var(--acid);
  font-family: "Rudegal", "Montserrat", sans-serif;
  font-size: 1.3rem;
}

.topnav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 0.75rem;
  font-weight: 750;
}

.topnav a,
.footer a {
  transition: color 180ms ease;
}

.topnav a:hover,
.footer a:hover,
.contact-email:hover {
  color: var(--acid);
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--paper);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 160ms var(--ease-out);
}

.download-link:hover {
  background: var(--paper);
  color: var(--ink);
}

.download-link:active,
.button:active,
.capability-tab:active {
  transform: scale(0.97);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: end;
  padding: 88px 5.5vw 7vh;
  isolation: isolate;
}

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

.hero-photo,
.closing-photo {
  z-index: -2;
  overflow: hidden;
}

.hero-photo img,
.closing-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.76) contrast(1.08);
  transform: scale(1.03);
  animation: hero-image 1500ms var(--ease-out) both;
}

@keyframes hero-image {
  from { opacity: 0.45; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1.03); }
}

.hero-shade,
.closing-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 12, 10, 0.96) 0%, rgba(11, 12, 10, 0.82) 42%, rgba(11, 12, 10, 0.2) 80%),
    linear-gradient(0deg, rgba(11, 12, 10, 0.96), transparent 52%);
}

.hero-copy {
  max-width: 1040px;
}

.eyebrow,
.section-label {
  margin-bottom: 22px;
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1020px;
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 9.5vw, 10.2rem);
}

.hero h1 em {
  display: inline-block;
  padding-bottom: 0.06em;
  color: var(--acid);
  font-style: italic;
  line-height: 1.1;
}

.hero-summary {
  max-width: 590px;
  margin-bottom: 0;
  color: #d0d1c8;
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 500;
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--paper);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, color 180ms ease;
}

.button-primary {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--acid-dark);
}

.button-ghost {
  background: rgba(11, 12, 10, 0.46);
  color: var(--paper);
  backdrop-filter: blur(10px);
}

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

.hero-proof {
  align-self: end;
  max-width: 300px;
  justify-self: end;
  padding: 25px 0 4px 25px;
  border-left: 1px solid rgba(240, 240, 232, 0.4);
}

.hero-proof strong {
  display: block;
  color: var(--acid);
  font-size: clamp(2rem, 3.6vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.hero-proof span {
  display: block;
  max-width: 240px;
  margin-top: 10px;
  color: #d0d1c8;
  font-size: 0.84rem;
}

.hero-enter {
  opacity: 0;
  transform: translateY(20px);
  animation: enter 800ms var(--ease-out) forwards;
  animation-delay: var(--delay);
}

@keyframes enter {
  to { opacity: 1; transform: translateY(0); }
}

.manifesto {
  padding-top: clamp(110px, 15vw, 220px);
  padding-bottom: clamp(110px, 15vw, 220px);
}

.manifesto h2 {
  max-width: 1220px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  max-width: 820px;
  margin: 60px 0 0 auto;
}

.manifesto-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.capabilities {
  padding-bottom: clamp(110px, 14vw, 200px);
}

.title-stack {
  max-width: 980px;
  margin-bottom: 66px;
}

.title-stack p,
.projects-title p,
.operation-intro > p:last-child {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.capability-stage {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  min-height: 680px;
  border: 1px solid var(--line);
  background: var(--ink-soft);
}

.capability-list {
  display: grid;
  align-content: stretch;
  border-right: 1px solid var(--line);
}

.capability-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 100px;
  padding: 24px 30px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms var(--ease-out), background-color 220ms ease, color 220ms ease;
}

.capability-tab:last-child {
  border-bottom: 0;
}

.capability-tab span:first-child {
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 750;
  letter-spacing: -0.035em;
}

.capability-tab span:last-child {
  font-size: 1.4rem;
  opacity: 0.45;
}

.capability-tab.is-active {
  background: var(--acid);
  color: var(--acid-dark);
}

.capability-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  min-width: 0;
}

.capability-media {
  min-height: 680px;
  overflow: hidden;
}

.capability-media img {
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease, transform 520ms var(--ease-out), filter 180ms ease;
}

.capability-panel.is-changing .capability-media img {
  opacity: 0.35;
  filter: blur(2px);
  transform: scale(1.02);
}

.capability-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 60px);
}

.capability-copy h3 {
  margin-bottom: 18px;
}

.capability-copy p {
  color: var(--muted);
}

.capability-copy ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
  font-size: 0.8rem;
  font-weight: 750;
}

.capability-copy li {
  padding-left: 18px;
  border-left: 2px solid var(--acid);
}

.formats {
  overflow: hidden;
  padding-bottom: clamp(110px, 14vw, 200px);
}

.formats-heading {
  margin-bottom: 60px;
}

.format-track {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr 0.85fr;
  gap: 18px;
}

.format-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin: 0;
}

.format-card:nth-child(even) {
  padding-top: 90px;
}

.format-card img {
  height: 420px;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 220ms ease, transform 500ms var(--ease-out);
}

.format-card-wide img {
  height: 520px;
}

.format-card h3 {
  margin: 20px 0 8px;
  font-size: 1.25rem;
}

.format-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.operation {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 130px);
  padding-bottom: clamp(110px, 14vw, 200px);
}

.operation-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.operation-flow {
  padding: 0;
  margin: 0;
  list-style: none;
}

.operation-step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 150px;
  gap: 24px;
  align-items: start;
  min-height: 210px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.step-index {
  color: var(--acid);
  font-size: 0.76rem;
  font-weight: 850;
}

.operation-step h3 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.operation-step p {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--muted);
}

.step-output {
  justify-self: end;
  color: #d6d7cf;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
}

.control {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 860px;
  background: var(--ink-soft);
}

.control-image {
  min-height: 720px;
  overflow: hidden;
}

.control-image img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08);
}

.control-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 7vw, 110px);
}

.control-copy h2 {
  font-size: clamp(3rem, 6.2vw, 6.8rem);
}

.control-copy > p {
  max-width: 610px;
  margin: 30px 0 42px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.control-points span {
  padding-top: 14px;
  border-top: 2px solid var(--acid);
  font-size: 0.77rem;
  font-weight: 750;
}

.projects {
  padding-top: clamp(110px, 14vw, 200px);
  padding-bottom: clamp(110px, 14vw, 200px);
}

.projects-title {
  max-width: 1050px;
  margin-bottom: 70px;
}

.project-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 420px 360px;
  gap: 14px;
}

.project-shot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  margin: 0;
}

.project-shot-main {
  grid-row: 1 / 3;
}

.project-shot-wide {
  grid-column: 2 / 4;
}

.project-shot img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76);
  transition: filter 220ms ease, transform 600ms var(--ease-out);
}

.project-shot::after {
  position: absolute;
  inset: 55% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(11, 12, 10, 0.86));
}

.project-shot figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 800;
}

.proof {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  padding-bottom: clamp(120px, 17vw, 240px);
}

.proof-number strong {
  display: block;
  color: var(--acid);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.76;
}

.proof-number span {
  display: block;
  max-width: 280px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.proof blockquote {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.closing {
  position: relative;
  display: flex;
  min-height: 100dvh;
  align-items: flex-end;
  padding: 100px 5.5vw 8vh;
  isolation: isolate;
}

.closing-photo img {
  object-position: center 58%;
}

.closing-copy {
  max-width: 1200px;
}

.closing-copy h2 {
  max-width: 1100px;
}

.contact-email {
  padding: 12px 0;
  border-bottom: 1px solid rgba(240, 240, 232, 0.55);
  font-size: 0.85rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 110px;
  padding: 24px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.footer .identity {
  color: var(--paper);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .format-card:hover img,
  .project-shot:hover img {
    filter: saturate(1);
    transform: scale(1.025);
  }

  .capability-tab:not(.is-active):hover {
    background: rgba(240, 240, 232, 0.05);
    color: var(--paper);
  }
}

@media (max-width: 1020px) {
  :root {
    --shell: min(100% - 40px, 900px);
  }

  .topbar {
    grid-template-columns: 1fr auto;
    padding-inline: 20px;
  }

  .topnav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-proof {
    justify-self: start;
  }

  .capability-stage,
  .operation,
  .control {
    grid-template-columns: 1fr;
  }

  .capability-stage {
    min-height: auto;
  }

  .capability-list {
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability-tab:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .capability-panel {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .capability-media {
    min-height: 560px;
  }

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

  .format-card:nth-child(even) {
    padding-top: 50px;
  }

  .operation-intro {
    position: static;
  }

  .control-image {
    height: 70dvh;
  }

  .project-mosaic {
    grid-template-rows: 360px 320px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 5.2rem);
  }

  .topbar {
    min-height: 64px;
    padding: 10px 16px;
  }

  .identity > span:last-child,
  .download-link > span:first-child {
    display: none;
  }

  .download-link {
    width: 44px;
    padding: 0;
    font-size: 1.2rem;
  }

  .hero {
    min-height: 100dvh;
    padding: 86px 16px 38px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 12, 10, 0.86), rgba(11, 12, 10, 0.24)),
      linear-gradient(0deg, rgba(11, 12, 10, 0.98) 4%, rgba(11, 12, 10, 0.5) 66%, rgba(11, 12, 10, 0.36));
  }

  .hero h1 {
    font-size: clamp(3.6rem, 18vw, 6.1rem);
  }

  .hero-summary {
    max-width: 340px;
    font-size: 0.96rem;
  }

  .hero-actions,
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .manifesto-grid,
  .capability-panel,
  .format-track,
  .control-points,
  .project-mosaic,
  .proof {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 14px;
    margin-top: 38px;
  }

  .title-stack,
  .projects-title {
    margin-bottom: 42px;
  }

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

  .capability-tab,
  .capability-tab:nth-child(odd) {
    min-height: 70px;
    border-right: 0;
  }

  .capability-media {
    min-height: 430px;
  }

  .capability-copy {
    min-height: 390px;
  }

  .format-track {
    gap: 50px;
  }

  .format-card:nth-child(even) {
    padding-top: 0;
  }

  .format-card img,
  .format-card-wide img {
    height: 430px;
  }

  .operation {
    gap: 40px;
  }

  .operation-step {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
  }

  .step-output {
    display: none;
  }

  .control {
    min-height: auto;
  }

  .control-image {
    height: 64dvh;
    min-height: 470px;
  }

  .control-copy {
    padding: 70px 16px;
  }

  .project-mosaic {
    grid-template-rows: none;
  }

  .project-shot-main,
  .project-shot-wide {
    grid-row: auto;
    grid-column: auto;
  }

  .project-shot {
    height: 460px;
  }

  .proof {
    align-items: start;
  }

  .proof blockquote {
    font-size: 1.85rem;
  }

  .closing {
    padding: 90px 16px 42px;
  }

  .closing-photo img {
    object-position: 38% center;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .hero-enter {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .topbar,
  .page-progress,
  .footer {
    display: none !important;
  }

  .reveal,
  .hero-enter {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Curated project presentation — September 2026. */
.deck-cases { display: grid; gap: 56px; }
.new-projects-title { max-width: 1050px; margin-bottom: 70px; }
.new-projects-title p { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.18rem); }
.deck-case { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: 36px; align-items: center; }
.deck-case-photo img { height: 440px; object-fit: contain; background: var(--ink-soft); }
.deck-case-copy h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.deck-case-copy p, .deck-extra-project p { color: var(--muted); }
.deck-project-link { display: inline-block; padding: 12px 0; color: var(--acid); text-decoration: underline; text-underline-offset: 5px; }
.deck-extra-projects { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--line); }
.deck-extra-project img { height: 360px; object-fit: contain; background: var(--ink-soft); }
.deck-extra-project h3 { margin: 24px 0 16px; }
.deck-film { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 405px); gap: 64px; align-items: center; padding-bottom: 120px; scroll-margin-top: 96px; }
.deck-film h2 { font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1; }
.deck-film p { color: var(--muted); margin-top: 24px; }
.deck-film-credit { font-size: .9rem; }
.deck-film-credit a { text-decoration: underline; text-underline-offset: 4px; }
.deck-film video { display: block; width: 100%; height: auto; aspect-ratio: 9 / 16; background: #000; }
a:focus-visible, button:focus-visible, video:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }
section[id] { scroll-margin-top: 88px; }
@media (max-width: 700px) {
  .deck-case, .deck-extra-projects, .deck-film { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .deck-case-photo img { height: auto; max-height: 460px; }
  .deck-film video { max-width: 405px; margin: 0 auto; }
  .hero-copy, .operation-intro, .control-copy { min-width: 0; }
  h1, h2 { overflow-wrap: anywhere; }
}
