@font-face {
  font-family: "DM Sans";
  src: url("/assets/DMSans-VariableFont_opsz_wght.woff2") format("woff2");
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0a0c10;
  --ink-soft: #14171d;
  --paper: #e9e5dc;
  --paper-soft: #f4f1ea;
  --muted: #8e8b84;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(10, 12, 16, 0.16);
  --accent: #c9b596;
  --header-height: 78px;
  --radius: 2px;
  --page: min(1240px, calc(100vw - 48px));
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* The bundled DM Sans cut does not contain the full Vietnamese glyph set.
   A consistent native UI stack prevents mixed fallback glyphs on Vietnamese pages. */
html[lang="vi"] body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: var(--ink); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform .25s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 12, 16, .84);
  border-bottom-color: var(--line-dark);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.nav-shell {
  position: relative;
  width: var(--page);
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-mark {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 34px;
  height: 36px;
  opacity: .94;
  transition: opacity .25s ease;
}
.brand-mark:hover { opacity: .7; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-links {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 38px);
  width: max-content;
  transform: translate(-50%, -50%);
}
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  text-transform: lowercase;
  font-size: .79rem;
  font-weight: 480;
  letter-spacing: .12em;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .3s cubic-bezier(.2,.75,.25,1);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { right: 0; }
.header-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex: 0 0 auto;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(244,241,234,.5);
  font-size: .64rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.language-switch a {
  position: relative;
  color: inherit;
  text-decoration: none;
  opacity: .72;
  transition: color .25s ease, opacity .25s ease;
}
.language-switch a:hover,
.language-switch a:focus-visible,
.language-switch a[aria-current="page"] {
  color: var(--paper);
  opacity: 1;
}
.language-switch a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: .14em;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  opacity: .7;
}
.language-switch span { opacity: .38; }
.mobile-language-switch { display: none; }
.menu-toggle {
  position: relative;
  z-index: 4;
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.site-header.is-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.site-header.is-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0b0c10;
}
.hero-media {
  position: absolute;
  inset: -3%;
  z-index: -3;
  background-image: url("/assets/seo/hero-refugium-2200.webp");
  background-size: cover;
  background-position: center;
  animation: hero-drift 32s ease-in-out infinite alternate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(6, 8, 11, .48), rgba(6, 8, 11, .06) 38%, rgba(6, 8, 11, .72)),
    radial-gradient(circle at 50% 45%, transparent 0, rgba(4, 6, 9, .16) 52%, rgba(4, 6, 9, .48) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 80%, transparent);
}
@keyframes hero-drift {
  from { transform: scale(1.03) translate3d(-.5%, -.5%, 0); }
  to { transform: scale(1.08) translate3d(.8%, .6%, 0); }
}
.hero-inner {
  width: var(--page);
  min-height: 100svh;
  margin: auto;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 30px) 0 88px;
}
.hero-logo-wrap {
  justify-self: center;
  width: clamp(320px, 40vw, 600px);
  margin-top: -1.5vh;
  filter: drop-shadow(0 24px 54px rgba(0,0,0,.46));
  animation: hero-logo-float 11s ease-in-out infinite;
}
.hero-logo-interactive {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-rotate-x: 0deg;
  --hero-rotate-y: 0deg;
  transform-style: preserve-3d;
  transform: perspective(980px) translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotateX(var(--hero-rotate-x)) rotateY(var(--hero-rotate-y));
  transition: transform .42s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}
.hero-logo-stage {
  position: relative;
  width: 100%;
  isolation: isolate;
}
.hero-logo-image {
  position: relative;
  z-index: 8;
  width: 100%;
  height: auto;
  display: block;
  margin-inline: auto;
  filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(222%) hue-rotate(353deg) brightness(106%) contrast(94%);
  animation: hero-logo-reveal 1.6s .12s both cubic-bezier(.2,.75,.2,1);
}
.hero-sun-bloom,
.hero-sun-halo,
.hero-sun-glow,
.hero-sun-beam,
.hero-sun-flare,
.hero-sun-ghost {
  position: absolute;
  left: 50%;
  top: 25.6%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 999px;
}
.hero-sun-bloom {
  z-index: 0;
  width: 72%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 230, 196, .16) 0%, rgba(228, 196, 126, .14) 20%, rgba(142, 119, 78, .08) 43%, rgba(10, 12, 16, 0) 74%);
  filter: blur(28px);
  opacity: .78;
  mix-blend-mode: screen;
  animation: hero-sun-bloom 12s ease-in-out infinite;
}
.hero-sun-halo {
  z-index: 2;
  width: 25%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 239, 220, .42) 0%, rgba(228, 210, 168, .18) 38%, rgba(228, 210, 168, 0) 72%);
  filter: blur(10px);
  opacity: .9;
  mix-blend-mode: screen;
  animation: hero-sun-halo 7.5s ease-in-out infinite;
}
.hero-sun-glow {
  z-index: 3;
  width: 11.8%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 251, 235, .98) 0%, rgba(255, 243, 205, .9) 22%, rgba(255, 218, 136, .46) 48%, rgba(255, 218, 136, 0) 76%);
  mix-blend-mode: screen;
  filter: blur(1.4px);
  box-shadow: 0 0 22px rgba(255, 229, 158, .36), 0 0 64px rgba(255, 229, 158, .18), 0 0 120px rgba(255, 210, 122, .12);
  animation: hero-sun-pulse 4.8s ease-in-out infinite;
}
.hero-sun-beam {
  z-index: 1;
  width: 58%;
  height: 9%;
  background: linear-gradient(90deg, rgba(255,244,214,0) 0%, rgba(255,236,184,.08) 14%, rgba(255,240,206,.4) 50%, rgba(255,236,184,.08) 86%, rgba(255,244,214,0) 100%);
  filter: blur(8px);
  opacity: .56;
  mix-blend-mode: screen;
  animation: hero-sun-beam 8.8s ease-in-out infinite;
}
.hero-sun-flare {
  z-index: 1;
  width: 54%;
  aspect-ratio: 1;
  background: conic-gradient(from 210deg, rgba(255,255,255,0) 0deg, rgba(255,244,210,.18) 26deg, rgba(255,255,255,0) 64deg, rgba(255,255,255,0) 360deg);
  mix-blend-mode: screen;
  opacity: .54;
  filter: blur(12px);
  animation: hero-sun-flare 9.5s linear infinite;
}
.hero-sun-ghost {
  background: radial-gradient(circle, rgba(255,245,218,.58) 0%, rgba(255,229,168,.26) 36%, rgba(255,223,160,0) 72%);
  mix-blend-mode: screen;
  filter: blur(2px);
  opacity: .24;
}
.hero-sun-ghost-1 {
  z-index: 4;
  left: 51.5%;
  top: 41.2%;
  width: 5.8%;
  aspect-ratio: 1;
  animation: hero-sun-ghost-1 6.8s ease-in-out infinite;
}
.hero-sun-ghost-2 {
  z-index: 4;
  left: 64.5%;
  top: 54.8%;
  width: 3.8%;
  aspect-ratio: 1;
  opacity: .18;
  animation: hero-sun-ghost-2 8.2s ease-in-out infinite;
}
.hero-sun-ghost-3 {
  z-index: 4;
  left: 77.5%;
  top: 69.4%;
  width: 2.4%;
  aspect-ratio: 1;
  opacity: .12;
  animation: hero-sun-ghost-3 9.4s ease-in-out infinite;
}
@keyframes hero-logo-reveal {
  from { opacity: 0; transform: translateY(18px) scale(.975); filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(222%) hue-rotate(353deg) brightness(106%) contrast(94%) blur(6px); }
  to { opacity: 1; transform: none; filter: brightness(0) saturate(100%) invert(93%) sepia(11%) saturate(222%) hue-rotate(353deg) brightness(106%) contrast(94%); }
}
@keyframes hero-sun-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .82; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
@keyframes hero-sun-halo {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .56; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: .95; }
}
@keyframes hero-sun-bloom {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .44; }
  50% { transform: translate(-50%, -50%) scale(1.07); opacity: .82; }
}
@keyframes hero-sun-beam {
  0%, 100% { transform: translate(-50%, -50%) rotate(0deg) scaleX(.96); opacity: .26; }
  50% { transform: translate(-50%, -50%) rotate(-1.6deg) scaleX(1.05); opacity: .72; }
}
@keyframes hero-sun-flare {
  0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); opacity: .2; }
  50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.04); opacity: .56; }
  100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); opacity: .2; }
}
@keyframes hero-sun-ghost-1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .12; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: .28; }
}
@keyframes hero-sun-ghost-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .1; }
  50% { transform: translate(-50%, -50%) scale(1.14); opacity: .22; }
}
@keyframes hero-sun-ghost-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .06; }
  50% { transform: translate(-50%, -50%) scale(1.18); opacity: .16; }
}
@keyframes hero-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero-quote {
  position: absolute;
  left: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  bottom: 48px;
  width: min(360px, calc(100vw - 150px));
  margin: 0;
  padding: 0 0 0 17px;
  border: 0;
  color: rgba(244, 241, 234, .72);
  font-size: clamp(.72rem, .9vw, .83rem);
  font-weight: 320;
  line-height: 1.62;
  letter-spacing: .035em;
  opacity: 0;
  filter: blur(.45px);
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
  animation: hero-quote-reveal 1.4s 1.05s both cubic-bezier(.2,.75,.2,1);
}
.hero-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 1px;
  height: 31px;
  background: linear-gradient(to bottom, rgba(244,241,234,.72), rgba(244,241,234,.12));
}
.hero-quote span { display: block; }
.hero-quote cite {
  display: block;
  margin-top: 8px;
  color: rgba(244, 241, 234, .46);
  font-size: .61rem;
  font-style: normal;
  font-weight: 520;
  text-transform: uppercase;
  letter-spacing: .17em;
}
@keyframes hero-quote-reveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: .62; transform: translateY(0); }
}
.hero:hover .hero-quote,
.hero-quote:focus-within {
  opacity: .9;
  filter: none;
}
.hero-claim {
  width: min(340px, calc(100vw - 150px));
  color: rgba(244,241,234,.78);
  font-size: clamp(.82rem, 1.05vw, .98rem);
  line-height: 1.55;
  letter-spacing: .055em;
}
.hero-claim::before { height: 25px; }
.hero-socials {
  position: absolute;
  right: max(24px, calc((100vw - min(1240px, calc(100vw - 48px))) / 2));
  bottom: 46px;
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.social-link { color: rgba(244,241,234,.78); }
.social-link:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); }
.social-link svg { width: 15px; height: 15px; }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 1px;
  height: 55px;
  overflow: hidden;
  background: rgba(255,255,255,.2);
}
.scroll-cue::after {
  content: "";
  position: absolute;
  inset: -100% 0 auto;
  height: 100%;
  background: var(--paper);
  animation: scroll-cue 2.3s ease-in-out infinite;
}
@keyframes scroll-cue { 0% { transform: translateY(0); } 60%,100% { transform: translateY(200%); } }

main { overflow: clip; }
.section { position: relative; padding: clamp(96px, 12vw, 176px) 0; }
.section-shell { width: var(--page); margin: 0 auto; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--ink); color: var(--paper); }
.section-soft { background: var(--paper-soft); color: var(--ink); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 34px;
  text-transform: uppercase;
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .2em;
}
.eyebrow::before { content: ""; width: 31px; height: 1px; background: currentColor; opacity: .45; }
.display-title {
  margin: 0;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 260;
  line-height: .84;
  letter-spacing: -.07em;
}
.section-title {
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5.7rem);
  font-weight: 280;
  line-height: .94;
  letter-spacing: -.055em;
}
.lead {
  font-size: clamp(1.08rem, 1.75vw, 1.36rem);
  font-weight: 330;
  line-height: 1.66;
}
.text-muted { color: color-mix(in srgb, currentColor 62%, transparent); }

.vision-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: clamp(50px, 9vw, 135px);
  align-items: end;
  margin-bottom: clamp(85px, 12vw, 160px);
}
.vision-copy { max-width: 590px; margin: 0 0 8px; }
.vision-copy p { margin: 0; }
.editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-top: 31px;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
}
.editorial-link::after { content: "↗"; font-size: 1rem; transition: transform .25s ease; }
.editorial-link:hover::after { transform: translate(3px, -3px); }

.feature-stack { display: grid; gap: clamp(88px, 12vw, 160px); }
.feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}
.feature:nth-child(even) { grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr); }
.feature:nth-child(even) .feature-media { order: 2; }
.feature-media {
  position: relative;
  min-height: 420px;
  aspect-ratio: 1.25 / 1;
  overflow: hidden;
  background: #181b20;
}
.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.feature-media.feature-media--full-image {
  aspect-ratio: 1 / 1;
  background: #15181d;
}
.feature-media.feature-media--full-image img {
  object-fit: contain;
  object-position: center;
  transform: none !important;
}
.feature:hover .feature-media img { transform: scale(1.035); }
.feature-number {
  display: block;
  margin-bottom: 36px;
  color: color-mix(in srgb, currentColor 45%, transparent);
  font-size: .67rem;
  letter-spacing: .18em;
}
.feature-title {
  margin: 0 0 30px;
  font-size: clamp(2.35rem, 4.8vw, 5rem);
  font-weight: 280;
  line-height: .98;
  letter-spacing: -.055em;
}
.feature-copy { max-width: 520px; }
.feature-copy p { margin: 0; }

.quote-band {
  padding: clamp(100px, 15vw, 210px) 0;
  background: #111319;
  color: var(--paper);
  text-align: center;
}
.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2rem, 4.4vw, 4.9rem);
  font-weight: 250;
  line-height: 1.1;
  letter-spacing: -.045em;
}
.quote-band cite {
  display: block;
  margin-top: 32px;
  font-size: .68rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.5);
}

.immersive-intro {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(350px, 1.08fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
  margin-bottom: clamp(70px, 10vw, 130px);
}
.immersive-copy { max-width: 650px; }
.immersive-copy p { margin: 0 0 26px; }
.immersive-copy p:last-child { margin-bottom: 0; }
.immersive-visual {
  position: relative;
  width: min(100%, 980px);
  margin-left: auto;
  aspect-ratio: 1.85 / 1;
  overflow: hidden;
}
.immersive-visual img { width: 100%; height: 100%; object-fit: cover; }
.immersive-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.immersive-visual-label {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(8,10,13,.74);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: .61rem;
  letter-spacing: .17em;
}

.vita-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 10vw, 150px);
  align-items: center;
}
.portrait-wrap {
  position: relative;
  max-width: 520px;
  aspect-ratio: .72 / 1;
  overflow: hidden;
  background: #12151a;
}
.portrait-wrap img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%); transition: filter .7s ease, transform 1s ease; }
.portrait-wrap:hover img { filter: grayscale(20%); transform: scale(1.025); }
.portrait-wrap::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); }
.vita-copy { max-width: 700px; }
.vita-copy .section-title { margin-bottom: 52px; }
.vita-copy p { margin: 0; }

.blog-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 68px;
}
.journal-language-note {
  max-width: 560px;
  margin: 24px 0 0;
  color: color-mix(in srgb, currentColor 56%, transparent);
  font-size: .86rem;
  line-height: 1.55;
}
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-light); border: 1px solid var(--line-light); }
.blog-card {
  display: flex;
  min-height: 480px;
  flex-direction: column;
  background: var(--paper-soft);
  text-decoration: none;
  transition: background .35s ease, color .35s ease;
}
.blog-card:hover { background: var(--ink); color: var(--paper); }
.blog-image { height: 250px; overflow: hidden; background: #1a1d22; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.blog-card:hover img { transform: scale(1.04); }
.blog-content { flex: 1; display: flex; flex-direction: column; padding: 29px; }
.blog-meta { margin-bottom: 48px; text-transform: uppercase; font-size: .61rem; letter-spacing: .18em; opacity: .55; }
.blog-title { margin: auto 0 0; font-size: clamp(1.55rem, 2.4vw, 2.45rem); font-weight: 320; line-height: 1.08; letter-spacing: -.035em; }
.blog-arrow { margin-top: 28px; font-size: 1.25rem; }

.contact-section { overflow: hidden; }
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: url("/assets/Backgroundsmall_uVoKCUPeQ0mlv9bgczEUE.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.15);
}
.contact-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,12,16,.98) 0%, rgba(10,12,16,.9) 50%, rgba(10,12,16,.8)); }
.contact-section .section-shell { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(380px, 1.12fr);
  gap: clamp(60px, 11vw, 160px);
  align-items: start;
}
.contact-copy .section-title { margin-bottom: 46px; }
.contact-copy .lead { max-width: 560px; margin: 0; }
.direct-contact { margin-top: 56px; display: grid; gap: 10px; }
.direct-contact a { width: fit-content; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.contact-form { display: grid; gap: 28px; }
.field { position: relative; }
.field label { display: block; margin-bottom: 10px; text-transform: uppercase; font-size: .61rem; font-weight: 600; letter-spacing: .16em; color: rgba(255,255,255,.58); }
.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  border-radius: 0;
  padding: 9px 0 15px;
  outline: 0;
  background: transparent;
  color: var(--paper);
  transition: border-color .25s ease;
}
.field input:focus,
.field textarea:focus { border-bottom-color: var(--paper); }
.field textarea { min-height: 145px; resize: vertical; }
.submit-button {
  width: fit-content;
  margin-top: 14px;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  cursor: pointer;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  transition: background .25s ease, color .25s ease;
}
.submit-button:hover { background: var(--paper); color: var(--ink); }
.form-note { margin: -10px 0 0; color: rgba(255,255,255,.46); font-size: .72rem; }
.form-privacy { max-width: 590px; margin-top: -8px; line-height: 1.55; }
.form-privacy a { color: inherit; text-underline-offset: 3px; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.submit-button:disabled {
  cursor: wait;
  opacity: .55;
}
.form-status {
  min-height: 1.3em;
  margin: -12px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  line-height: 1.55;
}
.form-status[hidden] { display: none; }
.form-status.is-success { color: rgba(223,238,218,.9); }
.form-status.is-error { color: rgba(255,202,191,.94); }

/* Contact confirmation pages */
.confirmation-page { min-height: 100svh; background: var(--paper); color: var(--ink); }
.confirmation-main {
  min-height: calc(100svh - var(--header-height) - 120px);
  display: grid;
  place-items: center;
  padding: clamp(90px, 13vw, 170px) 24px;
}
.confirmation-shell {
  width: min(880px, 100%);
  text-align: center;
}
.confirmation-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(15,17,21,.22);
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 300;
}
.confirmation-title {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: clamp(3.4rem, 9vw, 7.7rem);
  font-weight: 260;
  line-height: .92;
  letter-spacing: -.065em;
}
.confirmation-copy {
  max-width: 590px;
  margin: 0 auto 46px;
  color: rgba(15,17,21,.68);
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
  line-height: 1.75;
}
.confirmation-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(15,17,21,.38);
  text-decoration: none;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.site-footer { padding: 38px 0; border-top: 1px solid var(--line-dark); background: var(--ink); }
.footer-shell { width: var(--page); margin: auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-logo {
  display: block;
  width: 38px;
  line-height: 0;
  opacity: .72;
}
.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 203 / 211;
  object-fit: contain;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.footer-nav a { text-decoration: none; font-size: .72rem; letter-spacing: .08em; }
.copyright { justify-self: end; color: rgba(255,255,255,.45); font-size: .7rem; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* Impressum */
.legal-page { min-height: 100svh; background: var(--paper); color: var(--ink); }
.legal-header { position: static; background: var(--ink); color: var(--paper); border-bottom: 1px solid var(--line-dark); }
.legal-main { padding: clamp(90px, 13vw, 160px) 0; }
.legal-shell { width: min(900px, calc(100vw - 48px)); margin: auto; }
.legal-topline { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 80px; }
.back-link { text-decoration: none; font-size: .75rem; letter-spacing: .1em; }
.legal-title { margin: 0 0 85px; font-size: clamp(4rem, 10vw, 8rem); font-weight: 260; line-height: .88; letter-spacing: -.07em; }
.legal-content { display: grid; grid-template-columns: 180px 1fr; gap: 40px 70px; border-top: 1px solid var(--line-light); padding-top: 38px; }
.legal-content h2 { margin: 0; font-size: .7rem; text-transform: uppercase; letter-spacing: .17em; }
.legal-content p { margin: 0; max-width: 620px; }
.legal-content a { text-underline-offset: 4px; }
.legal-footer { background: var(--ink); color: var(--paper); }


@media (max-width: 1180px) {
  .header-actions { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .nav-links {
    position: absolute;
    inset: auto;
    top: 100%;
    left: 50%;
    width: 100vw;
    height: calc(100svh - var(--header-height));
    min-height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 27px;
    background: rgba(10,12,16,.965);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -12px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
  }
  .site-header.is-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
  .nav-links > a {
    min-width: 170px;
    padding: 5px 18px;
    font-size: 1.38rem;
    font-weight: 300;
    line-height: 1.3;
  }
  .mobile-language-switch {
    display: inline-flex;
    margin-top: 14px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: .72rem;
  }
  .mobile-language-switch a {
    min-width: auto;
    padding: 0;
    font-size: inherit;
    font-weight: 600;
    line-height: 1;
  }
}

@media (max-width: 980px) {
  :root { --page: min(100% - 36px, 820px); }
  .hero-logo-wrap { width: min(66vw, 535px); }
  .vision-heading,
  .immersive-intro { grid-template-columns: 1fr; }
  .vision-copy { justify-self: end; max-width: 610px; }
  .feature,
  .feature:nth-child(even) { grid-template-columns: 1fr; }
  .feature:nth-child(even) .feature-media { order: initial; }
  .feature-copy { max-width: 650px; }
  .feature:nth-child(even) .feature-copy { justify-self: end; }
  .vita-grid { grid-template-columns: minmax(250px, .7fr) 1fr; gap: 55px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:last-child { grid-column: 1 / -1; min-height: 390px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { max-width: 700px; }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 28px); --header-height: 68px; }
  body { font-size: 16px; }
  .hero-inner { padding: 86px 0 112px; }

  .hero-logo-wrap { width: min(80vw, 360px); margin-top: -2vh; }
  .hero-sun-bloom { width: 82%; }
  .hero-sun-halo { width: 28%; }
  .hero-sun-glow { width: 13.4%; }
  .hero-sun-beam { width: 66%; height: 10%; }
  .hero-sun-flare { width: 60%; }
  .hero-sun-ghost-1 { width: 7%; }
  .hero-sun-ghost-2 { width: 4.8%; }
  .hero-sun-ghost-3 { width: 3.2%; }
  .hero-quote {
    left: 18px;
    right: 78px;
    bottom: 30px;
    width: auto;
    max-width: 270px;
    padding-left: 13px;
    font-size: .7rem;
    line-height: 1.56;
    opacity: .76;
    filter: none;
  }
  .hero-quote::before { height: 26px; }
  .hero-quote cite { margin-top: 6px; font-size: .55rem; }
  .hero-claim {
    right: 82px;
    max-width: 245px;
    font-size: .76rem;
    line-height: 1.52;
  }
  .hero-socials { right: 18px; bottom: 28px; flex-direction: column; }
  .scroll-cue { display: none; }
  .section { padding: 92px 0; }
  .eyebrow { margin-bottom: 26px; }
  .display-title { font-size: clamp(3.45rem, 20vw, 5.3rem); }
  .section-title { font-size: clamp(2.7rem, 14vw, 4rem); }
  .vision-heading { gap: 45px; margin-bottom: 90px; }
  .feature-stack { gap: 100px; }
  .feature { gap: 32px; }
  .feature-media { min-height: 0; aspect-ratio: 1 / .86; }
  .feature-number { margin-bottom: 20px; }
  .feature-title { margin-bottom: 22px; }
  .quote-band { padding: 110px 20px; }
  .immersive-intro { margin-bottom: 58px; }
  .immersive-visual { aspect-ratio: .92 / 1; }
  .immersive-visual img { object-position: 56% center; }
  .vita-grid { grid-template-columns: 1fr; }
  .portrait-wrap { width: min(88%, 440px); }
  .vita-copy .section-title { margin-bottom: 35px; }
  .blog-head { align-items: start; flex-direction: column; margin-bottom: 44px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card,
  .blog-card:last-child { min-height: 430px; grid-column: auto; }
  .blog-image { height: 220px; }
  .contact-grid { gap: 70px; }
  .footer-shell { grid-template-columns: 1fr auto; }
  .footer-nav { grid-column: 1 / -1; grid-row: 1; justify-content: flex-start; }
  .footer-logo { grid-row: 2; }
  .copyright { grid-row: 2; }
  .legal-shell { width: calc(100vw - 28px); }
  .legal-title { margin-bottom: 60px; }
  .legal-content { grid-template-columns: 1fr; gap: 13px; }
  .legal-content p { margin-bottom: 30px; }
}


@media (max-height: 760px) and (min-width: 681px) {
  .hero-inner { padding-bottom: 70px; }
  .hero-logo-wrap { width: min(38vw, 500px); margin-top: 0; }
  .hero-quote { bottom: 30px; }
  .hero-socials { bottom: 28px; }
  .scroll-cue { bottom: 18px; height: 40px; }
}

@media (max-width: 680px) and (max-height: 720px) {
  .hero-inner { padding-bottom: 98px; }
  .hero-logo-wrap { width: min(73vw, 320px); margin-top: -1vh; }
  .hero-quote { font-size: .66rem; max-width: 244px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-logo-wrap, .hero-logo-image, .hero-sun-bloom, .hero-sun-halo, .hero-sun-glow, .hero-sun-beam, .hero-sun-flare, .hero-sun-ghost { animation: none !important; }
  .hero-logo-interactive { transform: none !important; }
  .hero-quote { opacity: .72; transform: none; filter: none; }
}


/* Vietnamese typography: use a system font stack with full Vietnamese coverage. */
body[data-locale="vi"] {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
body[data-locale="vi"] .display-title,
body[data-locale="vi"] .section-title,
body[data-locale="vi"] .feature-title,
body[data-locale="vi"] .blog-title,
body[data-locale="vi"] .legal-title {
  letter-spacing: -.045em;
}
body[data-locale="vi"] .section-title,
body[data-locale="vi"] .feature-title,
body[data-locale="vi"] .blog-title {
  line-height: 1.02;
}

/* =========================================================
   Journal – statische Übersichts- und Beitragsseiten
   ========================================================= */
.journal-page,
.journal-article-page {
  background: var(--paper);
  color: var(--ink);
}

.journal-site-header .nav-links a[aria-current="page"]::after,
.journal-site-header .language-switch a[aria-current="page"]::after {
  right: 0;
}

.journal-masthead {
  position: relative;
  min-height: min(72svh, 760px);
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 100px) 0 clamp(78px, 9vw, 128px);
  background:
    linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
    url("/assets/seo/hero-refugium-2200.webp") center 44% / cover;
  color: var(--paper);
}
.journal-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 71% 24%, rgba(201,181,150,.12), transparent 30%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: .72;
  pointer-events: none;
}
.journal-masthead-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr);
  gap: clamp(50px, 9vw, 135px);
  align-items: end;
}
.journal-masthead-title h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(4.5rem, 9vw, 9rem);
  font-weight: 250;
  line-height: .84;
  letter-spacing: -.075em;
}
.journal-masthead-copy {
  max-width: 560px;
  padding-bottom: 10px;
  color: rgba(244,241,234,.72);
  font-size: clamp(1.04rem, 1.55vw, 1.28rem);
  font-weight: 330;
  line-height: 1.68;
}
.journal-masthead-copy p { margin: 0; }
.journal-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(244,241,234,.48);
  text-transform: uppercase;
  font-size: .64rem;
  letter-spacing: .18em;
}

.journal-index-section {
  padding: clamp(90px, 11vw, 150px) 0 clamp(110px, 14vw, 190px);
  background: var(--paper);
}
.journal-index-layout {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 100px);
}
.journal-year {
  position: relative;
  align-self: stretch;
  color: rgba(10,12,16,.32);
  font-size: .67rem;
  font-weight: 650;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.journal-year::after {
  content: "";
  position: absolute;
  top: 62px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--line-light);
}
.journal-entry-list {
  display: grid;
  gap: clamp(70px, 9vw, 125px);
}
.journal-entry {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(38px, 7vw, 100px);
  align-items: center;
}
.journal-entry:nth-child(even) {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
}
.journal-entry:nth-child(even) .journal-entry-media { order: 2; }
.journal-entry:nth-child(even) .journal-entry-copy { justify-self: end; }
.journal-entry-media {
  position: relative;
  display: block;
  min-height: 330px;
  aspect-ratio: 1.35 / 1;
  overflow: hidden;
  background: #16191f;
  text-decoration: none;
}
.journal-entry-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
}
.journal-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.journal-entry:hover .journal-entry-media img { transform: scale(1.035); }
.journal-entry-copy {
  width: 100%;
  max-width: 650px;
}
.journal-entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  margin-bottom: 28px;
  color: rgba(10,12,16,.48);
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
}
.journal-entry-meta span::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  margin: 0 13px 3px 0;
  background: currentColor;
  opacity: .55;
}
.journal-entry-copy h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 4.25rem);
  font-weight: 285;
  line-height: 1;
  letter-spacing: -.055em;
}
.journal-entry-copy h2 a {
  text-decoration: none;
}
.journal-entry-copy p {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(10,12,16,.64);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.68;
}
.journal-entry-featured {
  padding-bottom: clamp(70px, 9vw, 120px);
  border-bottom: 1px solid var(--line-light);
}
.journal-entry-featured .journal-entry-media {
  min-height: 420px;
  aspect-ratio: 1.5 / 1;
}

.journal-closing {
  padding: clamp(90px, 12vw, 165px) 0;
  background: #111319;
  color: var(--paper);
}
.journal-closing-inner {
  max-width: 780px;
  text-align: center;
}
.journal-closing-inner .eyebrow { justify-content: center; }
.journal-closing-inner p:not(.eyebrow) {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 260;
  line-height: 1.08;
  letter-spacing: -.045em;
}
.journal-closing-inner .editorial-link { margin-top: 42px; }

/* Individual journal pages – ready for step-by-step migration */
.journal-article-header {
  position: relative;
  padding: calc(var(--header-height) + clamp(80px, 10vw, 140px)) 0 clamp(80px, 10vw, 135px);
  overflow: hidden;
  background: #101218;
  color: var(--paper);
}
.journal-article-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 22%, rgba(201,181,150,.12), transparent 30%);
  pointer-events: none;
}
.journal-article-header-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.journal-article-heading .journal-entry-meta { color: rgba(244,241,234,.5); }
.journal-article-heading h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  font-weight: 255;
  line-height: .94;
  letter-spacing: -.065em;
}
.journal-article-heading > p {
  max-width: 650px;
  margin: 38px 0 0;
  color: rgba(244,241,234,.66);
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.68;
}
.journal-article-cover {
  position: relative;
  margin: 0;
  min-height: 420px;
  aspect-ratio: .9 / 1;
  overflow: hidden;
  background: #181b20;
}
.journal-article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-article-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.15);
}
.journal-article-body {
  padding: clamp(100px, 13vw, 180px) 0;
  background: var(--paper);
}
.journal-article-content {
  width: min(760px, calc(100vw - 48px));
  margin: 0 auto;
}
.journal-article-content h2 {
  margin: 0 0 42px;
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 280;
  line-height: .98;
  letter-spacing: -.055em;
}
.journal-article-content > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: rgba(10,12,16,.7);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.75;
}
.journal-migration-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 36px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}
.journal-primary-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border: 1px solid rgba(10,12,16,.44);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 650;
  letter-spacing: .12em;
  transition: background .25s ease, color .25s ease;
}
.journal-primary-link:hover {
  background: var(--ink);
  color: var(--paper);
}
.journal-migration-actions .editorial-link { margin-top: 0; }

@media (max-width: 980px) {
  .journal-masthead-grid,
  .journal-article-header-grid {
    grid-template-columns: 1fr;
  }
  .journal-masthead-copy { justify-self: end; }
  .journal-index-layout { grid-template-columns: 80px minmax(0, 1fr); }
  .journal-entry,
  .journal-entry:nth-child(even) {
    grid-template-columns: 1fr;
  }
  .journal-entry:nth-child(even) .journal-entry-media { order: initial; }
  .journal-entry:nth-child(even) .journal-entry-copy { justify-self: start; }
  .journal-entry-copy { max-width: 720px; }
  .journal-entry:nth-child(even) .journal-entry-copy { margin-left: auto; }
  .journal-article-cover {
    width: min(72%, 570px);
    min-height: 0;
    aspect-ratio: 1.3 / 1;
    justify-self: end;
  }
}

@media (max-width: 680px) {
  .journal-masthead {
    min-height: 78svh;
    padding: calc(var(--header-height) + 68px) 0 72px;
  }
  .journal-masthead-grid { gap: 48px; }
  .journal-masthead-title h1 { font-size: clamp(4rem, 19vw, 6rem); }
  .journal-masthead-copy { font-size: 1rem; }
  .journal-index-section { padding: 82px 0 110px; }
  .journal-index-layout { grid-template-columns: 1fr; gap: 52px; }
  .journal-year {
    writing-mode: horizontal-tb;
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .journal-year::after {
    position: static;
    flex: 1;
    height: 1px;
  }
  .journal-entry-list { gap: 84px; }
  .journal-entry,
  .journal-entry-featured { padding-bottom: 0; border-bottom: 0; gap: 30px; }
  .journal-entry-featured { padding-bottom: 76px; border-bottom: 1px solid var(--line-light); }
  .journal-entry-media,
  .journal-entry-featured .journal-entry-media {
    min-height: 0;
    aspect-ratio: 1.1 / 1;
  }
  .journal-entry-copy h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .journal-entry-copy p { margin-top: 24px; }
  .journal-article-header { padding-top: calc(var(--header-height) + 70px); }
  .journal-article-header-grid { gap: 52px; }
  .journal-article-heading h1 { font-size: clamp(3rem, 13vw, 4.4rem); }
  .journal-article-cover { width: 100%; aspect-ratio: 1 / .88; }
  .journal-article-content { width: calc(100vw - 28px); }
  .journal-migration-actions { align-items: flex-start; flex-direction: column; }
}

/* =========================================================
   Journal – vollständig migrierte redaktionelle Beiträge
   ========================================================= */
.section[id] { scroll-margin-top: var(--header-height); }

.journal-story-header .journal-article-heading h1 > span {
  display: block;
}
.journal-title-part {
  margin-top: .14em;
  color: rgba(244,241,234,.72);
  font-size: .64em;
  line-height: 1.04;
  letter-spacing: -.04em;
}
.journal-article-cover-square {
  aspect-ratio: 1 / 1;
}
.journal-article-cover-square img {
  object-position: center;
}
.journal-story-body {
  padding: clamp(100px, 12vw, 170px) 0 clamp(120px, 15vw, 210px);
}
.journal-story {
  display: grid;
  gap: clamp(90px, 12vw, 165px);
}
.journal-story-intro {
  width: min(820px, 100%);
  margin: 0 auto;
}
.journal-story-intro > p:not(.eyebrow) {
  margin: 0 0 25px;
  color: rgba(10,12,16,.7);
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.78;
}
.journal-story-intro .journal-story-lead {
  margin-bottom: 34px;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 285;
  line-height: 1.24;
  letter-spacing: -.035em;
}
.journal-story-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(380px, 1.14fr);
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
}
.journal-story-section-reverse {
  grid-template-columns: minmax(380px, 1.14fr) minmax(0, .86fr);
}
.journal-story-section-reverse .journal-story-copy { order: 2; }
.journal-story-section-reverse .journal-story-figure { order: 1; }
.journal-story-copy {
  max-width: 650px;
}
.journal-story-number {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: rgba(10,12,16,.42);
  text-transform: uppercase;
  font-size: .63rem;
  font-weight: 650;
  letter-spacing: .18em;
}
.journal-story-number::before {
  content: "";
  width: 31px;
  height: 1px;
  background: currentColor;
}
.journal-story-copy h2,
.journal-story-digital-copy h2,
.journal-story-ending h2 {
  margin: 0 0 34px;
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 275;
  line-height: .98;
  letter-spacing: -.055em;
}
.journal-story-copy > p:not(.journal-story-number),
.journal-story-digital-copy > p:not(.journal-story-number),
.journal-story-ending > p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(10,12,16,.69);
  font-size: clamp(1.02rem, 1.38vw, 1.18rem);
  line-height: 1.76;
}
.journal-story-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #15181e;
}
.journal-story-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.13);
  pointer-events: none;
}
.journal-story-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.journal-story-section:hover .journal-story-figure img,
.journal-story-digital:hover .journal-story-figure img {
  transform: scale(1.018);
}
.journal-story-figure figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 10px 13px;
  background: rgba(8,10,13,.72);
  color: rgba(244,241,234,.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  font-size: .68rem;
  line-height: 1.45;
  letter-spacing: .035em;
}
.journal-story-figure-portrait { aspect-ratio: 1.05 / .94; }
.journal-story-figure-landscape { aspect-ratio: 1.94 / 1; }
.journal-story-figure-detail { aspect-ratio: 1.18 / 1; }
.journal-story-figure-wide { aspect-ratio: 1.12 / 1; }
.journal-story-figure-cinematic { aspect-ratio: 1.78 / 1; }

.journal-story-pullquote {
  position: relative;
  margin: 0;
  padding: clamp(64px, 8vw, 105px) clamp(28px, 7vw, 100px);
  overflow: hidden;
  background: #111319;
  color: var(--paper);
  text-align: center;
}
.journal-story-pullquote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(201,181,150,.15), transparent 42%),
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}
.journal-story-pullquote p,
.journal-story-pullquote strong {
  position: relative;
  z-index: 1;
}
.journal-story-pullquote p {
  margin: 0 0 18px;
  color: rgba(244,241,234,.54);
  text-transform: uppercase;
  font-size: .66rem;
  letter-spacing: .18em;
}
.journal-story-pullquote strong {
  display: block;
  max-width: 950px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 4.5vw, 4.9rem);
  font-weight: 250;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.journal-story-digital {
  display: grid;
  gap: clamp(50px, 8vw, 100px);
}
.journal-story-digital .journal-story-figure {
  width: min(100%, 1080px);
  margin-left: auto;
}
.journal-story-digital-copy {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  column-gap: clamp(55px, 9vw, 135px);
  align-items: start;
}
.journal-story-digital-copy .journal-story-number,
.journal-story-digital-copy h2 {
  grid-column: 1;
}
.journal-story-digital-copy > p:not(.journal-story-number) {
  grid-column: 2;
}
.journal-story-digital-copy h2 {
  margin-bottom: 0;
}

.journal-story-ending {
  width: min(900px, 100%);
  margin: 0 auto;
  padding-top: clamp(70px, 8vw, 110px);
  border-top: 1px solid var(--line-light);
  text-align: center;
}
.journal-story-ending .eyebrow { justify-content: center; }
.journal-story-ending > p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}
.journal-story-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}
.journal-story-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(10,12,16,.18);
  text-transform: uppercase;
  font-size: .61rem;
  font-weight: 650;
  letter-spacing: .15em;
}
.journal-article-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 34px;
  margin-top: 54px;
}
.journal-article-links .editorial-link { margin-top: 0; }

@media (max-width: 980px) {
  .journal-story-section,
  .journal-story-section-reverse {
    grid-template-columns: 1fr;
  }
  .journal-story-section-reverse .journal-story-copy,
  .journal-story-section-reverse .journal-story-figure {
    order: initial;
  }
  .journal-story-section:nth-of-type(even) .journal-story-copy {
    justify-self: end;
  }
  .journal-story-section .journal-story-copy { max-width: 720px; }
  .journal-story-section .journal-story-figure {
    width: min(88%, 820px);
  }
  .journal-story-section:nth-of-type(odd) .journal-story-figure { margin-left: auto; }
  .journal-story-digital-copy {
    grid-template-columns: 1fr;
  }
  .journal-story-digital-copy .journal-story-number,
  .journal-story-digital-copy h2,
  .journal-story-digital-copy > p:not(.journal-story-number) {
    grid-column: 1;
  }
  .journal-story-digital-copy h2 { margin-bottom: 34px; }
  .journal-story-digital-copy { max-width: 760px; margin-left: auto; }
}

@media (max-width: 680px) {
  .journal-story-body { padding: 88px 0 120px; }
  .journal-story { gap: 94px; }
  .journal-story-intro .journal-story-lead {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }
  .journal-story-copy h2,
  .journal-story-digital-copy h2,
  .journal-story-ending h2 {
    font-size: clamp(2.45rem, 12vw, 3.65rem);
  }
  .journal-story-section .journal-story-figure {
    width: 100%;
  }
  .journal-story-figure-portrait,
  .journal-story-figure-wide,
  .journal-story-figure-detail {
    aspect-ratio: 1 / .92;
  }
  .journal-story-figure-landscape { aspect-ratio: 1.72 / 1; }
  .journal-story-figure-cinematic { aspect-ratio: 1.45 / 1; }
  .journal-story-figure figcaption {
    position: static;
    padding: 12px 13px 14px;
    background: #111319;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .journal-story-pullquote {
    margin-right: -14px;
    margin-left: -14px;
    padding: 70px 24px;
  }
  .journal-story-pullquote strong {
    font-size: clamp(2rem, 10.5vw, 3.15rem);
  }
  .journal-article-links {
    align-items: stretch;
    flex-direction: column;
  }
  .journal-article-links .journal-primary-link,
  .journal-article-links .editorial-link {
    justify-content: center;
  }
}


/* Journal – Studioporträt */
.studio-profile-cover {
  aspect-ratio: 1.23 / 1;
}
.studio-profile-cover img { object-position: center; }
.journal-story-gallery {
  display: grid;
  gap: clamp(18px, 2.2vw, 32px);
}
.journal-story-gallery-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.journal-story-gallery-item {
  aspect-ratio: 1.45 / 1;
}
.journal-story-gallery-room .journal-story-gallery-item:first-child {
  aspect-ratio: 1.33 / 1;
}
.journal-story-gallery-room .journal-story-gallery-item:last-child {
  aspect-ratio: 1.72 / 1;
}
.journal-story-solo-image {
  width: min(100%, 1080px);
  margin-left: auto;
}
.journal-story-gallery-location {
  grid-template-columns: minmax(0, 1.8fr) minmax(180px, .72fr);
  align-items: stretch;
}
.journal-story-gallery-location .journal-story-gallery-item {
  height: 100%;
  aspect-ratio: auto;
  min-height: 520px;
}
.journal-story-gallery-location img { object-position: center; }
.journal-story-location-silo img { object-position: center 38%; }
@media (max-width: 980px) {
  .journal-story-gallery-location {
    width: min(88%, 820px);
    margin-left: auto;
  }
  .journal-story-gallery-location .journal-story-gallery-item {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 680px) {
  .studio-profile-cover { aspect-ratio: 1 / .86; }
  .journal-story-gallery-two,
  .journal-story-gallery-location {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .journal-story-gallery-item,
  .journal-story-gallery-room .journal-story-gallery-item:first-child,
  .journal-story-gallery-room .journal-story-gallery-item:last-child,
  .journal-story-gallery-location .journal-story-gallery-item {
    min-height: 0;
    aspect-ratio: 1.2 / 1;
  }
  .journal-story-location-silo { aspect-ratio: .78 / 1 !important; }
}

/* Journal – Binauraler Mikrofonkopf */
.binaural-story-cover {
  aspect-ratio: 1.07 / 1;
}
.binaural-story-cover img {
  object-position: center;
}
.binaural-process-gallery .journal-story-gallery-item:first-child {
  aspect-ratio: 1.78 / 1;
}
.binaural-process-gallery .journal-story-gallery-item:last-child {
  aspect-ratio: 1.12 / 1;
}
.binaural-head-figure {
  aspect-ratio: 1.12 / 1;
}
.binaural-construction-figure {
  aspect-ratio: 1.78 / 1;
}
.binaural-field-figure {
  aspect-ratio: 1.5 / 1;
}
.binaural-field-figure img {
  object-position: center;
}
.binaural-matrix-note {
  width: fit-content;
  margin: -84px auto -48px;
  color: rgba(10,12,16,.42);
  font-size: .74rem;
  font-weight: 570;
  letter-spacing: .1em;
}
.binaural-applications {
  display: grid;
  gap: clamp(44px, 7vw, 82px);
}
.binaural-applications-head {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}
.binaural-applications-head .eyebrow {
  margin: 0 0 8px;
}
.binaural-applications-head h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  font-weight: 275;
  line-height: .96;
  letter-spacing: -.055em;
}
.binaural-application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}
.binaural-application {
  min-height: 460px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--paper-soft);
}
.binaural-application .journal-story-number {
  margin-bottom: clamp(42px, 6vw, 76px);
}
.binaural-application h3 {
  margin: 0 0 27px;
  font-size: clamp(1.65rem, 2.7vw, 2.85rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.binaural-application > p:not(.journal-story-number) {
  margin: 0 0 18px;
  color: rgba(10,12,16,.67);
  font-size: clamp(.98rem, 1.22vw, 1.1rem);
  line-height: 1.72;
}
@media (max-width: 980px) {
  .binaural-applications-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .binaural-application-grid {
    grid-template-columns: 1fr;
  }
  .binaural-application {
    min-height: 0;
  }
  .binaural-application .journal-story-number {
    margin-bottom: 34px;
  }
}
@media (max-width: 680px) {
  .binaural-story-cover {
    aspect-ratio: 1 / .94;
  }
  .binaural-process-gallery .journal-story-gallery-item:first-child,
  .binaural-process-gallery .journal-story-gallery-item:last-child,
  .binaural-head-figure,
  .binaural-construction-figure,
  .binaural-field-figure {
    aspect-ratio: 1.2 / 1;
  }
  .binaural-matrix-note {
    margin: -48px auto -26px;
  }
  .binaural-applications-head h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }
  .binaural-application {
    padding: 30px 24px 34px;
  }
}

/* Journal – Zwei Stereo-Mikrofone */
.stereo-story-cover {
  min-height: 0;
  aspect-ratio: 1.46 / 1;
}
.stereo-story-cover img { object-position: center; }
.stereo-vertical-figure {
  width: min(100%, 540px);
  justify-self: center;
  aspect-ratio: .48 / 1;
  background: #0d1015;
}
.stereo-vertical-figure img {
  object-fit: contain;
  object-position: center;
}
.stereo-capsule-figure {
  aspect-ratio: 1 / 1;
  background: #f8f7f4;
}
.stereo-capsule-figure img,
.stereo-capsule-box img {
  object-fit: contain;
  background: #f8f7f4;
}
.stereo-capsule-box {
  width: min(72%, 720px);
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: 1 / 1;
}
.stereo-closeup-gallery .journal-story-gallery-item {
  aspect-ratio: .68 / 1;
}
.stereo-closeup-gallery img { object-position: center; }
.stereo-use-figure { aspect-ratio: 1.12 / 1; }
.stereo-modeling-gallery .journal-story-gallery-item { aspect-ratio: 1.04 / 1; }
.stereo-modeling-gallery img { object-fit: contain; background: #f6f5f1; }
.stereo-pair-case-figure { aspect-ratio: 1.78 / 1; }

.journal-feature-section {
  display: grid;
  gap: clamp(44px, 7vw, 82px);
}
.journal-feature-head {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: end;
}
.journal-feature-head .eyebrow { margin: 0 0 8px; }
.journal-feature-head h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 5.7rem);
  font-weight: 275;
  line-height: .96;
  letter-spacing: -.055em;
}
.journal-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}
.journal-feature-card {
  min-height: 430px;
  padding: clamp(30px, 4vw, 54px);
  background: var(--paper-soft);
}
.journal-feature-card .journal-story-number {
  margin-bottom: clamp(42px, 6vw, 72px);
}
.journal-feature-card h3 {
  margin: 0 0 27px;
  font-size: clamp(1.65rem, 2.7vw, 2.85rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: -.04em;
}
.journal-feature-card > p:not(.journal-story-number) {
  margin: 0 0 18px;
  color: rgba(10,12,16,.67);
  font-size: clamp(.98rem, 1.22vw, 1.1rem);
  line-height: 1.72;
}
.stereo-balance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-light);
  background: var(--line-light);
}
.stereo-balance-grid article {
  min-height: 500px;
  padding: clamp(34px, 5vw, 70px);
  background: var(--paper-soft);
}
.stereo-balance-grid article:nth-child(2) {
  background: #15181e;
  color: var(--paper);
}
.stereo-balance-grid article:nth-child(2) .journal-story-number { color: rgba(244,241,234,.42); }
.stereo-balance-grid h2 {
  margin: 0 0 38px;
  font-size: clamp(2.15rem, 4.2vw, 4.3rem);
  font-weight: 280;
  line-height: .98;
  letter-spacing: -.05em;
}
.stereo-balance-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.stereo-balance-grid li {
  position: relative;
  margin: 0;
  padding: 18px 0 18px 25px;
  border-top: 1px solid currentColor;
  border-color: color-mix(in srgb, currentColor 18%, transparent);
  color: color-mix(in srgb, currentColor 70%, transparent);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.65;
}
.stereo-balance-grid li::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 980px) {
  .stereo-story-cover { width: min(92%, 760px); }
  .stereo-vertical-figure { width: min(58%, 470px) !important; margin-left: auto; }
  .journal-feature-head { grid-template-columns: 1fr; gap: 20px; }
  .journal-feature-grid { grid-template-columns: 1fr; }
  .journal-feature-card { min-height: 0; }
  .journal-feature-card .journal-story-number { margin-bottom: 34px; }
  .stereo-balance-grid { grid-template-columns: 1fr; }
  .stereo-balance-grid article { min-height: 0; }
}

@media (max-width: 680px) {
  .stereo-story-cover { aspect-ratio: 1.34 / 1; }
  .stereo-vertical-figure {
    width: min(78%, 360px) !important;
    aspect-ratio: .5 / 1;
    margin-right: auto;
  }
  .stereo-capsule-box { width: 100%; }
  .stereo-closeup-gallery .journal-story-gallery-item { aspect-ratio: .74 / 1; }
  .stereo-modeling-gallery .journal-story-gallery-item { aspect-ratio: 1 / 1; }
  .journal-feature-head h2 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .journal-feature-card { padding: 30px 24px 34px; }
  .stereo-balance-grid article { padding: 34px 24px 38px; }
  .stereo-balance-grid h2 { font-size: clamp(2.35rem, 11vw, 3.5rem); }
}

/* Journal – Dolby Atmos 7.1.4 */
.dolby-story-cover {
  min-height: 0;
  aspect-ratio: 1.46 / 1;
}
.dolby-story-cover img { object-position: center; }
.dolby-headphone-figure {
  aspect-ratio: 1 / 1;
  background: #0f1222;
}
.dolby-headphone-figure img {
  object-fit: contain;
  object-position: center;
}
.dolby-schema-figure {
  aspect-ratio: 1.48 / 1;
  background: #f8f8f6;
}
.dolby-schema-figure img {
  object-fit: contain;
  object-position: center;
  padding: clamp(10px, 1.8vw, 24px);
}
.dolby-channel-grid .journal-feature-card {
  position: relative;
  overflow: hidden;
}
.dolby-channel-grid .journal-feature-card::after {
  content: attr(data-channel);
  position: absolute;
  right: -0.04em;
  bottom: -.22em;
  color: rgba(10,12,16,.035);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.dolby-standards-figure {
  aspect-ratio: 1.33 / 1;
}
.dolby-standards-figure img { object-position: center; }
.dolby-benefit-grid article:first-child {
  background: linear-gradient(145deg, #f5f2ec, #ece8df);
}
.dolby-speaker-overview {
  aspect-ratio: 1.68 / 1;
}
.dolby-speaker-overview img { object-position: center; }
.dolby-speaker-gallery .journal-story-gallery-item {
  aspect-ratio: 1.78 / 1;
}
.dolby-speaker-gallery img { object-position: center; }

@media (max-width: 980px) {
  .dolby-story-cover { width: min(92%, 760px); }
  .dolby-schema-figure { width: min(92%, 820px) !important; }
}

@media (max-width: 680px) {
  .dolby-story-cover { aspect-ratio: 1.34 / 1; }
  .dolby-headphone-figure { aspect-ratio: 1 / 1; }
  .dolby-schema-figure { aspect-ratio: 1.42 / 1; }
  .dolby-standards-figure { aspect-ratio: 1.18 / 1; }
  .dolby-speaker-overview,
  .dolby-speaker-gallery .journal-story-gallery-item {
    aspect-ratio: 1.35 / 1;
  }
}

/* Journal – Layoutkorrektur nach vollständiger Migration */
@media (min-width: 981px) {
  .journal-index-layout {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: clamp(38px, 4.5vw, 64px);
  }
  .journal-entry,
  .journal-entry:nth-child(even) {
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    gap: clamp(42px, 6vw, 88px);
  }
  .journal-entry-media,
  .journal-entry-featured .journal-entry-media {
    width: 100%;
    min-height: 0;
  }
  .journal-entry-featured .journal-entry-media {
    aspect-ratio: 1.45 / 1;
  }
}
.journal-entry-copy h2 {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Multilingual SEO and performance refinement */

.hero-media {
  background-image: url("/assets/seo/hero-refugium-2200.webp");
  background-image: image-set(
    url("/assets/seo/hero-refugium-2200.avif") type("image/avif"),
    url("/assets/seo/hero-refugium-2200.webp") type("image/webp")
  );
}


.studio-positioning {
  display: grid;
  grid-template-columns: minmax(230px, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 7vw, 104px);
  align-items: end;
  margin-bottom: clamp(74px, 9vw, 122px);
  padding-bottom: clamp(25px, 3vw, 38px);
  border-bottom: 1px solid rgba(18, 19, 22, .16);
}
.studio-positioning-services {
  margin: 0;
  color: rgba(18, 19, 22, .58);
  font-size: clamp(.65rem, .22vw + .6rem, .76rem);
  font-weight: 620;
  line-height: 1.55;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.studio-positioning h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.25rem, 1.25vw + .92rem, 2.05rem);
  font-weight: 360;
  line-height: 1.22;
  letter-spacing: -.025em;
  text-wrap: balance;
}
@media (max-width: 980px) {
  .studio-positioning {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 76px;
    padding-bottom: 28px;
  }
  .studio-positioning h1 { max-width: 620px; }
}
@media (max-width: 680px) {
  .studio-positioning {
    gap: 12px;
    margin-bottom: 64px;
    padding-bottom: 24px;
  }
  .studio-positioning-services {
    max-width: 320px;
    font-size: .62rem;
    letter-spacing: .12em;
  }
  .studio-positioning h1 {
    max-width: 340px;
    font-size: clamp(1.2rem, 6vw, 1.55rem);
    line-height: 1.26;
  }
}

.studio-intro-copy {
  margin-top: 0;
  color: var(--ink);
  font-weight: 520;
}

.contact-location {
  margin-top: 22px;
  color: rgba(244, 241, 234, .62);
  font-size: .88rem;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: .025em;
}

#mikrofone,
#studio,
#mobiles-recording,
#immersive,
#vita,
#blog,
#brief { scroll-margin-top: calc(var(--header-height) + 22px); }

.feature-media picture,
.immersive-visual picture,
.portrait-wrap picture,
.blog-image picture,
.journal-entry-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-media picture img,
.immersive-visual picture img,
.portrait-wrap picture img,
.blog-image picture img,
.journal-entry-media picture img {
  width: 100%;
  height: 100%;
}

.journal-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-bottom: 24px;
  color: color-mix(in srgb, currentColor 50%, transparent);
  font-size: .67rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.journal-breadcrumbs a {
  text-decoration: none;
  transition: color .25s ease;
}
.journal-breadcrumbs a:hover,
.journal-breadcrumbs a:focus-visible { color: currentColor; }

.journal-service-link {
  margin: 32px 0 24px;
  font-size: .92rem;
}
.journal-service-link a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.rss-link { margin-top: 8px; }

@media (max-width: 1200px) {
  .hero-media {
    background-image: url("/assets/seo/hero-refugium-1440.webp");
    background-image: image-set(
      url("/assets/seo/hero-refugium-1440.avif") type("image/avif"),
      url("/assets/seo/hero-refugium-1440.webp") type("image/webp")
    );
  }
}

@media (max-width: 680px) {
  .hero-media {
    inset: 0;
    animation: none;
    transform: none;
    background-position: center 48%;
    background-image: url("/assets/seo/hero-mobile-1280.d295c677b6.webp");
    background-image: image-set(
      url("/assets/seo/hero-mobile-720.7e15d4c7cb.avif") type("image/avif") 1x,
      url("/assets/seo/hero-mobile-1280.ecfea57231.avif") type("image/avif") 2x,
      url("/assets/seo/hero-mobile-720.416ae9c6c7.webp") type("image/webp") 1x,
      url("/assets/seo/hero-mobile-1280.d295c677b6.webp") type("image/webp") 2x
    );
  }
  .journal-breadcrumbs { margin-bottom: 18px; }
}

.journal-masthead {
  background-image:
    linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
    url("/assets/seo/hero-refugium-2200.webp");
  background-image:
    linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
    image-set(
      url("/assets/seo/hero-refugium-2200.avif") type("image/avif"),
      url("/assets/seo/hero-refugium-2200.webp") type("image/webp")
    );
  background-position: center, center 44%;
  background-size: auto, cover;
}
@media (max-width: 1200px) {
  .journal-masthead {
    background-image:
      linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
      url("/assets/seo/hero-refugium-1440.webp");
    background-image:
      linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
      image-set(
        url("/assets/seo/hero-refugium-1440.avif") type("image/avif"),
        url("/assets/seo/hero-refugium-1440.webp") type("image/webp")
      );
  }
}
@media (max-width: 680px) {
  .journal-masthead {
    background-image:
      linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
      url("/assets/seo/hero-refugium-768.webp");
    background-image:
      linear-gradient(120deg, rgba(10, 12, 16, .97), rgba(10, 12, 16, .86)),
      image-set(
        url("/assets/seo/hero-refugium-768.avif") type("image/avif"),
        url("/assets/seo/hero-refugium-768.webp") type("image/webp")
      );
  }
}

/* International positioning: same visual system, language-aware line lengths */
body[data-locale="en"] .studio-positioning h1 { max-width: 760px; }
body[data-locale="vi"] .studio-positioning h1 { max-width: 820px; line-height: 1.28; }
body[data-locale="vi"] .studio-positioning-services { letter-spacing: .11em; }
@media (max-width: 680px) {
  body[data-locale="vi"] .studio-positioning h1 { max-width: 360px; font-size: clamp(1.15rem, 5.5vw, 1.48rem); }
  body[data-locale="vi"] .studio-positioning-services { max-width: 350px; letter-spacing: .08em; }
}

/* reviews-section:start */
.reviews-section {
  scroll-margin-top: calc(var(--header-height) + 12px);
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 16%, rgba(114, 102, 84, .11), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(52, 67, 84, .14), transparent 38%),
    #0b0e13;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(255,255,255,.025) 48%, transparent 49%),
    radial-gradient(circle at 72% 40%, rgba(255,255,255,.04), transparent 1.2px);
  background-size: 100% 100%, 38px 38px;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}
.reviews-section .section-shell {
  position: relative;
  z-index: 1;
}
.reviews-header {
  max-width: 760px;
  margin-bottom: clamp(48px, 6vw, 76px);
}
.reviews-title {
  max-width: 760px;
  margin-bottom: 24px;
}
.reviews-label {
  margin: 0 0 26px;
  color: rgba(244,241,234,.62);
  font-size: .72rem;
  font-weight: 560;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.reviews-intro {
  max-width: 620px;
  margin: 0;
  color: rgba(244,241,234,.68);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

.reviews-header--compact {
  margin-bottom: clamp(38px, 4.5vw, 56px);
}
.reviews-header--compact .reviews-title {
  margin-bottom: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.review-card {
  min-width: 0;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 2.5vw, 36px);
  border: 1px solid rgba(244,241,234,.17);
  background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008));
  transition: transform .35s cubic-bezier(.2,.75,.2,1), border-color .35s ease, background-color .35s ease;
}
.review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(214,193,157,.42);
  background-color: rgba(255,255,255,.018);
}
.review-card-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}
.review-monogram {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214,193,157,.42);
  border-radius: 50%;
  color: rgba(244,241,234,.82);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.45rem;
  font-weight: 400;
}
.review-name {
  margin: 0 0 7px;
  color: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 420;
  letter-spacing: .02em;
}
.review-stars {
  color: #d7bd91;
  font-size: .82rem;
  letter-spacing: .22em;
  white-space: nowrap;
}
.review-quote {
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(244,241,234,.76);
  font-size: .98rem;
  font-weight: 330;
  line-height: 1.78;
}
.review-card-footer {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 8px;
}
.review-card-footer::before {
  content: "";
  width: 38px;
  height: 1px;
  margin-bottom: 10px;
  background: rgba(214,193,157,.52);
}
.review-source {
  color: rgba(244,241,234,.62);
  font-size: .76rem;
  letter-spacing: .04em;
}
.review-translation {
  color: rgba(244,241,234,.42);
  font-size: .68rem;
  line-height: 1.45;
}
.reviews-actions {
  margin-top: clamp(42px, 5vw, 66px);
  padding-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(244,241,234,.12);
}
.reviews-link {
  position: relative;
  padding: 4px clamp(22px, 4vw, 52px) 10px;
  color: rgba(244,241,234,.78);
  font-size: .71rem;
  font-weight: 560;
  letter-spacing: .14em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.reviews-link + .reviews-link {
  border-left: 1px solid rgba(244,241,234,.16);
}
.reviews-link::after {
  content: "";
  position: absolute;
  left: clamp(22px, 4vw, 52px);
  right: 100%;
  bottom: 4px;
  height: 1px;
  background: #d7bd91;
  transition: right .3s cubic-bezier(.2,.75,.25,1);
}
.reviews-link:hover::after,
.reviews-link:focus-visible::after {
  right: clamp(22px, 4vw, 52px);
}
.reviews-note {
  margin: 25px 0 0;
  color: rgba(244,241,234,.38);
  font-size: .68rem;
  line-height: 1.55;
  text-align: center;
}
@media (max-width: 1180px) {
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-card { min-height: 360px; }
}
@media (max-width: 680px) {
  .reviews-header { margin-bottom: 42px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card { min-height: 0; padding: 26px 22px; }
  .review-card-head { margin-bottom: 24px; }
  .review-monogram { width: 56px; height: 56px; font-size: 1.25rem; }
  .reviews-actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .reviews-link { padding: 4px 8px 11px; }
  .reviews-link + .reviews-link { border-left: 0; }
  .reviews-link::after { left: 8px; }
  .reviews-link:hover::after,
  .reviews-link:focus-visible::after { right: 8px; }
}


/* Expandable reviews: four visible, additional reviews on demand */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.reviews-extra[hidden] {
  display: none;
}
.reviews-extra {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(12px);
  transition:
    grid-template-rows .48s cubic-bezier(.2,.75,.2,1),
    opacity .34s ease,
    transform .48s cubic-bezier(.2,.75,.2,1);
}
.reviews-extra.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}
.reviews-extra-inner {
  min-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-top: 16px;
}
.reviews-extra .review-card {
  width: calc((100% - 48px) / 4);
  min-height: 410px;
}
.reviews-more-control {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 3.5vw, 46px);
}
.reviews-toggle {
  appearance: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 44px;
  padding: 8px 6px 10px;
  border: 0;
  border-bottom: 1px solid rgba(214,193,157,.48);
  border-radius: 0;
  color: rgba(244,241,234,.82);
  background: transparent;
  font: inherit;
  font-size: .72rem;
  font-weight: 560;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s ease, border-color .25s ease;
}
.reviews-toggle:hover,
.reviews-toggle:focus-visible {
  color: var(--paper);
  border-bottom-color: #d7bd91;
}
.reviews-toggle:focus-visible {
  outline: 1px solid rgba(214,193,157,.82);
  outline-offset: 5px;
}
.reviews-toggle-icon {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .35s cubic-bezier(.2,.75,.2,1), margin-top .35s ease;
}
.reviews-toggle[aria-expanded="true"] .reviews-toggle-icon {
  margin-top: 4px;
  transform: rotate(225deg);
}
.reviews-more-control + .reviews-actions {
  margin-top: clamp(30px, 3vw, 44px);
}
@media (max-width: 1180px) {
  .reviews-extra .review-card {
    width: calc((100% - 16px) / 2);
    min-height: 360px;
  }
}
@media (max-width: 680px) {
  .reviews-extra-inner { padding-top: 12px; }
  .reviews-extra .review-card { width: 100%; min-height: 0; }
  .reviews-more-control { margin-top: 24px; }
  .reviews-toggle { max-width: 100%; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-extra,
  .reviews-toggle-icon {
    transition: none;
  }
}

/* reviews-section:end */


/* credits-section:start */
.credits-section {
  position: relative;
  overflow: hidden;
}
.credits-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(201,181,150,.08), transparent 0 36%),
    radial-gradient(circle at 84% 14%, rgba(201,181,150,.04), transparent 0 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  pointer-events: none;
}
.credits-section .section-shell { position: relative; z-index: 1; }
.credits-head {
  display: block;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.credits-intro {
  max-width: 620px;
  margin-left: auto;
}
.credits-note-inline {
  margin-top: 16px;
  font-size: .92rem;
  color: rgba(233,229,220,.62);
}
.credits-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) clamp(56px, 6vw, 88px) minmax(320px, .78fr);
  gap: clamp(24px, 4.6vw, 58px);
  align-items: start;
}
.credits-wave-column {
  position: relative;
  width: 100%;
  min-height: 100%;
  align-self: stretch;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 6px 0;
  pointer-events: none;
}
.credits-wave-column::before {
  content: "";
  position: absolute;
  inset: 4% 9% 4%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(211,187,151,.075), transparent 66%);
  filter: blur(7px);
  opacity: .7;
}
.credits-waveform-image {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(72px, 6.8vw, 104px);
  height: 100%;
  min-height: 680px;
  object-fit: fill;
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(224,189,121,.26));
}

.release-spotlight {
  --release-core: rgba(211, 187, 151, .9);
  --release-glow: rgba(211, 187, 151, .34);
  --release-shadow: rgba(10, 12, 16, .88);
  --release-line: rgba(211, 187, 151, .32);
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.release-spotlight[data-theme="ember"] {
  --release-core: rgba(215, 154, 104, .96);
  --release-glow: rgba(215, 154, 104, .32);
  --release-line: rgba(215, 154, 104, .28);
}
.release-spotlight[data-theme="tide"] {
  --release-core: rgba(140, 181, 190, .92);
  --release-glow: rgba(83, 151, 177, .28);
  --release-line: rgba(140, 181, 190, .28);
}
.release-spotlight[data-theme="nocturne"] {
  --release-core: rgba(176, 173, 216, .9);
  --release-glow: rgba(120, 124, 201, .26);
  --release-line: rgba(176, 173, 216, .28);
}
.release-service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-bottom: 18px;
}
.release-service-line span,
.release-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(201,181,150,.28);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(233,229,220,.78);
}
.release-art {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(255,255,255,.1);
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 34%, var(--release-glow), transparent 0 16%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    linear-gradient(180deg, #16171b 0%, #0e1014 100%);
}
.release-art::before,
.release-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.release-art::before {
  background: radial-gradient(circle at 60% 34%, rgba(255,255,255,.46), transparent 0 1.2%, transparent 1.4%), radial-gradient(circle at 60% 34%, var(--release-glow), transparent 0 10%, transparent 24%);
}
.release-art::after {
  opacity: .64;
  background: linear-gradient(180deg, rgba(255,255,255,.02), transparent 16%), repeating-linear-gradient(180deg, rgba(255,255,255,.014) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
}
.release-art-kicker {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(233,229,220,.72);
}
.release-art-label {
  position: absolute;
  inset: 28px auto auto 28px;
  z-index: 2;
  display: grid;
  gap: 8px;
  margin-top: 40px;
}
.release-art-label span {
  font-size: .78rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(233,229,220,.68);
}
.release-art-label strong {
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 360;
  letter-spacing: .02em;
  color: var(--paper);
}
.release-art-orb {
  position: absolute;
  top: 30%;
  left: 58%;
  width: clamp(18px, 2vw, 24px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.92), rgba(255,255,255,.6) 32%, var(--release-core) 62%, rgba(255,255,255,0) 78%);
  box-shadow: 0 0 24px var(--release-glow), 0 0 68px rgba(255,255,255,.09);
  transform: translate(-50%, -50%);
}
.release-art-ridge {
  position: absolute;
  left: 50%;
  width: 135%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.release-art-ridge-a {
  bottom: -12%;
  height: 44%;
  opacity: .68;
}
.release-art-ridge-b {
  bottom: 6%;
  height: 26%;
  width: 118%;
  opacity: .48;
}
.release-art-mark {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: 34px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid var(--release-line);
}
.release-art-mark::before,
.release-art-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid var(--release-line);
  border-bottom: 0;
}
.release-art-mark::before {
  bottom: 7px;
  width: 10px;
  height: 10px;
  border-radius: 10px 10px 0 0;
}
.release-art-mark::after {
  bottom: 8px;
  width: 18px;
  height: 18px;
  border-radius: 18px 18px 0 0;
}
.release-spotlight-copy {
  padding-top: 22px;
}
.credits-kicker {
  margin: 0 0 8px;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(233,229,220,.58);
}
.release-display-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  font-weight: 320;
  letter-spacing: -.04em;
}
.release-meta {
  margin: 14px 0 0;
  color: rgba(233,229,220,.72);
}
.release-description {
  max-width: 55ch;
  margin: 18px 0 0;
  color: rgba(233,229,220,.84);
}
.release-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.release-actions { margin-top: 22px; }
.credits-timeline {
  position: relative;
  padding: 6px 0 0 20px;
}
.credits-timeline::before {
  content: "";
  position: absolute;
  inset: 86px auto 18px 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(201,181,150,.34), rgba(201,181,150,.08));
}
.credits-timeline-head {
  margin-bottom: 22px;
}
.credits-side-label {
  margin: 0;
  font-size: .82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(233,229,220,.74);
}
.credits-list {
  display: grid;
  gap: 2px;
}
.credits-timeline {
  align-self: stretch;
  display: flex;
  flex-direction: column;
}
.credits-list--real {
  flex: 1;
  align-content: start;
  gap: clamp(64px, 8vw, 112px);
}
.credit-entry {
  position: relative;
  padding: 0 0 20px 36px;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
  cursor: pointer;
  transition: transform .28s ease, opacity .28s ease, color .28s ease;
}
.credit-entry::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -18px;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(201,181,150,.54);
  background: rgba(10,12,16,1);
  box-shadow: 0 0 0 6px rgba(10,12,16,1);
  transition: transform .28s ease, background-color .28s ease, box-shadow .28s ease;
}
.credit-entry:hover,
.credit-entry:focus-visible,
.credit-entry.is-active {
  color: var(--paper);
  transform: translateX(6px);
}
.credit-entry:hover::before,
.credit-entry:focus-visible::before,
.credit-entry.is-active::before {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(10,12,16,1), 0 0 18px rgba(201,181,150,.28);
  transform: scale(1.08);
}
.credit-entry:focus-visible {
  outline: 1px solid rgba(201,181,150,.48);
  outline-offset: 8px;
}
.credit-entry-year,
.credit-entry-roles {
  display: block;
}
.credit-entry-year {
  margin-bottom: 8px;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(233,229,220,.52);
}
.credit-entry-artist {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.08;
  font-weight: 330;
  letter-spacing: -.03em;
}
.credit-entry-release {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(233,229,220,.82);
}
.credit-entry-roles {
  margin-top: 12px;
  font-size: .71rem;
  letter-spacing: .18em;
  line-height: 1.7;
  text-transform: uppercase;
  color: rgba(233,229,220,.54);
}
@media (max-width: 1080px) {
  .credits-head,
  .credits-stage {
    grid-template-columns: 1fr;
  }
  .credits-intro {
    margin-left: 0;
  }
  .credits-wave-column {
    width: min(120px, 34vw);
    height: 260px;
    min-height: 260px;
    margin: 0 auto;
  }
  .credits-waveform-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: fill;
  }
  .credits-timeline {
    padding-top: 8px;
  }
}
@media (max-width: 680px) {
  .credits-wave-column {
    width: 88px;
    height: 210px;
    min-height: 210px;
    margin: -4px auto 2px;
  }
  .release-spotlight {
    padding: 18px;
  }
  .release-display-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .credits-list--real {
    gap: 42px;
  }
  .credit-entry {
    padding-left: 28px;
  }
  .credit-entry::before {
    left: -22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .credit-entry,
  .credit-entry::before {
    transition: none;
  }
}
/* credits-section:end */

/* release-project-media:start */
.release-service-line {
  align-items: center;
  gap: 12px;
  min-height: 30px;
}
.release-service-caption {
  padding: 0 !important;
  border: 0 !important;
  color: rgba(233,229,220,.5) !important;
}
.release-service-line strong {
  font-size: .72rem;
  font-weight: 560;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
}

.release-art--media::before,
.release-art--media::after {
  opacity: 0;
}
.release-media-set {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  background: #090a0c;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .46s cubic-bezier(.2,.75,.2,1), visibility .46s ease;
}
.release-media-set.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.release-media-single,
.release-media-single picture {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
}
.release-media-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-media-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #090a0c;
}
.release-slides,
.release-slide,
.release-slide picture {
  position: absolute;
  inset: 0;
  margin: 0;
}
.release-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .58s cubic-bezier(.2,.75,.2,1), visibility .58s ease;
}
.release-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.release-slide picture {
  z-index: 2;
  display: block;
}
.release-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.release-slide--edition {
  display: grid;
  place-items: center;
  background: #090a0c;
}
.release-slide--edition picture {
  inset: 5%;
  z-index: 3;
}
.release-slide--edition img {
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.55));
}
.release-slide-backdrop {
  position: absolute;
  inset: -8%;
  z-index: 1;
  background-position: center;
  background-size: cover;
  filter: blur(24px) brightness(.36) saturate(.72);
  transform: scale(1.08);
  opacity: .78;
}
.release-slide-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,.25), rgba(5,6,8,.48));
}
.release-slider-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 5px 7px;
  border: 1px solid rgba(235,225,207,.2);
  background: rgba(8,9,11,.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.release-slider-arrow,
.release-slider-dot {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(244,241,234,.78);
  cursor: pointer;
}
.release-slider-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 1rem;
  line-height: 1;
  transition: color .22s ease, transform .22s ease;
}
.release-slider-arrow:hover,
.release-slider-arrow:focus-visible {
  color: var(--paper);
  transform: translateY(-1px);
}
.release-slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.release-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(233,229,220,.58);
  border-radius: 50%;
  transition: background-color .22s ease, transform .22s ease;
}
.release-slider-dot.is-active {
  background: var(--accent);
  transform: scale(1.12);
}
.release-slider-count {
  min-width: 42px;
  font-size: .62rem;
  letter-spacing: .12em;
  text-align: center;
  color: rgba(244,241,234,.68);
}
.release-slider-arrow:focus-visible,
.release-slider-dot:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}
.release-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}
.release-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,181,150,.34);
  text-decoration: none;
  font-size: .7rem;
  font-weight: 560;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(244,241,234,.78);
  transition: color .24s ease, border-color .24s ease;
}
.release-action--primary {
  padding-inline: 14px;
  border: 1px solid rgba(201,181,150,.42);
}
.release-action:hover,
.release-action:focus-visible {
  color: var(--paper);
  border-color: var(--accent);
}
.release-action:focus-visible,
.release-inquiry-link:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 4px;
}
.release-inquiry-link {
  font-size: .72rem;
}
@media (max-width: 680px) {
  .release-slider-controls {
    right: 10px;
    bottom: 10px;
  }
  .release-slide--edition picture {
    inset: 4%;
  }
  .release-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .release-action,
  .release-action--primary {
    width: 100%;
    justify-content: space-between;
  }
}
@media (prefers-reduced-motion: reduce) {
  .release-slide,
  .release-media-set,
  .release-slider-arrow,
  .release-slider-dot {
    transition: none;
  }
}
/* release-project-media:end */

@media (max-width: 680px) {
  .credits-head .section-title {
    max-width: 100%;
    font-size: clamp(2rem, 8.8vw, 2.5rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    hyphens: manual;
  }
}

@media (max-width: 1080px) {
  .credits-head {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .credits-head > * {
    flex: 0 1 auto;
    width: 100%;
  }
}

/* Optional release links must remain hidden when a project has no secondary source. */
.release-action[hidden] {
  display: none !important;
}


/* mobile-experience-refinement:start */

@media (max-width: 760px) {
  .credits-section,
  .reviews-section {
    padding-block: 76px;
  }

  /* Do not leave important mobile content dependent on an observer animation. */
  .credits-head.reveal,
  .credits-stage.reveal,
  .reviews-header.reveal,
  .reviews-grid.reveal,
  .reviews-actions.reveal,
  .reviews-note.reveal {
    opacity: 1;
    transform: none;
  }

  /* Werk: compact release selector, followed by one clear active release. */
  .credits-head {
    gap: 22px;
    margin-bottom: 28px;
  }
  .credits-head .eyebrow {
    margin-bottom: 20px;
  }
  .credits-intro,
  .credits-intro p {
    margin-bottom: 0;
  }
  .credits-intro {
    font-size: 1rem;
    line-height: 1.62;
  }
  .credits-stage {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .credits-wave-column {
    display: none;
  }
  .credits-wave-column::before {
    inset: 12px 6%;
    background: radial-gradient(ellipse at center, rgba(211,187,151,.09), transparent 68%);
    filter: blur(6px);
  }
  .credits-waveform-image {
    width: 58px;
    height: min(82vw, 340px);
    min-height: 0;
    object-fit: fill;
    transform: rotate(90deg);
    transform-origin: center;
    filter: drop-shadow(0 0 9px rgba(224,189,121,.22));
  }
  .credits-timeline {
    order: 1;
    width: 100%;
    padding: 0;
  }
  .credits-timeline::before {
    display: none;
  }
  .credits-timeline-head {
    margin: 0 0 14px;
  }
  
  .credits-list--real {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 12px;
    margin: 0 -2px;
  }
  .credits-list--real::-webkit-scrollbar,
  .reviews-grid::-webkit-scrollbar {
    display: none;
  }
  .credit-entry {
    flex: 0 0 min(78vw, 286px);
    min-height: 142px;
    padding: 17px 16px 16px;
    border: 1px solid rgba(233,229,220,.13);
    background: rgba(255,255,255,.018);
    scroll-snap-align: start;
    transform: none;
  }
  .credit-entry::before {
    display: none;
  }
  .credit-entry:hover,
  .credit-entry:focus-visible,
  .credit-entry.is-active {
    transform: none;
  }
  .credit-entry.is-active {
    border-color: rgba(201,181,150,.62);
    background: linear-gradient(145deg, rgba(201,181,150,.09), rgba(255,255,255,.018));
  }
  .credit-entry-year {
    margin-bottom: 7px;
    font-size: .66rem;
  }
  .credit-entry-artist {
    font-size: 1.26rem;
  }
  .credit-entry-release {
    margin-top: 2px;
    font-size: .98rem;
    line-height: 1.35;
  }
  .credit-entry-roles {
    margin-top: 11px;
    font-size: .62rem;
    line-height: 1.55;
  }
  .release-spotlight {
    order: 2;
    padding: 0;
    border: 0;
    background: transparent;
  }
  .release-service-line {
    min-height: 0;
    margin-bottom: 13px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(233,229,220,.12);
  }
  .release-service-line strong {
    font-size: .67rem;
    line-height: 1.45;
  }
  .release-art {
    border-color: rgba(233,229,220,.18);
  }
  .release-media-set.is-active,
  .release-media-single,
  .release-media-single picture {
    display: block;
  }
  .release-spotlight-copy {
    padding-top: 20px;
  }
  .credits-kicker {
    margin-bottom: 10px;
    font-size: .65rem;
    line-height: 1.55;
  }
  .release-display-title {
    font-size: clamp(1.85rem, 8.6vw, 2.45rem);
    line-height: 1.06;
  }
  .release-meta {
    margin-top: 11px;
    font-size: .88rem;
  }
  .release-description {
    margin-top: 15px;
    font-size: .94rem;
    line-height: 1.65;
  }
  .release-tags {
    gap: 7px;
    margin-top: 18px;
  }
  .release-tag {
    min-height: 25px;
    padding: 3px 8px;
    font-size: .57rem;
  }
  .release-actions {
    margin-top: 20px;
  }

  /* Stimmen: one readable card at a time instead of a very long stack. */
  .reviews-header {
    margin-bottom: 26px;
  }

  .reviews-header--compact {
    margin-bottom: 24px;
  }
  .reviews-header--compact .reviews-title {
    margin-bottom: 0;
  }
  .reviews-header .eyebrow {
    margin-bottom: 20px;
  }
  .reviews-title {
    margin-bottom: 16px;
    font-size: clamp(2.1rem, 9.2vw, 2.75rem);
    line-height: 1.02;
  }
  .reviews-label {
    margin-bottom: 13px;
    font-size: .64rem;
  }
  .reviews-intro {
    font-size: .98rem;
    line-height: 1.6;
  }
  
  
  .reviews-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 2px 14px 14px;
    margin-inline: -14px;
    touch-action: pan-x pan-y;
  }
  .review-card {
    flex: 0 0 min(86vw, 340px);
    min-height: 360px;
    padding: 24px 20px;
    scroll-snap-align: center;
  }
  .review-card:hover {
    transform: none;
  }
  .review-card-head {
    gap: 14px;
    margin-bottom: 22px;
  }
  .review-monogram {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }
  .review-name {
    font-size: .96rem;
  }
  .review-stars {
    font-size: .73rem;
  }
  .review-quote {
    font-size: .93rem;
    line-height: 1.68;
  }
  .review-card-footer {
    padding-top: 22px;
  }
  .reviews-more-control {
    margin-top: 16px;
  }
  .reviews-extra-inner {
    justify-content: flex-start;
    padding: 12px 14px 0;
    margin-inline: -14px;
  }
  .reviews-extra .review-card {
    width: min(86vw, 340px);
    min-height: 300px;
  }
  .reviews-actions {
    margin-top: 30px;
    padding-top: 24px;
    gap: 10px;
  }
  .reviews-link {
    width: 100%;
    padding: 12px 10px;
    border: 1px solid rgba(244,241,234,.14);
    font-size: .64rem;
  }
  .reviews-link + .reviews-link {
    border-left: 1px solid rgba(244,241,234,.14);
  }
  .reviews-link::after {
    display: none;
  }
  .reviews-note {
    margin-top: 18px;
    text-align: left;
  }
}
/* mobile-experience-refinement:end */

/* Robust artwork fallbacks for browsers that delay images in hidden absolute layers. */
.release-media-set[data-release-media-set="syns"] {
  background: #090a0c url("/assets/releases/2094-syns-1400.webp") center / cover no-repeat;
}
.release-media-set[data-release-media-set="mood-selector"] {
  background: #090a0c url("/assets/releases/klangchaos-mood-selector-1400.webp") center / cover no-repeat;
}
.release-media-set[data-release-media-set="paula"] {
  background: #090a0c url("/assets/releases/paula-blaues-gold-klangchaos-remix-1400.webp") center / cover no-repeat;
}
.release-media-set[data-release-media-set="wrong"] {
  background: #090a0c url("/assets/releases/klangchaos-wrong-cover-1400.webp") center / cover no-repeat;
}
