body.wga-page {
  --wga-bg: #ffffff;
  --wga-rail: var(--nav-pad-x);
  --wga-content: var(--content-max);
  background: var(--wga-bg);
}

.wga-page .wga-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none;
  box-shadow: none;
  transition: background 0.28s ease;
}

.wga-page .wga-nav .nav__inner {
  max-width: var(--wga-content);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: clamp(18px, 2.2vw, 26px) var(--wga-rail);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(16px, 3vw, 32px);
}

.wga-page .wga-nav .wga-nav__leading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  gap: 0;
}

.wga-page .wga-nav .nav__logo {
  flex: 0 1 auto;
  justify-self: start;
}

.wga-page .wga-nav .wga-nav__menu {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(14px, 2.2vw, 22px);
  margin-left: 1em;
}

.wga-page .wga-nav .nav__lang {
  justify-self: end;
}

.wga-page .wga-nav .wga-nav__text-btn {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 1.15vw, 0.82rem);
  font-weight: 400;
  letter-spacing: clamp(0.1em, 0.16vw, 0.18em);
  text-transform: uppercase;
  color: #f0eee6;
  cursor: pointer;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  transition: color 0.28s ease, opacity 0.2s ease;
}

.wga-page .wga-nav .wga-nav__bio,
.wga-page .wga-nav .wga-nav__inspiration {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.wga-page .wga-nav .wga-nav__inspiration {
  text-transform: none;
  letter-spacing: 0.04em;
}

.wga-page .wga-nav .wga-nav__bio:hover,
.wga-page .wga-nav .wga-nav__bio:focus-visible,
.wga-page .wga-nav .wga-nav__inspiration:hover,
.wga-page .wga-nav .wga-nav__inspiration:focus-visible {
  color: #ffffff;
  opacity: 1;
  outline: none;
}

.wga-page .wga-nav .wga-nav__chapters {
  position: relative;
}

.wga-page .wga-nav .wga-nav__chapters-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.wga-page .wga-nav .wga-nav__chapters-chevron {
  font-size: 2.55em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.wga-page .wga-nav .wga-nav__chapters.is-open .wga-nav__chapters-chevron {
  transform: rotate(180deg);
}

.wga-page .wga-nav .wga-nav__text-btn:hover,
.wga-page .wga-nav .wga-nav__text-btn:focus-visible,
.wga-page .wga-nav .wga-nav__chapters-btn:hover,
.wga-page .wga-nav .wga-nav__chapters-btn:focus-visible {
  color: #ffffff;
  opacity: 1;
  outline: none;
}

.wga-page .wga-nav .wga-nav__chapters-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1200;
  min-width: min(18rem, calc(100vw - 2 * var(--wga-rail)));
  max-width: min(22rem, calc(100vw - 2 * var(--wga-rail)));
  max-height: min(58vh, 26rem);
  margin: 0;
  padding: 6px 0;
  list-style: none;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: #f0eee6;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.wga-page .wga-nav .wga-nav__chapters-link {
  display: block;
  padding: 9px 14px;
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 1.15vw, 0.82rem);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: clamp(0.1em, 0.16vw, 0.18em);
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  white-space: normal;
}

.wga-page .wga-nav .wga-nav__chapters-link:hover,
.wga-page .wga-nav .wga-nav__chapters-link:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

@media (min-width: 761px) {
  .wga-page .wga-nav .wga-nav__chapters-menu {
    width: max-content;
    min-width: 20rem;
    max-width: min(44rem, calc(100vw - 2 * var(--wga-rail)));
    max-height: none;
    overflow: visible;
  }

  .wga-page .wga-nav .wga-nav__chapters-link {
    white-space: nowrap;
  }
}

.wga-page .wga-nav.wga-nav--on-light {
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.wga-page .wga-nav.wga-nav--on-light .nav__logo {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav.wga-nav--on-light .nav__logo:hover,
.wga-page .wga-nav.wga-nav--on-light .nav__logo:focus-visible {
  color: var(--text);
  opacity: 0.72;
}

.wga-page .wga-nav.wga-nav--on-light .nav__lang button {
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 35%, transparent);
}

.wga-page .wga-nav.wga-nav--on-light .nav__lang button.is-active {
  background: var(--text);
  color: var(--bg);
}

.wga-page .wga-nav.wga-nav--on-light .wga-nav__text-btn {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav.wga-nav--on-light .wga-nav__bio,
.wga-page .wga-nav.wga-nav--on-light .wga-nav__inspiration {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav.wga-nav--on-light .wga-nav__chapters-btn {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav.wga-nav--on-light .wga-nav__text-btn:hover,
.wga-page .wga-nav.wga-nav--on-light .wga-nav__text-btn:focus-visible,
.wga-page .wga-nav.wga-nav--on-light .wga-nav__bio:hover,
.wga-page .wga-nav.wga-nav--on-light .wga-nav__bio:focus-visible,
.wga-page .wga-nav.wga-nav--on-light .wga-nav__inspiration:hover,
.wga-page .wga-nav.wga-nav--on-light .wga-nav__inspiration:focus-visible {
  color: var(--text);
  opacity: 0.72;
}

/* Über dem Hero: helles Logo auf dunklem Bild (Standard) */
.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .nav__logo {
  color: #f0eee6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .nav__lang button {
  color: #f0eee6;
  border-color: color-mix(in srgb, #f0eee6 55%, transparent);
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .nav__lang button.is-active {
  background: #f0eee6;
  color: #1a1a18;
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .wga-nav__text-btn {
  color: #f0eee6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .wga-nav__bio,
.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .wga-nav__inspiration {
  color: #f0eee6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-light .wga-nav__chapters-btn {
  color: #f0eee6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* Über dem Hero: dunkles Logo auf hellem Bildabschnitt */
.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .nav__logo {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .nav__logo:hover,
.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .nav__logo:focus-visible {
  color: var(--text);
  opacity: 0.72;
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .nav__lang button {
  color: var(--text);
  border-color: color-mix(in srgb, var(--text) 35%, transparent);
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .nav__lang button.is-active {
  background: var(--text);
  color: var(--bg);
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .wga-nav__text-btn {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .wga-nav__bio,
.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .wga-nav__inspiration {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav:not(.wga-nav--on-light).wga-nav--logo-dark .wga-nav__chapters-btn {
  color: var(--text);
  text-shadow: none;
}

.wga-page .wga-nav .nav__logo {
  font-family: var(--font-sans);
  font-size: clamp(0.58rem, 1.15vw, 0.82rem);
  font-weight: 400;
  letter-spacing: clamp(0.1em, 0.16vw, 0.18em);
  text-transform: uppercase;
  color: #f0eee6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  transition: color 0.28s ease, text-shadow 0.28s ease, opacity 0.2s ease;
}

.wga-page .wga-nav .nav__logo:hover,
.wga-page .wga-nav .nav__logo:focus-visible {
  color: #ffffff;
  opacity: 1;
}

.wga-page .wga-nav .nav__lang button {
  color: #f0eee6;
  border-color: color-mix(in srgb, #f0eee6 55%, transparent);
  transition: color 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.wga-page .wga-nav .nav__lang button.is-active {
  background: #f0eee6;
  color: #1a1a18;
}

@media (max-width: 760px) {
  .wga-page .wga-nav .nav__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-areas:
      "logo logo logo logo"
      "chapters bio inspiration lang";
    align-items: center;
    column-gap: clamp(10px, 3vw, 18px);
    row-gap: clamp(12px, 2.8vw, 18px);
    padding-top: clamp(14px, 3.5vw, 20px);
    padding-bottom: clamp(14px, 3.5vw, 20px);
  }

  .wga-page .wga-nav .wga-nav__leading {
    display: contents;
  }

  .wga-page .wga-nav .wga-nav__menu {
    display: contents;
  }

  .wga-page .wga-nav .nav__logo {
    grid-area: logo;
    justify-self: center;
    width: 100%;
    max-width: 100%;
    text-align: center;
    font-size: calc(clamp(0.58rem, 1.15vw, 0.82rem) * 1.3);
    line-height: 1.25;
  }

  .wga-page .wga-nav .wga-nav__chapters {
    grid-area: chapters;
    justify-self: start;
    align-self: center;
    margin-left: 0 !important;
  }

  .wga-page .wga-nav .wga-nav__bio {
    grid-area: bio;
    justify-self: center;
    align-self: center;
  }

  .wga-page .wga-nav .wga-nav__inspiration {
    grid-area: inspiration;
    justify-self: center;
    align-self: center;
  }

  .wga-page .wga-nav .nav__lang {
    grid-area: lang;
    justify-self: end;
    align-self: center;
  }

  .wga-page .wga-nav .wga-nav__text-btn {
    font-size: calc(clamp(0.58rem, 1.15vw, 0.82rem) * 1.3);
  }

  .wga-page .wga-nav .wga-nav__chapters-menu {
    position: fixed;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(22rem, calc(100vw - 2 * var(--wga-rail)));
    min-width: min(18rem, calc(100vw - 2 * var(--wga-rail)));
    max-width: min(22rem, calc(100vw - 2 * var(--wga-rail)));
  }
}

.wga-shell {
  max-width: var(--wga-content);
  margin: 0 auto;
  padding-left: var(--wga-rail);
  padding-right: var(--wga-rail);
  box-sizing: border-box;
}

/* —— Hero: horizontal borderless (volle Viewport-Breite) —— */
.wga-hero {
  margin: 0;
  padding: 0;
}

.wga-hero__bleed {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border: none;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: min(88vh, 920px);
  background: #1a1a1a;
  line-height: 0;
}

.wga-hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wga-hero__track {
  display: flex;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.wga-hero__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-shrink: 0;
}

.wga-hero__slide img {
  width: 100%;
  max-width: none;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: none;
}

.wga-hero__headline {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(48px, 10vh, 120px) var(--nav-pad-x);
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  color: #f0eee6;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.wga-hero__dots {
  position: absolute;
  z-index: 3;
  bottom: clamp(52px, 7vw, 68px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.wga-hero__footer {
  position: absolute;
  z-index: 3;
  bottom: clamp(16px, 3vw, 28px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--content-max);
  padding: 0 var(--nav-pad-x);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 3vw, 24px);
  pointer-events: none;
}

.wga-hero__caption {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1.05vw, 0.76rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

.wga-hero__arrows {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
  pointer-events: auto;
}

.wga-hero__arrow {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0 0 2px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.wga-hero__arrow span {
  display: block;
  transform: translateY(-1px);
}

.wga-hero__arrow:hover,
.wga-hero__arrow:focus-visible {
  background: #f2f2f2;
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  outline: none;
}

.wga-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.wga-hero__dot.is-active,
.wga-hero__dot:hover,
.wga-hero__dot:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  transform: scale(1.12);
  outline: none;
}

.wga-hero__bleed.fc-swipe-zone {
  touch-action: pan-y;
  cursor: grab;
}

.wga-hero__bleed.fc-swipe-zone.is-swipe-dragging {
  cursor: grabbing;
}

.wga-popup .wga-slider.fc-swipe-zone {
  touch-action: pan-y;
  cursor: grab;
}

.wga-popup .wga-slider.fc-swipe-zone.is-swipe-dragging {
  cursor: grabbing;
}

.wga-popup__frame.fc-swipe-zone {
  touch-action: pan-y;
  cursor: grab;
}

.wga-popup__frame.fc-swipe-zone.is-swipe-dragging {
  cursor: grabbing;
}

.wga-scroll-top {
  position: fixed;
  right: clamp(16px, 2.5vw, 28px);
  bottom: clamp(16px, 2.5vw, 28px);
  z-index: 1200;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(13, 13, 13, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.15s ease;
  pointer-events: auto;
}

.wga-scroll-top[hidden] {
  display: none !important;
}

.wga-scroll-top:hover,
.wga-scroll-top:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.34);
}

.wga-scroll-top svg {
  display: block;
  flex-shrink: 0;
}

/* —— Intro —— */
.wga-intro {
  padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 6vw, 72px);
  background: var(--wga-bg);
}

.wga-intro__title {
  margin: 0 0 clamp(20px, 3vw, 32px);
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text);
}

.wga-intro__body {
  max-width: 42em;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.12vw, 1rem);
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--text) 88%, #fff);
}

.wga-intro__body p {
  margin: 0 0 1.15em;
}

.wga-intro__body p:last-child {
  margin-bottom: 0;
}

.wga-intro__sig {
  margin-top: clamp(20px, 3vw, 32px) !important;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text);
}

/* —— Catalog —— */
.wga-catalog {
  padding: 0 0 clamp(64px, 9vw, 120px);
}

.wga-section + .wga-section {
  margin-top: clamp(40px, 6vw, 72px);
}

.wga-section {
  scroll-margin-top: calc(var(--fc-nav-h, 72px) + 16px);
}

.wga-chapter-head {
  margin: 0 0 clamp(24px, 4vw, 40px);
}

.wga-section:first-child .wga-chapter-head {
  margin-top: 0;
}

.wga-chapter__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 200;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: var(--text);
}

.wga-section__title {
  display: flex;
  align-items: baseline;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.65em;
  margin: clamp(28px, 4vw, 44px) 0 clamp(20px, 3vw, 32px);
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.2vw, 1.65rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--text);
}

.wga-section__year {
  display: inline;
  margin: 0;
  flex: 0 0 auto;
  font: inherit;
}

.wga-section__name {
  display: inline;
  margin: 0;
  flex: 0 1 auto;
  font: inherit;
}

.wga-chapter-head + .wga-section__title {
  margin-top: 0;
}

.wga-grid {
  container-type: inline-size;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  --wga-gap: clamp(10px, 1.2vw, 16px);
  --wga-col: calc((100cqw - 3 * var(--wga-gap)) / 4);
  gap: var(--wga-gap);
  align-items: start;
}

.wga-tile {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
}

.wga-tile--work {
  display: block;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.wga-tile__media {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}

.wga-tile__media img {
  width: 100%;
  max-width: none;
  height: auto !important;
  object-fit: contain;
  object-position: center top;
  display: block;
  vertical-align: top;
  transition: transform 0.45s ease;
}

.wga-berlin-dot {
  position: absolute;
  top: clamp(8px, 1.2vw, 12px);
  right: clamp(8px, 1.2vw, 12px);
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: transparent;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

button.wga-berlin-dot:hover,
button.wga-berlin-dot:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  outline: none;
}

.wga-berlin-dot--unavailable {
  background: #c62828;
  border: none;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}

.wga-slider__slide {
  position: relative;
}

.wga-tile--work:hover .wga-tile__media img,
.wga-tile--work:focus-visible .wga-tile__media img {
  transform: scale(1.02);
}

.wga-tile__hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  padding: clamp(12px, 2vw, 20px);
  background: rgba(10, 10, 10, 0.52);
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.wga-tile--work:hover .wga-tile__hover,
.wga-tile--work:focus-visible .wga-tile__hover {
  opacity: 1;
}

.wga-tile__label {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wga-tile__sub {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1.15vw, 0.95rem);
  font-weight: 300;
  line-height: 1.35;
}

/* —— Popup —— */
.wga-popup[hidden] {
  display: none !important;
}

.wga-popup {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 20px);
}

.wga-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.wga-popup__panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(96vw, 1200px);
  max-height: none;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.wga-popup__frame {
  position: relative;
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.wga-popup__close {
  position: absolute;
  z-index: 12;
  top: clamp(8px, 1.5vw, 14px);
  right: clamp(8px, 1.5vw, 14px);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.wga-popup__close:hover,
.wga-popup__close:focus-visible {
  background: rgba(10, 10, 10, 0.82);
  outline: none;
}

.wga-popup__nav {
  position: absolute;
  z-index: 11;
  top: clamp(8px, 1.5vw, 14px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  pointer-events: none;
}

.wga-popup__arrow {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0 0 2px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.wga-popup__arrow span {
  display: block;
  transform: translateY(-1px);
}

.wga-popup__arrow:hover,
.wga-popup__arrow:focus-visible {
  background: #f2f2f2;
  transform: translateY(-1px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  outline: none;
}

.wga-popup__footer {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85em;
  padding: clamp(10px, 1.8vw, 14px) clamp(12px, 2vw, 16px);
  pointer-events: none;
}

.wga-popup__unavailable {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}

.wga-popup__index {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.35vw, 0.92rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

.wga-popup__caption {
  display: none !important;
}

.wga-popup .wga-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
}

.wga-popup .wga-slider__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.wga-popup .wga-slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  background: #0a0a0a;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.wga-popup .wga-slider__slide img {
  width: auto;
  max-width: min(96vw, 1200px);
  height: auto !important;
  max-height: min(92vh, 920px);
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0;
  background: #0a0a0a;
  vertical-align: top;
}

@media (max-width: 760px) {
  .wga-popup .wga-slider {
    width: min(96vw, 100%);
  }

  .wga-popup .wga-slider__slide img {
    width: 100%;
    max-width: 100%;
  }
}

.wga-popup .wga-slider__dots {
  position: absolute;
  z-index: 11;
  top: clamp(10px, 1.8vw, 16px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.wga-popup__view-nav {
  position: absolute;
  z-index: 12;
  right: clamp(8px, 1.5vw, 14px);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0a0a0a;
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.wga-popup__view-more {
  padding: 0.55em 0.7em 0.55em 0.85em;
}

.wga-popup__view-back {
  padding: 0.55em 0.85em 0.55em 0.7em;
}

.wga-popup__view-nav-arrow {
  font-size: 1.3rem;
  line-height: 1;
  transform: translateY(-1px);
}

.wga-popup__view-nav:hover,
.wga-popup__view-nav:focus-visible {
  background: #ffffff;
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
  outline: none;
}

.wga-popup__view-nav[hidden] {
  display: none !important;
}

.wga-popup .wga-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.wga-popup .wga-slider__dot.is-active,
.wga-popup .wga-slider__dot:hover,
.wga-popup .wga-slider__dot:focus-visible {
  background: #fff;
  border-color: #fff;
  outline: none;
}

/* —— Inquiry popup —— */
.wga-inquiry[hidden] {
  display: none !important;
}

.wga-inquiry {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 20px);
}

.wga-inquiry__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.wga-inquiry__panel {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(96vw, 720px);
}

.wga-inquiry__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
  background: #ffffff;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
  border-radius: 0;
}

.wga-inquiry__close {
  position: absolute;
  z-index: 2;
  top: clamp(8px, 1.5vw, 14px);
  right: clamp(8px, 1.5vw, 14px);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.wga-inquiry__close:hover,
.wga-inquiry__close:focus-visible {
  background: rgba(10, 10, 10, 0.82);
  outline: none;
}

.wga-inquiry__image-wrap {
  line-height: 0;
  background: #f5f5f5;
}

.wga-inquiry__img {
  display: block;
  width: 100%;
  max-height: min(62vh, 520px);
  object-fit: contain;
  object-position: center;
}

.wga-inquiry__text {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.84rem, 1.76vw, 1.08rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  text-align: left;
}

.wga-inquiry__footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(16px, 2.5vw, 24px) clamp(18px, 3vw, 28px);
}

.wga-inquiry__cta {
  align-self: flex-end;
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #000000;
  font-family: var(--font-sans);
  font-size: clamp(0.84rem, 1.76vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: right;
  cursor: pointer;
}

.wga-inquiry__cta:hover,
.wga-inquiry__cta:focus-visible {
  color: #000000;
  text-decoration: underline;
  outline: none;
}

/* —— x Interior —— */
.wga-inspiration[hidden] {
  display: none !important;
}

.wga-inspiration {
  position: fixed;
  inset: 0;
  z-index: 12500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 28px);
}

.wga-inspiration__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.wga-inspiration__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(720px, 100%);
  max-height: min(88vh, 900px);
  overflow: hidden;
  background: #ffffff;
  box-sizing: border-box;
}

.wga-inspiration__close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.wga-inspiration__close:hover,
.wga-inspiration__close:focus-visible {
  background: rgba(10, 10, 10, 0.14);
  outline: none;
}

.wga-inspiration__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: clamp(20px, 3vw, 32px);
  background: #ffffff;
}

.wga-inspiration__img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  background: #ffffff;
}

.wga-inspiration__img + .wga-inspiration__img {
  margin-top: clamp(16px, 2.5vw, 24px);
}

/* —— Bio —— */
.wga-bio[hidden] {
  display: none !important;
}

.wga-bio {
  position: fixed;
  inset: 0;
  z-index: 12500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.5vw, 28px);
}

.wga-bio__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.wga-bio__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(640px, 100%);
  max-height: min(88vh, 820px);
  overflow: hidden;
  background: #f0eee6;
  padding: clamp(28px, 4vw, 44px) clamp(22px, 3.5vw, 36px);
  box-sizing: border-box;
}

.wga-bio__photos {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(10px, 2vw, 16px);
  flex: 0 0 auto;
  height: clamp(150px, 24vw, 210px);
  margin: 0 0 clamp(18px, 3vw, 24px);
}

.wga-bio__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: rgba(10, 10, 10, 0.06);
}

.wga-bio__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.08);
  color: var(--text);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

.wga-bio__close:hover,
.wga-bio__close:focus-visible {
  background: rgba(10, 10, 10, 0.14);
  outline: none;
}

.wga-bio__title {
  flex: 0 0 auto;
  margin: 0 0 clamp(12px, 2vw, 18px);
  padding-right: 36px;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.wga-bio__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.wga-bio__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.05vw, 0.88rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: color-mix(in srgb, var(--text) 88%, #fff);
  white-space: pre-wrap;
  overflow-x: auto;
  tab-size: 4;
}

@media (max-width: 900px) {
  .wga-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    --wga-col: calc((100cqw - var(--wga-gap)) / 2);
  }
}

@media (max-width: 520px) {
  .wga-grid {
    grid-template-columns: 1fr;
    --wga-col: 100cqw;
  }

  .wga-hero__bleed {
    min-height: 72vh;
    aspect-ratio: 4 / 3;
  }
}
