@charset "UTF-8";
/*!
Theme Name: Portfolio Rene Meyer | rmyr
Author: Rene Meyer
Author URI: https://rmyr.de
Version: 2.0
*/
:root {
  --rmyr-black: var(--neutral-950);
  --rmyr-white: var(--neutral-50);
  /* ── Neutraltöne (60% · UI-Grundgerüst) ──────────────────── */
  --neutral-50: oklch(98.5% 0 none);
  --neutral-100: oklch(96.7% 0.001 286.375);
  --neutral-200: oklch(92% 0.004 286.32);
  --neutral-300: oklch(87.1% 0.006 286.286);
  --neutral-400: oklch(70.5% 0.015 286.067);
  --neutral-500: oklch(55.2% 0.016 285.938);
  --neutral-600: oklch(44.2% 0.017 285.786);
  --neutral-700: oklch(37% 0.013 285.805);
  --neutral-800: oklch(27.4% 0.006 286.033);
  --neutral-900: oklch(21% 0.006 285.885);
  --neutral-950: oklch(14.1% 0.005 285.823);
  /* ── Semantische Farben ──────────────────────────────────── */
  --success: oklch(0.5200 0.1500 152.30);
  --success-bg: oklch(0.9550 0.0350 152.30);
  --warning: oklch(0.6800 0.1450 75.00);
  --warning-bg: oklch(0.9650 0.0420 85.00);
  --error: oklch(0.5054 0.1905 27.52);
  --error-bg: oklch(0.9478 0.0230 17.56);
  --info: oklch(0.4500 0.1100 240.00);
  --info-bg: oklch(0.9450 0.0230 235.00);
  /* ── UI-Aliase ───────────────────────────────────────────── */
  --bg: var(--neutral-100);
  --border: var(--neutral-700);
  --h-text: var(--neutral-900);
  --body-text: var(--neutral-700);
  --muted: var(--neutral-600);
  --white: oklch(100% 0.00011 271.152);
  --transparent-white:oklch(1 0 0 / .5);
  --transparent-black:oklch(.25 0 0 / .35);
}

:root {
  /* ── Fluider Anker (Single Anchor – Latin) ───────────── */
  /* slope = (19-16)/(1440-375) = 0.002817 → ×100 = 0.2817vw */
  /* intercept = 16 - 0.002817×375 = 14.943px → /16 = 0.934rem */
  /* (19-16)/(1920-375) = 0.001941747573 → ×100 = 0.19417476vw */
  /* intercept = 16 - 0.0019417476×375 = 15.272px → /16 = 0.954rem */
  --fs-base: clamp(1rem, 0.2817vw + 0.9343rem, 1.1875rem);
  /* ── Zeilenhöhen ───────────────────────────────────────── */
  --lh-body: 1.5; /* Latin: 1.3–1.6 | Baranov: ≥1.3 | WCAG 1.4.8: ≥1.5 */
  --lh-heading: 1.20; /* Überschrieben pro Heading-Größe (Baranov) */
  /* Grundlage aller vertikalen Abstände im Fließtext */
  --lh-unit: calc(var(--fs-base) * var(--lh-body));
  /* ── Typografische Skala – Ratio 1.333 (Perfect Fourth) ── */
  --fs-h1: calc(var(--fs-base) * 3.16);
  --fs-h2: calc(var(--fs-base) * 3.16);
  --fs-h3: calc(var(--fs-base) * 1.78);
  --fs-body: calc(var(--fs-base) * 1.25);
  --fs-caption: calc(var(--fs-base) * 1);
  /* ── Hero-Überschrift (eigene Kurve für Marketing/Hero) ─── */
  /* Startet bei ~28px (375px VP), endet bei ~72px (1440px VP) */
  --fs-hero: clamp(1.75rem, 5vw + 0.5rem, 6rem);
  /* ── Zeilenlänge (Latin: 45–75 Zeichen ≈ 33em) ────────── */
  --line-length: 36em;
  --space-1: 0.25rem; /*  4px */
  --space-2: 0.5rem; /*  8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 18px */
  --space-6: 1.5rem; /* 24px */
  --space-7: 1.75rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-9: 2.25rem; /* 36px */
  --space-10: 2.5rem; /* 40px */
  --space-11: 2.75rem; /* 44px */
  --space-12: 3rem; /* 48px */
  --space-13: 3.5rem; /* 56px */
  --space-14: 4rem; /* 64px */
  --space-15: 5rem; /* 80px */
  --space-16: 6rem;
  --space-17: 7rem;
  --space-18: 8rem;
}

:root {
  --ease-out-smooth: cubic-bezier(0, 0, .5, 1);
  --ease-elastic: linear(0, 0.55 7.5%, 0.85 12%, 0.95 14%, 1.03 16.5%, 1.09 20%, 1.13 22%, 1.14 23%, 1.15 24.5%, 1.15 26%, 1.13 28%, 1.11 31%, 1.05 39%, 1.02 43%, 0.99 47%, 0.98 52%, 0.97 59%, 1.002 81%, 1);
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0) scale(1.05);
  }
  25% {
    transform: translateX(-5px) scale(1.05);
  }
  75% {
    transform: translateX(5px) scale(1.05);
  }
}
@keyframes pulse {
  50% {
    opacity: 0.25;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg,
video {
  width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --button-color: var(--neutral-900);
  --button-color-background: var(--neutral-50);
  --button-hover-color: var(--neutral-50);
  --button-hover-color-background: var(--neutral-900);
  --button-border: 0;
  --button-color-focus: #000;
  --button-padding: 0.75em 1.25em;
  --button-border-radius: 2.5em;
  --button-text-duplicate-distance: 2lh;
  --button-focus-inset: -0.125em;
  --button-ease-hover: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --button-ease-focus: cubic-bezier(0.32, 0.72, 0, 1);
}

.request-button {
  display: flex;
  justify-content: center;
  margin-top: var(--space-14);
  font-size: var(--fs-h4);
}

.button[data-button-theme=primary] {
  --button-color: var(--neutral-50);
  --button-color-background: var(--neutral-900);
  --button-hover-color: var(--neutral-900);
  --button-hover-color-background: var(--neutral-100);
  --button-border: 0.09375em solid var(--neutral-100);
}

.button[data-button-theme=secondary] {
  --button-color: var(--neutral-900);
  --button-color-background: transparent;
  --button-hover-color: var(--neutral-50);
  --button-hover-color-background: var(--neutral-900);
  --button-border: 0.09375em solid var(--neutral-900);
}

.button {
  -webkit-user-select: none;
  user-select: none;
  color: var(--button-color);
  background-color: rgba(0, 0, 0, 0);
  outline-style: none;
  padding: 0;
  line-height: 0.9;
  text-decoration: none;
  display: inline-grid;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.325s var(--button-ease-hover);
}

.button::after {
  content: "";
  display: block;
  position: absolute;
  inset: var(--button-focus-inset);
  border-radius: var(--button-border-radius);
  transition: box-shadow 0.3s var(--button-ease-focus);
  pointer-events: none;
  z-index: 1;
}

.button:is(:focus-visible)::after {
  box-shadow: 0 0 0 0.125em var(--button-color-focus);
}

.button__inner {
  pointer-events: none;
  border-radius: var(--button-border-radius);
  border: var(--button-border);
  z-index: 1;
  padding: var(--button-padding);
  grid-area: 1/1;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: clip;
}

.button__text {
  text-shadow: 0 var(--button-text-duplicate-distance) 0 currentColor;
  transition: translate 0.3s var(--button-ease-hover);
}

.button__bg {
  pointer-events: none;
  border-radius: var(--button-border-radius);
  background-color: var(--button-color-background);
  grid-area: 1/1;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: background-color 0.325s var(--button-ease-hover);
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button:is(:hover, :focus-visible),
  [data-hover]:is(:hover, :focus-visible) .button {
    color: var(--button-hover-color);
  }
  .button:is(:hover, :focus-visible) .button__text,
  [data-hover]:is(:hover, :focus-visible) .button .button__text {
    translate: 0 calc(var(--button-text-duplicate-distance) * -1) 0;
  }
  .button:is(:hover, :focus-visible) .button__bg,
  [data-hover]:is(:hover, :focus-visible) .button .button__bg {
    background-color: var(--button-hover-color-background);
  }
}
@font-face {
  font-family: "Mg12";
  src: url("../fonts/Mg12-Regular.woff2") format("woff2"), url("../fonts/Mg12-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mg12";
  src: url("../fonts/Mg12-Medium.woff2") format("woff2"), url("../fonts/Mg12-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mg12";
  src: url("../fonts/Mg12-Bold.woff2") format("woff2"), url("../fonts/Mg12-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Mg12", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--body-text);
}

h1, h2 {
  color: var(--neutral-900);
  font-weight: 500;
}

h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  /* Baranov: Große Headings – Letter-spacing leicht negativ */
  letter-spacing: -0.03em;
  margin-top: calc(var(--lh-unit) * 3.5);
  margin-bottom: calc(var(--lh-unit) * 1);
  max-width: 25ch;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-top: calc(var(--lh-unit) * 3);
  margin-bottom: calc(var(--lh-unit) * 1);
}

h3 {
  color: var(--neutral-900);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: calc(var(--lh-unit) * 2.5);
  margin-bottom: calc(var(--lh-unit) * 0.75);
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.2;
  margin-top: calc(var(--lh-unit) * 0.5);
}

/* Kein oberer Margin wenn Heading am Seitenanfang steht */
:is(h1, h2, h3):first-child {
  margin-top: 0;
}

:is(h1, h2, h3):last-child {
  margin-bottom: 0;
}

/* ──────────────────────────────────────────────────────────
    4. Absätze & Inline-Elemente
────────────────────────────────────────────────────────── */
p:not([class]) {
  color: var(--body-text);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  /* Latin: max. Zeilenlänge ~65 Zeichen */
  max-width: var(--line-length);
  margin-top: 0;
  margin-bottom: calc(var(--lh-unit) * 1);
}
p:not([class]):last-child {
  margin-bottom: 0;
}

strong, b {
  font-weight: 500;
}

em, i {
  font-style: italic;
}

small {
  font-size: var(--fs-small);
}

sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

mark {
  background-color: #ffe066;
  color: #1e1b16;
  padding-inline: 0.15em;
  border-radius: 2px;
}

del {
  text-decoration: line-through;
  color: var(--muted);
}

ins {
  text-decoration: underline;
  text-decoration-color: var(--c-accent);
}

/* ── Blockzitat ──────────────────────────────────────────── */
blockquote {
  /* Baranov: Im Fließtext nicht wesentlich größer als Body */
  font-size: calc(var(--fs-base) * 1.1);
  line-height: var(--lh-body);
  font-style: italic;
  border-left: 3px solid var(--c-accent);
  padding: calc(var(--lh-unit) * 0.5) var(--space-5);
  margin-top: calc(var(--lh-unit) * 1.5);
  margin-bottom: calc(var(--lh-unit) * 1.25);
  max-width: var(--line-length);
}

blockquote cite {
  display: block;
  font-size: var(--fs-caption);
  font-style: normal;
  color: var(--muted);
  margin-top: calc(var(--lh-unit) * 0.35);
}

/* ── Code & Vorformatiertes ──────────────────────────────── */
code, kbd, samp, var {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "Courier New", monospace;
  font-size: 0.875em;
}

kbd {
  padding: 0.1em 0.4em;
  border: 1px solid var(--c-border-th);
  border-radius: 3px;
  background: var(--c-bg);
}

pre {
  font-size: var(--fs-small);
  line-height: 1.6;
  overflow-x: auto;
  padding: var(--space-5);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  margin-top: calc(var(--lh-unit) * 1.5);
  margin-bottom: calc(var(--lh-unit) * 1.25);
  /* Baranov: kein max-width – Code soll vollständig sichtbar sein */
}

pre code {
  font-size: inherit;
}

/* ── Horizontale Trennlinie ──────────────────────────────── */
hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin-block: calc(var(--lh-unit) * 2);
}

/* ──────────────────────────────────────────────────────────
    5. Listen
    Baranov: hängende Bullets, p↔ul gleicher Abstand wie p→p
────────────────────────────────────────────────────────── */
ul:not([class]),
ol:not([class]) {
  padding-left: 0;
  list-style-position: outside;
  margin-top: 0;
  margin-bottom: calc(var(--lh-unit) * 1);
  max-width: var(--line-length);
}

ul:not([class]) li,
ol:not([class]) li {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  margin-left: 1.5em;
  /* Baranov: einzeilige Items kompakt */
  margin-bottom: calc(var(--lh-unit) * 0.3);
}

/* Baranov: Mehrzeilige Items – größerer Abstand */
ul:not([class]) li + li,
ol:not([class]) li + li {
  margin-bottom: calc(var(--lh-unit) * 0.5);
}

/* Verschachtelte Listen */
li > ul, li > ol {
  margin-top: calc(var(--lh-unit) * 0.3);
  margin-bottom: 0;
}

.eyebrow {
  display: block;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-align: left;
  margin-bottom: var(--space-3);
  color: var(--neutral-500);
}
.eyebrow + h1, .eyebrow + h2, .eyebrow + h3 {
  margin-top: 0;
}

/* ──────────────────────────────────────────────────────────
    6. Tabellen
    Baranov: keine vertikalen Trennlinien, Header-Hintergrund
            als Alternative zu Linien, Monospace für Zahlen
────────────────────────────────────────────────────────── */
table {
  border-collapse: collapse;
  font-size: var(--fs-th);
  width: 100%;
  max-width: 100%;
  margin-top: calc(var(--lh-unit) * 1.5);
  margin-bottom: calc(var(--lh-unit) * 1.25);
}

caption {
  font-size: var(--fs-small);
  font-weight: 700;
  text-align: left;
  padding-bottom: var(--space-2);
  color: var(--body-text);
}

th {
  font-size: var(--fs-th);
  font-weight: 600;
  text-align: left;
  padding: var(--space-2) var(--space-3);
  /* Baranov: Header-Linie statt Hintergrundfarbe */
  border-bottom: 1.5px solid var(--c-border-th);
}

td {
  font-size: var(--fs-th);
  padding: var(--space-2) var(--space-3);
  /* Baranov: keine vertikalen Trennlinien */
  border-bottom: 1px solid var(--c-border);
}

/* Zahlen-Spalten: Monospace für Ausrichtung (Baranov) */
td[data-type=number],
td[data-type=currency] {
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  text-align: right;
}

/* Mobile: Tabellen horizontal scrollbar (Baranov) */
@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
/* ──────────────────────────────────────────────────────────
    7. Medien & Figures
────────────────────────────────────────────────────────── */
figure:not([class]) {
  margin-top: calc(var(--lh-unit) * 1.75);
  margin-bottom: calc(var(--lh-unit) * 1.25);
  margin-inline: 0;
}

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

figcaption {
  font-size: var(--fs-caption);
  line-height: var(--lh-body);
  color: var(--muted);
  /* Baranov: img→figcaption ×0.35 lh-unit */
  margin-top: calc(var(--lh-unit) * 0.35);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

video, audio, iframe, canvas {
  max-width: 100%;
  display: block;
}

/* ──────────────────────────────────────────────────────────
    8. Links
────────────────────────────────────────────────────────── */
a {
  text-decoration: none;
}

a:not([class]) {
  font-weight: 500;
  color: var(--neutral-900);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* ──────────────────────────────────────────────────────────
    9. Kombinationsoverrides (Abstandsmatrix nach Skill)
        Baranov: p↔ul/ol gleich wie p→p (1×)
        Latin: Heading gehört zum Nachfolger, nicht Vorgänger
────────────────────────────────────────────────────────── */
/* Abstand figure/table/blockquote/pre nach p oder Liste */
p + figure, ul + figure, ol + figure {
  margin-top: calc(var(--lh-unit) * 1.75);
}

p + table, ul + table, ol + table {
  margin-top: calc(var(--lh-unit) * 1.25);
}

p + blockquote, ul + blockquote {
  margin-top: calc(var(--lh-unit) * 1.5);
}

p + pre, ul + pre, ol + pre {
  margin-top: calc(var(--lh-unit) * 1.5);
}

/* Baranov: p↔liste gleicher Abstand wie p→p */
p + ul, p + ol, ul + p, ol + p {
  margin-top: calc(var(--lh-unit) * 1);
}

/* Heading → nächstes Element: kleiner Abstand (gehört zusammen) */
h1 + * {
  margin-top: calc(var(--lh-unit) * 1);
}

h2 + * {
  margin-top: calc(var(--lh-unit) * 0.75);
}

h3 + * {
  margin-top: calc(var(--lh-unit) * 0.5);
}

/* ──────────────────────────────────────────────────────────
    10. Interaktive Elemente
────────────────────────────────────────────────────────── */
/* ── Formulare ───────────────────────────────────────────── */
label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: var(--space-1);
  color: var(--body-text);
}

input:not([type=checkbox]):not([type=radio]):not([type=range]):not([type=color]),
select,
textarea {
  font-family: inherit;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border-th);
  border-radius: 4px;
  padding: var(--space-2) var(--space-3);
  min-height: 44px;
  width: 100%;
  max-width: var(--line-length);
}

textarea {
  min-height: calc(var(--lh-unit) * 6);
  resize: vertical;
}

fieldset {
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: var(--space-4) var(--space-5);
  margin-bottom: calc(var(--lh-unit) * 1);
}

legend {
  font-weight: 700;
  font-size: var(--fs-body);
  padding-inline: var(--space-2);
}

/* ── Details / Summary ───────────────────────────────────── */
details {
  border: 1px solid var(--c-border);
  border-radius: 4px;
  padding: var(--space-3) var(--space-4);
  margin-bottom: calc(var(--lh-unit) * 0.75);
}

summary {
  font-weight: 600;
  cursor: pointer;
  min-height: 44px; /* Touch-Target */
  display: flex;
  align-items: center;
}

details[open] summary {
  margin-bottom: var(--space-3);
}

/* ── Dialog ──────────────────────────────────────────────── */
dialog {
  font-family: inherit;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: var(--space-6);
  max-width: min(90vw, 40rem);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}

/* ── Fortschritt & Meter ─────────────────────────────────── */
progress, meter {
  width: 100%;
  max-width: var(--line-length);
  height: var(--space-4);
}

/* ──────────────────────────────────────────────────────────
    11. Focus-States (WCAG 2.4.7 + 2.4.11)
────────────────────────────────────────────────────────── */
/* Browser-Standard-Outline nur für Maus/Touch entfernen */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Keyboard-Fokus: immer sichtbar */
*:focus-visible {
  outline: 3px dotted var(--neutral-900);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Fokus darf nicht hinter sticky Header verschwinden (WCAG 2.4.11) */
:target, :focus-visible {
  scroll-margin-top: 80px;
}

/* ──────────────────────────────────────────────────────────
    12. Barrierefreiheits-Hilfsstile
────────────────────────────────────────────────────────── */
/* Visuell versteckt, aber für Screenreader sichtbar */
.sr-only,
.visually-hidden:not(:focus):not(:active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Skip-Links: versteckt, beim Fokus sichtbar (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  top: -9999px;
  left: var(--space-4);
  z-index: 9999;
  background: var(--c-accent);
  color: #fff;
  padding: var(--space-2) var(--space-5);
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  top: 0;
}

/* All-Caps-Klasse (Baranov: Letter-spacing erhöhen) */
.all-caps {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Tablet / Smartphone */
@media (max-width: 600px) {
  /* Baranov: Heading-Hierarchie auf kleinen Screens schwächen */
  h1, h2 {
    letter-spacing: -0.015em;
  }
  /* Blockquotes: Innenabstand reduzieren */
  blockquote {
    padding: var(--space-3) var(--space-4);
  }
}
.page-header {
  position: fixed;
  z-index: 25;
}

/* Desktop */
:root {
  --size-unit: 16; /* body font-size in design - no px */
  --size-container-ideal: 1280; /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
}

/* Tablet */
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 834; /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px;
  }
}
/* Mobile Landscape */
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 550; /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}
/* Mobile Portrait */
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 390; /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px;
  }
}
.container {
  width: 100%;
  max-width: var(--size-container);
  margin-inline: auto;
  padding-inline: 2.5vw;
}

.section {
  padding-block: var(--space-16);
}
.section--artwork-hero h1 {
  line-height: 1;
  margin-top: var(--space-6);
  font-size: var(--fs-hero);
  font-weight: 700;
}
.section--artwork-hero p {
  font-size: var(--fs-h4);
}
.section--bg-neutral {
  background-color: var(--neutral-100);
}
.section__content {
  margin-top: calc(var(--lh-unit) * 1.5);
}

.content-grid {
  padding-inline: 2.5vw;
  gap: 0 var(--space-6);
  grid-auto-rows: auto auto;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
  position: relative;
}

.page-footer {
  color: var(--neutral-50);
  padding-block: var(--space-10);
  background-color: var(--neutral-900);
}
@media (min-width: 60rem) {
  .page-footer {
    padding-block: var(--space-16);
  }
}
.page-footer .container {
  display: grid;
  grid-template-columns: 100%;
}

@media only screen and (min-width: 900px) {
  .page-footer .container {
    grid-template-columns: 30% 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 5vw;
    grid-row-gap: 0px;
  }
}
.page-footer__copyright,
.page-footer__links {
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025rem;
}

.page-footer__copyright {
  order: 2;
  margin: 4rem 0 0 0;
}

@media only screen and (min-width: 900px) {
  .page-footer__copyright {
    margin: 0;
    order: 1;
  }
}
.page-footer__links {
  order: 1;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-direction: column;
  list-style: none;
}

.page-footer__links li:not(:last-child) {
  margin-bottom: 1rem;
}

.page-footer__links li a {
  color: var(--neutral-50);
}

.page-footer__links li a:hover {
  color: var(--neutral-100);
}

@media only screen and (min-width: 900px) {
  .page-footer__links {
    order: 2;
    flex-direction: row;
    gap: 3rem;
  }
}
.breadcrumb ol {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  margin: 0;
  color: var(--neutral-400);
  text-transform: uppercase;
}
.breadcrumb ol a {
  text-decoration: none;
  color: var(--neutral-900);
  cursor: pointer;
}

.collaboration-list {
  list-style: none;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.collaboration-item {
  display: grid;
  grid-template-columns: 1fr;
  padding-block: var(--space-6);
  gap: 2.5vw;
}
.collaboration-item:not(:last-child) {
  border-bottom: 1.25px solid var(--border);
}
@media (min-width: 60rem) {
  .collaboration-item {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5vw;
  }
}
.collaboration-item__contact {
  display: flex;
  flex-flow: column;
  gap: var(--space-2);
}
.collaboration-item__contact h3 {
  margin: 0;
}
.collaboration-item__type {
  line-height: 1;
  text-transform: uppercase;
  font-size: var(--fs-caption);
  color: var(--neutral-500);
}
.collaboration-item__links {
  display: flex;
  align-self: start;
  justify-content: flex-end;
  gap: var(--space-2);
  font-size: var(--fs-caption);
}

dl.detail-list {
  list-style: none;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.detail-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  width: 100%;
  gap: var(--space-5);
  padding-block: var(--space-6);
  border-bottom: 1.25px solid var(--border);
}
.detail-item + * {
  line-height: 1;
}
.detail-item dt {
  font-size: var(--fs-caption);
  color: var(--neutral-500);
  text-transform: uppercase;
}
.detail-item dd {
  letter-spacing: -0.04em;
  font-size: var(--fs-h3);
  color: var(--neutral-900);
  font-weight: 500;
}

.exhibition-list {
  list-style: none;
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.exhibition-item {
  width: 100%;
  transition: opacity 0.2s;
  padding-block: var(--space-8) var(--space-6);
}
.exhibition-item:not(:last-child) {
  border-bottom: 1.25px solid var(--border);
}
.exhibition-item__inner {
  display: flex;
  flex-flow: column;
  gap: var(--space-4);
}
.exhibition-item__row {
  display: flex;
  justify-content: space-between;
}
.exhibition-item__col {
  display: flex;
  flex-flow: column;
  gap: var(--space-4);
}
.exhibition-item__type {
  font-size: var(--fs-caption);
  color: var(--neutral-500);
  line-height: 1;
  text-transform: uppercase;
}
.exhibition-item__date {
  font-size: var(--fs-caption);
  color: var(--neutral-700);
  line-height: 1;
}
.exhibition-item__title {
  line-height: 1;
  margin: 0;
  font-size: var(--fs-h3);
}
.exhibition-item__venue {
  line-height: 1;
  margin: 0;
  color: var(--neutral-700);
  font-weight: 500;
}
.exhibition-item .status {
  text-transform: uppercase;
  color: var(--error);
  margin-right: var(--space-2);
  animation: pulse 2.5s ease-in-out infinite;
}

.exhibition-item__visual {
  aspect-ratio: 1/1.414;
  width: 20em;
  display: none;
  object-fit: contain;
  position: absolute;
}

.exhibition-follower [data-follower-visual] {
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.exhibition-item__visual-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.exhibition-follower {
  z-index: 100;
  object-fit: contain;
  aspect-ratio: 1/1.414;
  pointer-events: none;
  border-radius: 0.75em;
  justify-content: center;
  align-items: center;
  width: 15em;
  display: flex;
  position: fixed;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.exhibition-follower__label {
  z-index: 2;
  position: absolute;
  opacity: 0;
  transform: translate(0px, 100%);
  transition: opacity 0.1s ease, transform 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}

.exhibition-follower__label-span {
  color: var(--neutral-50);
  background-color: var(--neutral-900);
  border-radius: 2.5em;
  padding: 0.75em 1.25em;
  font-size: var(--fs-caption);
}

.exhibition-follower__inner {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.1s ease, transform 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}

@media (hover: hover) and (min-width: 992px) {
  body:has([data-follower-collection]:hover) .exhibition-follower__inner {
    opacity: 1;
    transform: scale(1);
  }
  body:has([data-follower-collection]:hover) .exhibition-follower__label {
    opacity: 1;
    transform: translate(0px, 0%);
  }
  body:has(.exhibition-item:hover) .exhibition-item:not(:hover) {
    opacity: 0.5;
  }
}
@media screen and (max-width: 991px) {
  .exhibition-follower {
    display: none;
  }
}
.gallery {
  display: grid;
  list-style: none;
  gap: var(--space-6);
  grid-auto-rows: auto auto;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-columns: 1fr;
}
.gallery li:nth-child(1) {
  grid-column: span 12;
}
.gallery li:nth-child(2) {
  grid-column: 1/7;
}
.gallery li:nth-child(3) {
  grid-column: 7/13;
}
.gallery li:nth-child(4) {
  grid-column: span 12;
}
.gallery li:nth-child(5) {
  grid-column: span 12;
}

.infinite-grid {
  touch-action: none;
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: clip;
  cursor: grab;
  transition: opacity 0.5s ease;
  opacity: 1;
}

.infinite-grid[data-infinite-grid-status=loading] {
  opacity: 0;
}

.infinite-grid[data-infinite-grid-status=dragging] {
  cursor: grabbing;
}

.infinite-grid__collection {
  will-change: transform;
  width: 100%;
  height: 100%;
  position: absolute;
}

.infinite-grid__list {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.infinite-grid__item {
  aspect-ratio: 1;
  will-change: transform;
  backface-visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 13em;
  padding: 2.25em;
  font-size: clamp(1.5em, 2vw, 3em);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.infinite-grid__card {
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  backface-visibility: hidden;
  border-radius: 0.125em;
  width: 100%;
  height: 100%;
  position: relative;
}
.infinite-grid__card:hover .link {
  display: flex;
  opacity: 1;
  transform: translate(-50%, 50%);
}

.infinite-grid__card picture {
  pointer-events: none;
  object-fit: cover;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: absolute;
}

.infinite-grid__card .link {
  display: none;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: var(--neutral-50);
  background-color: var(--neutral-900);
  border-radius: 2.5em;
  padding: 0.75em 1.25em;
  font-size: var(--fs-caption);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.65, 0.1, 0, 1);
}

.marquee-css {
  color: var(--neutral-50);
  background-color: var(--neutral-900);
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.marquee-css__list {
  flex: none;
  align-items: center;
  display: flex;
  position: relative;
}

.marquee-css__item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex: 0;
  align-items: center;
  padding-block: 0.5em;
  padding-right: 1em;
  display: flex;
}

.marquee-css__item-p {
  white-space: nowrap;
  margin-bottom: 0;
  font-size: var(--fs-body);
  line-height: 1;
}

.marquee-css__item-svg {
  width: 2em;
}

/* CSS Keyframe Animation */
@keyframes translateX {
  to {
    transform: translateX(-100%);
  }
}
[data-css-marquee-list] {
  animation: translateX 30s linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}

.u-test-flex {
  display: flex;
}

.u-align-center {
  margin-inline: auto;
}

.u-text-align-center {
  text-align: center;
  max-width: 100% !important;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--body-text);
  margin-inline: auto;
  background-color: var(--rmyr-white);
}

main {
  display: flex;
  flex-direction: column;
}

img:is([sizes=auto i], [sizes^="auto," i]) {
  contain-intrinsic-size: 3000px 1500px;
}

/*# sourceMappingURL=style.css.map */
