:root {
  --ink: #050505;
  --paper: #f4f3ed;
  --muted: #6f706e;
  --line: rgba(5, 5, 5, 0.12);
  --soft: #ebe7de;
  --sage: #697a69;
  --body-font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-font: "Arial Narrow", Impact, ui-sans-serif, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.seren-site {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

body.seren-site.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  color: var(--paper);
}

.preloader svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 110vh;
}

#preloaderSvg {
  fill: var(--ink);
}

.preloader.is-leaving {
  transform: translateY(-1500px);
  transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}

.preloader-heading {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.load-text {
  display: flex;
  gap: 12px;
  color: var(--paper);
  font-family: var(--body-font);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 200;
  letter-spacing: 15px;
  text-transform: uppercase;
}

.load-text span {
  animation: loading 1s infinite alternate;
}

.preloader-heading .load-text.is-leaving {
  opacity: 0;
  transform: translateY(-100px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.load-text span:nth-child(1) {
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes loading {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

body.seren-site.cursor-ready,
body.seren-site.cursor-ready a,
body.seren-site.cursor-ready button,
body.seren-site.cursor-ready .is-clickable-card,
body.seren-site.cursor-ready .hero-photo-card {
  cursor: none;
}

#magic-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 40px;
  height: 40px;
  pointer-events: none;
}

#ball {
  position: fixed;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(5, 5, 5, 0.38);
  border-radius: 50%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-80px, -80px, 0);
  transition:
    opacity 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
  will-change: transform, opacity;
}

#ball.hovered {
  border-color: rgba(105, 122, 105, 0.78);
  background: rgba(105, 122, 105, 0.08);
  opacity: 1 !important;
}

#ball.on-dark {
  border-color: rgba(244, 243, 237, 0.82);
  background: rgba(244, 243, 237, 0.08);
}

#ball.on-dark.hovered {
  border-color: rgba(244, 243, 237, 0.94);
  background: rgba(244, 243, 237, 0.12);
}

.seren-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 243, 237, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(5, 5, 5, 0.06);
}

.seren-nav {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.seren-logo {
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1px;
}

.seren-logo small {
  position: relative;
  top: -13px;
  margin-left: 2px;
  font-size: 10px;
  font-weight: 700;
}

.seren-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 26px;
}

.seren-menu a {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.seren-menu a:hover,
.seren-menu a.active {
  color: var(--sage);
}

.hero-home {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: 86px 0 70px;
  overflow: hidden;
  background: var(--paper);
}

.hero-name {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(82px, 14vw, 208px);
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(310px, 470px) 1fr;
  gap: 54px;
  align-items: center;
  margin-top: -86px;
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo-card {
  position: relative;
  margin: 0 auto;
  width: min(100%, 500px);
  aspect-ratio: 0.78;
  overflow: hidden;
  border: 3px solid #fff;
  border-radius: 18px;
  background: #dfd7cd;
  box-shadow: 0 26px 60px rgba(5, 5, 5, 0.12);
  transform: rotate(10deg);
  transform-origin: center;
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
}

.hero-photo-card:hover {
  box-shadow: 0 30px 70px rgba(5, 5, 5, 0.16);
  transform: rotate(0deg);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  transform: scale(1.08);
  transition: transform 0.5s ease;
}

.hero-photo-card:hover img {
  transform: scale(1.03);
}

.hero-review {
  position: relative;
  padding-top: 130px;
}

.avatar-row {
  display: flex;
  margin-bottom: 28px;
}

.avatar-row img {
  width: 56px;
  height: 56px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  object-fit: cover;
}

.avatar-row img + img {
  margin-left: -12px;
}

.hero-review strong,
.hero-side strong {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 700;
}

.hero-review strong span {
  color: #9c9d9e;
  font-weight: 600;
}

.hero-review p,
.hero-side p {
  max-width: 350px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-side {
  padding-top: 112px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--sage);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.seren-button {
  display: inline-flex;
  min-width: 186px;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.seren-button:hover {
  background: transparent;
  color: var(--ink);
}

.seren-button.small {
  min-width: auto;
  min-height: 54px;
  margin-top: 0;
  padding: 0 18px;
  font-size: 14px;
}

.seren-button.secondary {
  background: transparent;
  color: var(--ink);
}

.seren-button.secondary:hover {
  background: var(--ink);
  color: #fff;
}

.seren-button.secondary.light {
  border-color: rgba(244, 243, 237, 0.65);
  color: var(--paper);
}

.seren-button.secondary.light:hover {
  background: var(--paper);
  color: var(--ink);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.story-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
}

.story-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.story-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.section-block {
  padding: 96px 0;
  background: var(--paper);
}

.section-block.alt {
  background: var(--ink);
  color: var(--paper);
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section-block.alt .section-kicker {
  color: #d6c7a5;
}

.section-title-custom {
  max-width: 1000px;
  margin: 0 0 24px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-block.alt .section-title-custom {
  color: var(--paper);
}

.lead-text {
  max-width: 820px;
  color: inherit;
  font-size: 20px;
  line-height: 1.75;
  opacity: 0.78;
}

.split-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 28px;
}

.split-copy p,
.video-panel p,
.media-body p,
.archive-note,
.theme-list li,
.timeline-list p,
.audience-grid span,
.trust-card span {
  color: inherit;
  line-height: 1.75;
  opacity: 0.76;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  border-left: 1px solid var(--line);
  padding: 12px 16px;
}

.trust-card:first-child {
  border-left: 0;
}

.trust-card strong,
.experience-item strong,
.audience-grid strong,
.media-body em,
.archive-meta,
.timeline-list time {
  display: block;
  color: var(--sage);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-card strong {
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.story-grid,
.teaser-grid,
.publication-grid,
.cv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.work-grid,
.featured-grid,
.archive-grid,
.audience-grid,
.bio-grid,
.media-grid {
  display: grid;
  gap: 22px;
  margin-top: 48px;
}

.work-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.featured-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.archive-grid,
.media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.bio-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.story-card,
.teaser-card,
.publication-card,
.cv-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  background: #fff;
}

.section-block.alt .story-card,
.section-block.alt .teaser-card,
.section-block.alt .publication-card,
.section-block.alt .cv-card {
  border-color: rgba(244, 243, 237, 0.14);
  background: rgba(244, 243, 237, 0.06);
}

.story-card span,
.teaser-card span,
.publication-card span,
.cv-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--sage);
  font-family: var(--display-font);
  font-size: 18px;
}

.section-block.alt .story-card span,
.section-block.alt .teaser-card span,
.section-block.alt .publication-card span,
.section-block.alt .cv-card span {
  color: #d6c7a5;
}

.story-card h3,
.teaser-card h3,
.publication-card h3,
.cv-card h3 {
  margin: 34px 0 14px;
  color: inherit;
  font-family: var(--display-font);
  font-size: 31px;
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
}

.story-card p,
.teaser-card p,
.publication-card p,
.cv-card p,
.cv-list li {
  color: inherit;
  line-height: 1.7;
  opacity: 0.76;
}

.work-grid .teaser-card h3,
.featured-grid .publication-card h3,
.archive-grid .publication-card h3 {
  font-size: 27px;
}

.feature-card span,
.archive-tag {
  width: auto !important;
  min-width: 44px;
  border-radius: 999px !important;
  padding: 0 14px;
  font-family: var(--body-font) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.experience-list,
.timeline-list {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.experience-item,
.timeline-list article {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.experience-item strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.experience-item p,
.timeline-list p {
  margin: 0;
}

.timeline-list article {
  grid-template-columns: 180px 0.8fr 1.4fr;
}

.timeline-list strong {
  color: inherit;
  font-size: 18px;
}

.section-block.alt .timeline-list,
.section-block.alt .experience-list {
  border-color: rgba(244, 243, 237, 0.18);
}

.section-block.alt .timeline-list article,
.section-block.alt .experience-item {
  border-color: rgba(244, 243, 237, 0.18);
}

.archive-note {
  max-width: 760px;
  margin-top: 28px;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 24px;
  margin-top: 34px;
}

.visual-story-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #d8d2c9;
}

.visual-story-card.wide {
  min-height: 520px;
}

.visual-story-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.visual-story-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-story-card:not(.wide) img {
  object-position: 44% 50%;
}

.visual-story-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--paper);
}

.visual-story-card figcaption span {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 243, 237, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.visual-story-card figcaption strong {
  display: block;
  max-width: 680px;
  font-family: var(--display-font);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.video-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  gap: 46px;
  align-items: center;
}

.video-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(244, 243, 237, 0.16);
  border-radius: 18px;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(244, 243, 237, 0.1), rgba(244, 243, 237, 0.02)),
    #121212;
  color: var(--paper);
}

.video-card i {
  margin-bottom: auto;
  color: #d6c7a5;
  font-size: 56px;
}

.video-card strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.video-card span {
  margin-top: 14px;
  color: inherit;
  opacity: 0.72;
}

.media-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.media-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--soft);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-thumb {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.82), rgba(105, 122, 105, 0.72)),
    var(--ink);
  color: var(--paper);
}

.text-thumb span {
  margin-bottom: 8px;
  color: #d6c7a5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.text-thumb strong {
  color: var(--paper);
  font-family: var(--display-font);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.05;
  text-transform: uppercase;
}

.media-body {
  padding: 26px;
}

.media-body h3 {
  margin: 12px 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
}

.topic-strip {
  margin: 36px 0 28px;
}

.section-block.alt .topic-strip span {
  border-color: rgba(244, 243, 237, 0.22);
  color: var(--paper);
}

.audience-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.audience-grid strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.archive-toolbar button {
  border: 1px solid rgba(244, 243, 237, 0.28);
  border-radius: 999px;
  padding: 11px 15px;
  background: transparent;
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.archive-toolbar button.active,
.archive-toolbar button:hover {
  background: var(--paper);
  color: var(--ink);
}

.archive-item {
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.is-clickable-card {
  cursor: pointer;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.is-clickable-card:hover,
.is-clickable-card:focus-visible {
  border-color: rgba(5, 5, 5, 0.28);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.08);
  transform: translateY(-3px);
  outline: none;
}

.section-block.alt .is-clickable-card:hover,
.section-block.alt .is-clickable-card:focus-visible {
  border-color: rgba(244, 243, 237, 0.35);
}

.archive-item.is-hidden,
.archive-item[hidden] {
  display: none;
}

.archive-meta {
  margin: 0 0 14px;
  color: var(--sage);
  line-height: 1.5;
}

.section-block.alt .archive-meta,
.section-block.alt .trust-card strong {
  color: #d6c7a5;
}

.audio-card,
.video-archive-card {
  min-height: 280px;
}

.theme-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.theme-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

.section-block.alt .theme-list li {
  border-color: rgba(244, 243, 237, 0.18);
}

.theme-list.columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-list.columns li {
  border-radius: 18px;
  padding: 16px;
}

.link-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.publication-card .link-line + .link-line {
  margin-left: 18px;
}

.page-hero {
  padding: 92px 0 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 600;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 780px;
  margin-top: 26px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.7;
}

.cv-section-title {
  margin: 0 0 28px;
  font-family: var(--display-font);
  font-size: 38px;
  text-transform: uppercase;
}

.cv-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cv-list li {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.cv-list strong {
  display: block;
  color: inherit;
  font-size: 18px;
}

.cv-list em {
  display: block;
  margin-bottom: 6px;
  color: var(--sage);
  font-style: normal;
  font-weight: 700;
}

.pub-category {
  margin-top: 70px;
}

.pub-category:first-of-type {
  margin-top: 42px;
}

.pub-category h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 48px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-block.alt .pub-category h2 {
  color: var(--paper);
}

.contact-footer {
  padding: 70px 0;
  background: var(--ink);
  color: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-inner h2 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display-font);
  font-size: clamp(44px, 8vw, 120px);
  text-transform: uppercase;
}

.footer-inner a {
  color: var(--paper);
}

.contact-layout {
  align-items: flex-start;
}

.contact-layout > div,
.contact-form {
  flex: 1 1 0;
}

.contact-layout p:not(.section-kicker) {
  max-width: 620px;
  color: var(--paper);
  line-height: 1.75;
  opacity: 0.76;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: rgba(244, 243, 237, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 243, 237, 0.22);
  border-radius: 0;
  background: rgba(244, 243, 237, 0.06);
  color: var(--paper);
  font: inherit;
  min-height: 52px;
  padding: 12px 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
}

.contact-form option {
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 243, 237, 0.72);
}

.contact-form button {
  justify-self: start;
}

@media (max-width: 1199px) {
  .hero-layout {
    margin-top: -56px;
    gap: 30px;
  }

  .hero-review p,
  .hero-side p {
    font-size: 18px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .seren-nav {
    min-height: auto;
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .seren-menu {
    width: 100%;
    gap: 18px;
    justify-content: flex-start;
  }

  .hero-home {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-name {
    white-space: normal;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .hero-photo-card {
    max-width: 430px;
    transform: rotate(0);
  }

  .hero-photo-card img {
    transform: scale(1.08);
  }

  .hero-review,
  .hero-side {
    padding-top: 0;
  }

  .story-grid,
  .teaser-grid,
  .publication-grid,
  .cv-grid,
  .work-grid,
  .visual-story-grid,
  .featured-grid,
  .archive-grid,
  .compact-archive,
  .media-grid,
  .audience-grid,
  .bio-grid {
    grid-template-columns: 1fr;
  }

  .split-copy,
  .video-panel {
    grid-template-columns: 1fr;
  }

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

  .trust-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-card:first-child {
    border-top: 0;
  }

  .experience-item,
  .timeline-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: calc(100% - 40px);
  }

  .seren-logo {
    font-size: 30px;
  }

  .seren-menu {
    display: grid;
    gap: 12px 16px;
    grid-template-columns: repeat(3, auto);
    justify-content: flex-start;
  }

  .seren-menu a {
    font-size: 12px;
  }

  .hero-home {
    padding-bottom: 52px;
  }

  .hero-name {
    font-size: clamp(58px, 20vw, 84px);
  }

  .hero-photo-card {
    width: 92%;
  }

  .hero-review strong,
  .hero-side strong {
    font-size: 23px;
  }

  .hero-review p,
  .hero-side p,
  .page-hero p,
  .lead-text {
    font-size: 17px;
  }

  .seren-button {
    min-height: 62px;
  }

  .seren-button.small {
    width: 100%;
  }

  .button-row {
    width: 100%;
  }

  .archive-toolbar button {
    flex: 1 1 auto;
    font-size: 12px;
  }

  .section-block {
    padding: 72px 0;
  }

  .story-card,
  .teaser-card,
  .publication-card,
  .cv-card {
    padding: 24px;
  }

  .visual-story-card,
  .visual-story-card.wide {
    min-height: 420px;
  }

  .publication-card .link-line {
    display: flex;
  }

  .publication-card .link-line + .link-line {
    margin-left: 0;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    justify-self: stretch;
  }

  .text-thumb strong,
  .video-card strong {
    font-size: 28px;
  }
}

@media (hover: none), (pointer: coarse) {
  #magic-cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .load-text span {
    animation: none;
  }

  .preloader {
    display: none;
  }
}

/* Compact scale pass */
body.seren-site {
  font-size: 15px;
  line-height: 1.55;
}

.seren-nav {
  min-height: 74px;
  gap: 22px;
}

.seren-logo {
  font-size: 28px;
}

.seren-logo small {
  font-size: 8px;
}

.seren-menu {
  gap: 20px;
}

.seren-menu a {
  font-size: 13px;
}

.hero-home {
  min-height: 690px;
  padding: 54px 0 50px;
}

.hero-name {
  font-size: clamp(54px, 9.4vw, 136px);
}

.hero-layout {
  gap: 38px;
  margin-top: -56px;
}

.hero-photo-card {
  width: min(100%, 360px);
}

.hero-review,
.hero-side {
  padding-top: 82px;
}

.hero-review strong,
.hero-side strong {
  font-size: 22px;
}

.hero-review p,
.hero-side p {
  max-width: 310px;
  font-size: 17px;
  line-height: 1.5;
}

.hero-badge {
  padding: 8px 13px;
  font-size: 11px;
}

.seren-button {
  min-height: 58px;
  padding: 0 18px;
  font-size: 14px;
}

.seren-button.small {
  min-height: 44px;
  padding: 0 14px;
  font-size: 12px;
}

.button-row {
  gap: 10px;
  margin-top: 18px;
}

.trust-card {
  padding: 20px 0;
}

.trust-card strong {
  font-size: 12px;
}

.section-block {
  padding: 66px 0;
}

.section-kicker {
  margin-bottom: 12px;
  font-size: 12px;
}

.section-title-custom {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.lead-text,
.page-hero p {
  font-size: 17px;
  line-height: 1.58;
}

.story-grid,
.teaser-grid,
.publication-grid,
.cv-grid,
.work-grid,
.featured-grid,
.archive-grid,
.compact-archive,
.media-grid,
.audience-grid,
.bio-grid {
  gap: 18px;
  margin-top: 32px;
}

.story-card,
.teaser-card,
.publication-card,
.cv-card {
  padding: 22px;
}

.story-card span,
.teaser-card span,
.publication-card span,
.cv-card span {
  width: 34px;
  height: 34px;
  font-size: 14px;
}

.story-card h3,
.teaser-card h3,
.publication-card h3,
.cv-card h3 {
  margin: 24px 0 10px;
  font-size: 23px;
  line-height: 1.12;
}

.featured-grid .publication-card h3,
.archive-grid .publication-card h3 {
  font-size: 22px;
}

.story-card p,
.teaser-card p,
.publication-card p,
.cv-card p,
.experience-item p,
.timeline-list p,
.media-body p {
  font-size: 14px;
  line-height: 1.58;
}

.experience-list,
.timeline-list {
  margin-top: 32px;
}

.experience-item,
.timeline-list article {
  gap: 18px;
  padding: 17px 0;
}

.experience-item strong,
.audience-grid strong {
  font-size: 15px;
}

.archive-note {
  margin-top: 20px;
}

.visual-story-grid {
  gap: 18px;
  margin-top: 24px;
}

.visual-story-card {
  min-height: 320px;
}

.visual-story-card.wide {
  min-height: 390px;
}

.visual-story-card figcaption {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.visual-story-card figcaption strong {
  font-size: clamp(20px, 2.4vw, 32px);
}

.video-panel {
  gap: 28px;
}

.video-card {
  min-height: 210px;
  padding: 22px;
}

.video-card i {
  font-size: 40px;
}

.video-card strong,
.text-thumb strong {
  font-size: 26px;
}

.media-thumb {
  min-height: 220px;
}

.media-body {
  padding: 20px;
}

.media-body h3 {
  font-size: 23px;
}

.archive-toolbar {
  gap: 8px;
  margin-top: 20px;
}

.archive-toolbar button {
  padding: 8px 12px;
  font-size: 11px;
}

.archive-meta {
  font-size: 12px;
}

.page-hero {
  padding: 58px 0 50px;
}

.page-hero h1 {
  font-size: clamp(42px, 7.6vw, 105px);
}

.page-hero p {
  max-width: 700px;
  margin-top: 18px;
}

.cv-section-title {
  margin-bottom: 18px;
  font-size: 28px;
}

.cv-list {
  gap: 12px;
}

.cv-list li,
.theme-list li {
  padding-top: 12px;
}

.pub-category h2 {
  margin-bottom: 18px;
  font-size: 34px;
}

.contact-footer {
  padding: 52px 0;
}

.footer-inner {
  gap: 22px;
}

.footer-inner h2 {
  font-size: clamp(34px, 6vw, 82px);
}

.footer-inner p,
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 44px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 108px;
}

@media (max-width: 1199px) {
  .hero-layout {
    margin-top: -34px;
    gap: 24px;
  }

  .hero-review p,
  .hero-side p {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .seren-nav {
    padding: 18px 0;
  }

  .seren-menu {
    gap: 14px;
  }

  .hero-home {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-layout {
    margin-top: 18px;
  }

  .hero-photo-card {
    max-width: 360px;
  }

  .hero-review,
  .hero-side {
    padding-top: 0;
  }

  .visual-story-card,
  .visual-story-card.wide {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: calc(100% - 32px);
  }

  .seren-logo {
    font-size: 26px;
  }

  .seren-menu {
    gap: 10px 12px;
  }

  .seren-menu a {
    font-size: 11px;
  }

  .hero-home {
    padding-bottom: 40px;
  }

  .hero-name {
    max-width: 100%;
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1;
    white-space: normal;
    overflow-wrap: break-word;
  }

  .hero-photo-card {
    width: 72%;
  }

  .hero-review strong,
  .hero-side strong {
    font-size: 20px;
  }

  .hero-review p,
  .hero-side p,
  .page-hero p,
  .lead-text {
    font-size: 15px;
  }

  .seren-button {
    min-height: 50px;
  }

  .section-block {
    padding: 48px 0;
  }

  .section-title-custom {
    font-size: clamp(30px, 11vw, 48px);
  }

  .page-hero {
    padding: 46px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 14vw, 70px);
  }

  .story-card,
  .teaser-card,
  .publication-card,
  .cv-card {
    padding: 18px;
  }

  .story-card h3,
  .teaser-card h3,
  .publication-card h3,
  .cv-card h3,
  .featured-grid .publication-card h3,
  .archive-grid .publication-card h3 {
    font-size: 20px;
  }

  .visual-story-card,
  .visual-story-card.wide {
    min-height: 300px;
  }

  .visual-story-card figcaption strong {
    font-size: 22px;
  }

  .text-thumb strong,
  .video-card strong {
    font-size: 22px;
  }

  .footer-inner h2 {
    font-size: clamp(32px, 12vw, 58px);
  }
}

/* Logo, social menu and refreshed about page */
.seren-nav {
  align-items: center;
}

.seren-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  max-height: 42px !important;
  line-height: 0;
  overflow: hidden;
}

.seren-logo img,
.seren-logo-mark {
  display: block;
  width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  max-height: 42px !important;
  object-fit: contain;
}

.seren-menu {
  align-items: center;
}

.seren-social-menu {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 18px;
  border-left: 1px solid rgba(5, 5, 5, 0.16);
}

.seren-menu .seren-social-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 50%;
  color: var(--ink);
  font-size: 17px;
  line-height: 1;
  text-transform: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.seren-menu .seren-social-link:hover,
.seren-menu .seren-social-link:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-1px);
}

.about-hero {
  padding: 66px 0 58px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 180px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.about-hero-grid > *,
.about-photo-grid > * {
  min-width: 0;
}

.about-hero h1 {
  font-size: clamp(58px, 9vw, 134px);
  overflow-wrap: anywhere;
}

.about-hero p {
  max-width: 860px;
  font-size: 18px;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.about-hero-photo {
  position: relative;
  margin: 0;
  width: 180px !important;
  max-width: 180px !important;
  justify-self: end;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.about-hero-photo img,
.about-photo-card img,
.about-inline-photo img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.about-photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 22px;
  align-items: stretch;
}

.about-photo-card {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.about-photo-card.wide {
  min-height: 420px;
}

.about-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 5, 5, 0.58));
}

.about-photo-card figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-inline-photo {
  position: relative;
  width: 180px !important;
  max-width: 180px !important;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--soft);
}

.about-inline-photo img {
  aspect-ratio: auto;
}

.about-inline-photo-wide {
  width: 360px !important;
  max-width: 360px !important;
  margin-top: 34px;
}

.about-inline-photo-wide img {
  aspect-ratio: auto;
}

.about-inline-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.about-text-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 34px;
  align-items: start;
  margin-top: 28px;
}

.split-copy.compact {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 0;
}

@media (max-width: 991px) {
  html,
  body.seren-site {
    max-width: 100%;
    overflow-x: hidden;
  }

  .seren-nav {
    align-items: flex-start;
  }

  .seren-logo img {
    width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    max-height: 36px !important;
  }

  .seren-logo {
    width: 36px !important;
    max-width: 36px !important;
    height: 36px !important;
    max-height: 36px !important;
  }

  .seren-social-menu {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .about-hero-grid,
  .about-photo-grid {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .about-hero-photo {
    width: 170px !important;
    max-width: 170px !important;
    justify-self: start;
  }

  .about-hero .container {
    width: min(100%, calc(100vw - 44px));
    max-width: calc(100vw - 44px);
  }

  .about-hero p {
    width: 100%;
    max-width: 100%;
  }

  .about-text-media {
    grid-template-columns: 1fr;
  }

  .about-inline-photo,
  .about-inline-photo-wide {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .about-hero .container {
    width: calc(100% - 44px);
    max-width: calc(100% - 44px);
    margin-right: auto;
    margin-left: auto;
  }

  .seren-logo img {
    width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    max-height: 32px !important;
  }

  .seren-logo {
    width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    max-height: 32px !important;
  }

  .seren-menu {
    grid-template-columns: repeat(4, auto);
  }

  .seren-social-menu {
    grid-column: 1 / -1;
  }

  .seren-menu .seren-social-link {
    width: 32px;
    height: 32px;
  }

  .about-hero {
    padding-top: 44px;
  }

  .about-hero p {
    font-size: 14px;
    line-height: 1.65;
    max-width: calc(100vw - 84px);
  }

  .page-hero.about-hero p {
    width: calc(100vw - 84px) !important;
    max-width: calc(100vw - 84px) !important;
  }

  .about-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .about-photo-card,
  .about-photo-card.wide {
    min-height: 300px;
  }

  .about-hero-photo {
    width: 150px !important;
    max-width: 150px !important;
  }

  .about-inline-photo-wide img {
    aspect-ratio: 4 / 3;
  }
}
