:root {
  --bg: #f8f7f4;
  --ink: #151515;
  --muted: #6f6a62;
  --line: rgba(21, 21, 21, .14);
  --paper: #ffffff;
  --soft-close: cubic-bezier(.16, 1, .3, 1);
  --header-height: 82px;
  --filter-height: 70px;
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 82px;
  padding: 22px clamp(18px, 4vw, 56px);
  background: rgba(248, 247, 244, .96);
  border-bottom: 1px solid rgba(21, 21, 21, .08);
  backdrop-filter: blur(18px);
  transition: min-height .48s var(--soft-close), padding .48s var(--soft-close), background-color .48s var(--soft-close);
}

.site-header.is-compact {
  min-height: 58px;
  padding-top: 11px;
  padding-bottom: 10px;
  background: rgba(248, 247, 244, .985);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 166px;
}

.brand-logo {
  display: inline-flex;
  flex-direction: column;
  color: #050505;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: .78;
  transition: font-size .48s var(--soft-close);
}

.site-header.is-compact .brand-logo {
  font-size: 28px;
}

.brand-line {
  display: block;
  white-space: nowrap;
}

.brand-first-name {
  display: flex;
  align-items: baseline;
}

.brand-y-mark {
  display: block;
  flex: 0 0 auto;
  width: .75em;
  height: .82em;
  margin-right: .015em;
  fill: currentColor;
  overflow: visible;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.8vw, 42px);
  color: #47413b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color .36s var(--soft-close), opacity .36s var(--soft-close), transform .36s var(--soft-close);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--ink); }
.site-nav a:hover { transform: translateY(-1px); }
.site-nav a[aria-current="page"]::after, .site-nav a:hover::after { transform: scaleX(1); }

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 500;
  line-height: .96;
}

.portfolio-section {
  padding: 20px clamp(10px, 3vw, 42px) 56px;
}

.filter-bar {
  position: sticky;
  z-index: 15;
  top: var(--header-height);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 18px 0 24px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
}

.filter-button,
.series-button,
.nav-language-switch a {
  transition: color .36s var(--soft-close), border-color .36s var(--soft-close), opacity .36s var(--soft-close), transform .36s var(--soft-close);
}

.series-bar {
  position: sticky;
  z-index: 14;
  top: calc(var(--header-height) + var(--filter-height));
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 34px);
  width: 100vw;
  margin: -10px calc(50% - 50vw) 26px;
  padding: 9px 0 11px;
  border: 0;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--bg) 96%, transparent),
    color-mix(in srgb, var(--bg) 91%, transparent)
  );
  box-shadow: inset 0 -1px rgba(21, 21, 21, .09);
  backdrop-filter: blur(18px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .42s var(--soft-close), transform .42s var(--soft-close), margin .42s var(--soft-close);
}

.series-bar[hidden] {
  display: none;
}

.series-bar.is-closing,
.series-editorial.is-closing {
  opacity: 0;
  transform: translateY(-8px);
}

.filter-button {
  min-height: 28px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.filter-button[aria-pressed="true"], .filter-button:hover {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.filter-button:hover,
.series-button:hover {
  transform: translateY(-1px);
}

.series-button {
  position: relative;
  min-height: 30px;
  padding: 0 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #827b73;
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.series-button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .18s ease, transform .18s ease;
}

.series-button[aria-pressed="true"],
.series-button:hover {
  color: var(--ink);
}

.series-button[aria-pressed="true"]::after,
.series-button:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.series-editorial {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  padding: 0 clamp(8px, 2vw, 18px);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .46s var(--soft-close), transform .46s var(--soft-close);
}

.series-editorial[hidden],
.series-text[hidden] {
  display: none;
}

.series-text {
  display: grid;
  grid-template-columns: minmax(160px, .34fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  padding: 28px 0 30px;
  border-bottom: 1px solid rgba(21, 21, 21, .1);
  animation: editorialReveal .54s var(--soft-close) both;
}

.series-kicker {
  margin: 7px 0 0;
  color: #817b73;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.series-text h2 {
  grid-column: 1;
  grid-row: 1 / span 2;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 500;
  line-height: .96;
}

.series-copy {
  grid-column: 2;
  max-width: 680px;
}

.series-copy p {
  margin: 0 0 13px;
  color: #34302b;
  font-size: 15px;
  line-height: 1.7;
}

.series-copy p:last-child {
  margin-bottom: 0;
}

.portfolio-grid {
  column-count: 3;
  column-gap: 10px;
}

.portfolio-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  break-inside: avoid;
  background: #e7e2db;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .42s var(--soft-close), transform .42s var(--soft-close), filter .42s var(--soft-close);
}

.portfolio-item.is-hidden { display: none; }
.portfolio-item.is-leaving {
  opacity: 0;
  transform: translateY(8px) scale(.985);
  filter: saturate(.92);
}

.portfolio-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}

.portfolio-video-link { cursor: pointer; }

.portfolio-open img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  transition: transform .6s var(--soft-close), filter .6s var(--soft-close);
}

.portfolio-open:hover img {
  transform: scale(1.018);
  filter: contrast(1.02);
}

.video-cue {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px 8px;
  color: white;
  background: rgba(12, 12, 12, .74);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .35s var(--soft-close), transform .35s var(--soft-close), background .35s var(--soft-close);
}

.video-cue::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.portfolio-video-link:hover .video-cue,
.portfolio-video-link:focus-visible .video-cue {
  opacity: 1;
  transform: translateY(0);
  background: rgba(12, 12, 12, .86);
}

.text-page {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(42px, 6vw, 74px) 0 clamp(54px, 7vw, 88px);
}

.text-page h1 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: .94;
}

.text-page h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1;
}

.text-page h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(21px, 2.2vw, 27px);
  font-weight: 500;
  line-height: 1;
}

.text-page p {
  margin: 0;
  color: #34302b;
  font-size: 16px;
  line-height: 1.72;
}

.error-page {
  position: relative;
  display: grid;
  align-content: center;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - var(--header-height));
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0 clamp(68px, 8vw, 120px);
  overflow: hidden;
}

.error-mark {
  position: absolute;
  right: clamp(-10px, 2vw, 28px);
  bottom: clamp(18px, 6vw, 68px);
  z-index: 0;
  color: rgba(21, 21, 21, .045);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(150px, 26vw, 330px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .72;
  pointer-events: none;
}

.error-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding-left: clamp(0px, 4vw, 54px);
  border-left: 1px solid rgba(21, 21, 21, .16);
}

.error-kicker {
  margin: 0 0 18px;
  color: #827b73;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.error-page h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 9vw, 108px);
  line-height: .9;
}

.error-copy {
  max-width: 560px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: #34302b;
  font-size: clamp(17px, 1.65vw, 20px);
  line-height: 1.62;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px clamp(24px, 4vw, 46px);
  margin-top: clamp(34px, 4.8vw, 58px);
}

.error-actions a {
  min-height: 28px;
  border-bottom: 1px solid currentColor;
  color: #504941;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .36s var(--soft-close), transform .36s var(--soft-close);
}

.error-actions a:hover,
.error-actions a:focus {
  color: var(--ink);
  transform: translateY(-1px);
}

.page-kicker {
  margin: -8px 0 22px !important;
  color: #6f6a62 !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1 !important;
}

.nav-language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: clamp(6px, 1.4vw, 18px);
}

.nav-language-switch a {
  min-height: 22px;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
}

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

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #5f5850;
  transition: color .42s var(--soft-close), opacity .42s var(--soft-close), transform .42s var(--soft-close);
}

.nav-social::after {
  display: none;
}

.nav-social svg {
  display: block;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 72;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .72s var(--soft-close), stroke-width .42s var(--soft-close), transform .42s var(--soft-close);
}

.nav-social:hover,
.nav-social:focus-visible {
  color: var(--ink);
  transform: translateY(-1px) scale(1.04);
}

.nav-social:hover svg,
.nav-social:focus-visible svg {
  stroke-width: 1.85;
  stroke-dashoffset: 144;
  transform: rotate(-2deg);
}

.about-essay {
  max-width: 920px;
  padding-top: clamp(20px, 3vw, 34px);
  border-top: 1px solid rgba(21, 21, 21, .12);
}

.about-intro {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.about-intro p {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.14;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 44px) clamp(30px, 5vw, 62px);
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid rgba(21, 21, 21, .1);
  border-bottom: 1px solid rgba(21, 21, 21, .1);
}

.about-grid article {
  min-width: 0;
}

.about-grid span {
  display: block;
  margin-bottom: 18px;
  color: #8c8479;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

.about-grid h2 {
  margin-bottom: 15px;
}

.about-grid p {
  margin-bottom: 16px;
}

.about-copy {
  max-width: 690px;
}

.about-copy-editorial {
  max-width: 720px;
  padding: clamp(28px, 4vw, 46px) 0 0;
  border-top: 1px solid rgba(21, 21, 21, .1);
}

.about-copy p {
  margin: 0 0 17px;
  font-size: 16px;
  line-height: 1.76;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-milestones {
  max-width: 780px;
  margin-top: clamp(32px, 5vw, 56px);
  padding: clamp(26px, 4vw, 40px) 0 0;
  border-top: 1px solid rgba(21, 21, 21, .1);
}

.about-milestones h2 {
  margin-bottom: 24px;
}

.about-milestones ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-milestones li {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0 19px;
  border-top: 1px solid rgba(21, 21, 21, .075);
  color: #34302b;
  font-size: 15px;
  line-height: 1.62;
}

.about-milestones li:first-child {
  border-top: 0;
  padding-top: 0;
}

.milestone-year {
  color: #8c8479;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.55;
}

.milestone-copy {
  max-width: 620px;
}

.milestone-copy a,
.milestone-related {
  border-bottom: 1px solid rgba(21, 21, 21, .28);
  transition: border-color .35s var(--soft-close), color .35s var(--soft-close);
}

.milestone-copy a:hover,
.milestone-copy a:focus-visible,
.milestone-related:hover,
.milestone-related:focus-visible {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.milestone-related {
  grid-column: 2;
  justify-self: start;
  margin-top: -3px;
  color: #6f6a62;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.art-direction-page {
  max-width: 920px;
  padding-top: clamp(20px, 3vw, 34px);
  border-top: 1px solid rgba(21, 21, 21, .12);
}

.art-direction-intro {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.art-direction-intro p {
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.14;
}

.art-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 44px) clamp(30px, 5vw, 62px);
  padding: clamp(28px, 4vw, 46px) 0;
  border-top: 1px solid rgba(21, 21, 21, .1);
  border-bottom: 1px solid rgba(21, 21, 21, .1);
}

.art-direction-grid article {
  min-width: 0;
}

.art-direction-grid span {
  display: block;
  margin-bottom: 18px;
  color: #8c8479;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}

.art-direction-grid h2,
.art-direction-process h2 {
  margin-bottom: 15px;
}

.art-direction-grid p,
.art-direction-process p {
  margin-bottom: 16px;
}

.art-direction-process {
  max-width: 720px;
  padding: clamp(34px, 5vw, 58px) 0 0;
}

.art-direction-cta {
  margin-top: clamp(30px, 4vw, 46px) !important;
}

.art-direction-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .35s var(--soft-close), color .35s var(--soft-close), transform .35s var(--soft-close);
}

.art-direction-cta a:hover,
.art-direction-cta a:focus {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(18px, 3vw, 34px);
  margin-top: clamp(28px, 4vw, 46px);
  padding-top: 18px;
  border-top: 1px solid rgba(21, 21, 21, .1);
}

.internal-links a {
  position: relative;
  color: #5f5850;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color .35s var(--soft-close), transform .35s var(--soft-close);
}

.internal-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: .35;
  transform: scaleX(.32);
  transform-origin: left;
  transition: opacity .35s var(--soft-close), transform .35s var(--soft-close);
}

.internal-links a:hover,
.internal-links a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.internal-links a:hover::after,
.internal-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.portfolio-internal-links {
  width: min(980px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.contact-context {
  max-width: 650px;
  margin-top: -2px !important;
  margin-bottom: clamp(30px, 4vw, 46px) !important;
  color: #504941 !important;
}

.about-copy a,
.art-direction-process a,
.contact-context a {
  border-bottom: 1px solid rgba(21, 21, 21, .28);
  transition: border-color .35s var(--soft-close), color .35s var(--soft-close);
}

.about-copy a:hover,
.art-direction-process a:hover,
.contact-context a:hover {
  border-bottom-color: var(--ink);
  color: var(--ink);
}

.maintenance-page {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  place-items: center;
  padding: clamp(54px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.maintenance-inner {
  width: min(760px, 100%);
  text-align: center;
}

.maintenance-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.maintenance-page h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(58px, 10vw, 142px);
  font-weight: 500;
  line-height: .86;
}

.maintenance-copy {
  width: min(540px, 100%);
  margin: 28px auto 0;
  color: #403b35;
  font-size: clamp(17px, 2.2vw, 24px);
  line-height: 1.55;
}

.maintenance-link {
  display: inline-flex;
  margin-top: 30px;
  border-bottom: 1px solid rgba(21, 21, 21, .32);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.maintenance-login {
  width: min(360px, 100%);
  margin: 38px auto 0;
}

.contact-page {
  width: min(980px, calc(100% - 48px));
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(160px, .28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(14px, 2.6vw, 28px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid rgba(21, 21, 21, .12);
}

.contact-form-heading h2 {
  margin-top: 12px;
}

.contact-form-section form {
  max-width: 700px;
}

.contact-form-section .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.contact-form-section label {
  display: block;
}

.contact-form-section label,
.contact-form-section .form-label {
  display: block;
  margin-bottom: 8px;
  color: #6f6a62;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
  width: 100%;
  min-height: 42px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, .22);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  line-height: 1.45;
}

.contact-form-section textarea {
  min-height: 136px;
  padding-top: 8px;
  resize: vertical;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
  border-bottom-color: var(--ink);
  outline: 0;
}

.contact-form-section ::placeholder {
  color: #9b948b;
}

.contact-form-section .form-field {
  margin-bottom: 20px;
}

.contact-form-section .form-field-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-section .form-field-checkbox,
.contact-form-section .checkboxes {
  margin-top: 18px;
}

.contact-form-section input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  margin-right: 10px;
  accent-color: var(--ink);
}

.contact-form-section button[type="submit"],
.contact-form-section input[type="submit"] {
  min-height: 42px;
  margin-top: 24px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--bg);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background-color .42s var(--soft-close), color .42s var(--soft-close), transform .42s var(--soft-close);
}

.contact-form-section button[type="submit"]:hover,
.contact-form-section button[type="submit"]:focus,
.contact-form-section input[type="submit"]:hover,
.contact-form-section input[type="submit"]:focus {
  background: transparent;
  color: var(--ink);
  transform: translateY(-1px);
}

.contact-form-section .alert,
.contact-form-section .notice {
  grid-column: 2;
  margin: 0 0 22px !important;
  padding: 14px 0;
  border-top: 1px solid rgba(21, 21, 21, .14);
  border-bottom: 1px solid rgba(21, 21, 21, .14);
  font-size: 14px !important;
}

.form-status-success {
  color: #23563a !important;
}

.form-status-error {
  color: #8b2d2d !important;
}

.site-footer {
  padding: 0 clamp(18px, 4vw, 52px) 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.seo-footer {
  max-width: 1120px;
  margin: 0 auto;
}

.seo-footer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  color: #686159;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  list-style: none;
  text-transform: uppercase;
}

.seo-footer summary::-webkit-details-marker {
  display: none;
}

.seo-footer summary i,
.seo-footer summary i::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform .42s var(--soft-close), opacity .42s var(--soft-close);
}

.seo-footer summary i {
  position: relative;
}

.seo-footer summary i::before {
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
}

.seo-footer[open] summary i::before {
  opacity: 0;
  transform: rotate(0deg);
}

.seo-footer-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px clamp(28px, 5vw, 72px);
  padding: 0 0 28px;
  border-top: 1px solid rgba(21, 21, 21, .08);
}

.seo-footer-content p {
  margin: 0;
  max-width: 720px;
  color: #504941;
  font-size: 13px;
  line-height: 1.65;
}

.seo-footer-title {
  margin: 22px 0 9px !important;
  color: var(--ink) !important;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(22px, 2.8vw, 32px) !important;
  line-height: 1.05 !important;
}

.seo-footer nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  padding-top: 24px;
  color: #504941;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.seo-footer nav a {
  transition: color .36s var(--soft-close), transform .36s var(--soft-close);
}

.seo-footer nav a:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.footer-cookie-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-transform: inherit;
  transition: color .36s var(--soft-close), transform .36s var(--soft-close);
}

.footer-cookie-button:hover {
  color: var(--ink);
  transform: translateX(2px);
}

.seo-footer-meta {
  grid-column: 1 / -1;
  color: #7a736b !important;
  font-size: 11px !important;
}

.cookie-consent {
  position: fixed;
  z-index: 120;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 2.5vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(560px, calc(100vw - 28px));
  padding: 17px 18px;
  border: 1px solid rgba(21, 21, 21, .14);
  background: rgba(248, 247, 244, .96);
  box-shadow: 0 18px 54px rgba(21, 21, 21, .12);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent p {
  margin: 0;
  color: #504941;
  font-size: 12px;
  line-height: 1.55;
}

.cookie-consent-title {
  margin-bottom: 5px !important;
  color: var(--ink) !important;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1 !important;
  text-transform: uppercase;
}

.cookie-consent a {
  border-bottom: 1px solid currentColor;
}

.cookie-consent-actions {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.cookie-consent-actions button {
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(21, 21, 21, .22);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background-color .36s var(--soft-close), color .36s var(--soft-close), transform .36s var(--soft-close);
}

.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-1px);
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(8, 8, 8, .92);
  opacity: 1;
  transition: opacity .36s var(--soft-close);
}

.lightbox[hidden] { display: none; }
.lightbox.is-closing { opacity: 0; }

.lightbox img {
  max-width: min(96vw, 1500px);
  max-height: 86vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  animation: lightboxImage .5s var(--soft-close) both;
}

.lightbox iframe {
  width: min(92vw, 1280px);
  aspect-ratio: 16 / 9;
  max-height: 82vh;
  border: 0;
  background: #050505;
  box-shadow: 0 22px 90px rgba(0, 0, 0, .26);
  animation: lightboxImage .5s var(--soft-close) both;
}

.lightbox.is-vertical-video iframe {
  width: min(52vh, 420px, 88vw);
  aspect-ratio: 9 / 16;
  max-height: 82vh;
}

.lightbox p {
  margin: 14px 0 0;
  color: white;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
}

@media (max-width: 560px) {
  .lightbox {
    justify-content: center;
    padding: max(50px, env(safe-area-inset-top)) 14px max(18px, env(safe-area-inset-bottom));
  }
  .lightbox img {
    max-width: calc(100vw - 28px);
    max-height: calc(100svh - 112px);
  }
  .lightbox iframe {
    width: calc(100vw - 28px);
    max-height: calc(100svh - 118px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .32);
  }
  .lightbox.is-vertical-video iframe {
    width: min(calc(100vw - 54px), calc((100svh - 126px) * .5625));
    max-height: calc(100svh - 126px);
  }
  .lightbox p {
    width: calc(100vw - 32px);
    margin-top: 10px;
    font-size: 12px;
  }
  .lightbox-close {
    top: max(10px, env(safe-area-inset-top));
    right: 10px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    font-size: 30px;
    background: rgba(8, 8, 8, .34);
  }
}

@keyframes editorialReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lightboxImage {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 20px;
    min-height: 76px;
    padding: 18px 22px 15px;
  }
  .site-header.is-compact {
    min-height: 58px;
    padding: 11px 22px 9px;
  }
  .brand { min-width: 148px; }
  .brand-logo { font-size: 31px; }
  .site-header.is-compact .brand-logo { font-size: 26px; }
  .site-nav {
    gap: clamp(14px, 2.4vw, 26px);
    font-size: 11px;
  }
  .filter-bar { top: var(--header-height); }
  .portfolio-grid { column-count: 2; }
  .text-page h1 { font-size: clamp(40px, 8vw, 62px); }
  .art-direction-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-section {
    display: block;
  }
  .contact-form-heading {
    margin-bottom: 22px;
  }
  .seo-footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --filter-height: 44px;
  }
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    justify-content: initial;
    gap: 10px 18px;
    min-height: auto;
    padding: 12px 14px 10px;
  }
  .site-header.is-compact {
    padding: 8px 14px 7px;
  }
  .brand {
    min-width: 0;
  }
  .brand-logo {
    font-size: 25px;
    line-height: .8;
  }
  .site-header.is-compact .brand-logo {
    font-size: 21px;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    min-width: 70px;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #504941;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
  }
  .nav-toggle i,
  .nav-toggle i::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transform-origin: center;
    transition: transform .42s var(--soft-close), opacity .42s var(--soft-close);
  }
  .nav-toggle i {
    position: relative;
  }
  .nav-toggle i::before {
    position: absolute;
    top: 6px;
    left: 0;
  }
  .site-header.is-nav-open .nav-toggle i {
    transform: translateY(3px) rotate(42deg);
  }
  .site-header.is-nav-open .nav-toggle i::before {
    transform: translateY(-6px) rotate(-84deg);
  }
  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    justify-content: flex-start;
    gap: clamp(16px, 5vw, 24px);
    overflow: hidden;
    padding: 0;
    color: #504941;
    font-size: 11px;
    opacity: 0;
    scrollbar-width: none;
    white-space: normal;
    transition: max-height .52s var(--soft-close), opacity .36s var(--soft-close), padding .52s var(--soft-close);
  }
  .site-header.is-nav-open .site-nav {
    max-height: 180px;
    padding: 8px 0 2px;
    opacity: 1;
  }
  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 0;
  }
  .site-nav::-webkit-scrollbar,
  .filter-bar::-webkit-scrollbar,
  .series-bar::-webkit-scrollbar {
    display: none;
  }
  .nav-language-switch {
    flex: 0 0 auto;
    gap: 6px;
    margin-left: auto;
  }
  .nav-language-switch a {
    min-height: 18px;
    padding-bottom: 3px;
    font-size: 10px;
  }
  .nav-social {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-left: 1px;
  }
  .nav-social svg {
    width: 16px;
    height: 16px;
  }
  .portfolio-section {
    padding: 0 0 46px;
  }
  .filter-bar {
    top: var(--header-height);
    margin: 0;
    padding: 12px 16px 7px;
    border-bottom: 1px solid rgba(21, 21, 21, .08);
    background: rgba(248, 247, 244, .96);
    justify-content: center;
    gap: clamp(14px, 4.4vw, 22px);
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .filter-button {
    flex: 0 0 auto;
    min-height: 24px;
    padding-bottom: 4px;
    font-size: 10.5px;
  }
  .series-bar {
    top: calc(var(--header-height) + var(--filter-height));
    justify-content: flex-start;
    gap: 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: 100vw;
    max-width: none;
    margin: -1px calc(50% - 50vw) 18px;
    padding: 7px 16px 9px;
    border: 0;
    background: rgba(248, 247, 244, .97);
    box-shadow: inset 0 -1px rgba(21, 21, 21, .08);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .series-button {
    flex: 0 0 auto;
    min-height: 28px;
    padding: 0;
    font-size: 10px;
    letter-spacing: .02em;
  }
  .series-button::after {
    right: 0;
    bottom: -2px;
    left: 0;
  }
  .series-editorial {
    margin-bottom: 18px;
    padding: 0 16px;
  }
  .series-text {
    display: block;
    padding: 20px 0 22px;
  }
  .series-text h2 {
    margin: 5px 0 18px;
  }
  .series-copy p {
    font-size: 14px;
  }
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    gap: 13px;
    width: calc(100vw - 24px);
    padding: 15px;
  }
  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-consent-actions button {
    width: 100%;
  }
  .text-page {
    width: min(100% - 32px, 980px);
    padding-top: 34px;
  }
  .text-page h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 11vw, 52px);
  }
  .error-page {
    width: min(100% - 32px, 920px);
    min-height: calc(100vh - var(--header-height));
    padding-top: 52px;
  }
  .error-mark {
    right: -8px;
    bottom: 30px;
    font-size: clamp(116px, 42vw, 178px);
  }
  .error-panel {
    padding-left: 0;
    border-left: 0;
  }
  .error-page h1 {
    font-size: clamp(52px, 15vw, 78px);
  }
  .error-actions {
    gap: 18px 26px;
  }
  .text-page p {
    font-size: 15px;
  }
  .page-kicker {
    margin-bottom: 28px !important;
  }
  .about-copy p {
    font-size: 15px;
  }
  .about-milestones {
    margin-top: 30px;
    padding-top: 24px;
  }
  .about-milestones li {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 16px 0 17px;
    font-size: 14px;
  }
  .milestone-related {
    grid-column: 2;
    margin-top: -1px;
  }
  .about-intro p {
    font-size: clamp(22px, 7vw, 30px);
  }
  .about-grid {
    gap: 28px;
    padding: 28px 0;
  }
  .about-grid span {
    margin-bottom: 12px;
  }
  .art-direction-intro p {
    font-size: clamp(22px, 7vw, 30px);
  }
  .art-direction-grid {
    gap: 28px;
    padding: 28px 0;
  }
  .art-direction-grid span {
    margin-bottom: 12px;
  }
  .contact-form-section {
    padding-top: 22px;
  }
  .internal-links {
    gap: 16px 24px;
    margin-top: 30px;
    padding-top: 16px;
  }
  .portfolio-internal-links {
    padding-right: 16px;
    padding-left: 16px;
  }
  .contact-context {
    margin-bottom: 30px !important;
  }
  .contact-form-section .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form-section button[type="submit"],
  .contact-form-section input[type="submit"] {
    width: 100%;
  }
  .portfolio-grid { column-count: 1; }
}

@media (max-width: 380px) {
  .site-nav {
    justify-content: flex-start;
    gap: 14px;
  }
  .filter-bar {
    justify-content: flex-start;
  }
  .series-bar {
    justify-content: flex-start;
  }
}
