@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-ext-variable.woff2") format("woff2-variations");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope Variable";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #f7f7f2;
  --paper-rgb: 247 247 242;
  --ink: #181916;
  --ink-rgb: 24 25 22;
  --muted: #686a62;
  --surface: #ecece5;
  --surface-raised: #ffffff;
  --line: rgb(24 25 22 / 0.14);
  --accent: #e8df3f;
  --accent-strong: #d4cb22;
  --accent-ink: #171812;
  --accent-rgb: 232 223 63;
  --motion-intensity: 1;
  --danger: #a72f2f;
  --success: #275f3a;
  --shadow: 0 28px 80px rgb(45 47 38 / 0.12);
  --shadow-soft: 0 14px 40px rgb(45 47 38 / 0.08);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --radius-pill: 999px;
  --container: min(1440px, calc(100vw - 64px));
  --section-space: clamp(4.75rem, 7.5vw, 8rem);
  --header-height: 72px;
  --font-sans: "Manrope Variable", "Avenir Next", Avenir, system-ui, -apple-system, sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #171815;
  --paper-rgb: 23 24 21;
  --ink: #f2f2ec;
  --ink-rgb: 242 242 236;
  --muted: #b6b7af;
  --surface: #242520;
  --surface-raised: #2c2d27;
  --line: rgb(242 242 236 / 0.16);
  --accent: #e8df3f;
  --accent-strong: #f1e94f;
  --accent-ink: #171812;
  --danger: #ff9b93;
  --success: #8dd29d;
  --shadow: 0 28px 80px rgb(0 0 0 / 0.28);
  --shadow-soft: 0 14px 40px rgb(0 0 0 / 0.2);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="auto"] {
    color-scheme: dark;
    --paper: #171815;
    --paper-rgb: 23 24 21;
    --ink: #f2f2ec;
    --ink-rgb: 242 242 236;
    --muted: #b6b7af;
    --surface: #242520;
    --surface-raised: #2c2d27;
    --line: rgb(242 242 236 / 0.16);
    --accent: #e8df3f;
    --accent-strong: #f1e94f;
    --accent-ink: #171812;
    --danger: #ff9b93;
    --success: #8dd29d;
    --shadow: 0 28px 80px rgb(0 0 0 / 0.28);
    --shadow-soft: 0 14px 40px rgb(0 0 0 / 0.2);
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 450;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color 240ms ease, color 240ms ease;
}

body::before {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  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='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  touch-action: manipulation;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--ink);
}

h1,
h2,
h3,
h4,
p,
figure,
blockquote {
  margin-block-start: 0;
}

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

p {
  text-wrap: pretty;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 120;
  top: 12px;
  left: 12px;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.site-container,
.section-inner,
.site-main > .alignwide {
  width: var(--container);
  margin-inline: auto;
}

.site-main {
  min-height: 70dvh;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(var(--paper-rgb) / 0.96);
  pointer-events: none;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px rgb(var(--ink-rgb) / 0.045);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  width: var(--container);
  height: 100%;
  margin-inline: auto;
  pointer-events: auto;
}

.site-header__brand {
  display: flex;
  min-width: 0;
  flex: 0 0 auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--ink);
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.site-brand__mark {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.site-nav {
  justify-self: center;
  margin-left: 0;
}

.site-nav ul,
.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.55rem, 1.3vw, 1.2rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding-inline: 0.18rem;
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--accent-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms var(--ease-out);
}

.site-nav a:hover,
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.45rem;
  justify-self: end;
}

.theme-toggle,
.menu-toggle {
  display: inline-grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  transition: border-color 200ms ease, background-color 200ms ease;
}

.theme-toggle:hover,
.menu-toggle:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.menu-toggle {
  display: none;
}

.theme-toggle__icon {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset -5px -4px 0 0 currentColor;
}

.button,
.wp-element-button,
button[type="submit"] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.72rem 1.2rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 240ms var(--ease-out), background-color 240ms ease, color 240ms ease,
    box-shadow 240ms ease;
}

.button:hover,
.wp-element-button:hover,
button[type="submit"]:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.button:active,
.wp-element-button:active,
button[type="submit"]:active {
  transform: translateY(1px) scale(0.985);
}

.button--accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero,
.site-hero {
  display: grid;
  min-height: clamp(640px, calc(100svh - var(--header-height)), 800px);
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4.5rem);
  width: var(--container);
  padding-block: clamp(1.75rem, 4vh, 3rem) clamp(2.5rem, 5vh, 4rem);
  margin-inline: auto;
}

.hero__content,
.site-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow,
.section-kicker,
.entry-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding-inline: 0.75rem;
  margin-bottom: 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__eyebrow {
  align-self: flex-start;
}

.hero__title,
.site-hero__title {
  max-width: 11.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.2rem, 6.15vw, 6.7rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.hero__intro,
.site-hero__intro {
  max-width: 43ch;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

.hero__process-link {
  min-height: 48px;
  padding-inline: 0.8rem;
}

.hero__process-link span {
  transition: transform 220ms var(--ease-out);
}

.hero__process-link:hover span {
  transform: translateY(3px);
}

.hero__visual,
.site-hero__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #f4f1eb;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__visual img,
.hero__visual video,
.site-hero__media img,
.site-hero__media video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero__visual img,
.site-hero__media img {
  object-position: center;
}

.hero__media-note {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 22px;
  max-width: 220px;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.55);
  border-radius: var(--radius-md);
  background: rgb(247 247 242 / 0.78);
  color: #181916;
  font-size: 0.78rem;
  line-height: 1.35;
  backdrop-filter: blur(14px);
}

.section,
.section-block {
  position: relative;
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(4rem, 7vw, 7rem);
}

.section__header {
  max-width: 850px;
  margin-bottom: clamp(2.4rem, 5vw, 5rem);
}

.section__title,
.archive-title,
.entry-title {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5.3vw, 5.8rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section__intro,
.archive-description {
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.project-filters,
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2rem;
}

.project-filter,
[data-project-filter] {
  min-height: 40px;
  padding-inline: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.project-filter:hover,
[data-project-filter]:hover,
.project-filter.is-active,
[data-project-filter][aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.project-stack {
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 2rem);
  padding-bottom: clamp(1rem, 4vw, 3rem);
}

.project-card {
  position: relative;
  display: grid;
  min-height: clamp(500px, 60dvh, 620px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
  box-shadow: var(--shadow-soft);
  transform-origin: center top;
}

.project-stack .project-card {
  position: sticky;
  top: calc(var(--header-height) + 14px + var(--stack-offset, 0px));
  backface-visibility: hidden;
  will-change: transform;
}

.project-card__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--surface);
}

.project-card__media img,
.project-card__media video,
.project-card__media iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}

.project-card:hover .project-card__media img {
  transform: scale(1.025);
}

.project-card__body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.6rem, 3.2vw, 3.2rem);
}

.project-card__meta,
.entry-meta,
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card__title {
  max-width: 12ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 640;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.project-card__summary {
  max-width: 42ch;
  color: var(--muted);
}

.project-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.6rem;
  font-size: 0.87rem;
  font-weight: 720;
  text-decoration: none;
}

.project-card__link::after {
  content: "↗";
  transition: transform 220ms var(--ease-out);
}

.project-card__link:hover::after {
  transform: translate(3px, -3px);
}

.project-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1rem, 2vw, 1.7rem);
}

.project-tile {
  grid-column: span 7;
  min-width: 0;
}

.project-tile:nth-child(3n + 2) {
  grid-column: span 5;
  padding-top: clamp(2rem, 6vw, 7rem);
}

.project-tile:nth-child(3n) {
  grid-column: 3 / span 8;
}

.project-tile__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.project-tile__media img,
.project-tile__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.project-tile:hover .project-tile__media img {
  transform: scale(1.035);
}

.project-tile__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1.1rem 0.25rem 0;
}

.project-tile__title {
  margin-bottom: 0.25rem;
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.project-tile__link {
  text-decoration: none;
}

.project-tile[hidden] {
  display: none;
}

.channels-section {
  overflow: hidden;
  background: #181916;
  color: #f7f7f2;
}

.channels-section .section__intro {
  color: rgb(247 247 242 / 0.68);
}

.channel-list,
.channel-rail {
  display: grid;
  grid-auto-columns: minmax(300px, 31vw);
  grid-auto-flow: column;
  gap: 1rem;
  padding-bottom: 1.2rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-color: var(--accent) rgb(var(--paper-rgb) / 0.15);
  scroll-snap-type: inline mandatory;
}

.channel-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  border: 1px solid rgb(247 247 242 / 0.2);
  border-radius: var(--radius-lg);
  background: rgb(247 247 242 / 0.07);
  color: #f7f7f2;
  scroll-snap-align: start;
  transition: background-color 240ms ease, transform 300ms var(--ease-out);
}

.channel-card:hover {
  background: rgb(247 247 242 / 0.12);
  transform: translateY(-5px);
}

.channel-card__thumb {
  width: 82px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 24px;
  background: var(--accent);
}

.channel-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-card__title {
  margin-bottom: 0.6rem;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.channel-card__role,
.channel-card__stats {
  color: rgb(247 247 242 / 0.66);
  font-size: 0.87rem;
}

.channel-card__link {
  align-self: flex-start;
  color: var(--accent);
  font-weight: 700;
}

.about-teaser,
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 9rem);
}

.about-teaser__visual,
.about-portrait {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.about-teaser__visual img,
.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-teaser__copy,
.about-content {
  padding-top: clamp(1rem, 5vw, 5rem);
}

.about-teaser__copy h2,
.about-content h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 5.7vw, 6.4rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.about-content p,
.about-teaser__copy p {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

.contact-section {
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.contact-panel,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(2rem, 7vw, 7rem);
  padding: clamp(1.5rem, 5vw, 5rem);
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: var(--accent-ink);
}

.contact-panel h2,
.contact-layout h1 {
  max-width: 9ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.contact-form {
  display: grid;
  align-self: start;
  gap: 1rem;
  padding: clamp(1.2rem, 2.5vw, 2.3rem);
  border-radius: var(--radius-lg);
  background: #f7f7f2;
  color: #181916;
  box-shadow: 0 22px 60px rgb(69 65 15 / 0.16);
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-size: 0.78rem;
  font-weight: 720;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgb(24 25 22 / 0.24);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #181916;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #73746e;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #181916;
  box-shadow: 0 0 0 3px rgb(var(--accent-rgb) / 0.65);
}

.form-help,
.form-message {
  margin: 0;
  font-size: 0.78rem;
}

.form-message--success {
  color: #245832;
}

.form-message--error {
  color: #922828;
}

.contact-form [aria-invalid="true"],
.kerem-contact-form [aria-invalid="true"] {
  border-color: #922828;
  box-shadow: 0 0 0 1px #922828;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.entry-hero,
.archive-hero,
.page-hero {
  width: var(--container);
  padding-block: clamp(4rem, 8vw, 7rem) clamp(2.5rem, 5vw, 4.5rem);
  margin-inline: auto;
}

.entry-hero__media {
  margin-top: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.entry-hero__media img,
.entry-hero__media video,
.entry-hero__media iframe {
  width: 100%;
  min-height: min(70dvh, 760px);
  object-fit: cover;
}

.channel-single__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.channel-single__layout {
  padding-bottom: var(--section-space);
}

.channel-single__media.entry-hero__media {
  width: 100%;
  max-height: 680px;
  margin-top: 0;
  aspect-ratio: 16 / 9;
}

.channel-single__image {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  object-fit: cover;
}

.channel-single__content.entry-content {
  padding-block: clamp(3.5rem, 7vw, 6rem) 0;
}

.entry-content,
.page-content {
  width: min(780px, calc(100vw - 40px));
  padding-bottom: var(--section-space);
  margin-inline: auto;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
}

.entry-content > * + *,
.page-content > * + * {
  margin-top: 1.4em;
}

.entry-content h2,
.page-content h2 {
  margin-top: 2.3em;
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.entry-content h3,
.page-content h3 {
  margin-top: 2em;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  letter-spacing: -0.04em;
}

.entry-content figure,
.page-content figure {
  width: min(1100px, calc(100vw - 40px));
  max-width: none;
  margin-block: clamp(2.4rem, 5vw, 5rem);
  margin-left: 50%;
  transform: translateX(-50%);
}

.entry-content figure img,
.page-content figure img {
  border-radius: var(--radius-lg);
}

.entry-content blockquote,
.page-content blockquote {
  padding: 1.6rem 0 1.6rem 1.5rem;
  border-left: 5px solid var(--accent);
  color: var(--muted);
  font-size: 1.25em;
}

.empty-state,
.no-results {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 2rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer__meta {
  color: var(--muted);
  font-size: 0.76rem;
}

.page-transition {
  position: fixed;
  z-index: 110;
  inset: 0;
  pointer-events: none;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center bottom;
}

.is-js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

.is-js .archive-hero[data-reveal],
.is-js .page-hero[data-reveal],
.is-js .entry-hero[data-reveal],
.is-js .entry-hero__media[data-reveal],
.is-js .inner-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

.is-ready [data-reveal].is-visible,
.no-gsap [data-reveal] {
  opacity: 1;
  transform: none;
}

html[data-motion-style="off"],
html[data-motion-intensity="0"] {
  scroll-behavior: auto;
}

html[data-motion-style="off"] *,
html[data-motion-style="off"] *::before,
html[data-motion-style="off"] *::after,
html[data-motion-intensity="0"] *,
html[data-motion-intensity="0"] *::before,
html[data-motion-intensity="0"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html[data-motion-style="off"].is-js [data-reveal],
html[data-motion-intensity="0"].is-js [data-reveal] {
  opacity: 1;
  transform: none;
}

html[data-motion-style="off"] .project-stack .project-card,
html[data-motion-intensity="0"] .project-stack .project-card {
  position: relative;
  top: auto;
  will-change: auto;
}

html[data-motion-style="off"] .page-transition,
html[data-motion-intensity="0"] .page-transition {
  display: none;
}

.project-tile.is-filtering-out {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.97);
}

@media (max-width: 1024px) {
  :root {
    --container: min(100% - 40px, 960px);
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) - 3px);
    right: max(20px, env(safe-area-inset-right));
    left: max(20px, env(safe-area-inset-left));
    display: none;
    padding: 0.75rem;
    margin-left: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-raised);
    box-shadow: var(--shadow);
  }

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

  .site-nav ul,
  .site-nav__list {
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav a {
    justify-content: flex-start;
    padding-inline: 0.85rem;
  }

  .site-header__actions {
    grid-column: 2;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero,
  .site-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 2rem;
  }

  .hero__title,
  .site-hero__title {
    font-size: clamp(3rem, 6.6vw, 5.4rem);
  }

  .project-card {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .project-card__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .project-stack .project-card {
    position: relative;
    top: auto;
    will-change: auto;
  }

  .channel-list,
  .channel-rail {
    grid-auto-columns: minmax(290px, 48vw);
  }
}

@media (max-width: 767px) {
  :root {
    --container: calc(100% - 32px);
    --header-height: 66px;
    --section-space: clamp(4rem, 14vw, 6rem);
    --radius-xl: 28px;
    --radius-lg: 24px;
  }

  body::before {
    opacity: 0.018;
  }

  .site-brand__name {
    max-width: 110px;
  }

  .site-header__inner {
    gap: 0.5rem;
  }

  .site-header__actions,
  .site-brand {
    min-width: 0;
  }

  .hero,
  .site-hero {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.6rem;
    padding-block: 2.15rem 3.75rem;
  }

  .hero > *,
  .site-hero > *,
  .hero__intro,
  .site-hero__intro {
    min-width: 0;
    max-width: 100%;
  }

  .hero__title,
  .site-hero__title {
    max-width: 100%;
    margin-bottom: 1.1rem;
    font-size: clamp(2.35rem, 9.6vw, 3.85rem);
  }

  .hero__visual,
  .site-hero__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero__visual img,
  .site-hero__media img {
    min-height: 0;
    object-position: center;
  }

  .section__title,
  .archive-title,
  .entry-title {
    font-size: clamp(2.35rem, 12vw, 4.5rem);
  }

  .project-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .project-tile,
  .project-tile:nth-child(3n + 2),
  .project-tile:nth-child(3n) {
    grid-column: 1;
    padding-top: 0;
  }

  .project-card__body {
    padding: 1.4rem;
  }

  .project-card__title {
    font-size: clamp(2rem, 10vw, 3.3rem);
  }

  .channel-list,
  .channel-rail {
    width: calc(100vw - 16px);
    grid-auto-columns: minmax(270px, 82vw);
    margin-right: calc((100vw - var(--container)) / -2);
  }

  .channel-card {
    min-height: 360px;
  }

  .about-teaser,
  .about-layout,
  .contact-panel,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-teaser__visual,
  .about-portrait {
    position: relative;
    top: auto;
  }

  .contact-panel,
  .contact-layout {
    padding: 1rem;
  }

  .contact-panel__copy,
  .contact-layout__copy {
    padding: 1rem 0.3rem 0.5rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

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

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

  .is-js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .project-stack .project-card {
    position: relative;
    top: auto;
    will-change: auto;
  }

  .page-transition {
    display: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .theme-toggle,
  .menu-toggle,
  .hero__media-note {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .page-transition,
  .project-filters,
  .work-filters {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}

/* WordPress template alignment */
.site-brand__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  color: var(--ink);
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.custom-logo-link,
.custom-logo {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 42px;
}

.theme-toggle__track {
  position: relative;
  width: 24px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: var(--radius-pill);
}

.theme-toggle__thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  transition: transform 220ms var(--ease-out);
}

.theme-toggle[aria-pressed="true"] .theme-toggle__thumb {
  transform: translateX(10px);
}

.menu-toggle {
  width: auto;
  padding-inline: 0.85rem;
  gap: 0.5rem;
}

.menu-toggle__label {
  font-size: 0.75rem;
  font-weight: 700;
}

.menu-toggle__lines {
  display: grid;
  width: 15px;
  gap: 4px;
}

.menu-toggle__lines i {
  display: block;
  height: 1.5px;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:first-child {
  transform: translateY(2.75px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines i:last-child {
  transform: translateY(-2.75px) rotate(-45deg);
}

.button--primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button--primary.button--accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.button--secondary,
.button--quiet {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover,
.button--quiet:hover {
  border-color: var(--ink);
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 740;
  text-decoration: none;
}

.text-link span {
  transition: transform 220ms var(--ease-out);
}

.text-link:hover span[aria-hidden="true"] {
  transform: translate(3px, -3px);
}

.hero__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #f3efe9;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero__frame {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.1s var(--ease-out);
}

.hero__media:hover .hero__image {
  transform: scale(1.018);
}

.section-shell {
  padding-block: var(--section-space);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 5.5rem);
}

.section-heading__title,
.channels-section__intro h2,
.about-preview h2,
.working-principles > h2,
.about-story > h2,
.project-video > h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5.2vw, 5.8rem);
  font-weight: 630;
  letter-spacing: -0.068em;
  line-height: 0.98;
}

.section-heading__intro,
.channels-section__intro p {
  max-width: 55ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.section-action,
.page-action {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.project-card__title a,
.channel-card__title a {
  text-decoration: none;
}

.project-card__excerpt,
.project-card__role {
  color: var(--muted);
}

.project-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.project-stack .project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-grid .project-card {
  display: block;
  min-height: 0;
  grid-column: span 7;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.project-grid .project-card:nth-child(3n + 2) {
  grid-column: span 5;
  padding-top: clamp(2rem, 6vw, 7rem);
}

.project-grid .project-card:nth-child(3n) {
  grid-column: 3 / span 8;
}

.project-grid .project-card__media {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.project-grid .project-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-grid .project-card__body {
  display: block;
  padding: 1.1rem 0.25rem 0;
}

.project-grid .project-card__meta {
  margin-bottom: 0.8rem;
}

.project-grid .project-card__title {
  max-width: none;
  margin-bottom: 0.6rem;
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.project-grid .project-card__footer {
  padding-top: 0.7rem;
}

.media-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 250px;
  place-items: center;
  background:
    radial-gradient(circle at 72% 28%, rgb(var(--accent-rgb) / 0.88), transparent 24%),
    var(--surface);
}

.media-placeholder__mark {
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 24px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.channels-section.site-container {
  width: var(--container);
  padding: clamp(2rem, 5vw, 5rem);
  margin-bottom: var(--section-space);
  border-radius: var(--radius-xl);
}

.channels-section__intro {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.channels-section__intro p {
  color: rgb(247 247 242 / 0.68);
}

.channel-grid {
  display: grid;
  grid-auto-columns: minmax(290px, 31vw);
  grid-auto-flow: column;
  gap: 1rem;
  padding-bottom: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
}

.channel-grid .channel-card {
  min-height: 500px;
  padding: 0;
  overflow: hidden;
}

.channel-card__media {
  display: block;
  width: 100%;
  flex: 0 0 auto;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: rgb(247 247 242 / 0.1);
}

.channel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.channel-card:hover .channel-card__image {
  transform: scale(1.035);
}

.channel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
}

.channel-card__role {
  margin-bottom: 0.75rem;
}

.channel-card__excerpt {
  color: rgb(247 247 242 / 0.64);
}

.channel-card__body .text-link {
  margin-top: auto;
  color: var(--accent);
}

.archive-channels .channel-grid,
.channel-grid--archive {
	grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-columns: unset;
  grid-auto-flow: row;
  overflow: visible;
}

.archive-channels .channel-card {
  border-color: var(--line);
  background: var(--surface-raised);
  color: var(--ink);
}

.archive-channels .channel-card__role,
.archive-channels .channel-card__stats,
.archive-channels .channel-card__excerpt {
  color: var(--muted);
}

.archive-channels .channel-card__link {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

.about-preview {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center start;
  overflow: hidden;
  padding-inline: clamp(1.5rem, 6vw, 7rem);
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.about-preview__shape {
  position: absolute;
  top: 50%;
  right: clamp(-80px, -4vw, -20px);
  width: min(52vw, 640px);
  aspect-ratio: 1;
  border: clamp(55px, 8vw, 110px) solid var(--accent);
  border-radius: 42% 58% 55% 45% / 44% 48% 52% 56%;
  transform: translateY(-50%) rotate(-12deg);
  pointer-events: none;
}

.about-preview__content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.about-preview__eyebrow,
.archive-hero__eyebrow,
.inner-hero__eyebrow,
.contact-hero__eyebrow,
.search-hero__eyebrow,
.project-single__eyebrow {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-kicker,
.entry-kicker {
  color: var(--accent-ink);
}

.contact-preview {
  display: flex;
  min-height: 360px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.7rem, 5vw, 5rem);
  margin-bottom: 0;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: var(--accent-ink);
}

.contact-preview h2 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 6.6rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.contact-preview .button--primary {
  border-color: var(--accent-ink);
  background: var(--accent-ink);
  color: var(--accent);
}

.archive-hero h1,
.search-hero h1,
.contact-hero h1,
.inner-hero h1,
.project-single__header h1 {
  max-width: 13ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 630;
  letter-spacing: -0.075em;
  line-height: 0.93;
}

.archive-hero > p:last-child,
.search-hero > p:last-child,
.contact-hero > p:last-child,
.inner-hero__lead,
.project-single__lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.inner-hero,
.project-single__header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
  min-height: calc(100dvh - var(--header-height));
  padding-block: clamp(2rem, 5vw, 5rem);
}

.inner-hero--about {
  min-height: min(780px, calc(100svh - var(--header-height)));
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.inner-hero--about .inner-hero__content {
  align-self: center;
  padding-top: 0;
}

.inner-hero--about .inner-hero__media {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.inner-hero--about .inner-hero__image {
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-position: center;
}

.inner-hero__link {
  min-height: 44px;
  margin-top: 1.35rem;
}

.inner-hero__media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.inner-hero__image {
  width: 100%;
  min-height: min(70dvh, 760px);
  object-fit: cover;
  object-position: 67% center;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 8rem);
}

.about-story .entry-content {
  width: 100%;
  padding-bottom: 0;
  margin: 0;
}

.working-principles__rail {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.working-principles__rail > div {
  min-height: 260px;
  padding: clamp(1.3rem, 3vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
}

.working-principles__rail > div:first-child {
  grid-column: span 7;
  background: var(--accent);
  color: var(--accent-ink);
}

.working-principles__rail > div:nth-child(2) {
  grid-column: span 5;
  margin-top: 5rem;
}

.working-principles__rail > div:nth-child(3) {
  grid-column: 3 / span 8;
}

.working-principles__rail h3 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  font-weight: 630;
  letter-spacing: -0.055em;
}

.contact-hero {
  padding-block: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 3vw, 2.5rem);
}

.contact-hero > .archive-description {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.contact-hero__media {
  width: min(100%, 980px);
  aspect-ratio: 16 / 7;
  margin: clamp(2rem, 5vw, 4rem) 0 0 auto;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-project-types.section-shell {
  padding-top: clamp(3.5rem, 6vw, 6rem);
}

.contact-layout.section-shell {
  align-items: start;
  background: var(--accent);
}

.contact-layout > :only-child,
.contact-guide > :only-child {
  grid-column: 1 / -1;
  width: min(100%, 900px);
}

.contact-details {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.contact-details h2,
.contact-form-panel h2 {
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.contact-details__email {
  display: inline-block;
  max-width: 100%;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-details__intro {
  max-width: 38ch;
  margin-top: 1.25rem;
  color: rgb(23 24 18 / 0.72);
}

.contact-details__steps {
  display: grid;
  gap: 0;
  max-width: 430px;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid rgb(23 24 18 / 0.22);
  list-style: none;
}

.contact-details__steps li {
  display: block;
  padding-block: 0.9rem;
  border-bottom: 1px solid rgb(23 24 18 / 0.22);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  padding: 0;
  margin-top: 2rem;
  list-style: none;
}

.contact-form-panel {
  padding: clamp(1.2rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: #f7f7f2;
  color: #181916;
  box-shadow: 0 22px 60px rgb(69 65 15 / 0.16);
}

.contact-form-panel .entry-content {
  width: 100%;
  padding: 0;
  margin: 0 0 1.4rem;
}

.kerem-contact-form {
  display: grid;
  gap: 1rem;
}

.kerem-contact-form button.kerem-contact-form__submit {
  border-color: #181916;
  background: #181916;
  color: #f7f7f2;
}

.kerem-contact-form__field {
  display: grid;
  gap: 0.45rem;
}

.kerem-contact-form__field label {
  font-size: 0.78rem;
  font-weight: 740;
}

.kerem-contact-form__field input,
.kerem-contact-form__field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgb(24 25 22 / 0.25);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #181916;
}

.kerem-contact-form__field textarea {
  min-height: 170px;
  resize: vertical;
}

.kerem-contact-form__field input:focus,
.kerem-contact-form__field textarea:focus {
  border-color: #181916;
  outline: 2px solid #ffffff;
  outline-offset: 1px;
  box-shadow: 0 0 0 4px #181916;
}

.kerem-contact-form__notice,
.form-notice {
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}

.kerem-contact-form__notice--success,
.form-notice--success {
  background: #dcebdd;
  color: #214e2c;
}

.kerem-contact-form__notice--error,
.form-notice--error {
  background: #f4dcda;
  color: #7d2828;
}

.kerem-contact-form__submit {
  justify-self: start;
}

.kerem-contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.project-single__header {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  min-height: auto;
  padding-block: clamp(5rem, 11vw, 10rem) clamp(2rem, 5vw, 4rem);
}

.project-facts {
  display: grid;
  gap: 1.1rem;
  padding: 1.4rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.project-facts div {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 1rem;
}

.project-facts dt {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
}

.project-single__media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
}

.project-single__image {
  width: 100%;
  min-height: min(75dvh, 840px);
  object-fit: cover;
}

.project-video {
  padding-bottom: var(--section-space);
}

.project-video__embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.project-video__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.entry-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding-block: 2rem var(--section-space);
  border-top: 1px solid var(--line);
}

.entry-navigation > div:last-child {
  text-align: right;
}

.entry-navigation a {
  font-weight: 720;
}

.site-footer__base {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) repeat(2, minmax(140px, 0.45fr));
  align-items: start;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: clamp(2.5rem, 4vw, 3.5rem) clamp(1.75rem, 2.5vw, 2.5rem);
}

.site-footer__base.has-socials {
  grid-template-columns: minmax(280px, 1.25fr) repeat(3, minmax(120px, 0.45fr));
}

.site-footer__brand {
  margin-bottom: 1.1rem;
  font-size: 1rem;
  letter-spacing: normal;
  line-height: 1;
}

.site-footer__brand .site-brand__mark {
  width: 34px;
}

.site-footer__statement {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 560;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.site-footer__label {
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 680;
}

.footer-nav__list,
.social-nav__list,
.site-footer__directory .site-nav__list {
  display: grid;
  gap: 0.62rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav a,
.social-nav a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 620;
  text-decoration: none;
  transition: transform 220ms var(--ease-out), color 200ms ease;
}

.footer-nav a:hover,
.social-nav a:hover {
  color: var(--muted);
  transform: translateX(3px);
}

.site-footer__top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.site-footer__top-link span:last-child {
  transition: transform 220ms var(--ease-out);
}

.site-footer__top-link:hover span:last-child {
  transform: translateY(-3px);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.1rem max(1.5rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}

.site-footer__bottom > p {
  margin: 0;
}

.site-footer__domain {
  text-decoration: none;
  transition: color 200ms ease;
}

.site-footer__domain:hover {
  color: var(--ink);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.error-page {
  display: grid;
  min-height: 72dvh;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 3rem;
}

.error-page__code {
  margin: 0;
  color: var(--accent);
  font-size: clamp(8rem, 24vw, 24rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.7;
}

.error-page__content h1 {
  max-width: 10ch;
  font-size: clamp(2.6rem, 6vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.search-form {
  display: flex;
  max-width: 620px;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding-inline: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-raised);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 3rem;
}

.pagination .page-numbers {
  display: grid;
  min-width: 42px;
  min-height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.pagination .current {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

/* Editorial capability index */
.capabilities-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 9rem);
}

.capabilities-intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.capabilities-intro h2,
.process-section__intro h2,
.about-capabilities__intro h2,
.about-approach__content h2,
.contact-project-types__intro h2,
.brief-guide h2,
.contact-faq h2 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(2.5rem, 5vw, 5.6rem);
  font-weight: 630;
  letter-spacing: -0.066em;
  line-height: 0.98;
}

.capabilities-intro p,
.process-section__intro p,
.about-capabilities__intro p,
.about-approach__content header > p,
.contact-project-types__intro p,
.brief-guide > p {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.capability-editorial {
  border-top: 1px solid var(--line);
}

.capability-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.42fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(1.8rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  transition: transform 300ms var(--ease-out);
}

.capability-item:nth-child(2),
.capability-item:nth-child(4) {
  margin-left: clamp(1rem, 5vw, 5rem);
}

.capability-item:nth-child(3) {
  margin-right: clamp(1rem, 3vw, 3rem);
}

.capability-item:hover {
  transform: translateX(8px);
}

.capability-item h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1;
}

.capability-item div > p {
  max-width: 50ch;
  margin-bottom: 0;
  color: var(--muted);
}

.capability-item__scope {
  margin-bottom: 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.55;
}

/* Four-part production rail */
.process-section {
  overflow: hidden;
}

.process-section__intro {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.process-rail {
  display: grid;
  grid-template-columns: 1.08fr 0.94fr 1.04fr 0.94fr;
  padding: 0;
  margin: 0;
  border-block: 1px solid var(--line);
  list-style: none;
}

.process-step {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 2.8vw, 2.8rem);
  border-right: 1px solid var(--line);
  scroll-snap-align: start;
}

.process-step:nth-child(2) {
  background: var(--surface);
}

.process-step:last-child {
  border-right: 0;
  background: var(--accent);
  color: var(--accent-ink);
}

.process-step h3 {
  max-width: 10ch;
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.8rem);
  font-weight: 640;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.process-step p {
  max-width: 28ch;
  margin-bottom: 0;
  color: var(--muted);
}

.process-step:last-child p {
  color: rgb(23 24 18 / 0.7);
}

/* Media-led about close */
.about-preview.about-teaser {
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.about-preview__media {
  position: relative;
  top: auto;
  display: grid;
  min-height: 640px;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
  border-radius: 0;
  background: var(--surface-raised);
}

.about-preview__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.about-preview__media figcaption,
.about-approach__media figcaption {
  padding: 0.9rem 1rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.about-preview__content {
  align-self: center;
  padding: clamp(2rem, 6vw, 6rem);
}

.about-preview__content .text-link {
  margin-top: 1rem;
}

.contact-preview__action {
  display: grid;
  max-width: 310px;
  justify-items: start;
  gap: 1rem;
}

.contact-preview__action p {
  margin: 0;
  color: rgb(23 24 18 / 0.72);
  font-size: 0.9rem;
}

/* About page capability map */
.about-capabilities__intro {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.about-capability-map {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.about-capability {
  min-height: 270px;
  padding: clamp(1.4rem, 3.2vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
}

.about-capability:nth-child(1) {
  grid-column: span 7;
  background: var(--accent);
  color: var(--accent-ink);
}

.about-capability:nth-child(2) {
  grid-column: span 5;
  margin-top: clamp(2rem, 5vw, 5rem);
  background: var(--surface);
}

.about-capability:nth-child(3) {
  grid-column: 2 / span 5;
}

.about-capability:nth-child(4) {
  grid-column: span 6;
  background: var(--surface);
}

.about-capability h3 {
  max-width: 12ch;
  margin-bottom: 0.8rem;
  font-size: clamp(1.7rem, 3vw, 3.25rem);
  font-weight: 630;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.about-capability p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
}

.about-capability:first-child p {
  color: rgb(23 24 18 / 0.7);
}

/* About page working approach */
.about-approach {
  display: grid;
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.about-approach__media {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: grid;
  grid-template-rows: auto auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-raised);
}

.about-approach__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about-approach__content header {
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.approach-list {
  border-top: 1px solid var(--line);
}

.approach-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 1.5rem;
  padding-block: clamp(1.4rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
}

.approach-list article:nth-child(even) {
  padding-left: clamp(0.5rem, 3vw, 2.5rem);
}

.approach-list h3 {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  font-weight: 680;
  letter-spacing: -0.035em;
}

.approach-list p {
  margin-bottom: 0;
  color: var(--muted);
}

/* Contact page decision support */
.contact-project-types {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.contact-project-types__intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  margin-bottom: 0;
}

.contact-type-grid {
  border-top: 1px solid var(--line);
}

.contact-type {
  display: grid;
  min-height: 170px;
  grid-template-columns: minmax(190px, 0.52fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(1.5rem, 3.5vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.contact-type:nth-child(even) {
  padding-left: clamp(1rem, 4vw, 4rem);
}

.contact-type h3 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.7vw, 2.8rem);
  font-weight: 630;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.contact-type p {
  max-width: 42ch;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: clamp(2.5rem, 8vw, 8rem);
}

.brief-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.brief-list > div {
  min-height: 150px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.brief-list dt {
  margin-bottom: 1rem;
  font-size: 1.15rem;
  font-weight: 720;
}

.brief-list dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

.faq-list summary {
  padding-block: 1.45rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 680;
  cursor: pointer;
}

.faq-list summary:focus-visible {
  outline-offset: 3px;
}

.faq-list details p {
  max-width: 58ch;
  padding: 0 1.5rem 1.5rem 0;
  margin: 0;
  color: var(--muted);
}

.kerem-contact-form__field select,
.kerem-contact-form__select,
.kerem-contact-form__input {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgb(24 25 22 / 0.25);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #181916;
}

.kerem-contact-form__field select:focus,
.kerem-contact-form__select:focus,
.kerem-contact-form__input:focus {
  border-color: #181916;
  outline: 2px solid #ffffff;
  outline-offset: 1px;
  box-shadow: 0 0 0 4px #181916;
}

.kerem-contact-form__optional {
  color: #686a62;
  font-size: 0.72rem;
  font-weight: 500;
}

@media (max-width: 1024px) {
	.capabilities-layout,
	.about-approach,
	.contact-project-types,
	.contact-guide {
		grid-template-columns: 1fr;
	}

	.capabilities-intro,
	.about-approach__media,
	.contact-project-types__intro {
		position: relative;
		top: auto;
	}

	.process-rail {
		grid-auto-columns: minmax(310px, 44vw);
		grid-auto-flow: column;
		grid-template-columns: none;
		overflow-x: auto;
		overscroll-behavior-inline: contain;
		scroll-snap-type: inline mandatory;
	}

	.about-preview.about-teaser {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	}

  .project-grid .project-card,
  .project-grid .project-card:nth-child(3n + 2),
  .project-grid .project-card:nth-child(3n) {
    grid-column: span 6;
    padding-top: 0;
  }

  .channel-grid {
    grid-auto-columns: minmax(290px, 48vw);
  }

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

  .site-footer__base,
  .site-footer__base.has-socials {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .site-footer__summary {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
	.capability-item,
	.approach-list article {
		grid-template-columns: 1fr;
	}

	.capability-item:nth-child(2),
	.capability-item:nth-child(3),
	.capability-item:nth-child(4) {
		margin-right: 0;
		margin-left: 0;
	}

	.process-rail {
		width: calc(100vw - 16px);
		grid-auto-columns: minmax(270px, 82vw);
	}

	.process-step {
		min-height: 240px;
	}

	.about-preview.about-teaser,
	.about-capability-map {
		grid-template-columns: 1fr;
	}

	.about-preview.about-teaser {
		min-height: 0;
		align-items: stretch;
		padding: 0;
	}

	.about-preview__media {
		min-height: 0;
	}

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

	.about-capability:nth-child(1),
	.about-capability:nth-child(2),
	.about-capability:nth-child(3),
	.about-capability:nth-child(4) {
		grid-column: 1;
		margin-top: 0;
	}

	.about-capability {
		min-height: 220px;
	}

	.contact-type {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.contact-type:nth-child(even) {
		padding-left: 0;
	}

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

	.contact-preview__action {
		max-width: none;
	}

  .hero__media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .project-grid .project-card,
  .project-grid .project-card:nth-child(3n + 2),
  .project-grid .project-card:nth-child(3n) {
    grid-column: 1;
  }

  .project-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .channels-section.site-container {
    width: calc(100% - 16px);
    padding: 1.3rem;
  }

  .channel-grid {
    width: calc(100vw - 24px);
    grid-auto-columns: minmax(270px, 82vw);
  }

  .archive-channels .channel-grid,
  .channel-grid--archive {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .about-preview {
    min-height: 600px;
    align-items: end;
    padding: 2rem;
  }

  .about-preview__shape {
    top: 30%;
    right: -25%;
    width: 100vw;
  }

  .contact-preview {
    align-items: flex-start;
    flex-direction: column;
  }

  .channel-single__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .channel-single__media.entry-hero__media {
    aspect-ratio: 4 / 3;
  }

  .inner-hero,
  .project-single__header,
  .about-story,
  .error-page {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .inner-hero__image,
  .project-single__image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .working-principles__rail {
    grid-template-columns: 1fr;
  }

  .working-principles__rail > div:first-child,
  .working-principles__rail > div:nth-child(2),
  .working-principles__rail > div:nth-child(3) {
    grid-column: 1;
    margin-top: 0;
  }

  .contact-details {
    position: relative;
    top: auto;
  }

  .entry-navigation,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .entry-navigation > div:last-child {
    text-align: left;
  }

  .site-footer__base,
  .site-footer__base.has-socials {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 2.5rem 1.75rem;
  }

  .site-footer__statement {
    max-width: 20ch;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__legal {
    flex-direction: column;
  }
}
