@font-face {
  font-family: "SLEGNA Fallback";
  src: local("Arial");
  size-adjust: 104%;
  ascent-override: 91%;
  descent-override: 22%;
  line-gap-override: 0%;
}

:root {
  color-scheme: dark;
  --ink: #0a0a09;
  --ink-soft: #10100f;
  --surface: #151513;
  --surface-raised: #1c1c19;
  --text: #f2f2ee;
  --text-dark: #0a0a09;
  --muted: #aaa9a2;
  --muted-dark: #5b5b55;
  --line: rgba(242, 242, 238, 0.18);
  --line-dark: rgba(10, 10, 9, 0.18);
  --accent: #e1b65a;
  --accent-bright: #f0cc78;
  --pale: #f2f2ee;
  --nav-surface: #0d0d0c;
  --nav-surface-hover: #252521;
  --nav-line: rgba(242, 242, 238, 0.16);
  --display: "Schibsted Grotesk", "SLEGNA Fallback", sans-serif;
  --body: "Schibsted Grotesk", "SLEGNA Fallback", sans-serif;
  --shell: min(88vw, 70rem);
  --section-space: clamp(5.5rem, 9vw, 8.5rem);
  --radius: 0.875rem;
  --pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --header-z: 30;
  --menu-z: 25;
  --dialog-z: 60;
  --skip-z: 100;
}

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

html {
  min-width: 20rem;
  scroll-behavior: smooth;
  scroll-padding-top: calc(6rem + env(safe-area-inset-top));
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: rgba(225, 182, 90, 0.28);
  touch-action: manipulation;
}

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

button {
  border: 0;
}

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

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:where(a, button, summary, input, textarea, select):focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

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

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

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

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

.skip-link {
  position: fixed;
  z-index: var(--skip-z);
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--pale);
  color: var(--text-dark);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

/* A solid lens-barrel capsule: stable on scroll, with no reveal or glass effect. */
.site-header {
  position: fixed;
  z-index: var(--header-z);
  top: calc(0.75rem + env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  left: max(1rem, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: auto;
  max-width: 72rem;
  min-height: 4rem;
  margin-inline: auto;
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  border: 1px solid var(--nav-line);
  border-radius: var(--pill);
  background: var(--nav-surface);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.26);
  color: var(--text);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.brand img {
  width: 6.75rem;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.1rem, 0.7vw, 0.75rem);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding-inline: 0.55rem;
  color: rgba(242, 242, 238, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 180ms var(--ease-standard);
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0.7rem;
  bottom: 0.38rem;
  left: 0.7rem;
  height: 2px;
  border-radius: var(--pill);
  background: var(--accent-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav .site-nav__contact {
  min-width: 7.7rem;
  margin-left: 0.25rem;
  padding-inline: 1rem;
  border-radius: var(--pill);
  background: var(--pale);
  color: var(--text-dark);
  font-weight: 700;
  transition: background-color 180ms var(--ease-standard), color 180ms var(--ease-standard), transform 180ms var(--ease-out);
}

.site-nav .site-nav__contact:hover {
  background: #fff;
  color: var(--text-dark);
  transform: translateY(-1px);
}

.site-nav .site-nav__contact:active {
  transform: translateY(0);
}

.site-nav .site-nav__contact::after {
  display: none;
}

.language-switch {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex: 0 0 auto;
  width: 6rem;
  min-height: 3rem;
  padding: 0.125rem;
  border: 1px solid var(--nav-line);
  border-radius: var(--pill);
  background: var(--nav-surface-hover);
}

.language-switch::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0.125rem;
  bottom: 0.125rem;
  left: 0.125rem;
  width: calc(50% - 0.125rem);
  border-radius: var(--pill);
  background: var(--pale);
  transform: translateX(0);
}

.language-switch.is-interactive::before {
  transition: transform 220ms var(--ease-out);
}

.language-switch[data-active-language="de"]::before {
  transform: translateX(100%);
}

.language-switch button {
  position: relative;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border-radius: var(--pill);
  background: transparent;
  color: rgba(242, 242, 238, 0.68);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: transform 180ms var(--ease-out);
}

.language-switch.is-interactive button {
  transition: color 180ms var(--ease-standard), transform 180ms var(--ease-out);
}

.language-switch button:hover {
  color: #fff;
}

.language-switch button[aria-pressed="true"] {
  color: var(--text-dark);
}

.language-switch button:active {
  transform: scale(0.94);
}

.language-switch button:focus-visible {
  outline-offset: 1px;
}

.site-nav__legal {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(44rem, 100svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.hero__mosaic {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 0.65rem;
  opacity: 0.76;
  transform: scale(1.015);
}

.hero-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--surface-raised);
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tile--engagement {
  grid-area: 1 / 1 / 4 / 5;
}

.hero-tile--makeup {
  grid-area: 1 / 5 / 6 / 9;
}

.hero-tile--makeup img {
  object-position: center 28%;
}

.hero-tile--bmw {
  grid-area: 1 / 9 / 4 / 13;
}

.hero-tile--food {
  grid-area: 4 / 1 / 8 / 4;
}

.hero-tile--culture {
  grid-area: 6 / 4 / 11 / 8;
}

.hero-tile--london {
  grid-area: 4 / 9 / 8 / 13;
}

.hero-tile--paris {
  grid-area: 8 / 1 / 11 / 4;
}

.hero-tile--motion {
  grid-area: 8 / 8 / 11 / 13;
}

.hero__shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.56) 0%, rgba(10, 10, 9, 0.14) 32%, rgba(10, 10, 9, 0.9) 88%),
    linear-gradient(90deg, rgba(10, 10, 9, 0.82) 0%, rgba(10, 10, 9, 0.16) 65%, rgba(10, 10, 9, 0.44) 100%);
}

.hero__content {
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(15rem, 19rem);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: end;
  padding-top: 8.5rem;
  padding-bottom: clamp(3rem, 7vw, 5.75rem);
}

.hero__copy {
  container-type: inline-size;
  max-width: 51rem;
  animation: hero-copy-in 560ms 60ms var(--ease-out) both;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: #e4e3dd;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0.3rem rgba(225, 182, 90, 0.14);
}

.hero h1 {
  max-width: 12ch;
  font-size: min(clamp(3.25rem, 7.1vw, 4.5rem), 14cqi);
  color: #fff;
}

.hero__title {
  display: block;
}

.hero h1 .hero__location {
  display: block;
  margin-top: 0.18em;
  color: rgba(242, 242, 238, 0.78);
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.hero__intro {
  max-width: 34rem;
  margin-top: 1.25rem;
  color: #d4d3cd;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 220ms var(--ease-out), background-color 180ms var(--ease-standard), border-color 180ms var(--ease-standard);
}

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

.button--primary {
  background: var(--pale);
  color: var(--text-dark);
}

.button--primary:hover {
  background: #fff;
}

.button--quiet {
  border-color: rgba(242, 242, 238, 0.28);
  background: rgba(10, 10, 9, 0.44);
  color: #fff;
}

.button--quiet:hover {
  border-color: rgba(242, 242, 238, 0.56);
  background: rgba(10, 10, 9, 0.66);
}

.hero__aside {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(242, 242, 238, 0.5);
  animation: hero-copy-in 560ms 120ms var(--ease-out) both;
}

.hero__aside > p {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero__socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.hero__socials a,
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #e5e4de;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(242, 242, 238, 0.35);
  text-underline-offset: 0.35rem;
}

.hero__socials a:hover,
.text-link:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

@keyframes hero-copy-in {
  from {
    transform: translateY(0.6rem);
  }
  to {
    transform: translateY(0);
  }
}

.maker-section {
  background: var(--pale);
  color: var(--text-dark);
}

.maker {
  display: grid;
  justify-items: center;
}

.maker h2 {
  max-width: 21ch;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.maker__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
}

.maker__identity img {
  width: 6.5rem;
  height: 6.5rem;
  border-radius: 0.8rem;
  object-fit: cover;
  object-position: center 25%;
}

.maker__identity p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.maker__identity span {
  display: block;
  margin-top: 0.12rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line-dark);
}

.principles article {
  padding: 1.75rem 2.5rem 0 0;
}

.principles article + article {
  padding-left: 2.5rem;
  border-left: 1px solid var(--line-dark);
}

.principles h3 {
  font-size: clamp(1.45rem, 2.3vw, 1.85rem);
}

.principles p {
  max-width: 28ch;
  margin-top: 0.85rem;
  color: #4f4f4a;
}

.work-section {
  background: var(--ink);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(15rem, 0.6fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-intro h2,
.faq__intro h2 {
  font-size: clamp(2.7rem, 6vw, 4rem);
}

.section-intro p,
.faq__intro p {
  max-width: 31rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.work-gallery {
  display: grid;
  gap: 0.8rem;
}

.work-row {
  display: grid;
  gap: 0.8rem;
}

.work-row--five-seven {
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
}

.work-row--four-eight {
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
}

.work-row--seven-five {
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.work-row--tall {
  min-height: clamp(29rem, 46vw, 42rem);
}

.work-row--short {
  min-height: clamp(20rem, 32vw, 29rem);
}

.work-row--medium {
  min-height: clamp(23rem, 38vw, 34rem);
}

.work-row--single {
  min-height: clamp(27rem, 48vw, 43rem);
}

.project-card {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 18rem;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius);
  background: var(--surface-raised);
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.project-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms var(--ease-out);
}

.project-card--portrait > img {
  object-position: center 22%;
}

.project-card--culture > img {
  object-position: center 38%;
}

.project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(10, 10, 9, 0.86) 100%);
}

.project-card__content {
  container-type: inline-size;
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  gap: 0.4rem 1rem;
  padding: clamp(1.15rem, 2.8vw, 2rem);
}

.project-card__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  color: rgba(242, 242, 238, 0.76);
  font-size: 0.86rem;
  font-weight: 500;
}

.project-card__title {
  text-wrap: balance;
  font-family: var(--display);
  font-size: clamp(1.35rem, 8cqi, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.project-card__open {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: rgba(242, 242, 238, 0.78);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms var(--ease-standard), transform 220ms var(--ease-out);
}

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

.project-card:hover .project-card__open {
  color: #fff;
  transform: translateX(0.2rem);
}

.services-section {
  background: var(--surface);
}

.section-intro--services {
  margin-bottom: 2rem;
}

.services-list {
  display: grid;
  grid-template-columns: minmax(min-content, 0.9fr) minmax(0, 1.2fr) minmax(0, 0.7fr);
  column-gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: subgrid;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.3rem);
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  transition: color 180ms var(--ease-standard), transform 260ms var(--ease-out);
}

.service-row > p {
  max-width: 38rem;
  color: #d0cfc9;
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
}

.service-row ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  list-style: none;
}

.service-row li {
  position: relative;
  padding-left: 0.9rem;
}

.service-row li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--accent-bright);
}

.service-row:hover h3 {
  color: var(--accent-bright);
  transform: translateX(0.25rem);
}

.film-proof {
  position: relative;
  height: clamp(22rem, 52vw, 42rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  border-radius: var(--radius);
}

.film-proof::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10, 10, 9, 0.7));
}

.film-proof img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-proof figcaption {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.25rem;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.faq-section {
  background: var(--pale);
  color: var(--text-dark);
}

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

.faq__intro {
  position: sticky;
  top: 7rem;
}

.faq__intro p {
  margin-top: 1.1rem;
  color: var(--muted-dark);
}

.faq__list {
  border-top: 1px solid var(--line-dark);
}

.faq details {
  border-bottom: 1px solid var(--line-dark);
  overflow-anchor: none;
}

.faq summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2.75rem;
  gap: 1.25rem;
  align-items: center;
  min-height: 4.75rem;
  padding-block: 1rem;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  list-style: none;
}

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

.faq summary:focus-visible {
  outline-color: var(--text-dark);
}

.faq summary > span[aria-hidden="true"] {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 400;
  transition: transform 220ms var(--ease-out), background-color 180ms var(--ease-standard);
}

.faq details[open] summary > span[aria-hidden="true"] {
  background: var(--text-dark);
  color: #fff;
  transform: rotate(45deg);
}

.faq details > p {
  max-width: 43rem;
  padding: 0 4rem 1.5rem 0;
  color: #4f4f4a;
}

.contact-section {
  border-top: 1px solid var(--line);
  background: var(--surface-raised);
  color: var(--text);
}

.contact .availability {
  color: var(--text);
}

.contact .status-dot {
  background: var(--accent-bright);
  box-shadow: 0 0 0 0.3rem rgba(225, 182, 90, 0.14);
}

.contact__main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.65fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.contact h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 4.4rem);
}

.contact__main > div > p {
  max-width: 39rem;
  margin-top: 1.25rem;
  color: rgba(242, 242, 238, 0.78);
  font-size: 1.08rem;
}

.contact__brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.contact__brief span {
  padding-block: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: rgba(242, 242, 238, 0.78);
  font-size: 0.88rem;
}

.contact__actions {
  align-items: center;
  margin-top: 2.5rem;
}

.contact .button--primary {
  background: var(--pale);
  color: var(--text-dark);
}

.contact .button--primary:hover {
  background: var(--pale);
}

.contact .text-link {
  padding-inline: 1rem;
  color: var(--text);
}

.contact :focus-visible {
  outline-color: var(--accent-bright);
}

.contact__footer {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(4rem, 9vw, 8rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(242, 242, 238, 0.7);
  font-size: 0.88rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(16rem, 1.4fr) minmax(10rem, 0.7fr) minmax(8rem, 0.5fr);
  gap: 2.5rem;
  align-items: start;
  padding-block: 4rem 2rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__brand img {
  width: 7.8rem;
  height: auto;
}

.site-footer__brand > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
}

.site-footer__brand p {
  max-width: 23rem;
  margin-top: 1.25rem;
}

.site-footer__nav,
.site-footer__legal {
  display: grid;
  align-content: start;
  gap: 0.25rem;
}

.site-footer__nav a,
.site-footer__legal a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.75rem;
  color: #d3d2cc;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.35rem;
  transition: color 180ms var(--ease-standard), text-decoration-color 180ms var(--ease-standard);
}

.site-footer__nav a:hover,
.site-footer__legal a:hover,
.site-footer__legal a[aria-current="page"] {
  color: var(--text);
  text-decoration-color: currentColor;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.legal-page {
  background: var(--ink);
}

.legal-main {
  padding-top: calc(4.5rem + env(safe-area-inset-top));
}

.legal-hero {
  container-type: inline-size;
  padding-block: clamp(5rem, 10vw, 8rem) clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.legal-label {
  margin-bottom: 1.25rem;
  color: var(--accent-bright);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-hero h1 {
  max-width: 18ch;
  font-size: min(clamp(2.8rem, 6vw, 4.5rem), 16cqi);
  line-height: 1.04;
}

/* Long German compound words stay whole; size them to the reading width. */
:lang(de) .legal-hero h1 {
  max-width: 100%;
  font-size: min(clamp(2.2rem, 6vw, 4.5rem), 8cqi);
}

.legal-updated {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
}

.legal-content {
  container-type: inline-size;
  width: min(88vw, 68ch);
  margin-inline: auto;
  padding-block: clamp(4rem, 8vw, 7rem) clamp(6rem, 11vw, 10rem);
  color: #d4d3cd;
}

.legal-toc {
  width: min(88vw, 68ch);
  margin: 2rem auto 0;
  border-bottom: 1px solid var(--line);
}

.legal-toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.5rem;
  padding-block: 0.75rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.legal-toc summary::-webkit-details-marker { display: none; }

.legal-toc summary::after {
  content: "+";
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 180ms var(--ease-out);
}

.legal-toc[open] summary::after { transform: rotate(45deg); }

.legal-toc ol {
  display: grid;
  gap: 0.15rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.legal-toc a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  padding-block: 0.45rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.25rem;
  transition: color 180ms var(--ease-standard), text-decoration-color 180ms var(--ease-standard);
}

.legal-toc a:hover {
  color: var(--text);
  text-decoration-color: currentColor;
}



.legal-intro {
  margin-bottom: 3.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.legal-content section + section {
  margin-top: clamp(3.5rem, 7vw, 5.5rem);
}

.legal-content h2 {
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: min(clamp(1.6rem, 3vw, 2.25rem), 7.5cqi);
  line-height: 1.08;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.legal-content p,
.legal-content li {
  max-width: 72ch;
}

.legal-content p + p,
.legal-content ul + p,
.legal-content ol + p {
  margin-top: 1rem;
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 0;
  padding-left: 1.35rem;
}

.legal-alpha-list {
  list-style-type: lower-alpha;
}

.legal-content a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.legal-content a:hover { color: var(--accent-bright); }

.project-viewer {
  z-index: var(--dialog-z);
  width: min(92vw, 75rem);
  max-width: none;
  height: min(90dvh, 50rem);
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  overscroll-behavior: contain;
}

.project-viewer::backdrop {
  background: rgba(10, 10, 9, 0.84);
}

.project-viewer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(23rem, 0.8fr);
  height: 100%;
}

.project-viewer__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.84);
  color: #fff;
  cursor: pointer;
  transition:
    background-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard),
    transform 220ms var(--ease-out);
}

.project-viewer__close:hover {
  background: var(--pale);
  color: var(--text-dark);
  transform: rotate(4deg);
}

.project-viewer:focus {
  outline: none;
}

.project-viewer__close:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
}

.project-viewer__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background: currentColor;
}

.project-viewer__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.project-viewer__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.project-viewer__media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #050504;
  touch-action: pan-y;
}

.project-viewer__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity 190ms var(--ease-standard), transform 220ms var(--ease-out);
}

.project-viewer__media.is-switching img {
  opacity: 0;
  transform: scale(0.995);
}

.project-viewer__media.is-loading {
  cursor: progress;
}

.project-viewer__status {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  max-width: calc(100% - 7rem);
  min-height: 2.75rem;
  padding: 0.35rem 0.4rem 0.35rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: rgba(10, 10, 9, 0.88);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  transition: opacity 180ms var(--ease-standard), transform 220ms var(--ease-out);
}

.project-viewer__status[data-state="loading"],
.project-viewer__status[data-state="error"] {
  opacity: 1;
  transform: translateY(0);
}

.project-viewer__status[data-state="loading"]::before {
  content: "";
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: viewer-status-pulse 900ms var(--ease-standard) infinite;
}

.project-viewer__status[data-state="error"] {
  pointer-events: auto;
}

.project-viewer__status[data-state="error"]::before {
  content: "!";
  display: grid;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-bright);
  color: var(--text-dark);
  font-size: 0.75rem;
  line-height: 1;
}

.project-viewer__status button {
  min-height: 2.75rem;
  padding-inline: 0.85rem;
  border-radius: var(--pill);
  background: var(--pale);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    background-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard);
}

.project-viewer__status button:hover {
  background: #fff;
}

@keyframes viewer-status-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.78);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.project-viewer__media figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  min-width: 4.7rem;
  padding: 0.5rem 0.65rem;
  border-radius: var(--pill);
  background: rgba(10, 10, 9, 0.8);
  color: #fff;
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  text-align: center;
}

.project-viewer__copy {
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: clamp(2rem, 4vw, 3.25rem);
}

.project-viewer__meta {
  margin-top: auto;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.project-viewer__copy h2 {
  font-size: min(clamp(2rem, 4vw, 3.2rem), 12cqi);
}

.project-viewer__copy > p:not(.project-viewer__meta):not(.project-viewer__hint) {
  margin-top: 1.25rem;
  color: #c6c5be;
}

.project-viewer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 2rem;
}

.project-viewer__nav button {
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--pill);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition:
    background-color 180ms var(--ease-standard),
    border-color 180ms var(--ease-standard),
    color 180ms var(--ease-standard);
}

.project-viewer__nav button:hover {
  border-color: var(--pale);
  background: var(--pale);
  color: var(--text-dark);
}

.project-viewer__nav button:focus-visible {
  outline: none;
  border-color: var(--pale);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35rem;
}

.project-viewer__hint {
  margin-top: 0.75rem;
  color: #85847e;
  font-size: 0.875rem;
  text-align: center;
}

@media (min-width: 45.001rem) and (max-width: 70rem) {
  .services-list {
    grid-template-columns: minmax(min-content, 0.85fr) minmax(0, 1.35fr);
    column-gap: 2rem;
  }

  .service-row { gap: 1.5rem 2rem; }
  .service-row ul { grid-column: 2; }
}

@media (max-width: 58rem) {
  :root {
    --shell: min(90vw, 70rem);
  }

  .hero__content {
    grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem);
    gap: 2.5rem;
  }

  .principles article {
    padding-right: 1.5rem;
  }

  .principles article + article {
    padding-left: 1.5rem;
  }

  .project-card__open {
    display: none;
  }

  .project-viewer {
    height: min(92dvh, 56rem);
  }

  .project-viewer__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
  }
}

@media (max-width: 56.25rem) {
  .site-header {
    top: calc(0.5rem + env(safe-area-inset-top));
    right: max(0.5rem, env(safe-area-inset-right));
    left: max(0.5rem, env(safe-area-inset-left));
    grid-template-columns: 1fr auto;
    width: auto;
    max-width: none;
    min-height: 3.5rem;
    margin-inline: 0;
    padding: 0.25rem 0.25rem 0.25rem 0.875rem;
  }

  .brand img {
    width: 6rem;
  }

  .brand {
    position: relative;
    z-index: calc(var(--menu-z) + 1);
  }

  .menu-toggle {
    position: relative;
    z-index: calc(var(--header-z) + 1);
    display: block;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--nav-line);
    border-radius: var(--pill);
    background: var(--nav-surface-hover);
    color: var(--pale);
    cursor: pointer;
    transition: background-color 180ms var(--ease-standard), color 180ms var(--ease-standard);
  }

  .menu-toggle[aria-expanded="true"] {
    background: var(--pale);
    color: var(--text-dark);
  }

  .menu-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1rem;
    height: 1.5px;
    background: currentColor;
    transition: transform 220ms var(--ease-out);
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, -0.22rem);
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, 0.22rem);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: var(--menu-z);
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.15rem;
    padding:
      max(6.5rem, calc(env(safe-area-inset-top) + 5rem))
      max(1.5rem, env(safe-area-inset-right))
      max(2rem, env(safe-area-inset-bottom))
      max(1.5rem, env(safe-area-inset-left));
    background: var(--ink);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 220ms var(--ease-standard), transform 280ms var(--ease-out), visibility 0s 280ms;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a,
  .site-nav .site-nav__contact {
    justify-content: flex-start;
    min-height: 4rem;
    padding-inline: 0.25rem;
    background: transparent;
    color: #fff;
    font-family: var(--display);
    font-size: clamp(1.8rem, 9vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.025em;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .site-nav__contact {
    margin-top: 0.75rem;
    padding-inline: 1rem;
    border: 0;
    border-radius: 0.8rem;
    background: var(--pale);
    color: var(--text-dark);
    font-family: var(--body);
    font-size: 1rem;
    letter-spacing: 0;
  }

  .language-switch {
    align-self: flex-start;
    width: 7rem;
    min-height: 3.25rem;
    margin-top: 1.25rem;
  }

  .language-switch button {
    min-height: 3rem;
    font-size: 0.8rem;
  }

  .site-nav__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
  }

  .site-nav__legal a {
    min-height: 2.75rem;
    padding: 0;
    color: var(--muted);
    font-family: var(--body);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0;
  }
}

@media (max-width: 45rem) {
  :root {
    --shell: calc(100vw - 2rem);
    --section-space: clamp(4.5rem, 18vw, 6rem);
  }

  .hero {
    min-height: max(43rem, 100svh);
  }

  .hero__mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(10, minmax(0, 1fr));
    gap: 0.45rem;
    padding: 0.45rem;
    opacity: 0.66;
  }

  .hero-tile--engagement {
    grid-area: 1 / 1 / 4 / 4;
  }

  .hero-tile--makeup {
    grid-area: 1 / 4 / 6 / 7;
  }

  .hero-tile--bmw {
    grid-area: 4 / 1 / 6 / 4;
  }

  .hero-tile--food {
    display: none;
  }

  .hero-tile--culture {
    grid-area: 6 / 1 / 11 / 4;
  }

  .hero-tile--london {
    grid-area: 6 / 4 / 8 / 7;
  }

  .hero-tile--paris {
    display: none;
  }

  .hero-tile--motion {
    grid-area: 8 / 4 / 11 / 7;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(10, 10, 9, 0.52), rgba(10, 10, 9, 0.4) 32%, rgba(10, 10, 9, 0.94) 78%);
  }

  .hero__content {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: min(clamp(2.65rem, 11.8vw, 4.1rem), 14cqi);
  }

  .hero h1 .hero__location {
    max-width: 17ch;
    font-size: 0.36em;
  }

  .hero__intro {
    max-width: 29rem;
  }

  .hero__aside {
    max-width: 24rem;
    padding-top: 1rem;
  }

  .hero__aside > p {
    font-size: 1.2rem;
  }

  .hero__socials {
    margin-top: 0.75rem;
  }

  .maker h2 {
    font-size: clamp(2.25rem, 10vw, 3.35rem);
  }

  .maker__identity {
    margin-top: 2rem;
  }

  .maker__identity img {
    width: 5.25rem;
    height: 5.25rem;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .principles article,
  .principles article + article {
    padding: 1.4rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .principles p {
    max-width: 36rem;
  }

  .section-intro,
  .faq,
  .contact__main {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 1rem;
  }

  .section-intro h2,
  .faq__intro h2 {
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .work-gallery,
  .work-row {
    gap: 0.65rem;
  }

  .work-row,
  .work-row--five-seven,
  .work-row--four-eight,
  .work-row--seven-five {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-card--portrait {
    aspect-ratio: 4 / 5;
  }

  .project-card__content {
    grid-template-columns: 1fr;
    padding: 1.15rem;
  }

  .project-card__title {
    font-size: clamp(1.35rem, 8cqi, 2.35rem);
  }

  .project-card__open {
    display: none;
  }

  .project-card__meta {
    font-size: 0.87rem;
  }

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

  .service-row {
    gap: 1rem;
    padding-block: 2rem;
  }

  .service-row ul {
    grid-column: auto;
  }

  .service-row:hover h3 {
    transform: none;
  }

  .film-proof {
    height: auto;
    aspect-ratio: 4 / 3;
    margin-top: 4rem;
  }

  .faq {
    gap: 2.5rem;
  }

  .faq__intro {
    position: static;
  }

  .faq summary {
    min-height: 4.5rem;
    font-size: 1.15rem;
  }

  .faq details > p {
    padding-right: 1rem;
  }

  .contact__main {
    gap: 2.5rem;
  }

  .contact h2 {
    font-size: clamp(2.8rem, 12.5vw, 3.75rem);
  }

  .contact__footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .contact__footer {
    gap: 0.35rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-block: 3.5rem 2rem;
  }

  .site-footer__copyright {
    grid-column: auto;
    width: 100%;
  }

  .legal-main {
    padding-top: calc(4rem + env(safe-area-inset-top));
  }

  .legal-hero {
    padding-block: 4.5rem 3rem;
  }

  .legal-hero h1 {
    max-width: 100%;
    font-size: min(clamp(2.45rem, 11vw, 3rem), 16cqi);
  }

  .legal-content {
    width: calc(100vw - 2rem);
    padding-block: 3.5rem 6rem;
  }

  .legal-toc { width: calc(100vw - 2rem); }

  .legal-content section + section {
    margin-top: 3.5rem;
  }

  .project-viewer {
    width: 100vw;
    height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .project-viewer__inner {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .project-viewer__media {
    min-height: 0;
  }

  .project-viewer__copy {
    max-height: 46dvh;
    overflow-y: auto;
    padding:
      1.35rem
      max(1rem, env(safe-area-inset-right))
      max(1.1rem, env(safe-area-inset-bottom))
      max(1rem, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
  }

  .project-viewer__copy h2 {
    font-size: min(clamp(2rem, 9vw, 2.8rem), 12cqi);
  }

  .project-viewer__copy > p:not(.project-viewer__meta):not(.project-viewer__hint) {
    margin-top: 0.8rem;
  }

  .project-viewer__nav {
    margin-top: 1rem;
  }

  .project-viewer__close {
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
  }

  .project-viewer__status {
    left: max(0.75rem, env(safe-area-inset-left));
  }

  .project-viewer__media figcaption {
    right: max(0.75rem, env(safe-area-inset-right));
  }
}

@media (max-width: 24rem) {
  .hero__actions,
  .contact__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

@media (hover: none) {
  .project-card:hover > img,
  .button:hover,
  .service-row:hover h3,
  .project-viewer__close:hover {
    transform: none;
  }
}

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

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